diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-14 15:07:50 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-14 15:07:50 +0000 |
commit | 8e44175a79f9085284d843d8fab3225ff18bf5eb (patch) | |
tree | 51e64d5c9e67c066630eb0a84c0e161d6b7b1064 | |
parent | 75f849ca583119e510ff41a2ff3579517ee10526 (diff) |
themes/openwrt: implement CSS classes for up and down buttons
-rw-r--r-- | themes/openwrt/htdocs/luci-static/openwrt.org/cascade.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/openwrt/htdocs/luci-static/openwrt.org/cascade.css b/themes/openwrt/htdocs/luci-static/openwrt.org/cascade.css index 90ee1ff9f..cbc62b18f 100644 --- a/themes/openwrt/htdocs/luci-static/openwrt.org/cascade.css +++ b/themes/openwrt/htdocs/luci-static/openwrt.org/cascade.css @@ -515,6 +515,18 @@ div.cbi-section-remove input { padding-right: 1px; } +input.cbi-button-up { + background-image: url('../resources/cbi/up.gif'); + padding-left: 11px; + padding-right: 1px; +} + +input.cbi-button-down { + background-image: url('../resources/cbi/down.gif'); + padding-left: 11px; + padding-right: 1px; +} + .cbi-input-invalid { background-image: url('../resources/cbi/reset.gif'); background-repeat: no-repeat; |