summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni@vaadin.com>2012-08-13 08:54:54 +0300
committerJouni Koivuviita <jouni@vaadin.com>2012-08-13 08:54:54 +0300
commit6031735017cd2fad28cdf64f4246e6d9914cc3ad (patch)
tree7ce54cd9b21fd29b425e90833384e1f66f52aa0c /WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss
parent559775efaf0a8f0f9f1ad6246084667732b15a0f (diff)
parent1fd77ff0d5fc6dee010b5c83acfd5b87b6801264 (diff)
downloadvaadin-framework-6031735017cd2fad28cdf64f4246e6d9914cc3ad.tar.gz
vaadin-framework-6031735017cd2fad28cdf64f4246e6d9914cc3ad.zip
merge master (sass theme changes)
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss')
-rw-r--r--WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss70
1 files changed, 70 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss b/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss
new file mode 100644
index 0000000000..07a38891f5
--- /dev/null
+++ b/WebContent/VAADIN/themes/reindeer/splitpanel/splitpanel.scss
@@ -0,0 +1,70 @@
+@mixin reindeer-splitpanel {
+
+.v-splitpanel-hsplitter,
+.v-splitpanel-hsplitter-locked {
+ width: 7px;
+ background-repeat: repeat-y;
+ background-image: url(img/hor-bg.png); /** sprite-ref: horizontals; sprite-alignment: repeat */
+}
+.v-splitpanel-hsplitter div {
+ width: 7px;
+ height: 100%; /* for Opera */
+ background: transparent;
+ background-repeat: no-repeat;
+ background-position: 50%;
+ background-image: url(img/hor-handle.png); /** sprite-ref: horizontals; sprite-alignment: center */
+}
+.v-splitpanel-vsplitter,
+.v-splitpanel-vsplitter-locked {
+ height: 7px;
+ background-repeat: repeat-x;
+ background-image: url(img/ver-bg.png); /** sprite-ref: verticals; sprite-alignment: repeat */
+}
+.v-splitpanel-vsplitter div {
+ height: 7px;
+ background: transparent;
+ background-repeat: no-repeat;
+ background-position: 50%;
+ background-image: url(img/ver-handle.png); /** sprite-ref: verticals; sprite-alignment: center */
+}
+
+
+/* Splitpanels on blue background */
+.blue .v-splitpanel-hsplitter-small,
+.blue .v-splitpanel-hsplitter-small-locked {
+ background: #7c8a91;
+}
+
+/* Splitpanels on black background */
+.black .v-splitpanel-hsplitter-small,
+.black .v-splitpanel-hsplitter-small-locked {
+ background: #4e5253;
+}
+
+/* Small style */
+.v-splitpanel-hsplitter-small,
+.v-splitpanel-hsplitter-small-locked,
+.white .v-splitpanel-hsplitter-small,
+.white .v-splitpanel-hsplitter-small-locked {
+ width: 1px;
+ background: #949698;
+}
+.v-splitpanel-vsplitter-small,
+.v-splitpanel-vsplitter-small-locked,
+.white .v-splitpanel-vsplitter-small,
+.white .v-splitpanel-vsplitter-small-locked {
+ height: 1px;
+ background: #949698;
+}
+.v-splitpanel-hsplitter-small div {
+ width: 5px;
+ margin-left: -2px;
+ background: transparent;
+}
+.v-splitpanel-vsplitter-small div {
+ height: 5px;
+ margin-top: -2px;
+ background: transparent;
+}
+
+} \ No newline at end of file