Fix menu z-index

This commit is contained in:
Jay Trees 2022-03-28 13:40:14 +02:00
parent 7e348a1119
commit f089e14873
5 changed files with 9 additions and 9 deletions

View file

@ -61,7 +61,7 @@
border-radius: 0.33333333rem; border-radius: 0.33333333rem;
-webkit-transition: opacity 0.1s ease; -webkit-transition: opacity 0.1s ease;
transition: opacity 0.1s ease; transition: opacity 0.1s ease;
z-index: 11; z-index: 103;
will-change: transform, opacity; will-change: transform, opacity;
} }
.ui.dropdown .menu > * { .ui.dropdown .menu > * {
@ -951,7 +951,7 @@ select.ui.dropdown {
color: rgba(0, 0, 0, 0.95); color: rgba(0, 0, 0, 0.95);
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
z-index: 12; z-index: 104;
} }
/*-------------------- /*--------------------
@ -963,7 +963,7 @@ select.ui.dropdown {
.ui.dropdown .menu > .item:hover { .ui.dropdown .menu > .item:hover {
background: rgba(0, 0, 0, 0.05); background: rgba(0, 0, 0, 0.05);
color: rgba(0, 0, 0, 0.95); color: rgba(0, 0, 0, 0.95);
z-index: 13; z-index: 105;
} }
/*-------------------- /*--------------------

File diff suppressed because one or more lines are too long

View file

@ -10644,7 +10644,7 @@ body.dimmable > .dimmer {
border-radius: 0.33333333rem; border-radius: 0.33333333rem;
-webkit-transition: opacity 0.1s ease; -webkit-transition: opacity 0.1s ease;
transition: opacity 0.1s ease; transition: opacity 0.1s ease;
z-index: 11; z-index: 103;
will-change: transform, opacity; will-change: transform, opacity;
} }
@ -11635,7 +11635,7 @@ select.ui.dropdown {
color: rgba(0, 0, 0, 0.95); color: rgba(0, 0, 0, 0.95);
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
z-index: 12; z-index: 104;
} }
/*-------------------- /*--------------------
@ -11647,7 +11647,7 @@ select.ui.dropdown {
.ui.dropdown .menu > .item:hover { .ui.dropdown .menu > .item:hover {
background: rgba(0, 0, 0, 0.05); background: rgba(0, 0, 0, 0.05);
color: rgba(0, 0, 0, 0.95); color: rgba(0, 0, 0, 0.95);
z-index: 13; z-index: 105;
} }
/*-------------------- /*--------------------

File diff suppressed because one or more lines are too long

View file

@ -40,7 +40,7 @@
@menuBorderRadius: @borderRadius; @menuBorderRadius: @borderRadius;
@menuTransition: opacity @defaultDuration @defaultEasing; @menuTransition: opacity @defaultDuration @defaultEasing;
@menuMinWidth: e(%("calc(100%% + %d)", @menuBorderWidth * 2)); @menuMinWidth: e(%("calc(100%% + %d)", @menuBorderWidth * 2));
@menuZIndex: 11; @menuZIndex: 103;
/* Text */ /* Text */
@textLineHeight: 1em; @textLineHeight: 1em;