Skip to content

Commit

Permalink
version 0.2.8
Browse files Browse the repository at this point in the history
fix iphone bug
  • Loading branch information
LuttyYang committed Oct 7, 2015
1 parent 3ea565d commit 6ff3f2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions files/htdocs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ footer > a{
.main {
top: 4rem;
bottom: 0rem;
position: relative;
}

.main > .loading{
Expand Down Expand Up @@ -195,18 +196,21 @@ footer > a{

.main-left {
float: left;
top: 4rem;
width: 15%;
width: calc(0% + 17rem);
height: 100%;
overflow-y: auto;
height: calc(100% - 4rem);
background-color: white;

overflow-x: auto;
position: fixed;
}

.main-right {
width: 85%;
width: calc(100% - 17rem);
float: right;
overflow-y: auto;
height: 100%;
background-color: #EEE;
}
Expand Down Expand Up @@ -1199,6 +1203,8 @@ body.lang_pl.node-main-login .cbi-value-title {

.main-left {
width: calc(0% + 13rem);
top: 3.5rem;
height: calc(100% - 3.5rem);
}

.main-right {
Expand Down
2 changes: 1 addition & 1 deletion files/templates/header.htm
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
end
%>
<% if ucichanges > 0 then %>
<a class="label notice" href="<%=controller%>/<%=category%>/uci/changes"><span class="mobile-hide"><%:Unsaved Changes%>: </span><%=ucichanges%></a>
<a class="label notice" href="<%=controller%>/<%=category%>/uci/changes?redir=<%=http.urlencode(http.formvalue("redir") or REQUEST_URI)%>"><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"><span class="mobile-hide"><%:Auto Refresh%> </span><%:on%></span>
Expand Down

0 comments on commit 6ff3f2d

Please sign in to comment.