]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix wrong color variable for selectedGrid rows (#16532)
authorJouni Koivuviita <jouni@vaadin.com>
Thu, 29 Jan 2015 11:40:59 +0000 (13:40 +0200)
committerVaadin Code Review <review@vaadin.com>
Thu, 29 Jan 2015 14:09:40 +0000 (14:09 +0000)
Change-Id: Ib8cc41e3f19f912af6267448b9f213cd2f92448e

WebContent/VAADIN/themes/valo/components/_grid.scss

index 2e764347092e1e3ca9e1b28a687b7f6b07447cbf..50c71692256e6f6ed315f2e08a51999c9cf315f3 100644 (file)
@@ -54,15 +54,17 @@ $v-grid-cell-padding-horizontal: $v-table-cell-padding-horizontal !default;
 
   // Selected
   .#{$primary-stylename}-row-selected {
+    $grid-sel-bg: $v-grid-row-selected-background-color;
+
     > .#{$primary-stylename}-cell {
-      @include valo-gradient($v-selection-color);
-      color: valo-font-color($v-selection-color);
-      text-shadow: valo-text-shadow($font-color: valo-font-color($v-selection-color), $background-color: $v-selection-color);
-      border-color: adjust-color($v-selection-color, $lightness: -8%, $saturation: -8%);
+      @include valo-gradient($grid-sel-bg);
+      color: valo-font-color($grid-sel-bg);
+      text-shadow: valo-text-shadow($font-color: valo-font-color($grid-sel-bg), $background-color: $grid-sel-bg);
+      border-color: adjust-color($grid-sel-bg, $lightness: -8%, $saturation: -8%);
     }
 
     > .#{$primary-stylename}-cell-focused:before {
-      border-color: adjust-color($v-selection-color, $lightness: 20%);
+      border-color: adjust-color($grid-sel-bg, $lightness: 20%);
     }
   }