mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
69d91fa1b6
Basically having fun with the code analyzer. Also: * remove unused local variable assignments * missing return values * CSS optimizations. * Initialize possible unset variables. Change-Id: I77aa08ecb48eeda08f14dc38d7f35d57ea9fa110
33 lines
436 B
CSS
33 lines
436 B
CSS
.mw-echo-timestamp {
|
|
color: gray;
|
|
font-size: 9px;
|
|
}
|
|
|
|
.mw-echo-unread {
|
|
background: url(unread.png) repeat-y top left;
|
|
}
|
|
|
|
div.mw-echo-timestamp {
|
|
text-align: right;
|
|
}
|
|
|
|
.mw-echo-title {
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
line-height: 12px;
|
|
}
|
|
|
|
.mw-echo-content {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.mw-echo-notification {
|
|
clear: both;
|
|
display: block;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
color: #252525;
|
|
height: 42px;
|
|
overflow: none;
|
|
}
|