Update Khufu's file retrieval system
This commit is contained in:
parent
fe36970476
commit
79b381b302
10 changed files with 86 additions and 78 deletions
|
@ -1,5 +1,5 @@
|
|||
@import "global/colors", "global/fonts", "global/measurements",
|
||||
"global/animations";
|
||||
"global/animations", "global/zindex";
|
||||
html,
|
||||
body {
|
||||
margin-left: auto;
|
||||
|
|
4
src/stash/scss/global/_zindex.scss
Normal file
4
src/stash/scss/global/_zindex.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
$stashbarIndex: 200;
|
||||
$contextMenuIndex: 300;
|
||||
$fudIndex: 100;
|
||||
$downloadsIndex: 100;
|
|
@ -6,7 +6,7 @@
|
|||
background: lighten($sectionMenuOptions, 10%);
|
||||
box-shadow: 1px 3px 2px lighten ($sectionMenuOptions, 5%);
|
||||
color: $foreground;
|
||||
z-index: 300;
|
||||
z-index: $contextMenuIndex;
|
||||
width: 100%;
|
||||
max-width: inherit;
|
||||
font-size: 1rem;
|
||||
|
|
|
@ -16,7 +16,7 @@ $actionButtonSize: 25px;
|
|||
max-height: 250px;
|
||||
overflow: hidden;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
z-index: 100;
|
||||
z-index: $fudIndex;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
.stashbar {
|
||||
width: 100%;
|
||||
z-index: 200;
|
||||
z-index: $stashbarIndex;
|
||||
}
|
||||
.stashbar-menu {
|
||||
width: 100%;
|
||||
|
|
Reference in a new issue