luci-app-alpha-config: Add theme configure

This commit is contained in:
Hilman Maulana 2024-02-24 15:08:47 +07:00 committed by GitHub
parent bd6a92977b
commit 06ef56c223
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,7 +33,7 @@ local icon = {
local function getLink(nav)
local link = config[nav]
return (link ~= "none") and link or nil
return (link and link ~= "none") and link or nil
end
local num_links = 0
@ -46,14 +46,23 @@ for i = 1, 6 do
end
local link_width = string.format("calc(100%% / %d)", num_links)
local blur_value = tonumber(config.blur)
local link_blur = string.format("blur(%dpx)", blur_value)
local background_color = config.color
%>
<style>
@media screen and (max-width: 720px) {
.navbar a {
width: <%= link_width %>;
}
.main>.main-left, .cbi-section, .cbi-section-error, #iptables, .Firewall form, #cbi-network>.cbi-section-node, #cbi-wireless>.cbi-section-node, #cbi-wireless>#wifi_assoclist_table, [data-tab-title], [data-page^="admin-system-admin"]:not(.node-main-login) .cbi-map:not(#cbi-dropbear), [data-page="admin-system-opkg"] #maincontent>.container, .tabs, .cbi-tabmenu, .cbi-tooltip {
background-color: <%=background_color%>;
backdrop-filter: <%=link_blur%>;
-webkit-backdrop-filter: <%=link_blur%>;
}
@media screen and (max-width: 720px) {
.navbar a {
width: <%=link_width%>;
}
}
</style>
</div>