mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
39 lines
730 B
CSS
39 lines
730 B
CSS
|
/**
|
||
|
* @provides phabricator-menu-view-css
|
||
|
*/
|
||
|
|
||
|
.phabricator-menu-item-view {
|
||
|
display: block;
|
||
|
margin: 0 0 2px;
|
||
|
white-space: nowrap;
|
||
|
text-decoration: none;
|
||
|
font-weight: bold;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
.phabricator-menu-item-type-link {
|
||
|
padding: 3px 8px 3px 24px;
|
||
|
}
|
||
|
|
||
|
.phabricator-menu-item-type-label {
|
||
|
padding: 6px 8px 3px 12px;
|
||
|
color: #333333;
|
||
|
text-transform: uppercase;
|
||
|
font-size: 11px;
|
||
|
}
|
||
|
|
||
|
.phabricator-menu-item-type-spacer {
|
||
|
padding: 8px 0;
|
||
|
}
|
||
|
|
||
|
.device-desktop a.phabricator-menu-item-type-link:hover {
|
||
|
text-decoration: none;
|
||
|
/* TODO: Swap this back to #e7e7e7? */
|
||
|
background: #a1bbe5;
|
||
|
}
|
||
|
|
||
|
.phabricator-menu-item-selected,
|
||
|
.device-desktop a.phabricator-menu-item-selected:hover {
|
||
|
background: #d7d7d7;
|
||
|
}
|