2012-12-22 00:43:41 +00:00
|
|
|
/* Echo specific CSS */
|
|
|
|
|
2012-12-07 01:08:33 +00:00
|
|
|
#mw-echo-more {
|
2013-04-09 22:38:36 +00:00
|
|
|
display: block;
|
2012-12-07 01:08:33 +00:00
|
|
|
text-align: center;
|
2012-12-22 00:43:41 +00:00
|
|
|
font-size: 13px;
|
|
|
|
max-width: 600px;
|
2012-12-07 01:08:33 +00:00
|
|
|
}
|
|
|
|
|
2013-08-04 12:28:25 +00:00
|
|
|
/* Custom header styling for Vector and Monobook skins */
|
|
|
|
.skin-vector #firstHeading,
|
|
|
|
.skin-monobook #firstHeading {
|
2013-08-04 12:29:53 +00:00
|
|
|
max-width: 600px;
|
2013-08-04 12:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Special styles to use if we're converting subtitle links into header icons */
|
2013-06-02 20:04:29 +00:00
|
|
|
#firstHeading .mw-echo-special-header-link {
|
2013-04-11 20:02:06 +00:00
|
|
|
display: block;
|
2013-04-12 18:52:34 +00:00
|
|
|
height: 19px;
|
|
|
|
width: 19px;
|
2013-06-02 20:04:29 +00:00
|
|
|
}
|
|
|
|
#firstHeading #mw-echo-pref-link {
|
|
|
|
float: right;
|
|
|
|
margin: 5px 3px;
|
2012-12-13 01:51:13 +00:00
|
|
|
/* @embed */
|
2012-12-27 15:37:58 +00:00
|
|
|
background-image: url(Preferences.png);
|
2012-12-13 01:51:13 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 0;
|
2013-04-12 18:52:34 +00:00
|
|
|
filter: alpha(opacity=50);
|
|
|
|
opacity: 0.5;
|
2012-12-07 01:08:33 +00:00
|
|
|
}
|
2013-06-02 20:04:29 +00:00
|
|
|
#firstHeading #mw-echo-pref-link:hover {
|
2013-04-12 18:52:34 +00:00
|
|
|
filter: alpha(opacity=100);
|
|
|
|
opacity: 1.0;
|
2012-12-27 15:37:58 +00:00
|
|
|
}
|
2013-06-02 20:04:29 +00:00
|
|
|
#firstHeading #mw-echo-moreinfo-link {
|
2013-04-12 18:52:34 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin: 0px 3px;
|
2013-01-04 21:56:30 +00:00
|
|
|
/* @embed */
|
2013-04-12 18:52:34 +00:00
|
|
|
background-image: url(Help.png);
|
2013-01-04 21:56:30 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 0;
|
2013-04-12 18:52:34 +00:00
|
|
|
filter: alpha(opacity=50);
|
|
|
|
opacity: 0.5;
|
2013-01-04 21:56:30 +00:00
|
|
|
}
|
2013-06-02 20:04:29 +00:00
|
|
|
#firstHeading #mw-echo-moreinfo-link:hover {
|
2013-04-12 18:52:34 +00:00
|
|
|
filter: alpha(opacity=100);
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
2012-12-07 01:08:33 +00:00
|
|
|
.mw-echo-date-section {
|
|
|
|
font-weight: 800;
|
2012-12-13 01:51:13 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
text-transform: uppercase;
|
2013-04-15 23:18:35 +00:00
|
|
|
border-bottom: 1px solid #C9C9C9;
|
|
|
|
margin: 30px 0 5px 50px;
|
|
|
|
color: #686868;
|
2013-07-12 22:31:21 +00:00
|
|
|
max-width: 550px;
|
2012-12-13 01:51:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul#mw-echo-special-container {
|
2013-08-04 12:56:32 +00:00
|
|
|
list-style: none none;
|
|
|
|
padding: 0;
|
2012-12-13 01:51:13 +00:00
|
|
|
margin: 30px 0 0 0;
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
.mw-echo-notification {
|
2013-02-13 02:08:36 +00:00
|
|
|
padding: 15px 35px 10px 0;
|
|
|
|
}
|
2013-03-05 02:13:56 +00:00
|
|
|
#mw-echo-special-container .mw-echo-notification {
|
2013-08-04 12:56:32 +00:00
|
|
|
background-color: transparent;
|
2013-03-05 02:13:56 +00:00
|
|
|
}
|
|
|
|
#mw-echo-special-container .mw-echo-notification:hover {
|
2013-08-04 12:56:32 +00:00
|
|
|
/* Fallback for IE<=8 */
|
2013-04-15 23:18:35 +00:00
|
|
|
background-color: #F6F6F6;
|
2013-08-04 12:56:32 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.035);
|
2013-03-05 02:13:56 +00:00
|
|
|
}
|
2013-04-15 23:18:35 +00:00
|
|
|
#mw-echo-special-container .mw-echo-notification.mw-echo-unread .mw-echo-title {
|
|
|
|
font-weight: bold;
|
2013-03-05 02:13:56 +00:00
|
|
|
}
|