Fix menu z-index
This commit is contained in:
parent
7e348a1119
commit
f089e14873
5 changed files with 9 additions and 9 deletions
6
semantic/dist/components/dropdown.css
vendored
6
semantic/dist/components/dropdown.css
vendored
|
@ -61,7 +61,7 @@
|
|||
border-radius: 0.33333333rem;
|
||||
-webkit-transition: opacity 0.1s ease;
|
||||
transition: opacity 0.1s ease;
|
||||
z-index: 11;
|
||||
z-index: 103;
|
||||
will-change: transform, opacity;
|
||||
}
|
||||
.ui.dropdown .menu > * {
|
||||
|
@ -951,7 +951,7 @@ select.ui.dropdown {
|
|||
color: rgba(0, 0, 0, 0.95);
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
z-index: 12;
|
||||
z-index: 104;
|
||||
}
|
||||
|
||||
/*--------------------
|
||||
|
@ -963,7 +963,7 @@ select.ui.dropdown {
|
|||
.ui.dropdown .menu > .item:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
color: rgba(0, 0, 0, 0.95);
|
||||
z-index: 13;
|
||||
z-index: 105;
|
||||
}
|
||||
|
||||
/*--------------------
|
||||
|
|
2
semantic/dist/components/dropdown.min.css
vendored
2
semantic/dist/components/dropdown.min.css
vendored
File diff suppressed because one or more lines are too long
6
semantic/dist/semantic.css
vendored
6
semantic/dist/semantic.css
vendored
|
@ -10644,7 +10644,7 @@ body.dimmable > .dimmer {
|
|||
border-radius: 0.33333333rem;
|
||||
-webkit-transition: opacity 0.1s ease;
|
||||
transition: opacity 0.1s ease;
|
||||
z-index: 11;
|
||||
z-index: 103;
|
||||
will-change: transform, opacity;
|
||||
}
|
||||
|
||||
|
@ -11635,7 +11635,7 @@ select.ui.dropdown {
|
|||
color: rgba(0, 0, 0, 0.95);
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
z-index: 12;
|
||||
z-index: 104;
|
||||
}
|
||||
|
||||
/*--------------------
|
||||
|
@ -11647,7 +11647,7 @@ select.ui.dropdown {
|
|||
.ui.dropdown .menu > .item:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
color: rgba(0, 0, 0, 0.95);
|
||||
z-index: 13;
|
||||
z-index: 105;
|
||||
}
|
||||
|
||||
/*--------------------
|
||||
|
|
2
semantic/dist/semantic.min.css
vendored
2
semantic/dist/semantic.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -40,7 +40,7 @@
|
|||
@menuBorderRadius: @borderRadius;
|
||||
@menuTransition: opacity @defaultDuration @defaultEasing;
|
||||
@menuMinWidth: e(%("calc(100%% + %d)", @menuBorderWidth * 2));
|
||||
@menuZIndex: 11;
|
||||
@menuZIndex: 103;
|
||||
|
||||
/* Text */
|
||||
@textLineHeight: 1em;
|
||||
|
|
Loading…
Reference in a new issue