diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-09-11 00:36:25 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-09-11 00:36:25 +0200 |
commit | ed994d5825f92ef9f17eee5923b7193d1040c0b6 (patch) | |
tree | 28c76ea3a0c9af5e10dbc3db8ea0a5b7806d3e42 | |
parent | bb8d3806aba559657b5098ab57fc1a905400ecd8 (diff) | |
download | cacert-devel-ed994d5825f92ef9f17eee5923b7193d1040c0b6.tar.gz cacert-devel-ed994d5825f92ef9f17eee5923b7193d1040c0b6.tar.xz cacert-devel-ed994d5825f92ef9f17eee5923b7193d1040c0b6.zip |
bug 1208: Only one attribute per line for CSS styles
-rw-r--r-- | www/styles/default.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/www/styles/default.css b/www/styles/default.css index cc1db7a..bdaa855 100644 --- a/www/styles/default.css +++ b/www/styles/default.css @@ -673,25 +673,29 @@ div.footerbar { } .accountdetail.fname { - color:#600; font-style: italic; font-weight: bold; + color:#600; background-color: #ffeeee; background-color: rgba(102, 0, 0, 0.05); } .accountdetail.mname { - color:#060; font-style:italic; + color:#060; + font-style:italic; background-color: #f0fff0; background-color: rgba(0, 102, 0, 0.05); } .accountdetail.lname { - color:#006; font-weight:bold; + color:#006; + font-weight:bold; background-color: #f0fef0; background-color: rgba(0, 0, 102, 0.05); } .accountdetail.suffix { color:#660; + font-style: italic; + font-weight: bold; background-color: #ffffdd; background-color: rgba(102, 102, 0, 0.05); } |