mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 04:23:38 +01:00
[ticket/11103-VSE] Updated notification AJAX styling
PHPBB3-11103
This commit is contained in:
parent
30356efab9
commit
e3b11c4ecf
@ -135,6 +135,7 @@
|
||||
<li>
|
||||
[ <a href="#" id="notification_list_button" title="{NOTIFICATIONS_COUNT}">{NOTIFICATIONS_COUNT}</a> ] •
|
||||
<div id="notification_list" class="notification_list">
|
||||
<div class="pointer"><div class="pointer_inner"></div></div>
|
||||
<div class="header">
|
||||
{L_NOTIFICATIONS}
|
||||
</div>
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -679,8 +679,8 @@ p.rules a {
|
||||
width: 330px;
|
||||
z-index: 1;
|
||||
border: 1px solid;
|
||||
border-radius: 4px;
|
||||
box-shadow: 4px 4px 5px;
|
||||
box-shadow: 3px 3px 5px darkgray;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
#notification_list ul {
|
||||
@ -690,7 +690,7 @@ p.rules a {
|
||||
}
|
||||
|
||||
#notification_list ul li {
|
||||
width: ;
|
||||
width: 310px;
|
||||
padding: 10px;
|
||||
margin: 0;
|
||||
float: left;
|
||||
@ -700,24 +700,20 @@ p.rules a {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#notification_list ul li {
|
||||
width: 310px;
|
||||
}
|
||||
|
||||
#notification_list ul li:last-child {
|
||||
border-bottom: 0px;
|
||||
}
|
||||
|
||||
#notification_list > .header {
|
||||
padding: 0 5px;
|
||||
padding: 0 10px;
|
||||
font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-transform: uppercase;
|
||||
line-height: 30px;
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
#notification_list > .footer {
|
||||
text-align: center;
|
||||
font-size: 1.2em;
|
||||
border-top: 1px solid;
|
||||
}
|
||||
|
||||
#notification_list ul li a, .notification_list dt > a, #notification_list > .footer > a {
|
||||
@ -744,3 +740,27 @@ p.rules a {
|
||||
.notification_list ul.topiclist dt {
|
||||
width: 88%;
|
||||
}
|
||||
|
||||
.notification_list .pointer, .notification_list .pointer_inner {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top-width: 0;
|
||||
border-bottom: 10px solid;
|
||||
border-left: 10px dashed transparent;
|
||||
border-right: 10px dashed transparent;
|
||||
display: block;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.notification_list .pointer {
|
||||
right: auto;
|
||||
left: 10px;
|
||||
top: -11px;
|
||||
}
|
||||
|
||||
.notification_list .pointer_inner {
|
||||
top: auto;
|
||||
bottom: -11px;
|
||||
left: -10px;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user