mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
cc20a6c4d3
Summary: Ref T8099. Makes subheaders in object lists darker with a background. Moves to lighter icons in the header with a dark instead of blue hover state. Gives a nicer blue selected state for sidenavs. Test Plan: Just eyeballing a lot of this, but with some level of consistency. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13065
90 lines
2 KiB
CSS
90 lines
2 KiB
CSS
/**
|
|
* @provides phabricator-side-menu-view-css
|
|
*/
|
|
|
|
.phabricator-side-menu .phui-list-item-view {
|
|
display: block;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
font-size: 13px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.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-side-menu .phui-list-item-selected {
|
|
background-color: {$lightsky};
|
|
border-left: 4px solid {$sky};
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
|
|
.device-desktop .phabricator-side-menu .phui-list-item-selected
|
|
a.phui-list-item-href:hover {
|
|
background-color: rgba(0,0,0,.05);
|
|
}
|
|
|
|
.phabricator-side-menu .phui-list-item-selected .phui-list-item-href {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.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-side-menu a.phui-list-item-href:hover {
|
|
text-decoration: none;
|
|
background-color: rgba(0,0,0,.05);
|
|
}
|
|
|
|
.device-desktop .phabricator-icon-nav .phabricator-nav-local {
|
|
width: 40px;
|
|
}
|
|
|
|
.device-desktop .phabricator-icon-nav .phabricator-nav-content {
|
|
margin-left: 41px;
|
|
}
|
|
|
|
.phabricator-icon-nav .phabricator-side-menu .phui-list-item-href {
|
|
height: 40px;
|
|
width: 40px;
|
|
padding: 0;
|
|
}
|
|
|
|
.phabricator-icon-nav .phabricator-side-menu .phui-list-item-icon {
|
|
font-size: 20px;
|
|
width: 40px;
|
|
line-height: 38px;
|
|
text-align: center;
|
|
vertical-align: bottom;
|
|
text-shadow: {$whitetextshadow};
|
|
}
|
|
|
|
.phabricator-icon-nav .phabricator-side-menu .phui-list-item-selected {
|
|
border: none;
|
|
}
|
|
|
|
.phabricator-icon-nav .phabricator-side-menu .phui-list-item-selected
|
|
.phui-icon-view {
|
|
color: {$sky};
|
|
}
|
|
|
|
.phabricator-icon-nav .phui-icon-view.phuihead-small {
|
|
height: 24px;
|
|
width: 24px;
|
|
border: 1px solid #fff;
|
|
background-size: 24px;
|
|
display: inline-block;
|
|
margin: 7px;
|
|
}
|