mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-25 08:15:35 +00:00
af06e26de6
Includes new web preferences for Echo Also adding ability to set dismissability per notification type Still need to arrange subscription options into a friendly format Still need to add dismiss functionality to flyout Change-Id: I484a24b424e69be3640e63b76f82735edae6f13a
59 lines
1 KiB
CSS
59 lines
1 KiB
CSS
.mw-echo-title {
|
|
font-size: 13px;
|
|
line-height: 16px;
|
|
font-weight: normal;
|
|
}
|
|
.mw-echo-content {
|
|
font-size: 13px;
|
|
line-height: 16px;
|
|
overflow: hidden;
|
|
}
|
|
.mw-echo-payload {
|
|
margin-top: 0.5em;
|
|
}
|
|
.mw-echo-timestamp {
|
|
color: #A5A5A5;
|
|
margin-top: 0.1em;
|
|
font-size: 9px;
|
|
}
|
|
.mw-echo-notifications {
|
|
background-color: #EEEEEE;
|
|
}
|
|
.mw-echo-notification {
|
|
clear: both;
|
|
display: block;
|
|
color: #6D6D6D;
|
|
line-height: 90%;
|
|
margin: 0;
|
|
min-height: 40px;
|
|
background-color: white;
|
|
position: relative;
|
|
/* Force container to expand to height of floated contents */
|
|
overflow: hidden;
|
|
zoom: 1;
|
|
}
|
|
.mw-echo-close-box {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
width: 23px;
|
|
height: 23px;
|
|
z-index: 3;
|
|
/* @embed */
|
|
background-image: url(DismissOnRowHover.png);
|
|
background-repeat: no-repeat;
|
|
}
|
|
.mw-echo-close-box:hover {
|
|
/* @embed */
|
|
background-image: url(DismissOnHover.png);
|
|
}
|
|
.mw-echo-dismiss {
|
|
padding-left: 45px;
|
|
background-color: #EDEDEE;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
.mw-echo-dismiss-message {
|
|
}
|