aboutsummaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/tree/tree-default.css
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2012-08-08 14:27:31 +0300
committerHenri Sara <hesara@vaadin.com>2012-08-08 14:44:49 +0300
commitcfa455d6cfd4a535fd77cbc76637a57e7024e9ac (patch)
treececb66492671ed20fa9865581da12930ed502047 /WebContent/VAADIN/themes/base/tree/tree-default.css
parent620e096b45f27ecc5aa85d164ca8b81df000e593 (diff)
downloadvaadin-framework-cfa455d6cfd4a535fd77cbc76637a57e7024e9ac.tar.gz
vaadin-framework-cfa455d6cfd4a535fd77cbc76637a57e7024e9ac.zip
Standard themes in SCSS form, updated CompileDefaultTheme (#9223)
Conversion performed for most themes trivial, just rename file and wrap in a mixin. For chameleon compounds, also nesting used. In some cases, related small files combined in a single SCSS file Chameleon accordion and select contain fixes other than just a missing semicolon.
Diffstat (limited to 'WebContent/VAADIN/themes/base/tree/tree-default.css')
-rw-r--r--WebContent/VAADIN/themes/base/tree/tree-default.css95
1 files changed, 0 insertions, 95 deletions
diff --git a/WebContent/VAADIN/themes/base/tree/tree-default.css b/WebContent/VAADIN/themes/base/tree/tree-default.css
deleted file mode 100644
index 23721c77ae..0000000000
--- a/WebContent/VAADIN/themes/base/tree/tree-default.css
+++ /dev/null
@@ -1,95 +0,0 @@
-.v-tree {
- text-align: left; /* Force default alignment */
- overflow: hidden;
- padding: 1px 0;
- outline: none;
-}
-.v-tree-node {
- background: transparent url(../common/img/sprites.png) no-repeat 5px -37px;
- padding: 1px 0;
-}
-.v-tree-node-caption:focus {
- outline: none;
-}
-div.v-tree-node-leaf {
- background: transparent;
-}
-.v-tree-node-expanded {
- background: transparent url(../common/img/sprites.png) no-repeat -5px -10px;
-}
-.v-tree-node-caption {
- margin-left: 1em;
-}
-.v-tree-node span {
- cursor: pointer;
-}
-.v-tree-node-caption div {
- white-space: nowrap;
-}
-.v-tree-node-caption span,
-.v-tree-node-caption .v-icon {
- vertical-align: middle;
-}
-.v-tree-node-selected span {
- background: #999;
- color: #fff;
-}
-.v-tree-node-children {
- padding-left: 1em;
-}
-/***************************************
- * Drag'n'drop styles
- ***************************************/
-.v-tree .v-tree-node-drag-top {
- border-top: 2px solid #1d9dff;
- margin-top: -1px;
- padding-top: 0;
-}
-.v-tree .v-tree-node-drag-bottom {
- border-bottom: 2px solid #1d9dff;
- margin-bottom: -1px;
- padding-bottom: 0;
-}
-.v-tree .v-tree-node-drag-top:before,
-.v-tree .v-tree-node-drag-bottom:after,
-.v-tree .v-tree-node-caption-drag-center:after {
- display: block;
- content: "";
- position: absolute;
- width: 6px;
- height: 6px;
- margin-top: -4px;
- background: transparent url(../common/img/drag-slot-dot.png);
-}
-.v-tree .v-tree-node-drag-bottom:after {
- margin-top: -2px;
-}
-.v-tree .v-tree-node-caption-drag-center:after {
- margin-left: 14px;
-}
-.v-ff .v-tree .v-tree-node-caption-drag-center:after,
-.v-ie .v-tree .v-tree-node-caption-drag-center:after {
- margin-top: -2px;
-}
-.v-tree .v-tree-node-drag-top {
- background-position: 5px -38px;
-}
-.v-tree .v-tree-node-drag-top.v-tree-node-expanded {
- background-position: -5px -11px;
-}
-.v-tree .v-tree-node-caption-drag-center div {
- border: 2px solid #1d9dff;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- margin: -2px 2px -2px -2px;
- background-color: #bcdcff;
-}
-.v-tree .v-tree-node-caption-drag-center div {
- background-color: rgba(169,209,255,.6);
-}
-.v-tree .v-tree-node-caption-drag-center div,
-.v-tree .v-tree-node-drag-top,
-.v-tree .v-tree-node-drag-bottom {
- border-color: rgba(0,109,232,.6);
-} \ No newline at end of file