* luci/themes: more fixes for openwrt.org theme

This commit is contained in:
Jo-Philipp Wich 2008-07-13 01:32:02 +00:00
parent 40fbc2d7c2
commit 41cb1705b7
2 changed files with 14 additions and 12 deletions

View file

@ -12,7 +12,7 @@ You may obtain a copy of the License at
$Id$ $Id$
-%> -%>
<div class="cbi-value-description"><%=self.description%>&nbsp;</div> <% if #self.description > 0 then %><div class="cbi-value-description"><%=self.description%></div><% end %>
</div> </div>
<% if self.tag_invalid[section] then %><div class="cbi-error"><%:cbi_invalid%></div><% end %> <% if self.tag_invalid[section] then %><div class="cbi-error"><%:cbi_invalid%></div><% end %>
</div> </div>

View file

@ -75,10 +75,6 @@ div#content ul {
color: #ffffff; color: #ffffff;
} }
* html .mainmenu {
height: 1.8em;
}
.mainmenu div { .mainmenu div {
float: left; float: left;
} }
@ -155,7 +151,7 @@ div#content ul {
#content { #content {
clear: both; clear: both;
width: 60%; width: 80%;
margin: 0 auto; margin: 0 auto;
padding: 0.5em; padding: 0.5em;
background: #f5f5f5; background: #f5f5f5;
@ -280,16 +276,18 @@ div.cbi-value:last-child {
.cbi-value-title { .cbi-value-title {
float: left; float: left;
width: 30%; width: 40%;
margin: 0.25em 0; margin: 0.25em 0;
} }
div.cbi-value-field { div.cbi-value-field {
width: 68%; width: 58%;
margin: 0.25em 0 0.25em 30%; margin: 0.25em 0 0.25em 40%;
} }
div.cbi-value-description { div.cbi-value-description {
width: 58%;
margin-left: 40%;
font-size: 90%; font-size: 90%;
} }
@ -375,8 +373,8 @@ td.cbi-section-table-optionals {
} }
* html div#content { * html div#content {
margin-left: -60% !important; margin-left: -80% !important;
width: 120% !important; width: 160% !important;
} }
* html div.mainmenu div.hover ul, * html div.mainmenu div.hover ul,
@ -403,3 +401,7 @@ td.cbi-section-table-optionals {
height: 1em !important; height: 1em !important;
width: 10em !important; width: 10em !important;
} }
* html .mainmenu {
height: 1.8em;
}