summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorOlli Tietäväinen <ollit@vaadin.com>2018-12-21 15:54:19 +0200
committerGitHub <noreply@github.com>2018-12-21 15:54:19 +0200
commit1ce66549018d471ac41eae59ab72562b69007537 (patch)
treee465930d4e9b06de1b95b565d1d7a965eef5d7d0 /themes
parent0cfbee6ed5663d928a31def30d111733eae93731 (diff)
downloadvaadin-framework-1ce66549018d471ac41eae59ab72562b69007537.tar.gz
vaadin-framework-1ce66549018d471ac41eae59ab72562b69007537.zip
increase number of styles for indented TreeGrid rows, fixes #11358 (#11392)
Diffstat (limited to 'themes')
-rw-r--r--themes/src/main/themes/VAADIN/themes/valo/components/_treegrid.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/valo/components/_treegrid.scss b/themes/src/main/themes/VAADIN/themes/valo/components/_treegrid.scss
index ca2078e410..5536a36904 100644
--- a/themes/src/main/themes/VAADIN/themes/valo/components/_treegrid.scss
+++ b/themes/src/main/themes/VAADIN/themes/valo/components/_treegrid.scss
@@ -55,7 +55,8 @@ $v-treegrid-class-depth: depth !default;
// Hierarchy depth styling
.#{$primary-stylename}-node {
- @for $i from 0 through 15 {
+ // see https://github.com/vaadin/framework/issues/11358
+ @for $i from 0 through 31 {
&.#{$v-treegrid-class-depth}-#{$i} {
padding-left: $v-treegrid-indent * $i;
}