diff options
author | Lutty Yang <lutty@wcan.in> | 2015-09-18 11:32:44 +0800 |
---|---|---|
committer | Lutty Yang <lutty@wcan.in> | 2015-09-18 11:32:44 +0800 |
commit | 2237aab76b6876bc9bc1c0c0fad818898cfbe495 (patch) | |
tree | 1b55baa65caf1f7d47d924f8144cd4c31ecab746 /themes/luci-theme-material/luasrc | |
parent | 6c1a2e34833a8514b4f13bfc16a1c0c2d0116bc9 (diff) |
luci-theme-material: fix some bug
fixed "logout" text theme error and "unsaved changes" page dislocation.
Signed-off-by: Lutty Yang <lutty@wcan.in>
Diffstat (limited to 'themes/luci-theme-material/luasrc')
-rwxr-xr-x | themes/luci-theme-material/luasrc/view/themes/material/header.htm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/luci-theme-material/luasrc/view/themes/material/header.htm b/themes/luci-theme-material/luasrc/view/themes/material/header.htm index 3a4f897ca..494cfe39e 100755 --- a/themes/luci-theme-material/luasrc/view/themes/material/header.htm +++ b/themes/luci-theme-material/luasrc/view/themes/material/header.htm @@ -154,11 +154,11 @@ end %> <% if ucichanges > 0 then %> - <a class="label notice" href="<%=controller%>/<%=category%>/uci/changes"><%:Unsaved Changes%>: <%=ucichanges%></a> + <a class="label notice" href="<%=controller%>/<%=category%>/uci/changes"><span class="mobile-hide"><%:Unsaved Changes%>: </span><%=ucichanges%></a> <% end %> <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()"> - <span class="label success" id="xhr_poll_status_on"><%:Auto Refresh%> <%:on%></span> - <span class="label" id="xhr_poll_status_off" style="display:none"><%:Auto Refresh%> <%:off%></span> + <span class="label success" id="xhr_poll_status_on"><span class="mobile-hide"><%:Auto Refresh%> </span><%:on%></span> + <span class="label" id="xhr_poll_status_off" style="display:none"><span class="mobile-hide"><%:Auto Refresh%> </span><%:off%></span> </span> <% end %> </div> |