summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/liferay/notification/notification.scss
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2012-08-10 14:26:50 +0300
committerHenri Sara <hesara@vaadin.com>2012-08-10 14:26:50 +0300
commitfc94542099faad5bc4f7bb00bd468f69cacc6a14 (patch)
tree471f9cc6adfd2de620d41bef45da774c21241f75 /WebContent/VAADIN/themes/liferay/notification/notification.scss
parent4ba988a5a0d9762757a5a0a2ffb704faaa30f64c (diff)
parent239ce71f498fcdf2809c5561bf5028bf216265ca (diff)
downloadvaadin-framework-fc94542099faad5bc4f7bb00bd468f69cacc6a14.tar.gz
vaadin-framework-fc94542099faad5bc4f7bb00bd468f69cacc6a14.zip
Merge remote-tracking branch 'origin/sass'
Diffstat (limited to 'WebContent/VAADIN/themes/liferay/notification/notification.scss')
-rw-r--r--WebContent/VAADIN/themes/liferay/notification/notification.scss52
1 files changed, 52 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/liferay/notification/notification.scss b/WebContent/VAADIN/themes/liferay/notification/notification.scss
new file mode 100644
index 0000000000..2312768287
--- /dev/null
+++ b/WebContent/VAADIN/themes/liferay/notification/notification.scss
@@ -0,0 +1,52 @@
+@mixin liferay-notification {
+
+.v-Notification {
+ background: #dff4ff;
+ color: #34404F;
+ font-weight: bold;
+ cursor: pointer;
+ overflow: hidden;
+ padding: 1em;
+ max-width: 85%;
+ border: 1px solid #a7cedf;
+}
+
+.v-Notification h1,
+.v-Notification p,
+.v-Notification-error h1,
+.v-Notification-error p,
+.v-Notification-warning h1,
+.v-Notification-warning p {
+ display: inline;
+ margin: 0 0.5em 0 0;
+}
+.v-Notification-warning {
+ background: #ffc;
+ border-color: #fc0;
+}
+.v-Notification-error {
+ background-color: #ffdddd;
+ border-color: #ff0000;
+}
+
+.v-Notification-tray {
+ color: #111111;
+ background-color: #e5e5e5;
+ border-color: #b5b5b5;
+}
+.v-Notification-tray h1 {
+ display: block;
+}
+.v-Notification-tray p {
+ display: block;
+}
+.v-Notification-system {
+ background-color: #ffdddd;
+ border-color: #ff0000;
+}
+.v-Notification-system h1 {
+ display: block;
+ margin: 0;
+}
+
+} \ No newline at end of file