mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
1c84d2719c
Summary: Ref T8099, Ref T8614. Reasonable attempt at a larger font size PostProcessor, will need additional UI cleanup (places where we fix height) but overall very decent. Test Plan: Use lots of the UI elements with new font sizes. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099, T8614 Differential Revision: https://secure.phabricator.com/D13457
73 lines
1.5 KiB
CSS
73 lines
1.5 KiB
CSS
/**
|
|
* @provides conpherence-notification-css
|
|
*/
|
|
|
|
/* kill styles on phabricator-notification */
|
|
.conpherence-notification {
|
|
padding: 0;
|
|
}
|
|
|
|
.phabricator-notification .conpherence-menu-item-view {
|
|
display: block;
|
|
height: 46px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
text-decoration: none;
|
|
border-bottom: none;
|
|
border-right: 0;
|
|
border-left: 0;
|
|
}
|
|
|
|
.phabricator-notification .conpherence-menu-item-view
|
|
.conpherence-menu-item-image {
|
|
top: 8px;
|
|
left: 8px;
|
|
display: block;
|
|
position: absolute;
|
|
width: 30px;
|
|
height: 30px;
|
|
background-size: 100%;
|
|
box-shadow: {$borderinset};
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.phabricator-notification .conpherence-menu-item-view
|
|
.conpherence-menu-item-title {
|
|
display: block;
|
|
margin-top: 8px;
|
|
margin-left: 46px;
|
|
text-align: left;
|
|
font-weight: bold;
|
|
font-size: {$normalfontsize};
|
|
color: {$darkgreytext};
|
|
width: 314px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phabricator-notification .conpherence-menu-item-view
|
|
.conpherence-menu-item-subtitle {
|
|
display: block;
|
|
color: {$lightgreytext};
|
|
font-size: {$smallestfontsize};
|
|
margin-top: 2px;
|
|
margin-left: 46px;
|
|
width: 290px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phabricator-notification .conpherence-menu-item-view
|
|
.conpherence-menu-item-unread-count {
|
|
position: absolute;
|
|
right: 8px;
|
|
top: 15px;
|
|
background: {$blue};
|
|
border-radius: 2px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
padding: 0 5px 1px;
|
|
font-size: {$smallestfontsize};
|
|
}
|