summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/valo/components/_treetable.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_treetable.scss')
-rw-r--r--WebContent/VAADIN/themes/valo/components/_treetable.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_treetable.scss b/WebContent/VAADIN/themes/valo/components/_treetable.scss
new file mode 100644
index 0000000000..a4083a1901
--- /dev/null
+++ b/WebContent/VAADIN/themes/valo/components/_treetable.scss
@@ -0,0 +1,27 @@
+@mixin v-valo-treetable ($primary-stylename: v-treetable) {
+ .v-table-cell-wrapper {
+ //position: relative;
+ }
+
+ .#{$primary-stylename}-treespacer {
+ display: inline-block;
+ background: transparent;
+ width: round($v-unit-size/2);
+ //left: round($v-unit-size/-8);
+ left: 0;
+ position: absolute;
+ text-align: right;
+
+ &:before {
+
+ }
+ }
+
+ .#{$primary-stylename}-node-closed:before {
+ @include v-valo-tree-collapsed-icon-style;
+ }
+
+ .#{$primary-stylename}-node-open:before {
+ @include v-valo-tree-expanded-icon-style($force: true);
+ }
+} \ No newline at end of file