diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-22 13:25:48 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-22 13:25:48 +0000 |
commit | b360dbc6dcd283d7ce70217701f57a4e2601ee99 (patch) | |
tree | 65024d5107a37ae763885774ad7aea0544e86081 /modules/freifunk/luasrc | |
parent | edff83040d92b94835db3837a053041e1f9f025b (diff) |
modules/admin-full, modules/freifunk, modules/niu, libs/web, applications/luci-upnp: tune input class attributes
Diffstat (limited to 'modules/freifunk/luasrc')
-rw-r--r-- | modules/freifunk/luasrc/view/cbi/osmll_value.htm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/freifunk/luasrc/view/cbi/osmll_value.htm b/modules/freifunk/luasrc/view/cbi/osmll_value.htm index c368b67bd..78b4dff91 100644 --- a/modules/freifunk/luasrc/view/cbi/osmll_value.htm +++ b/modules/freifunk/luasrc/view/cbi/osmll_value.htm @@ -19,7 +19,7 @@ $Id$ <% end %> <% if self.popup then %> - <input class="cbi-input-button" type="button"<%= attr("name", cbid..".button")..attr("id", cbid..".button")..attr("value", self.displaytext)%> + <input class="cbi-button cbi-input-button" type="button"<%= attr("name", cbid..".button")..attr("id", cbid..".button")..attr("value", self.displaytext)%> onclick=" popup=window.open('/luci-static/resources/OSMLatLon.htm', '<%=cbid%>.window', 'innerWidth=<%=self.width%>, innerHeight=<%=self.height%>, location=no, menubar=no, scrollbars=no, status=no, toolbar=no'); popup.focus(); @@ -28,7 +28,7 @@ $Id$ </div> <div> <% else %> - <input class="cbi-input-button" type="button"<%= attr("name", cbid..".displayosm")..attr("id", cbid..".displayosm")..attr("value", self.displaytext)%> + <input class="cbi-button cbi-input-button" type="button"<%= attr("name", cbid..".displayosm")..attr("id", cbid..".displayosm")..attr("value", self.displaytext)%> onclick=" document.getElementById('<%=cbid..".hideosm"%>').style.display='inline'; document.getElementById('<%=cbid..".displayosm"%>').style.display='none'; @@ -40,7 +40,7 @@ $Id$ } " /> - <input class="cbi-input-button" style="display:none" type="button"<%= attr("name", cbid..".hideosm")..attr("id", cbid..".hideosm")..attr("value", self.hidetext)%> + <input class="cbi-button cbi-input-button" style="display:none" type="button"<%= attr("name", cbid..".hideosm")..attr("id", cbid..".hideosm")..attr("value", self.hidetext)%> onclick=" document.getElementById('<%=cbid..".displayosm"%>').style.display='inline'; document.getElementById('<%=cbid..".hideosm"%>').style.display='none'; |