summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2009-11-23 09:33:35 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2009-11-23 09:33:35 +0000
commitd0faf3037488718e76495c3a9792786a81e84247 (patch)
treee58c2ce3ef8db392431d06c7b74a40c48ab586dc /WebContent/VAADIN/themes
parent234619472331017b447895bcbb10a87c5c3317bb (diff)
downloadvaadin-framework-d0faf3037488718e76495c3a9792786a81e84247.tar.gz
vaadin-framework-d0faf3037488718e76495c3a9792786a81e84247.zip
Fixes #3499: PopupView CSS style is broken. PopupView minimized now looks like a link in Reindeer. Runo left unchanged.
* added Link component styles to Reindeer as well. svn changeset:9957/svn branch:6.2
Diffstat (limited to 'WebContent/VAADIN/themes')
-rw-r--r--WebContent/VAADIN/themes/reindeer/link/link.css10
-rw-r--r--WebContent/VAADIN/themes/reindeer/popupview/popupview.css12
-rw-r--r--WebContent/VAADIN/themes/reindeer/styles.css24
-rw-r--r--WebContent/VAADIN/themes/runo/popupview/popupview.css3
-rw-r--r--WebContent/VAADIN/themes/runo/styles.css3
-rw-r--r--WebContent/VAADIN/themes/sampler/sampler/styles.css12
6 files changed, 62 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/link/link.css b/WebContent/VAADIN/themes/reindeer/link/link.css
new file mode 100644
index 0000000000..00423e978d
--- /dev/null
+++ b/WebContent/VAADIN/themes/reindeer/link/link.css
@@ -0,0 +1,10 @@
+.v-link a:link {
+ color: #1b699f;
+ text-decoration: underline;
+}
+.v-link a:visited {
+ color: #5c7485;
+}
+.v-link a:hover {
+ color: #2483c4;
+} \ No newline at end of file
diff --git a/WebContent/VAADIN/themes/reindeer/popupview/popupview.css b/WebContent/VAADIN/themes/reindeer/popupview/popupview.css
new file mode 100644
index 0000000000..af02cd3db3
--- /dev/null
+++ b/WebContent/VAADIN/themes/reindeer/popupview/popupview.css
@@ -0,0 +1,12 @@
+.v-popupview {
+ background: transparent;
+ text-decoration: underline;
+ color: #1b699f;
+}
+.v-popupview:hover {
+ color: #2483c4;
+}
+.v-popupview-popup {
+ background: #fff;
+ padding: 3px;
+} \ No newline at end of file
diff --git a/WebContent/VAADIN/themes/reindeer/styles.css b/WebContent/VAADIN/themes/reindeer/styles.css
index 7e0dc5b441..ed0b24374f 100644
--- a/WebContent/VAADIN/themes/reindeer/styles.css
+++ b/WebContent/VAADIN/themes/reindeer/styles.css
@@ -3041,6 +3041,17 @@ td.v-datefield-calendarpanel-nextyear {
background-color: #1e2022;
}
+.v-link a:link {
+ color: #1b699f;
+ text-decoration: underline;
+}
+.v-link a:visited {
+ color: #5c7485;
+}
+.v-link a:hover {
+ color: #2483c4;
+}
+
.v-menubar {
height: 23px;
overflow: hidden;
@@ -3228,6 +3239,19 @@ td.v-datefield-calendarpanel-nextyear {
border: none;
}
+.v-popupview {
+ background: transparent;
+ text-decoration: underline;
+ color: #1b699f;
+}
+.v-popupview:hover {
+ color: #2483c4;
+}
+.v-popupview-popup {
+ background: #fff;
+ padding: 3px;
+}
+
.v-progressindicator-wrapper {
background: #dfe2e4 url(progressindicator/img/base.gif) repeat-x;
border: 1px solid #bfbfbf;
diff --git a/WebContent/VAADIN/themes/runo/popupview/popupview.css b/WebContent/VAADIN/themes/runo/popupview/popupview.css
index 73437c6bac..bbbfb69108 100644
--- a/WebContent/VAADIN/themes/runo/popupview/popupview.css
+++ b/WebContent/VAADIN/themes/runo/popupview/popupview.css
@@ -1,3 +1,6 @@
+.v-popupview {
+ background: transparent;
+}
.v-popupview-popup {
border: 1px solid #babfc0;
border-bottom: 1px solid #dee2e3;
diff --git a/WebContent/VAADIN/themes/runo/styles.css b/WebContent/VAADIN/themes/runo/styles.css
index 29678a354e..42a5e7b5af 100644
--- a/WebContent/VAADIN/themes/runo/styles.css
+++ b/WebContent/VAADIN/themes/runo/styles.css
@@ -2417,6 +2417,9 @@ div.v-tree-node-leaf {
overflow: hidden;
}
+.v-popupview {
+ background: transparent;
+}
.v-popupview-popup {
border: 1px solid #babfc0;
border-bottom: 1px solid #dee2e3;
diff --git a/WebContent/VAADIN/themes/sampler/sampler/styles.css b/WebContent/VAADIN/themes/sampler/sampler/styles.css
index 3eb778ab2d..9c65d6bb9b 100644
--- a/WebContent/VAADIN/themes/sampler/sampler/styles.css
+++ b/WebContent/VAADIN/themes/sampler/sampler/styles.css
@@ -46,6 +46,7 @@
}
.v-customcomponent-breadcrumbs .v-link a,
+.v-customcomponent-breadcrumbs .v-link a:link,
.v-customcomponent-breadcrumbs .v-label {
text-decoration: none;
color: #000;
@@ -83,7 +84,8 @@
.v-ie .v-customcomponent-breadcrumbs .v-link-bold {
margin-top: 1px;
}
-.v-customcomponent-breadcrumbs .v-link-bold a {
+.v-customcomponent-breadcrumbs .v-link-bold a,
+.v-customcomponent-breadcrumbs .v-link-bold a:link {
display: block;
height: 16px;
background: transparent url(breadcrumb-current-right.png) no-repeat right top;
@@ -240,6 +242,7 @@
.v-popupview-popup-quickjump {
background: transparent;
border: none;
+ padding: 0;
}
.v-app-SamplerApplication .v-splitpanel-first-container-main-split {
@@ -423,11 +426,13 @@
.v-sa .v-app-SamplerApplication .feature-info {
font-family: helvetica, arial, verdana, sans-serif;
}
-.v-app-SamplerApplication .feature-info div.v-link a {
+.v-app-SamplerApplication .feature-info div.v-link a,
+.v-app-SamplerApplication .feature-info div.v-link a:link {
color: #b7c0c7;
font-size: 11px;
line-height: 18px;
margin-left: 28px;
+ text-decoration: none;
}
.v-app-SamplerApplication .feature-info div.v-link a:hover {
color: #dcebf6;
@@ -561,6 +566,9 @@
.v-app-SamplerApplication .v-link-showcode {
margin-left: 3px;
}
+.v-app-SamplerApplication .v-link-showcode a {
+ text-decoration: none;
+}
.v-app-SamplerApplication div > .v-nativebutton-showcode,
.v-app-SamplerApplication div > .v-nativebutton-showcode:active,
.v-app-SamplerApplication div > .v-nativebutton-showcode:focus,