mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
953f281dc0
Summary: A refresh of Projects including a new navigations UI. - New Navigation UI. - Auto switch default page if Workboard has been initialized - Move Feed to it's own page - Increase 'tasks' on Project Home to 50 over 10 - Fix various display bugs on Workboards - Remove 'crumbs' from Project portal (unneeded). Test Plan: - clicked a link for a project with no workboard and saw the profile - clicked a link for a project with a workboard and saw the workboard - navigated around the various edit pages, inspecting links and making sure things linked back to the new profile uri {F266460} {F266461} {F266462} {F266463} {F266464} Reviewers: epriestley, btrahan Reviewed By: epriestley, btrahan Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11272
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: 40px;
|
|
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;
|
|
}
|