diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-15 20:30:32 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-15 20:30:32 +0000 |
commit | 323a7bd6fad48328968beb155e0b32d61c63b941 (patch) | |
tree | 3a8089955539408f3b0cf9b145ce5561cb2972c8 /themes/bootstrap | |
parent | 30b2719c4a8ca09b11235d21445e72d28887f975 (diff) |
themes/bootstrap: add styling for uci changelog
Diffstat (limited to 'themes/bootstrap')
-rw-r--r-- | themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css index 6c1e3e320..d1d26c97f 100644 --- a/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -1535,3 +1535,61 @@ td.cbi-value-field var { font-style: italic; color: #0069D6; } +.uci-change-list { + font-family: monospace; +} +.uci-change-list ins, +.uci-change-legend-label ins { + text-decoration: none; + border: 1px solid #00FF00; + background-color: #CCFFCC; + display: block; + padding: 2px; +} +.uci-change-list del, +.uci-change-legend-label del { + text-decoration: none; + border: 1px solid #FF0000; + background-color: #FFCCCC; + display: block; + font-style: normal; + padding: 2px; +} +.uci-change-list var, +.uci-change-legend-label var { + text-decoration: none; + border: 1px solid #CCCCCC; + background-color: #EEEEEE; + display: block; + font-style: normal; + padding: 2px; +} +.uci-change-list var ins, +.uci-change-list var del { + /*display: inline;*/ + border: none; + white-space: pre; + font-style: normal; + padding: 0px; +} +.uci-change-legend { + padding: 5px; +} +.uci-change-legend-label { + width: 150px; + float: left; +} +.uci-change-legend-label>ins, +.uci-change-legend-label>del, +.uci-change-legend-label>var { + float: left; + margin-right: 4px; + width: 10px; + height: 10px; + display: block; +} +.uci-change-legend-label var ins, +.uci-change-legend-label var del { + line-height: 6px; + border: none; +} |