summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/runo/common
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2009-05-18 11:55:55 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2009-05-18 11:55:55 +0000
commit3d25bc1f6e75a7b0a79724ed8d6df0307292d3e2 (patch)
treefba8c1988df1b4acc794e16d60a8bc28a6020837 /WebContent/VAADIN/themes/runo/common
parentbaa72fea3a4ec08682fe83058ad76dd85ccb8a13 (diff)
downloadvaadin-framework-3d25bc1f6e75a7b0a79724ed8d6df0307292d3e2.tar.gz
vaadin-framework-3d25bc1f6e75a7b0a79724ed8d6df0307292d3e2.zip
Old default theme renamed to "runo".
svn changeset:7856/svn branch:6.0
Diffstat (limited to 'WebContent/VAADIN/themes/runo/common')
-rw-r--r--WebContent/VAADIN/themes/runo/common/common.css116
-rw-r--r--WebContent/VAADIN/themes/runo/common/img/ajax-loader-big.gifbin0 -> 3208 bytes
-rw-r--r--WebContent/VAADIN/themes/runo/common/img/ajax-loader-medium.gifbin0 -> 1849 bytes
-rwxr-xr-xWebContent/VAADIN/themes/runo/common/img/ajax-loader.gifbin0 -> 4099 bytes
-rw-r--r--WebContent/VAADIN/themes/runo/common/img/blank.gifbin0 -> 807 bytes
-rwxr-xr-xWebContent/VAADIN/themes/runo/common/img/loading-indicator-delay.gifbin0 -> 1590 bytes
-rwxr-xr-xWebContent/VAADIN/themes/runo/common/img/loading-indicator-wait.gifbin0 -> 1590 bytes
-rwxr-xr-xWebContent/VAADIN/themes/runo/common/img/loading-indicator.gifbin0 -> 1590 bytes
8 files changed, 116 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/runo/common/common.css b/WebContent/VAADIN/themes/runo/common/common.css
new file mode 100644
index 0000000000..5f564e3997
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/common.css
@@ -0,0 +1,116 @@
+.v-generated-body {
+ background: #e9eced;
+}
+.v-app {
+ background: #e9eced;
+ font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
+ color: #464f52;
+ font-size: 13px;
+ line-height: 18px;
+}
+.v-app-loading {
+ background-image: url(img/loading-indicator.gif);
+ background-repeat: no-repeat;
+ background-position: 50%;
+}
+/* Global font styles */
+.v-window,
+.v-popupview-popup,
+.v-app input,
+.v-app select,
+.v-app button,
+.v-app textarea,
+.v-window input,
+.v-window select,
+.v-window button,
+.v-window textarea,
+.v-popupview-popup input,
+.v-popupview-popup select,
+.v-popupview-popup button,
+.v-popupview-popup textarea {
+ font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
+ color: #464f52;
+ font-size: 13px;
+}
+.v-app select,
+.v-window select {
+ padding: 0;
+}
+/* Custom tooltip */
+.v-tooltip {
+ background-color: #fffcdd;
+ border: 1px solid #b8b295;
+ border-top-color: #d5d2c1;
+ border-left-color: #d5d2c1;
+ font-size: 11px;
+ line-height: 13px;
+ font-family: arial, helvetica, tahoma, verdana, sans-serif;
+ color: #5d5444;
+}
+.v-tooltip-text {
+ padding: 2px 4px;
+ border: none;
+ border-top: 1px solid #fffef5;
+ border-bottom: 1px solid #fbf8d9;
+}
+.v-tooltip .v-errormessage {
+ padding: 3px 4px 3px 4px;
+ background: #ffecc6;
+ color: #b74100;
+ border: none;
+ border-top: 1px solid #fff3dc;
+ border-bottom: 1px solid #ead7b1;
+}
+.v-tooltip .v-errormessage h2 {
+ font-size: 16px;
+ font-weight: normal;
+ color: #ab3101;
+ margin: 2px 0 8px 0;
+}
+.v-tooltip .v-errormessage h3 {
+ font-size: 13px;
+ font-weight: bold;
+ margin: 1px 0 4px 0;
+}
+.v-contextmenu {
+ background: #e9eced url(../tabsheet/img/tab-bg.png);
+ font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
+ background-color: #f6f7f7;
+ color: #464f52;
+ font-size: 12px;
+ line-height: 14px;
+}
+.v-contextmenu .gwt-MenuBar {
+ border-right: 1px solid #c6cbcc;
+ border-bottom: 1px solid #c6cbcc;
+ border-top: 1px solid #d0d4d5;
+ border-left: 1px solid #d0d4d5;
+}
+.v-contextmenu .gwt-MenuItem {
+ padding: 2px 0;
+}
+.v-contextmenu .gwt-MenuItem div {
+ padding: 1px 20px 1px 8px;
+}
+.v-contextmenu .gwt-MenuItem-selected div {
+ color: #fff;
+ background: #5daee8;
+}
+.v-contextmenu .gwt-MenuItem img {
+ margin-right: 10px;
+}
+.v-loading-indicator,
+.v-loading-indicator-delay,
+.v-loading-indicator-wait {
+ width: 31px;
+ height: 31px;
+ background: transparent url(img/loading-indicator.gif);
+ margin-right: 5px;
+ margin-top: 5px;
+}
+.v-loading-indicator-delay {
+ background-image: url(img/loading-indicator-delay.gif);
+}
+.v-loading-indicator-wait {
+ background-image: url(img/loading-indicator-wait.gif);
+} \ No newline at end of file
diff --git a/WebContent/VAADIN/themes/runo/common/img/ajax-loader-big.gif b/WebContent/VAADIN/themes/runo/common/img/ajax-loader-big.gif
new file mode 100644
index 0000000000..73dc88e31f
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/ajax-loader-big.gif
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/common/img/ajax-loader-medium.gif b/WebContent/VAADIN/themes/runo/common/img/ajax-loader-medium.gif
new file mode 100644
index 0000000000..0a0c6aaef0
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/ajax-loader-medium.gif
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/common/img/ajax-loader.gif b/WebContent/VAADIN/themes/runo/common/img/ajax-loader.gif
new file mode 100755
index 0000000000..354dc4685c
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/ajax-loader.gif
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/common/img/blank.gif b/WebContent/VAADIN/themes/runo/common/img/blank.gif
new file mode 100644
index 0000000000..3776af0784
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/blank.gif
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/common/img/loading-indicator-delay.gif b/WebContent/VAADIN/themes/runo/common/img/loading-indicator-delay.gif
new file mode 100755
index 0000000000..48810bb064
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/loading-indicator-delay.gif
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/common/img/loading-indicator-wait.gif b/WebContent/VAADIN/themes/runo/common/img/loading-indicator-wait.gif
new file mode 100755
index 0000000000..5f7aab9afd
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/loading-indicator-wait.gif
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/common/img/loading-indicator.gif b/WebContent/VAADIN/themes/runo/common/img/loading-indicator.gif
new file mode 100755
index 0000000000..cedaa56b10
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/common/img/loading-indicator.gif
Binary files differ