* luci/themes/openwrt.org: fixes for syslog page and overall improvements, thanks Carlos

This commit is contained in:
Jo-Philipp Wich 2008-10-23 16:05:55 +00:00
parent 1fb8929f22
commit 38319cfaa5
2 changed files with 24 additions and 7 deletions

View file

@ -15,5 +15,7 @@ $Id$
<%+header%> <%+header%>
<h2><a id="content" name="content"><%:status%></a></h2> <h2><a id="content" name="content"><%:status%></a></h2>
<h3><%:syslog%></h3> <h3><%:syslog%></h3>
<code><%=luci.util.pcdata(syslog)%></code> <div id="content_syslog">
<textarea readonly="readonly" wrap="off" id="syslog"><%=luci.util.pcdata(syslog)%></textarea>
</div>
<%+footer%> <%+footer%>

View file

@ -333,6 +333,15 @@ html #menubar a:visited.warning {
width: 11.5em; width: 11.5em;
} }
textarea#syslog {
width: 98%;
height: 450px;
border: 3px solid #cccccc;
padding: 5px;
font-family: monospace;
overflow: auto;
}
#maincontent { #maincontent {
clear: both; clear: both;
width: 80%; width: 80%;
@ -347,16 +356,22 @@ html #menubar a:visited.warning {
} }
#maincontent h2 { #maincontent h2 {
margin: 0.25em 0 0.5em 0;
font-size: 150%; font-size: 150%;
font-weight: normal; font-family: Trebuchet MS, Verdana, sans-serif;
font-weight: bold;
margin: 0.25em 0 0.7em 0;
border-bottom: 1px solid;
padding-top: 10px;
padding-bottom: 4px;
} }
#maincontent h3 { #maincontent h3 {
margin: 0.5em 0; margin: 0.5em 0 1.1em 0;
font-size: 120%; font-size: 125%;
font-weight: normal; font-weight: bold;
text-decoration: underline; font-style: italic;
font-family: Trebuchet MS, Verdana, sans-serif;
color: #27408B;
} }
#maincontent p { #maincontent p {