aboutsummaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorPatrik Lindström <patrik@vaadin.com>2016-11-02 11:54:49 +0200
committerPekka Hyvönen <pekka@vaadin.com>2016-11-17 10:05:47 +0000
commit9a0b4e9827cdcdb4084fb6b61ab7cd8953ee94fb (patch)
tree4dd3d79b60919eca46eff6fa37de9bb23ce30e53 /themes
parent9696c66041d9852a97aa553485afcca354d684d3 (diff)
downloadvaadin-framework-9a0b4e9827cdcdb4084fb6b61ab7cd8953ee94fb.tar.gz
vaadin-framework-9a0b4e9827cdcdb4084fb6b61ab7cd8953ee94fb.zip
Add lazy/simple resize mode to Grid (#20108)
Change-Id: I47427efc28c350382dba8c1f50fd332a3f4585e4
Diffstat (limited to 'themes')
-rw-r--r--themes/src/main/themes/VAADIN/themes/base/grid/grid.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/src/main/themes/VAADIN/themes/base/grid/grid.scss b/themes/src/main/themes/VAADIN/themes/base/grid/grid.scss
index 983463381b..1a55cc2595 100644
--- a/themes/src/main/themes/VAADIN/themes/base/grid/grid.scss
+++ b/themes/src/main/themes/VAADIN/themes/base/grid/grid.scss
@@ -283,6 +283,22 @@ $v-grid-details-border-bottom-stripe: 1px solid darken($v-grid-row-background-co
user-select: none;
}
+ .#{$primaryStyleName}-column-resize-simple-indicator {
+ position: absolute;
+ width: 3px;
+ top: 0px;
+ left: $v-grid-cell-padding-horizontal;
+ z-index: 9001;
+ background: #fff;
+ box-shadow: 0px 0px 5px #000;
+
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ }
+
// Footer
.#{$primaryStyleName}-footer {