luci-theme-deisgn: Bump version to v5.7.5-20230418 (#218)

* luci-theme-design: fix missing characters, logo font converted to open source font GenJyuuGothic-Medium

* luci-theme-design: bump version to v5.4.3

* Update themes/luci-theme-design/Makefile

Co-authored-by: Beginner <70857188+Beginner-Go@users.noreply.github.com>

* luci-theme-design: Bump version to v5.5.4-20230320

* luci-theme-design: update Makefile

* luci-theme-design: optimize js render

* luci-theme-design: Bump version to v5.5.5

* luci-theme-design: fix theme dark/light mode

* luci-theme-design: Bump version to v5.5.6

* luci-theme-design: fixed header resize box-shadow

* luci-theme-design: optimize browser compatibility

* luci-theme-design: Bump version to v5.6.3-20230404

* Update themes/luci-theme-design/htdocs/luci-static/design/js/design.js

Co-authored-by: Beginner <70857188+Beginner-Go@users.noreply.github.com>

* Update script.js

* Update xhr.js

* Update style.css

* Update footer.htm

* Update header.htm

* luci-theme-design: fixed QWRT network share table style

* luci-theme-design: Bump version to v5.6.9-20230406

* luci-theme-design: disable async loading resource

* luci-theme-design: Bump version to v5.7.0-20230408

* luci-theme-design: refactor

* luci-theme-design: upstrem

* luci-theme-design: fix browser compatibility

* luci-theme-design: sync upstrem

* luci-theme-design: sync upstream

* luci-theme-design: sync upstream

* luci-theme-design: sync upstream

* luci-theme-design: sync upstream

* luci-theme-design: sync upstream

* luci-theme-design: sync upstream

* Bump version to v5.7.5-20230418

---------

Co-authored-by: Beginner <70857188+Beginner-Go@users.noreply.github.com>
This commit is contained in:
gngpp 2023-04-18 20:19:49 +08:00 committed by GitHub
parent bf5e9ad2c3
commit c09e6c18f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 10 deletions

View File

@ -7,9 +7,8 @@ include $(TOPDIR)/rules.mk
LUCI_TITLE:=Design Theme
LUCI_DEPENDS:=
PKG_VERSION:=5.7.5-20230418
PKG_VERSION:=5.7.1-20230411
include ../../luci.mk
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature

File diff suppressed because one or more lines are too long

View File

@ -16,4 +16,4 @@ showSide=false;}});$(window).resize(function(){if($(window).width()>992){showSid
$("header>.container>.brand").css("padding",'0rem')}else{$("header").css("box-shadow","0 2px 4px rgb(0 0 0 / 8%)")
$("header>.container>.brand").css("padding","0 4.5rem")}
if(showSide){$("header").css("box-shadow","18rem 2px 4px rgb(0 0 0 / 8%)")
$("header>.container>.brand").css("padding",'0rem')}});$("legend").each(function(){var that=$(this);that.after("<span class='panel-title'>"+that.text()+"</span>");});$(".main-right").focus();$(".main-right").blur();$("input").attr("size","0");if(mainNodeName!=undefined){switch(mainNodeName){case "node-status-system_log":case "node-status-kernel_log":$("#syslog").focus(function(){$("#syslog").blur();$(".main-right").focus();$(".main-right").blur();});break;case "node-status-firewall":var button=$(".node-status-firewall > .main fieldset li > a");button.addClass("cbi-button cbi-button-reset a-to-btn");break;case "node-system-reboot":var button=$(".node-system-reboot > .main > .main-right p > a");button.addClass("cbi-button cbi-input-reset a-to-btn");break;}}})(jQuery);
$("header>.container>.brand").css("padding",'0rem')}});$(".main-right").focus();$(".main-right").blur();$("input").attr("size","0");if(mainNodeName!=undefined){switch(mainNodeName){case "node-status-system_log":case "node-status-kernel_log":$("#syslog").focus(function(){$("#syslog").blur();$(".main-right").focus();$(".main-right").blur();});break;case "node-status-firewall":var button=$(".node-status-firewall > .main fieldset li > a");button.addClass("cbi-button cbi-button-reset a-to-btn");break;case "node-system-reboot":var button=$(".node-system-reboot > .main > .main-right p > a");button.addClass("cbi-button cbi-input-reset a-to-btn");break;}}})(jQuery);

View File

@ -50,16 +50,18 @@
</div>
<script>
// thanks for Jo-Philipp Wich <jow@openwrt.org>
var luciLocation = <%= luci.http.write_json(luci.dispatcher.context.path) %>;
// fix legend position
$("legend").each(function () {
var that = $(this);
that.after("<span class='panel-title'>" + that.text() + "</span>");
});
// Fixed openclash plugin causing env(safe-area-inset-bottom) to be 0 under
if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent) && self.location.href.indexOf("openclash") != -1) {
if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent) && self.location.pathname.indexOf("openclash") != -1) {
var oMeta = document.createElement('meta');
oMeta.content = 'width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover';
oMeta.name = 'viewport';
document.querySelector('head').appendChild(oMeta);
}
</script>
<script src="<%=media%>/js/script.js?v=<%= ver.luciversion %>"></script>
</body>
</html>

View File

@ -315,3 +315,9 @@
</div>
<%- end -%>
<% if category then subtree("/" .. category .. "/", cattree) end %>
<script>
// thanks for Jo-Philipp Wich <jow@openwrt.org>
var luciLocation = <%= luci.http.write_json(luci.dispatcher.context.path) %>;
</script>
<script src="<%=media%>/js/script.js?v=<%= ver.luciversion %>"></script>