mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
82 lines
1.6 KiB
CSS
82 lines
1.6 KiB
CSS
|
/**
|
||
|
* @provides conpherence-notification-css
|
||
|
*/
|
||
|
|
||
|
/* kill styles on phabricator-notification */
|
||
|
.conpherence-notification {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.phabricator-notification .conpherence-menu-item-view {
|
||
|
display: block;
|
||
|
height: 55px;
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
text-decoration: none;
|
||
|
border-bottom: solid 1px #E9E9E9;
|
||
|
border-right: 0;
|
||
|
border-left: 2px solid transparent;
|
||
|
}
|
||
|
|
||
|
.phabricator-notification .conpherence-menu-item-view
|
||
|
.conpherence-menu-item-image {
|
||
|
top: 6px;
|
||
|
left: 6px;
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
width: 35px;
|
||
|
height: 35px;
|
||
|
background-size: 35px;
|
||
|
border: 4px solid #DEDEDE;
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
.phabricator-notification .conpherence-menu-item-view
|
||
|
.conpherence-menu-item-title {
|
||
|
display: block;
|
||
|
margin-top: 12px;
|
||
|
margin-left: 58px;
|
||
|
text-align: left;
|
||
|
font-weight: bold;
|
||
|
font-size: 13px;
|
||
|
color: #333;
|
||
|
overflow: hidden;
|
||
|
width: 220px;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
.phabricator-notification .conpherence-menu-item-view
|
||
|
.conpherence-menu-item-subtitle {
|
||
|
display: block;
|
||
|
color: #a1a5a9;
|
||
|
font-size: 11px;
|
||
|
margin-top: 2px;
|
||
|
margin-left: 58px;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.phabricator-notification .conpherence-menu-item-view
|
||
|
.conpherence-menu-item-unread-count {
|
||
|
position: absolute;
|
||
|
left: 35px;
|
||
|
top: 3px;
|
||
|
background: #f00;
|
||
|
border-radius: 10px;
|
||
|
color: white;
|
||
|
font-weight: bold;
|
||
|
padding: 1px 6px 2px;
|
||
|
border: 1px solid #a00;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
.phabricator-notification .conpherence-menu-item-view
|
||
|
.conpherence-menu-item-date {
|
||
|
position: absolute;
|
||
|
top: 15px;
|
||
|
right: 16px;
|
||
|
color: #a1a5a9;
|
||
|
font-size: 11px;
|
||
|
}
|
||
|
|