mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
e3f6bbfff8
Summary: As per discussion, this primes the existing mobile menu / menu button for "phabricator" and "application" menus. Design here is very rough, I'm just trying to get everything laid in functionally first. It's based on `frame_v3.png` but missing a lot of touches. Test Plan: {F26143} {F26144} Reviewers: chad Reviewed By: chad CC: aran Maniphest Tasks: T1960 Differential Revision: https://secure.phabricator.com/D4058
38 lines
896 B
CSS
38 lines
896 B
CSS
/**
|
|
* @provides phabricator-side-menu-view-css
|
|
*/
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-view {
|
|
display: block;
|
|
margin: 0 0 2px;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-type-link {
|
|
padding: 3px 8px 3px 24px;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-type-label {
|
|
padding: 6px 8px 3px 12px;
|
|
color: #333333;
|
|
text-transform: uppercase;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-type-spacer {
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.device-desktop .phabricator-side-menu a.phabricator-menu-item-type-link:hover {
|
|
text-decoration: none;
|
|
/* TODO: Swap this back to #e7e7e7? */
|
|
background: #a1bbe5;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-selected,
|
|
.device-desktop .phabricator-side-menu a.phabricator-menu-item-selected:hover {
|
|
background: #d7d7d7;
|
|
}
|