mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
16331eab92
Change-Id: Ibfbdb2a9f170e1d9b30b50e8639aee25101e71d6
78 lines
1.4 KiB
CSS
78 lines
1.4 KiB
CSS
/* Core CSS overrides */
|
|
|
|
span.comment {
|
|
font-style: normal;
|
|
}
|
|
span.autocomment {
|
|
font-style: italic;
|
|
}
|
|
h1#firstHeading {
|
|
max-width: 555px;
|
|
margin-left: 45px;
|
|
}
|
|
|
|
/* Echo specific CSS */
|
|
|
|
#mw-echo-more {
|
|
text-align: center;
|
|
font-size: 13px;
|
|
max-width: 600px;
|
|
margin-left: 45px;
|
|
}
|
|
|
|
#mw-echo-pref-link {
|
|
margin: 5px 3px;
|
|
height: 18px;
|
|
width: 18px;
|
|
display: block;
|
|
float: right;
|
|
/* @embed */
|
|
background-image: url(Preferences.png);
|
|
background-repeat: no-repeat;
|
|
background-position: 0 0;
|
|
}
|
|
#mw-echo-pref-link:hover {
|
|
/* @embed */
|
|
background-image: url(PreferencesHover.png);
|
|
}
|
|
#mw-echo-moreinfo-link {
|
|
margin: 5px 3px;
|
|
height: 18px;
|
|
width: 18px;
|
|
display: block;
|
|
float: right;
|
|
/* @embed */
|
|
background-image: url(MoreInfo.png);
|
|
background-repeat: no-repeat;
|
|
background-position: 0 0;
|
|
}
|
|
#mw-echo-moreinfo-link:hover {
|
|
/* @embed */
|
|
background-image: url(MoreInfoHover.png);
|
|
}
|
|
|
|
.mw-echo-date-section {
|
|
font-weight: 800;
|
|
font-size: 1.1em;
|
|
text-transform: uppercase;
|
|
border-bottom: 8px solid #EAEAEA;
|
|
margin: 20px 0 5px 45px;
|
|
}
|
|
|
|
ul#mw-echo-special-container {
|
|
list-style: none;
|
|
margin: 30px 0 0 0;
|
|
max-width: 600px;
|
|
}
|
|
.mw-echo-notification {
|
|
padding: 15px 35px 10px 0;
|
|
}
|
|
#mw-echo-special-container .mw-echo-notification .mw-echo-state {
|
|
filter: alpha(opacity=50);
|
|
opacity: 0.5;
|
|
}
|
|
#mw-echo-special-container .mw-echo-notification.mw-echo-unread .mw-echo-state {
|
|
filter: alpha(opacity=100);
|
|
opacity: 1.0;
|
|
}
|