mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
923dc42e1a
Summary: We have enough z-index rules that they're fairly hard to visualize with "git grep". Consolidate them. Then fix T2253 (missing z-index on left menu background). Test Plan: Made a Differential window really narrow, then scrolled it horizontally. Reviewers: btrahan, chad, ender Reviewed By: chad CC: aran Maniphest Tasks: T2253 Differential Revision: https://secure.phabricator.com/D4302
66 lines
1.3 KiB
CSS
66 lines
1.3 KiB
CSS
/**
|
|
* @provides phabricator-nav-view-css
|
|
*/
|
|
|
|
.jx-drag-col {
|
|
cursor: col-resize;
|
|
}
|
|
|
|
.phabricator-nav-column-background {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 179px;
|
|
background: #ececec;
|
|
border-right: 1px solid #999c9e;
|
|
box-shadow: inset -3px 0 4px rgba(0, 0, 0, 0.05);
|
|
background-image: url(/rsrc/image/menu_texture.png);
|
|
}
|
|
|
|
.phabricator-nav-column-background,
|
|
.phabricator-nav-local,
|
|
.phabricator-nav-drag {
|
|
display: none;
|
|
}
|
|
|
|
.device-desktop .has-local-nav .phabricator-nav-column-background,
|
|
.device-desktop .has-local-nav .phabricator-nav-local,
|
|
.device-desktop .has-local-nav .phabricator-nav-drag {
|
|
display: block;
|
|
}
|
|
|
|
.phabricator-nav-local {
|
|
width: 179px;
|
|
position: absolute;
|
|
left: 0;
|
|
white-space: nowrap;
|
|
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.phabricator-nav-drag {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 179px;
|
|
width: 7px;
|
|
|
|
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 1px rgba(0, 0, 0, 0.15);
|
|
|
|
background-image: url(/rsrc/image/divot.png);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.device-desktop .has-local-nav .phabricator-nav-content {
|
|
margin-left: 180px;
|
|
}
|
|
|