mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
e61a7bee2f
Summary: Set background colors similar to the background images so slow page loads look nicer. Test Plan: Reload page. Reviewers: epriestley, btrahan, codeblock Reviewed By: codeblock CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4459
30 lines
677 B
CSS
30 lines
677 B
CSS
/**
|
|
* @provides phabricator-side-menu-view-css
|
|
*/
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-view {
|
|
display: block;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-type-link {
|
|
padding: 6px 8px 6px 24px;
|
|
color: #fff;
|
|
text-shadow: rgba(0, 0, 0, 1) 0px -1px 1px;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-type-label {
|
|
padding: 6px 8px 4px 12px;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
border-style: solid;
|
|
background-color: #000;
|
|
}
|
|
|
|
.device-desktop .phabricator-side-menu a.phabricator-menu-item-type-link:hover {
|
|
text-decoration: none;
|
|
}
|