mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
830c2410eb
Summary: This adds a new menu item, TYPEBUTTON, for use in Conpherence and maybe others over time. Note I need to add icon support, but I'll make them later tonight. I also changed the front facing names to 'Conversations' which is way more natural. Basically, Pholio has Mocks, Differential has Diffs, Conpherence has Conversations. Test Plan: Tested Conpherence on mobile and desktop. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2430 Differential Revision: https://secure.phabricator.com/D4691
49 lines
1.1 KiB
CSS
49 lines
1.1 KiB
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;
|
|
}
|
|
|
|
.phabricator-dark-menu .phabricator-menu-item-type-button,
|
|
.phabricator-side-menu .phabricator-menu-item-type-button {
|
|
width: 50%;
|
|
padding: 5px 8px;
|
|
display: block;
|
|
border-radius: 4px;
|
|
border: 2px solid #000;
|
|
margin: 10px auto;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
text-shadow: 0px 1px 1px #000000;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.phabricator-side-menu .phabricator-menu-item-type-button:hover {
|
|
background-image: url(/rsrc/image/texture/dark-menu-hover.png);
|
|
}
|
|
|
|
.device-desktop .phabricator-side-menu a.phabricator-menu-item-type-link:hover {
|
|
text-decoration: none;
|
|
}
|