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
74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
/**
|
|
* @provides phabricator-crumbs-view-css
|
|
*/
|
|
|
|
.device .phabricator-crumbs-view {
|
|
display: none;
|
|
}
|
|
|
|
.phabricator-crumbs-view {
|
|
background-color: #d8dce2;
|
|
height: 31px;
|
|
overflow: hidden;
|
|
vertical-align: top;
|
|
|
|
box-shadow: 0 1px rgba(0, 0, 0, 0.25);
|
|
|
|
/* TODO: Position this over the slider for Differential's file tree view.
|
|
Remove this once that gets sorted out. */
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-crumbs-view,
|
|
.phabricator-crumbs-view a.phabricator-crumb-view,
|
|
.phabricator-crumbs-view a.phabricator-crumbs-action {
|
|
color: #3d3d3d;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
.phabricator-crumbs-view a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.phabricator-crumb-view {
|
|
display: inline-block;
|
|
height: 31px;
|
|
line-height: 31px;
|
|
}
|
|
|
|
.phabricator-crumb-icon {
|
|
display: inline-block;
|
|
width: 28px;
|
|
height: 28px;
|
|
margin: 2px 2px 0 13px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phabricator-crumbs-actions {
|
|
float: right;
|
|
}
|
|
|
|
.phabricator-crumbs-action {
|
|
display: inline-block;
|
|
height: 17px;
|
|
padding: 8px 14px 8px 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-crumbs-action .sprite-icon {
|
|
width: 14px;
|
|
height: 14px;
|
|
left: 4px;
|
|
top: 9px;
|
|
position: absolute;
|
|
}
|
|
|
|
.phabricator-crumb-divider {
|
|
display: inline-block;
|
|
width: 9px;
|
|
height: 31px;
|
|
vertical-align: top;
|
|
margin: 0 9px;
|
|
}
|