mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 12:42:43 +01:00
84 lines
1.4 KiB
CSS
84 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;
|
||
|
}
|