2014-08-07 21:06:03 +00:00
|
|
|
.mw-echo-title {
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-07 21:03:32 +00:00
|
|
|
@offset: 200px;
|
2014-08-07 21:06:03 +00:00
|
|
|
@chevronHeight: 11px;
|
2012-06-01 10:57:09 +00:00
|
|
|
.mw-echo-overlay {
|
|
|
|
position: absolute;
|
2014-08-07 21:06:03 +00:00
|
|
|
top: 30px + @chevronHeight;
|
2012-11-20 02:00:34 +00:00
|
|
|
border: 1px solid silver;
|
2012-06-01 10:57:09 +00:00
|
|
|
background-color: #fff;
|
2012-07-31 00:29:49 +00:00
|
|
|
width: 450px;
|
2012-06-01 10:57:09 +00:00
|
|
|
min-height: 2em;
|
2012-12-22 00:43:41 +00:00
|
|
|
padding: 0;
|
2012-11-30 23:58:54 +00:00
|
|
|
color: #6D6D6D;
|
2013-04-30 20:51:16 +00:00
|
|
|
z-index: 100;
|
2014-05-27 18:28:37 +00:00
|
|
|
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.35);
|
2014-08-07 21:03:32 +00:00
|
|
|
|
|
|
|
// IE8
|
|
|
|
&:before,
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
background-image: url('PokeyNorth.png');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 21px;
|
2014-08-07 21:06:03 +00:00
|
|
|
height: @chevronHeight;
|
2014-08-07 21:03:32 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: 101;
|
2014-08-07 21:06:03 +00:00
|
|
|
top: -@chevronHeight;
|
2014-08-07 21:03:32 +00:00
|
|
|
// subtract half the width from the offset and then add the left box shadow
|
|
|
|
left: @offset - 10px + 3px;
|
|
|
|
}
|
2013-01-10 04:13:08 +00:00
|
|
|
}
|
2012-06-01 10:57:09 +00:00
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
.mw-echo-title {
|
2014-08-05 00:32:01 +00:00
|
|
|
// Automatically makes any text too long in a single line capped by ellipsis
|
|
|
|
// @todo .truncated-text() doesn't really apply here because we don't want white-space changed
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
// Helper class to be used to force single-line text in overlay
|
|
|
|
.mw-echo-title-heading {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
.mw-echo-overlay {
|
2014-08-12 01:54:34 +00:00
|
|
|
button {
|
|
|
|
top: 15px;
|
|
|
|
right: 15px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2014-08-11 23:40:20 +00:00
|
|
|
.mw-ui-progressive {
|
|
|
|
cursor: pointer;
|
2014-08-06 19:29:17 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
a.mw-echo-grey-link {
|
|
|
|
color: #6D6D6D;
|
|
|
|
}
|
2014-08-04 18:43:27 +00:00
|
|
|
|
2014-08-12 01:54:34 +00:00
|
|
|
.mw-echo-notifications,
|
2014-08-05 18:41:16 +00:00
|
|
|
ul {
|
|
|
|
overflow: auto;
|
2014-08-07 21:06:03 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2014-08-05 18:41:16 +00:00
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
li.mw-echo-notification {
|
|
|
|
display: block;
|
|
|
|
padding: 0;
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
&:hover {
|
2014-08-04 21:46:01 +00:00
|
|
|
.mw-echo-notification-wrapper {
|
2014-08-05 18:41:16 +00:00
|
|
|
background-color: #F9F9F9;
|
2014-08-04 21:46:01 +00:00
|
|
|
}
|
2014-08-05 18:41:16 +00:00
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
.mw-echo-notification-wrapper {
|
|
|
|
display: block;
|
|
|
|
background-color: #F1F1F1;
|
|
|
|
border-bottom: 1px solid #DDDDDD;
|
|
|
|
padding: 15px 40px 10px 10px;
|
|
|
|
white-space: normal;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 16px;
|
|
|
|
/* Suppress standard links styles */
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
&.mw-echo-unread {
|
|
|
|
.mw-echo-notification-wrapper {
|
|
|
|
background-color: white;
|
2014-08-04 21:46:01 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 18:41:16 +00:00
|
|
|
&:hover {
|
2014-08-04 21:46:01 +00:00
|
|
|
.mw-echo-notification-wrapper {
|
2014-08-05 18:41:16 +00:00
|
|
|
background-color: #F9F9F9;
|
2014-08-04 21:46:01 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-12 17:17:19 +00:00
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 0;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
}
|
2014-08-04 18:43:27 +00:00
|
|
|
}
|
2014-08-05 18:41:16 +00:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
.mw-echo-notification-wrapper {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
2014-08-04 18:43:27 +00:00
|
|
|
}
|
2013-08-05 21:10:08 +00:00
|
|
|
}
|
2014-08-04 18:43:27 +00:00
|
|
|
|
2013-06-12 23:18:26 +00:00
|
|
|
.mw-echo-notification-primary-link {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2012-06-08 06:07:57 +00:00
|
|
|
.mw-echo-overlay-title {
|
2012-11-30 23:58:54 +00:00
|
|
|
font-size: 13px;
|
2013-04-17 01:00:21 +00:00
|
|
|
line-height: 15px;
|
|
|
|
padding: 15px 15px 15px 28px;
|
2012-11-30 23:58:54 +00:00
|
|
|
border-bottom: 1px solid #DDDDDD;
|
2014-08-12 01:54:34 +00:00
|
|
|
|
|
|
|
button {
|
|
|
|
line-height: 15px;
|
|
|
|
font: inherit;
|
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2014-08-07 21:06:03 +00:00
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
font-size: 1em;
|
|
|
|
margin-left: 0;
|
2014-08-06 19:29:17 +00:00
|
|
|
|
|
|
|
&::after {
|
2014-08-07 21:06:03 +00:00
|
|
|
content: " · ";
|
|
|
|
padding: 0 .25em;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
}
|
2014-08-06 19:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-25 04:35:04 +00:00
|
|
|
#mw-echo-overlay-title-text {
|
2013-11-30 00:50:34 +00:00
|
|
|
display: inline;
|
2013-07-29 19:50:07 +00:00
|
|
|
zoom: 1;
|
2013-11-30 00:50:34 +00:00
|
|
|
white-space: normal;
|
2013-04-25 04:35:04 +00:00
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2013-04-30 19:33:59 +00:00
|
|
|
#mw-echo-overlay-moreinfo-link {
|
2013-04-25 04:35:04 +00:00
|
|
|
display: inline-block;
|
2014-05-27 18:28:37 +00:00
|
|
|
margin: 0 2px -1px 4px;
|
2013-04-25 04:35:04 +00:00
|
|
|
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;
|
2014-08-04 21:46:01 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
2013-04-25 04:35:04 +00:00
|
|
|
}
|
2012-06-08 06:07:57 +00:00
|
|
|
|
2012-12-22 00:43:41 +00:00
|
|
|
#mw-echo-overlay-footer {
|
2014-05-27 18:28:37 +00:00
|
|
|
padding: 0;
|
2012-12-28 22:40:39 +00:00
|
|
|
border-top: 1px solid #DDDDDD;
|
2013-08-21 00:33:24 +00:00
|
|
|
display: table;
|
2014-05-27 17:17:03 +00:00
|
|
|
width: 100%;
|
2013-08-21 00:33:24 +00:00
|
|
|
|
2014-08-04 21:46:01 +00:00
|
|
|
a {
|
|
|
|
float: none;
|
|
|
|
display: table-cell;
|
|
|
|
}
|
2012-12-22 00:43:41 +00:00
|
|
|
}
|
|
|
|
|
2012-12-17 21:58:18 +00:00
|
|
|
#mw-echo-overlay-link {
|
2013-04-03 00:47:40 +00:00
|
|
|
display: block;
|
2012-11-07 01:38:01 +00:00
|
|
|
clear: left;
|
2012-12-10 05:01:00 +00:00
|
|
|
float: left;
|
2013-08-21 00:33:24 +00:00
|
|
|
padding: 15px 15px 15px 45px;
|
2012-12-10 05:01:00 +00:00
|
|
|
min-height: 14px;
|
2013-01-10 04:13:08 +00:00
|
|
|
font-size: 13px;
|
2013-06-12 23:18:26 +00:00
|
|
|
font-weight: bold;
|
2012-12-10 05:01:00 +00:00
|
|
|
/* @embed */
|
2013-08-21 00:33:24 +00:00
|
|
|
background: url(../icons/NotificationsPage-ltr.png) no-repeat 20px 15px !important;
|
|
|
|
white-space: normal;
|
2014-08-04 21:46:01 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2012-12-10 05:01:00 +00:00
|
|
|
}
|
2014-08-04 21:46:01 +00:00
|
|
|
|
2012-12-17 21:58:18 +00:00
|
|
|
#mw-echo-overlay-pref-link {
|
2013-04-03 00:47:40 +00:00
|
|
|
display: block;
|
2012-12-10 05:01:00 +00:00
|
|
|
float: left;
|
|
|
|
min-height: 14px;
|
2013-01-10 04:13:08 +00:00
|
|
|
font-size: 13px;
|
2013-06-12 23:18:26 +00:00
|
|
|
font-weight: bold;
|
2013-08-21 00:33:24 +00:00
|
|
|
padding: 15px 15px 15px 45px;
|
2012-12-22 00:43:41 +00:00
|
|
|
border-left: 1px solid #DDDDDD;
|
2012-12-10 05:01:00 +00:00
|
|
|
/* @embed */
|
2013-08-21 00:33:24 +00:00
|
|
|
background: url(../icons/Settings.png) no-repeat 20px 15px !important;
|
|
|
|
white-space: normal;
|
2014-08-04 21:46:01 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2013-06-12 23:18:26 +00:00
|
|
|
}
|
2012-06-08 06:07:57 +00:00
|
|
|
|
2012-08-01 19:53:05 +00:00
|
|
|
.mw-echo-overlay-none {
|
2012-12-17 21:58:18 +00:00
|
|
|
font-size: 13px;
|
|
|
|
border-bottom: 1px solid #DDDDDD;
|
|
|
|
padding: 15px 15px 10px 60px;
|
2012-08-31 21:50:46 +00:00
|
|
|
}
|
2013-04-17 01:00:21 +00:00
|
|
|
|
2013-05-09 23:11:22 +00:00
|
|
|
#mw-echo-overlay-feedback-link {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 12px;
|
|
|
|
right: 15px;
|
|
|
|
}
|