summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/notification/notification.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/base/notification/notification.scss')
-rw-r--r--WebContent/VAADIN/themes/base/notification/notification.scss67
1 files changed, 0 insertions, 67 deletions
diff --git a/WebContent/VAADIN/themes/base/notification/notification.scss b/WebContent/VAADIN/themes/base/notification/notification.scss
deleted file mode 100644
index 5deb7e0e84..0000000000
--- a/WebContent/VAADIN/themes/base/notification/notification.scss
+++ /dev/null
@@ -1,67 +0,0 @@
-@mixin base-notification($primaryStyleName : v-Notification) {
-
-.#{$primaryStyleName} {
- background: #999;
- color: #fff;
- cursor: pointer;
- overflow: hidden;
- padding: 1em;
- max-width:85%;
- opacity: .9;
- filter: alpha(opacity=90);
-}
-.#{$primaryStyleName}-caption,
-.#{$primaryStyleName}-description,
-.#{$primaryStyleName}-details {
- display: inline;
- margin: 0 0.5em 0 0;
-}
-.#{$primaryStyleName}-warning {
- background: orange;
-}
-.#{$primaryStyleName}-error {
- background: red;
-}
-.#{$primaryStyleName}-tray {
- .#{$primaryStyleName}-caption,
- .#{$primaryStyleName}-description {
- display: block;
- }
-}
-.#{$primaryStyleName}-system {
- background-color: red;
-}
-.#{$primaryStyleName}-system .#{$primaryStyleName}-caption {
- display: block;
- margin: 0;
-}
-.#{$primaryStyleName}-animate-out {
- @include animation(v-notification-animate-out 400ms);
-}
-
-.#{$primaryStyleName} {
- &.v-position-top {
- top: 0;
- }
- &.v-position-right {
- right: 0;
- }
- &.v-position-bottom {
- bottom: 0;
- }
- &.v-position-left {
- left: 0;
- }
- &.v-position-assistive {
- top: -9999px;
- left: -9999px;
- }
-}
-
-}
-
-@include keyframes(v-notification-animate-out) {
- 100% {
- opacity: 0;
- }
-}