* luci/libs/cbi: better layout for apply output
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 8 Sep 2008 16:51:50 +0000 (16:51 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 8 Sep 2008 16:51:50 +0000 (16:51 +0000)
* luci/themes: introduce new css class for apply ul

libs/cbi/luasrc/view/cbi/map.htm
themes/fledermaus/htdocs/luci-static/fledermaus/cascade.css
themes/openwrt-light/htdocs/luci-static/openwrt-light/cascade.css
themes/openwrt.org/htdocs/luci-static/openwrt.org/cascade.css

index 1238b6a..6378f72 100644 (file)
@@ -16,19 +16,21 @@ $Id$
 <div class="cbi-map" id="cbi-<%=self.config%>">
        <h1><%=self.title%></h1>
        <div class="cbi-map-descr"><%=self.description%></div>
-       <%- if self._apply then -%><code><%:cbi_applying%>:
-       
-<% 
-                       local fp = self._apply()
-                       self._apply = nil
-                       local line = fp:read()
-                       while line do
-                               write(line.."\n")
-                               line = fp:read()
-                       end
-                       fp:close()
-               -%>
-       </code><%- end -%>
+       <%- if self._apply then -%>
+               <fieldset class="cbi-section">
+                       <legend><%:cbi_applying%></legend>
+                       <ul class="cbi-apply"><%-
+                               local fp = self._apply()
+                               self._apply = nil
+                               local line = fp:read()
+                               while line do
+                                       write("<li>" .. luci.util.pcdata(line) .. "</li>\n")
+                                       line = fp:read()
+                               end
+                               fp:close()
+                       -%></ul>
+               </fieldset>
+       <%- end -%>
        <%- self:render_children() %>
        <br />
 </div>
index 4663ff5..7deeaeb 100644 (file)
@@ -507,6 +507,10 @@ td.cbi-value-error {
        padding: 3px;
 }
 
+ul.cbi-apply {
+       font-size: 90%;
+}
+
 .right {
        text-align: right;
 }
index dd6fe5e..064b4e6 100644 (file)
@@ -492,6 +492,10 @@ td.cbi-value-error {
        padding: 3px;
 }
 
+ul.cbi-apply {
+       font-size: 90%;
+}
+
 .right {
        text-align: right;
 }
index bc01339..3f44f20 100644 (file)
@@ -222,6 +222,10 @@ div#content ul {
        background-color: inherit;
 }
 
+ul.cbi-apply {
+       font-size: 90%;
+}
+
 input[type=submit],
 input[type=reset],
 input[type=image],