diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2015-08-26 23:33:49 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-09-29 12:06:19 +0000 |
commit | 8638a0786cd3968076ba6aa9b53311c28678f7e8 (patch) | |
tree | 34e9dc5774692330456dcbfdfe05daf9afb5a5e6 /WebContent/VAADIN/themes | |
parent | ca38846dff92c8c8e4cd971106b2c65dae0463c1 (diff) | |
download | vaadin-framework-8638a0786cd3968076ba6aa9b53311c28678f7e8.tar.gz vaadin-framework-8638a0786cd3968076ba6aa9b53311c28678f7e8.zip |
Set opacity for disabled Grid in Valo. (#18661)
Change-Id: I6fe834c6a7ce7695f065d7385f3b6dc1940864a1
Diffstat (limited to 'WebContent/VAADIN/themes')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_grid.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_grid.scss b/WebContent/VAADIN/themes/valo/components/_grid.scss index e9b4d249c7..dd2f0f0761 100644 --- a/WebContent/VAADIN/themes/valo/components/_grid.scss +++ b/WebContent/VAADIN/themes/valo/components/_grid.scss @@ -45,6 +45,10 @@ $v-grid-details-border-bottom-stripe: $v-grid-cell-horizontal-border !default; .#{$primary-stylename} { @include user-select(text); background-color: $v-background-color; + + &.v-disabled { + @include opacity($v-disabled-opacity); + } } .#{$primary-stylename}-header .#{$primary-stylename}-cell { |