diff options
author | Matti Tahvonen <matti@vaadin.com> | 2015-09-24 23:10:33 +0300 |
---|---|---|
committer | Markus Koivisto <markus@vaadin.com> | 2015-09-30 14:16:53 +0300 |
commit | 21d0bce519ec3e218b309b9673813694c520a37a (patch) | |
tree | 7adf7ced9d68aadd9c5d78fd17657254f51c9d76 | |
parent | 7228df5b09b12ca8b0fa86bc736a033e9e043066 (diff) | |
download | vaadin-framework-21d0bce519ec3e218b309b9673813694c520a37a.tar.gz vaadin-framework-21d0bce519ec3e218b309b9673813694c520a37a.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
-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; |