diff options
author | Matti Tahvonen <matti@vaadin.com> | 2015-09-24 23:10:33 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-09-28 12:48:29 +0000 |
commit | f2a3d4d570e345a7505656ad77799ee5b4d14385 (patch) | |
tree | f8ad0ebf4f30200cb350bd2dddd3764141f3a0d1 /WebContent | |
parent | 808297cb940524d7629751be7f347b751a0e97b6 (diff) | |
download | vaadin-framework-f2a3d4d570e345a7505656ad77799ee5b4d14385.tar.gz vaadin-framework-f2a3d4d570e345a7505656ad77799ee5b4d14385.zip |
Use a suitable z-index for valo-menuitems overlay (#18869)
The floating menu should have a high z-index not to be below components that
use z-index, still below floating vaadin elements like windows, notifications and tooltips.
Change-Id: I0ae5d2612ba50ca703f2e604891a25db4bc1d75a
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_valo-menu.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_valo-menu.scss b/WebContent/VAADIN/themes/valo/components/_valo-menu.scss index 6022cf7334..48ba22174b 100644 --- a/WebContent/VAADIN/themes/valo/components/_valo-menu.scss +++ b/WebContent/VAADIN/themes/valo/components/_valo-menu.scss @@ -226,7 +226,7 @@ $valo-menu-background-color: scale-color($v-app-background-color, $lightness: if .valo-menuitems { @include valo-menu-style; position: fixed; - z-index: 200; + z-index: 9000; top: $v-unit-size; bottom: 0; height: auto; |