mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
0699d8f402
First implementation of "two line" formatting. Messages have a title and optional content. Distinguishing writing on "your talk page" from another talk page in messages. Change-Id: I9051e4bfb66d1c25c1bf68ec092b52fd90544336
62 lines
1,003 B
CSS
62 lines
1,003 B
CSS
.mw-echo-overlay {
|
|
position: absolute;
|
|
top: 2em;
|
|
right: 5em;
|
|
border: 1px solid #A7D7F9;
|
|
background-color: #fff;
|
|
width: 450px;
|
|
min-height: 2em;
|
|
padding: 15px;
|
|
padding-left: 0;
|
|
color: #252525;
|
|
|
|
-moz-border-radius: 5px;
|
|
-webkit-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.mw-echo-overlay ul {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.mw-echo-overlay li {
|
|
/* border-bottom: 1px solid #A7D7F9;*/
|
|
display: block;
|
|
}
|
|
|
|
.mw-echo-overlay-title {
|
|
/*border-bottom: 1px solid #A7D7F9;*/
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.mw-echo-overlay-link a {
|
|
font-size: 0.8em !important;
|
|
color: #3366bb !important;
|
|
}
|
|
|
|
.mw-echo-overlay-link {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
#pt-notifications .mw-badge {
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.mw-echo-overlay .mw-echo-notification {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.mw-echo-overlay .mw-echo-unread {
|
|
/* @embed */
|
|
background-image: url(unread.png);
|
|
background-repeat: repeat-y;
|
|
background-position: top left;
|
|
}
|
|
|
|
#pt-notifications .mw-badge {
|
|
margin-left: 3px;
|
|
}
|