diff options
author | Anna Koskinen <Ansku@users.noreply.github.com> | 2018-08-21 08:51:56 +0300 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2018-08-21 08:51:56 +0300 |
commit | 779070c9612bbd3691d5f01e7f685a4e6329a7fa (patch) | |
tree | 425a6d8b05d3000c426a81d279a2ecb6ebc3a02a /themes | |
parent | c10d96b43cc6882c993fb2db7c24e3bc82f96855 (diff) | |
download | vaadin-framework-779070c9612bbd3691d5f01e7f685a4e6329a7fa.tar.gz vaadin-framework-779070c9612bbd3691d5f01e7f685a4e6329a7fa.zip |
Lift frozen columns up to allow some z-index changes beneath them. (#11117)
Fixes #9787
Diffstat (limited to 'themes')
-rw-r--r-- | themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss index cfc094cb27..813f39d753 100644 --- a/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss +++ b/themes/src/main/themes/VAADIN/themes/valo/components/_grid.scss @@ -214,6 +214,8 @@ $v-grid-details-border-bottom-stripe: 1px solid darken($v-grid-row-background-co &.frozen { @include box-shadow(1px 0 2px rgba(0,0,0,.1)); border-right: $v-grid-cell-vertical-border; + position:relative; + z-index: 11; @if $v-grid-cell-vertical-border and $v-grid-cell-vertical-border != none { + th, |