summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/runo/notification
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/notification
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/notification')
-rw-r--r--WebContent/VAADIN/themes/runo/notification/img/close-error.pngbin0 -> 240 bytes
-rw-r--r--WebContent/VAADIN/themes/runo/notification/notification.css75
2 files changed, 75 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/runo/notification/img/close-error.png b/WebContent/VAADIN/themes/runo/notification/img/close-error.png
new file mode 100644
index 0000000000..f52c922111
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/notification/img/close-error.png
Binary files differ
diff --git a/WebContent/VAADIN/themes/runo/notification/notification.css b/WebContent/VAADIN/themes/runo/notification/notification.css
new file mode 100644
index 0000000000..387a7d1886
--- /dev/null
+++ b/WebContent/VAADIN/themes/runo/notification/notification.css
@@ -0,0 +1,75 @@
+.v-Notification {
+ font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
+ background-color: #818e92;
+ color: #ffffff;
+ padding: 9px 12px;
+ cursor: pointer;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ overflow: hidden;
+}
+.v-Notification h1,
+.v-Notification p,
+.v-Notification.error h1,
+.v-Notification.error p,
+.v-Notification.warning h1,
+.v-Notification.warning p {
+ display: inline;
+ font-weight: normal;
+ white-space: nowrap;
+ margin: 0 10px 0 0;
+}
+.v-Notification.warning {
+ background: #fff1e4;
+ color: #dd3400;
+ border: 2px solid #ffaa90;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ opacity: 1;
+}
+.v-Notification.error {
+ background: #f23d00 url(img/close-error.png) no-repeat right 5px;
+ padding-right: 30px;
+ border: 3px solid #c30000;
+ -moz-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
+}
+.v-Notification.tray {
+ background: #575e60;
+ padding: 0.5em;
+ margin: 0 5px 5px 0;
+}
+.v-Notification.tray h1 {
+ display: block;
+ font-weight: bold;
+ font-size: 0.9em;
+ line-height: 1.1;
+ background: #3b4245;
+ padding: 4px 10px;
+ margin: 0;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+}
+.v-Notification.tray p {
+ display: block;
+ font-size: 0.9em;
+ line-height: 1.1;
+ margin: 8px 10px 5px 10px;
+ color: #e4e7ea;
+}
+.v-Notification.system {
+ background-color: #ff0a0a;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+}
+.v-Notification.system h1 {
+ display: block;
+ margin: 0;
+}
+.v-Notification.system p {
+ white-space: nowrap;
+} \ No newline at end of file