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
21 lines
323 B
CSS
21 lines
323 B
CSS
/**
|
|
* @provides global-drag-and-drop-css
|
|
*/
|
|
|
|
.phabricator-global-upload-instructions {
|
|
text-align: center;
|
|
position: fixed;
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
|
|
margin: 0 10%;
|
|
width: 80%;
|
|
left: 0;
|
|
top: 30%;
|
|
padding: 18px 0;
|
|
|
|
color: #ffffff;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
border-radius: 18px;
|
|
|
|
}
|