diff options
author | Matt Friedman <maf675@gmail.com> | 2012-12-25 09:49:05 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2012-12-25 09:49:05 -0800 |
commit | e3b11c4ecf2eab5e9e1f077fda71e0facc2a063b (patch) | |
tree | 9ae3618062a88da28ea0e651120be706c7bd1779 /phpBB/styles/prosilver/theme/colours.css | |
parent | 30356efab9503f44c26c6eebe6421911cd70ec64 (diff) | |
download | forums-e3b11c4ecf2eab5e9e1f077fda71e0facc2a063b.tar forums-e3b11c4ecf2eab5e9e1f077fda71e0facc2a063b.tar.gz forums-e3b11c4ecf2eab5e9e1f077fda71e0facc2a063b.tar.bz2 forums-e3b11c4ecf2eab5e9e1f077fda71e0facc2a063b.tar.xz forums-e3b11c4ecf2eab5e9e1f077fda71e0facc2a063b.zip |
[ticket/11103-VSE] Updated notification AJAX styling
PHPBB3-11103
Diffstat (limited to 'phpBB/styles/prosilver/theme/colours.css')
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 0043e7f5bc..a71d6ee557 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -1046,7 +1046,11 @@ input.disabled { #notification_list { background-color: #FFFFFF; - border-color: #00608F; + border-color: #B9B9B9; +} + +#notification_list ul li { + border-bottom-color: #B9B9B9; } #notification_list ul li:hover { @@ -1055,5 +1059,26 @@ input.disabled { } #notification_list > .header, .notification_list > .footer { - border-color: #00608F; + border-color: #B9B9B9; + border-bottom-color: #B9B9B9; + color: #000000; +} + +#notification_list > .header { + background: #F1F8FF; + background: -moz-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F1F8FF), color-stop(100%, #CADCEB)); + background: -webkit-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%); + background: -o-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%); + background: -ms-linear-gradient(top, #F1F8FF 0%, #CADCEB 100%); + background: linear-gradient(to bottom, #F1F8FF 0%, #CADCEB 100%); } + +.notification_list .pointer { + border-bottom-color: #ADADAD; +} + +.notification_list .pointer_inner { + border-bottom-color: #F1F8FF; +} + |