summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/notification/notification.css
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/base/notification/notification.css')
-rw-r--r--WebContent/VAADIN/themes/base/notification/notification.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/notification/notification.css b/WebContent/VAADIN/themes/base/notification/notification.css
new file mode 100644
index 0000000000..514d274488
--- /dev/null
+++ b/WebContent/VAADIN/themes/base/notification/notification.css
@@ -0,0 +1,41 @@
+.v-Notification {
+ background: #999;
+ color: #fff;
+ cursor: pointer;
+ overflow: hidden;
+ padding: 1em;
+}
+.v-Notification h1,
+.v-Notification p,
+.v-Notification.error h1,
+.v-Notification.error p,
+.v-Notification.warning h1,
+.v-Notification.warning p {
+ display: inline;
+ white-space: nowrap;
+ margin: 0 0.5em 0 0;
+}
+.v-Notification.warning {
+ background: orange;
+}
+.v-Notification.error {
+ background: red;
+}
+.v-Notification.tray h1 {
+ display: block;
+}
+.v-Notification.tray p {
+ display: block;
+}
+.v-Notification.system {
+ background-color: red;
+ opacity: .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