diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2016-01-04 15:05:59 +0200 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-01-08 13:48:23 +0200 |
commit | 92110e3ec54d246b34bc3ab215195915a7452a77 (patch) | |
tree | 2a098032f9d30fff461ce2584a0f90b8125249c9 /WebContent/VAADIN | |
parent | 06010a2e8e7bbe475f95767ec123c37642ad1698 (diff) | |
download | vaadin-framework-92110e3ec54d246b34bc3ab215195915a7452a77.tar.gz vaadin-framework-92110e3ec54d246b34bc3ab215195915a7452a77.zip |
Always stick Grid column resize handle to the right edge (#19409)
Change-Id: Id9d667257e10d989dd7bda8032a69720f08174ac
Diffstat (limited to 'WebContent/VAADIN')
-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 |