diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2016-01-04 15:05:59 +0200 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-01-07 11:16:22 +0000 |
commit | 15e9a428214dc1933844da3b514d49f418351051 (patch) | |
tree | 9cf1547393b12abd1cd43d1bbfad23184b581ad1 /WebContent | |
parent | c7520351fef14334aa80305853afe7dcfff8609f (diff) | |
download | vaadin-framework-15e9a428214dc1933844da3b514d49f418351051.tar.gz vaadin-framework-15e9a428214dc1933844da3b514d49f418351051.zip |
Always stick Grid column resize handle to the right edge (#19409)
Change-Id: I329bc5ae8138be731770211e995225cb3ca4fc76
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/grid/grid.scss | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/WebContent/VAADIN/themes/base/grid/grid.scss b/WebContent/VAADIN/themes/base/grid/grid.scss index 764bd24707..d269b2f5e6 100644 --- a/WebContent/VAADIN/themes/base/grid/grid.scss +++ b/WebContent/VAADIN/themes/base/grid/grid.scss @@ -267,6 +267,7 @@ $v-grid-details-border-bottom-stripe: 1px solid darken($v-grid-row-background-co .#{$primaryStyleName}-column-resize-handle { position: absolute; width: 2 * $v-grid-cell-padding-horizontal; + right: -$v-grid-cell-padding-horizontal; top: 0px; bottom: 0px; cursor: col-resize; @@ -279,13 +280,6 @@ $v-grid-details-border-bottom-stripe: 1px solid darken($v-grid-row-background-co -ms-user-select: none; user-select: none; } - - .sort-asc, - .sort-desc { - > .#{$primaryStyleName}-column-resize-handle { - right: -$v-grid-cell-padding-horizontal; - } - } // Footer |