* luci/themes: fix help text styles in openwrt.org theme
[project/luci.git] / libs / cbi / luasrc / view / cbi / full_valuefooter.htm
index 5a52898..a01f6bd 100644 (file)
@@ -14,8 +14,13 @@ $Id$
 -%>
 
                <% if #self.description > 0 then -%>
-                       <span class="cbi-value-helpicon"><img src="<%=resource%>/cbi/help.gif" alt="<%:help%>" /></span>
-                       <div class="cbi-value-description"><%=self.description%></div>
+                       <% if not luci.util.instanceof( self, luci.cbi.Flag ) then -%>
+                               <br />
+                       <%- end %>
+                       <div class="cbi-value-description">
+                               <span class="cbi-value-helpicon"><img src="<%=resource%>/cbi/help.gif" alt="<%:help%>" /></span>
+                               <%=self.description%>
+                       </div>
                <%- end %>
        <%- if self.title and #self.title > 0 then -%>
        </div>
@@ -34,7 +39,15 @@ $Id$
 <% if #self.deps > 0 then -%>
        <script type="text/javascript">
                <% for j, d in ipairs(self.deps) do -%>
-                       cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
+                       cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option..d.add%>", {
+               <%-
+                       for k,v in pairs(d.deps) do
+               -%>
+                       <%-=string.format('"cbid.%s.%s.%s"', self.config, section, k) .. ":" .. string.format("%q", v)-%>,
+               <%-
+                       end
+               -%>
+                       });
                <%- end %>
        </script>
 <%- end %>