mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 12:12:43 +01:00
c96fac1818
Summary: This allows the nav to be laid out with divs instead of tables and for the navigation column to be made flexible. Design is non-final, this is just a step toward reactive menus that work on tablets/phones and an application menu. I'm going to play around with flexible nav and document navigation and see if that goes anywhere. Test Plan: Will attach screenshots. Reviewers: btrahan, vrana, chad Reviewed By: btrahan CC: aran Maniphest Tasks: T1569 Differential Revision: https://secure.phabricator.com/D3114
83 lines
1.4 KiB
CSS
83 lines
1.4 KiB
CSS
/**
|
|
* @provides phabricator-nav-view-css
|
|
*/
|
|
|
|
.jx-drag-col {
|
|
cursor: col-resize;
|
|
}
|
|
|
|
.phabricator-nav-col {
|
|
position: fixed;
|
|
top: 44px;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 179px;
|
|
|
|
background: #e3e3e3;
|
|
border-right: 1px solid #999c9e;
|
|
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.20);
|
|
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.phabricator-nav-drag {
|
|
position: fixed;
|
|
top: 44px;
|
|
left: 177px;
|
|
width: 7px;
|
|
bottom: 0;
|
|
z-index: 5;
|
|
|
|
cursor: col-resize;
|
|
background: #f5f5f5;
|
|
border-style: solid;
|
|
border-width: 0 1px 0 1px;
|
|
border-color: #fff #999c9e #fff #999c9e;
|
|
|
|
box-shadow: inset -1px 0px 2px rgba(0, 0, 0, 0.15);
|
|
|
|
background-image: url(/rsrc/image/divot.png);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.device-tablet .phabricator-nav-drag,
|
|
.device-phone .phabricator-nav-drag {
|
|
display: none;
|
|
}
|
|
|
|
.phabricator-nav-col a,
|
|
.phabricator-nav-col span {
|
|
display: block;
|
|
}
|
|
|
|
.phabricator-nav-content {
|
|
margin-left: 180px;
|
|
}
|
|
|
|
|
|
.phabricator-nav-col span {
|
|
display: block;
|
|
font-weight: bold;
|
|
padding: 6px 6px 6px 12px;
|
|
color: #222222;
|
|
}
|
|
|
|
.phabricator-nav-col a {
|
|
display: block;
|
|
padding: 3px 6px 3px 24px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.phabricator-nav-col a.aphront-side-nav-selected {
|
|
background: #a1bbe5;
|
|
}
|
|
|
|
.phabricator-nav-col a:hover {
|
|
background: #3875d7;
|
|
color: #ffffff;
|
|
}
|