diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-10-05 09:11:19 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-10-05 09:11:19 +0000 |
commit | 9e0a7ff98936a0b2abed0fa17c33157d9d1312b2 (patch) | |
tree | f1abbec561ffd93fee8f5133f32754360f7d5dd8 /WebContent | |
parent | e6075d604b46444884c54b371d62273d88b562a6 (diff) | |
download | vaadin-framework-9e0a7ff98936a0b2abed0fa17c33157d9d1312b2.tar.gz vaadin-framework-9e0a7ff98936a0b2abed0fa17c33157d9d1312b2.zip |
Fixes #3396: System notifications are grey (reindeer)
svn changeset:9071/svn branch:6.2
Diffstat (limited to 'WebContent')
4 files changed, 6 insertions, 18 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/notification/notification.css b/WebContent/VAADIN/themes/reindeer/notification/notification.css index 4f77c41019..f266f0576d 100644 --- a/WebContent/VAADIN/themes/reindeer/notification/notification.css +++ b/WebContent/VAADIN/themes/reindeer/notification/notification.css @@ -32,4 +32,7 @@ .v-Notification.tray p { font-size: 12px; font-weight: normal; +} +.v-Notification.system { + background-color: #b40000; }
\ No newline at end of file diff --git a/WebContent/VAADIN/themes/reindeer/styles.css b/WebContent/VAADIN/themes/reindeer/styles.css index 338c14b80e..f1d5c4d60c 100644 --- a/WebContent/VAADIN/themes/reindeer/styles.css +++ b/WebContent/VAADIN/themes/reindeer/styles.css @@ -3044,6 +3044,9 @@ td.v-datefield-calendarpanel-nextyear { font-size: 12px; font-weight: normal; } +.v-Notification.system { + background-color: #b40000; +} .v-panel-caption, .v-panel-nocaption { diff --git a/WebContent/VAADIN/themes/runo/notification/notification.css b/WebContent/VAADIN/themes/runo/notification/notification.css index 387a7d1886..da71112abb 100644 --- a/WebContent/VAADIN/themes/runo/notification/notification.css +++ b/WebContent/VAADIN/themes/runo/notification/notification.css @@ -63,13 +63,4 @@ }
.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 diff --git a/WebContent/VAADIN/themes/runo/styles.css b/WebContent/VAADIN/themes/runo/styles.css index 134a936729..5aef0bc579 100644 --- a/WebContent/VAADIN/themes/runo/styles.css +++ b/WebContent/VAADIN/themes/runo/styles.css @@ -2204,15 +2204,6 @@ div.v-tree-node-leaf { } .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; } .v-orderedlayout-margin-top, |