From 271782b4c1668e5c2c1d77072cdf98ebe2ef1e1d Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Mon, 21 Dec 2020 16:38:15 +0000 Subject: [PATCH] [Library | Trunk]: Move notification css to library git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/assets@60174 d315682c-612b-4755-9ff5-7f18f6832af3 --- library-css/library.scss | 1 + library-css/notification.scss | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 library-css/notification.scss diff --git a/library-css/library.scss b/library-css/library.scss index daccc37..3439433 100644 --- a/library-css/library.scss +++ b/library-css/library.scss @@ -11,3 +11,4 @@ @import "login.scss"; @import "text.scss"; @import "button.scss"; +@import "notification.scss"; diff --git a/library-css/notification.scss b/library-css/notification.scss new file mode 100644 index 0000000..2f56df4 --- /dev/null +++ b/library-css/notification.scss @@ -0,0 +1,19 @@ +.uk-notification-message { + border-radius: 3px; + font-size: 14px; + padding: 20px; +} + +.uk-notification-message.uk-notification-message-success { + background-color: #e0f0d5; + color: #669a59; +} + +.uk-notification-message.uk-notification-message-danger { + background-color: #f2dede; + color: #b25654; +} + +.uk-notification-close.uk-close, .uk-notification-close.uk-close:hover { + color: #1a1a1a; +}