mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
37a51bddf9
Summary: Ref T8099, lots of little tweaks, mostly to icon nav. Test Plan: Test side navigation elements on home, workboards, conpherence, and maniphest Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13456
108 lines
2.5 KiB
CSS
108 lines
2.5 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: rgba(0,0,0,.05);
|
|
border-left: 4px solid {$blue};
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phabricator-icon-nav .phabricator-side-menu .phui-list-item-selected {
|
|
background-color: rgba(0,0,0,.1);
|
|
}
|
|
|
|
.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,.07);
|
|
}
|
|
|
|
.device-desktop .phabricator-icon-nav a.phui-list-item-href:hover
|
|
.phui-list-item-icon {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.device-desktop .phabricator-icon-nav .phabricator-nav-local {
|
|
width: 40px;
|
|
margin-top: 16px;
|
|
border-color: {$lightblueborder};
|
|
border-width: 1px 1px 1px 0;
|
|
border-style: solid;
|
|
background-color: #fff;
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
|
|
.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};
|
|
color: {$blue};
|
|
}
|
|
|
|
.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: {$darkbluetext};
|
|
}
|
|
|
|
.phabricator-icon-nav .phui-icon-view.phuihead-small {
|
|
height: 24px;
|
|
width: 24px;
|
|
border: 1px solid #fff;
|
|
background-size: 24px;
|
|
display: inline-block;
|
|
margin: 7px;
|
|
}
|