mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-25 08:15:35 +00:00
372b5f2f28
1. clone() breaks the flyout layout in IE7 2. inline-block needs some adjustment for IE7 Change-Id: I014318aacb15000f132c4e4af74f5ea40a064712
157 lines
3.1 KiB
CSS
157 lines
3.1 KiB
CSS
.mw-echo-overlay {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: -200px;
|
|
border: 1px solid silver;
|
|
background-color: #fff;
|
|
width: 450px;
|
|
min-height: 2em;
|
|
padding: 0;
|
|
color: #6D6D6D;
|
|
z-index: 100;
|
|
box-shadow: 0px 3px 8px rgba(50, 50, 50, 0.35);
|
|
}
|
|
.mw-echo-overlay-pokey {
|
|
/* @embed */
|
|
background-image: url('PokeyNorth.png');
|
|
background-repeat: no-repeat;
|
|
width: 21px;
|
|
height: 11px;
|
|
position: absolute;
|
|
z-index: 101;
|
|
top: 20px;
|
|
left: -5px;
|
|
}
|
|
|
|
#p-personal .mw-echo-overlay ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: auto;
|
|
}
|
|
#p-personal .mw-echo-overlay li.mw-echo-notification {
|
|
background-color: #F1F1F1;
|
|
display: block;
|
|
float: none;
|
|
border-bottom: 1px solid #DDDDDD;
|
|
padding: 15px 40px 10px 10px;
|
|
margin: 0;
|
|
white-space: normal;
|
|
font-size: 13px;
|
|
line-height: 16px;
|
|
}
|
|
#p-personal .mw-echo-overlay li.mw-echo-notification:hover {
|
|
background-color: #F9F9F9;
|
|
}
|
|
#p-personal .mw-echo-overlay li.mw-echo-notification.mw-echo-unread {
|
|
background-color: white;
|
|
}
|
|
#p-personal .mw-echo-overlay li.mw-echo-notification.mw-echo-unread:hover {
|
|
background-color: #F9F9F9;
|
|
}
|
|
#p-personal .mw-echo-overlay li.mw-echo-notification:last-child {
|
|
border-bottom: none;
|
|
}
|
|
#p-personal .mw-echo-title a {
|
|
font-weight: bold;
|
|
}
|
|
#p-personal .mw-echo-overlay a.mw-echo-grey-link {
|
|
color: #6D6D6D;
|
|
}
|
|
|
|
.mw-echo-notification-primary-link {
|
|
display: none;
|
|
}
|
|
.mw-echo-overlay-title {
|
|
/*border-bottom: 1px solid #A7D7F9;*/
|
|
font-size: 13px;
|
|
line-height: 15px;
|
|
height: 15px;
|
|
padding: 15px 15px 15px 28px;
|
|
border-bottom: 1px solid #DDDDDD;
|
|
position: relative;
|
|
}
|
|
#mw-echo-overlay-title-text {
|
|
display: inline-block;
|
|
*display: inline;
|
|
zoom: 1;
|
|
}
|
|
#mw-echo-overlay-moreinfo-link {
|
|
display: inline-block;
|
|
margin: 0px 2px -1px 4px;
|
|
height: 13px;
|
|
width: 13px;
|
|
/* @embed */
|
|
background-image: url(Help.png);
|
|
background-repeat: no-repeat;
|
|
background-position: 0 0;
|
|
filter: alpha(opacity=50);
|
|
opacity: 0.5;
|
|
}
|
|
#mw-echo-overlay-moreinfo-link:hover {
|
|
filter: alpha(opacity=100);
|
|
opacity: 1.0;
|
|
}
|
|
|
|
#mw-echo-overlay-footer {
|
|
padding: 0px;
|
|
border-top: 1px solid #DDDDDD;
|
|
}
|
|
|
|
#mw-echo-overlay-link {
|
|
display: block;
|
|
clear: left;
|
|
float: left;
|
|
padding: 15px 15px 15px 60px;
|
|
/* 149px instead of 150px due to Chrome rounding bug (bug 47897) */
|
|
width: 149px;
|
|
min-height: 14px;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
/* @embed */
|
|
background: url(../icons/NotificationsPage-ltr.png) no-repeat 17% 50% !important;
|
|
}
|
|
#mw-echo-overlay-link:hover {
|
|
text-decoration: none;
|
|
}
|
|
#mw-echo-overlay-pref-link {
|
|
display: block;
|
|
float: left;
|
|
width: 174px;
|
|
min-height: 14px;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
padding: 15px 15px 15px 35px;
|
|
border-left: 1px solid #DDDDDD;
|
|
/* @embed */
|
|
background: url(../icons/Settings.png) no-repeat 5% 50% !important;
|
|
}
|
|
#mw-echo-overlay-pref-link:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
#pt-notifications {
|
|
position: relative;
|
|
}
|
|
|
|
.mw-echo-overlay-none {
|
|
font-size: 13px;
|
|
border-bottom: 1px solid #DDDDDD;
|
|
padding: 15px 15px 10px 60px;
|
|
}
|
|
|
|
#mw-echo-mark-read-button {
|
|
position: absolute;
|
|
bottom: 12px;
|
|
right: 15px;
|
|
padding: 1px 8px;
|
|
font-size: 11px;
|
|
line-height: 15px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
#mw-echo-overlay-feedback-link {
|
|
position: absolute;
|
|
bottom: 12px;
|
|
right: 15px;
|
|
}
|