mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
c3afddec9c
Summary: Ref T10748. These: - Look nice. - Hint at panel contents / effects. - Hint which panels have been customized. - Allow panels with issues or errors to be highlighted with an alert/attention icon. Test Plan: {F1256156} Reviewers: chad Reviewed By: chad Maniphest Tasks: T10748 Differential Revision: https://secure.phabricator.com/D15836
59 lines
1.5 KiB
CSS
59 lines
1.5 KiB
CSS
/**
|
|
* @provides phabricator-side-menu-view-css
|
|
*/
|
|
|
|
.phabricator-basic-nav .phabricator-side-menu .phui-list-item-view {
|
|
display: block;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
font-size: 13px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.phabricator-basic-nav .phabricator-side-menu .phui-list-item-href {
|
|
display: block;
|
|
padding: 6px 8px 6px 24px;
|
|
color: {$darkbluetext};
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
|
|
.phabricator-basic-nav .phabricator-side-menu .phui-list-item-icon {
|
|
margin-left: -12px;
|
|
text-align: center;
|
|
width: 24px;
|
|
}
|
|
|
|
.phabricator-basic-nav .phabricator-side-menu .phui-list-item-selected {
|
|
background-color: rgba({$alphablack},.05);
|
|
border-left: 4px solid {$sky};
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.device-desktop .phabricator-basic-nav .phabricator-side-menu
|
|
.phui-list-item-selected
|
|
a.phui-list-item-href:hover {
|
|
background-color: rgba({$alphablack},.05);
|
|
}
|
|
|
|
.phabricator-basic-nav .phabricator-side-menu .phui-list-item-selected
|
|
.phui-list-item-href {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.phabricator-basic-nav .phabricator-side-menu .phui-list-item-type-label {
|
|
padding: 6px 8px 4px 12px;
|
|
color: {$darkbluetext};
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
border-style: solid;
|
|
}
|
|
|
|
.device-desktop .phabricator-basic-nav .phabricator-side-menu
|
|
a.phui-list-item-href:hover {
|
|
text-decoration: none;
|
|
background-color: rgba({$alphablack},.07);
|
|
}
|