mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
d25245414c
Summary: Fixes T8012. The line height here with the stock Segoe font are causing some overflow issues. I guess Segoe bleeds out of the line-height bounding box. Test Plan: Test Chrome, IE on Windows, Chrome on Mac. Seems spiffy to me. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8012 Differential Revision: https://secure.phabricator.com/D12646
86 lines
1.9 KiB
CSS
86 lines
1.9 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};
|
|
}
|
|
|
|
.phabricator-side-menu .phui-list-item-selected {
|
|
background-color: {$hovergrey};
|
|
border-left: 4px solid {$sky};
|
|
}
|
|
|
|
.device-desktop .phabricator-side-menu .phui-list-item-selected
|
|
a.phui-list-item-href:hover {
|
|
background-color: {$hoverselectedgrey};
|
|
}
|
|
|
|
.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: {$hovergrey};
|
|
}
|
|
|
|
.device-desktop .phabricator-icon-nav .phabricator-nav-column-background,
|
|
.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;
|
|
}
|
|
|
|
.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;
|
|
}
|