diff options
author | Jouni Koivuviita <jouni@vaadin.com> | 2014-08-07 10:12:30 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-08-11 18:30:42 +0000 |
commit | ee124b34b2997e0d91363b8cd3eb9f50b035f48f (patch) | |
tree | e2b4fd2afb3b843ac4ce27acf2bff69309d1c340 /WebContent/VAADIN/themes/valo/components/_table.scss | |
parent | cbf4fb36a1538103f8fb385b1d8d06363d3fedd6 (diff) | |
download | vaadin-framework-ee124b34b2997e0d91363b8cd3eb9f50b035f48f.tar.gz vaadin-framework-ee124b34b2997e0d91363b8cd3eb9f50b035f48f.zip |
Small adjustment to Table column drag-n-drop indicators (Valo)
Change-Id: I40a2fead8ba84b5e827823eae7c73593e8561225
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_table.scss')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_table.scss | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_table.scss b/WebContent/VAADIN/themes/valo/components/_table.scss index 3644e482f2..46318590d0 100644 --- a/WebContent/VAADIN/themes/valo/components/_table.scss +++ b/WebContent/VAADIN/themes/valo/components/_table.scss @@ -4,7 +4,7 @@ $v-table-border-color: null !default; $v-table-border-radius: 0 !default; $v-table-cell-padding-horizontal: round($v-unit-size/3) !default; //$v-table-cell-padding-horizontal-edge: round($v-unit-size/2.5) !default; -$v-table-resizer-width: round($v-unit-size/5) !default; +$v-table-resizer-width: round($v-unit-size/4.5) !default; $v-table-sort-indicator-width: round($v-unit-size/2) !default; $v-table-header-font-size: round($v-font-size * 0.86) !default; $v-table-background-color: null !default; @@ -155,7 +155,7 @@ $v-table-background-color: null !default; cursor: col-resize; position: absolute; top: 0; - right: 0; + right: round($v-table-resizer-width / -2); z-index: 1; } @@ -293,12 +293,13 @@ $v-table-background-color: null !default; } .#{$primary-stylename}-focus-slot-right { - border-right: 2px solid rgba($v-focus-color, .5); + border-right: $v-table-border-width + 2px solid $v-focus-color; + right: -$v-table-border-width - 1px; } .#{$primary-stylename}-focus-slot-left { - border-left: 2px solid rgba($v-focus-color, .5); - left: 0; + border-left: $v-table-border-width + 2px solid $v-focus-color; + left: -$v-table-border-width; right: auto; margin-left: 0 !important; } |