luci-theme-atmaterial: update source from yangsongli
This commit is contained in:
parent
e4626a3621
commit
e545eb5c22
@ -34,7 +34,7 @@ NanoPi R1s(h5) support: [jerrykuku/openwrt-nanopi-r1s-h5](https://github.com/jer
|
||||
NanoPi support: [speedyworldclub/nlede](https://github.com/speedyworldclub/nlede).<br/>
|
||||
luci-theme-opentomato source: [Leo-Jo-My/luci-theme-opentomato](https://github.com/Leo-Jo-My/luci-theme-opentomato).<br/>
|
||||
luci-theme-opentomcat source: [Leo-Jo-My/luci-theme-opentomcat](https://github.com/Leo-Jo-My/luci-theme-opentomcat).<br/>
|
||||
qntfs-driver source: [lbbboy/qntfs-driver](https://github.com/lbbboy/qntfs-driver).<br/>
|
||||
luci-theme-atmaterial source: [yangsongli/luci-theme-atmaterial](https://github.com/yangsongli/luci-theme-atmaterial).<br/>
|
||||
luci-theme-Butterfly source: [Leo-Jo-My/luci-theme-Butterfly](https://github.com/Leo-Jo-My/luci-theme-Butterfly).<br/>
|
||||
lua-maxminddb source: [jerrykuku/lua-maxminddb](https://github.com/jerrykuku/lua-maxminddb).<br/>
|
||||
package openwrt-mwol: [Mleaf/openwrt-mwol](https://github.com/Mleaf/openwrt-mwol).<br/>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/**
|
||||
* Material is a clean HTML5 theme for LuCI. It is based on luci-theme-bootstrap and MUI
|
||||
*
|
||||
* luci-theme-material
|
||||
@ -169,7 +169,7 @@ input,
|
||||
|
||||
select:not([multiple="multiple"]):focus,
|
||||
input:focus {
|
||||
border-color: #94a494;
|
||||
border-color: #0099CC;
|
||||
}
|
||||
|
||||
select[multiple="multiple"] {
|
||||
@ -177,7 +177,7 @@ select[multiple="multiple"] {
|
||||
}
|
||||
|
||||
code {
|
||||
color: #94a494;
|
||||
color: #0099CC;
|
||||
}
|
||||
|
||||
abbr {
|
||||
@ -320,7 +320,7 @@ header > .container > .brand {
|
||||
line-height:60px;
|
||||
color: white;
|
||||
cursor: default;
|
||||
background: #94a494;
|
||||
background: #0099CC;
|
||||
display:block;
|
||||
width:17rem;
|
||||
padding-right: 10px;
|
||||
@ -476,38 +476,57 @@ header > .container > a[class="brand"]:after {
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="Status"]:before {
|
||||
content: "\e026";
|
||||
color: #5e72e4!important;
|
||||
|
||||
}
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="System"]:before {
|
||||
content: "\e00a";
|
||||
color: #fb6340!important;
|
||||
}
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="Network"]:before {
|
||||
content: "\e00e";
|
||||
color: #8965e0!important;
|
||||
}
|
||||
.main > .main-left > .nav > .slide > a[data-title="VPN"]:before {
|
||||
content: "\e029";
|
||||
color: #5F9EA0!important;
|
||||
}
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="Services"]:before {
|
||||
content: "\e01b";
|
||||
color: #11cdef!important;
|
||||
}
|
||||
.main > .main-left > .nav > .slide > a[data-title="Docker"]:before {
|
||||
content: "\e02c";
|
||||
color: #00b2ee!important;
|
||||
}
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="NAS"]:before {
|
||||
content: "\e00b";
|
||||
color: #f3a4b5!important;
|
||||
}
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="Control"]:before {
|
||||
content: "\e023";
|
||||
content: "\e021";
|
||||
color: #FFD700!important;
|
||||
}
|
||||
.main > .main-left > .nav > .slide > a[data-title="Statistics"]:before {
|
||||
content: "\e023";
|
||||
color: #1E90FF!important;
|
||||
}
|
||||
|
||||
|
||||
.main > .main-left > .nav > .slide > a[data-title="Bandwidth Monitor"]:before {
|
||||
content: "\e00f";
|
||||
color: #2dce89!important;
|
||||
}
|
||||
|
||||
.main > .main-left > .nav > li > a[data-title="Logout"] {
|
||||
padding-left:36px;
|
||||
line-height:40px;
|
||||
color: #9400D3!important;
|
||||
}
|
||||
.main > .main-left > .nav > li > a[data-title="Logout"]:before {
|
||||
content: "\e005";
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -45,7 +45,6 @@
|
||||
// thanks for Jo-Philipp Wich <jow@openwrt.org>
|
||||
var luciLocation = <%= luci.http.write_json(luci.dispatcher.context.path) %>;
|
||||
</script>
|
||||
<script src="<%=media%>/js/jquery.min.js"></script>
|
||||
<script src="<%=media%>/js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -215,6 +215,7 @@
|
||||
<style title="text/css"><%= css %></style>
|
||||
<% end -%>
|
||||
<script src="<%=resource%>/xhr.js"></script>
|
||||
<script src="<%=media%>/js/jquery.min.js"></script>
|
||||
</head>
|
||||
<body class="lang_<%=luci.i18n.context.lang%> <%- if node then %><%= striptags( node.title ) %><%- end %> <% if luci.dispatcher.context.authsession then %>logged-in<% end %>">
|
||||
<header>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user