diff options
author | Jared Dillard <jdillard@netgate.com> | 2017-01-24 10:04:18 -0600 |
---|---|---|
committer | Jared Dillard <jdillard@netgate.com> | 2017-01-24 10:04:30 -0600 |
commit | d9bad9e8863bb91cb568b3b41470e22a20d9fa6e (patch) | |
tree | da0f46c9d22ee4039191c5eabdf8a421ab8332ad /src/usr/local/www/css | |
parent | f7d54cdde66fb2c6ff0ae6077027604490baa1da (diff) | |
download | pfsense-d9bad9e8863bb91cb568b3b41470e22a20d9fa6e.zip pfsense-d9bad9e8863bb91cb568b3b41470e22a20d9fa6e.tar.gz |
change opacity on disabled rows to fix #6448
Diffstat (limited to 'src/usr/local/www/css')
-rw-r--r-- | src/usr/local/www/css/pfSense-dark.css | 18 | ||||
-rw-r--r-- | src/usr/local/www/css/pfSense.css | 21 |
2 files changed, 37 insertions, 2 deletions
diff --git a/src/usr/local/www/css/pfSense-dark.css b/src/usr/local/www/css/pfSense-dark.css index 2852fa3..cc095b1 100644 --- a/src/usr/local/www/css/pfSense-dark.css +++ b/src/usr/local/www/css/pfSense-dark.css @@ -281,6 +281,24 @@ caption { background-color: #303030; } +.table-striped>tbody>tr.disabled:nth-of-type(odd) { + background-color: rgba(48, 48, 48, .5); + color: rgba(255,255,255,.5); +} + +.table-striped>tbody>tr.disabled:nth-of-type(even) { + background-color: rgba(66, 66, 66, .5); + color: rgba(255,255,255,.5); +} + +.table-hover>tbody>tr.disabled:hover, .table-striped>tbody>tr.disabled:nth-of-type(odd):hover, .table-striped>tbody>tr.disabled:nth-of-type(even):hover { + background-color: rgba(117, 117, 117, .5); +} + +tr.disabled a { + color: rgba(0, 150, 136,.5); +} + .table-bordered { border: 1px solid #303030; } diff --git a/src/usr/local/www/css/pfSense.css b/src/usr/local/www/css/pfSense.css index 10be63d..d15f081 100644 --- a/src/usr/local/www/css/pfSense.css +++ b/src/usr/local/www/css/pfSense.css @@ -92,11 +92,28 @@ wbr:after { font-family: Roboto, sans-serif; } -tr.disabled td, -tr.disabled th { +.table-striped>tbody>tr.disabled:nth-of-type(odd) { + background-color: rgba(249, 249, 249, .5); + color: rgba(51,51,51,.5); +} + +.table-striped>tbody>tr.disabled:nth-of-type(even) { + background-color: rgba(255, 255, 255, .5); + color: rgba(51,51,51,.5); +} + +.table-hover>tbody>tr.disabled:hover { + background-color: rgba(245, 245, 245, .5); +} + +tr.disabled i.fa { opacity: .5; } +tr.disabled a { + color: rgba(51, 122, 183, .5) +} + .contains-table table { border: 1px solid #ddd; } |