mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-25 00:05:29 +00:00
08fc83b6de
Removing unused functions and declaring correct dependencies. Targetting to desktop and mobile so it can be used by both. Also removing dismiss-related code from the formatter. Change-Id: Icccce64cfb3c564ab468a93ccdba9c5a61687fd5
52 lines
963 B
CSS
52 lines
963 B
CSS
.mw-echo-title {
|
|
font-size: 13px;
|
|
line-height: 14px;
|
|
font-weight: normal;
|
|
}
|
|
.mw-echo-content {
|
|
font-size: 13px;
|
|
line-height: 16px;
|
|
overflow: hidden;
|
|
}
|
|
.mw-echo-payload {
|
|
margin-top: 0.3em;
|
|
}
|
|
/* Including .mw-echo-timestamp for backwards compat */
|
|
.mw-echo-timestamp, .mw-echo-notification-footer {
|
|
color: #6D6D6D;
|
|
font-size: 9px;
|
|
margin-top: 0.2em;
|
|
}
|
|
.mw-echo-notifications {
|
|
background-color: #EEEEEE;
|
|
}
|
|
.mw-echo-notification {
|
|
clear: both;
|
|
display: block;
|
|
color: #6D6D6D;
|
|
line-height: 90%;
|
|
margin: 0;
|
|
min-height: 30px;
|
|
background-color: white;
|
|
position: relative;
|
|
padding-top: 15px;
|
|
padding-bottom: 10px;
|
|
/* Force container to expand to height of floated contents */
|
|
overflow: hidden;
|
|
zoom: 1;
|
|
}
|
|
.mw-echo-notification.mw-echo-unread {
|
|
color: #252525;
|
|
}
|
|
.mw-echo-notification span.autocomment {
|
|
color: inherit;
|
|
font-style: normal;
|
|
}
|
|
.mw-echo-icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
float: left;
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
}
|