summaryrefslogtreecommitdiffstats
path: root/WebContent
diff options
context:
space:
mode:
authorHenrik Paul <henrik@vaadin.com>2015-02-11 14:52:02 +0200
committerHenrik Paul <henrik@vaadin.com>2015-02-16 11:35:13 +0200
commit556c1aa06c547933bc36f347693c4b5b85bac149 (patch)
tree02d3263e3e3315d607d95f5d73d8d2d2efc64c4d /WebContent
parent294dc686f6d05dde90f852f46429b46c2f87af35 (diff)
downloadvaadin-framework-556c1aa06c547933bc36f347693c4b5b85bac149.tar.gz
vaadin-framework-556c1aa06c547933bc36f347693c4b5b85bac149.zip
Escalator supports adding spacer elements into DOM. (#16644)
This is the first step towards Grid's details rows: Escalator puts spacer elements in the DOM, and is able to scroll around with them. The spacers are put in their correct locations, but they will not affect the normal row elements in any way at this time. Change-Id: Id20090c4de117e07e332dcc81e9964360f778258
Diffstat (limited to 'WebContent')
-rw-r--r--WebContent/VAADIN/themes/base/escalator/escalator.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/escalator/escalator.scss b/WebContent/VAADIN/themes/base/escalator/escalator.scss
index 606dc6a7dd..6d146f3a74 100644
--- a/WebContent/VAADIN/themes/base/escalator/escalator.scss
+++ b/WebContent/VAADIN/themes/base/escalator/escalator.scss
@@ -133,4 +133,17 @@
z-index: 1;
}
+ .#{$primaryStyleName}-spacer {
+ position: absolute;
+ display: block;
+
+ // debug
+ background-color: rgba(0,0,0,0.6);
+ color: white;
+
+ > td {
+ width: 100%;
+ height: 100%;
+ }
+ }
}