summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-06 20:36:20 -0500
committerCorey Hulen <corey@hulen.com>2017-03-06 20:36:20 -0500
commitf8aaf312c119d92ed0d9949e4315a4a1b1035e5f (patch)
tree0ddc03db788a632ae157f69390544949b7428bb5 /webapp/sass/components
parent3f070fe4b805e660cf796a5f851a0a1121a45fac (diff)
downloadchat-f8aaf312c119d92ed0d9949e4315a4a1b1035e5f.tar.gz
chat-f8aaf312c119d92ed0d9949e4315a4a1b1035e5f.tar.bz2
chat-f8aaf312c119d92ed0d9949e4315a4a1b1035e5f.zip
PLT-5703 Update license expiry timing and text (#5602)
* Update license expiry timing and text * Updating error bar (#5632)
Diffstat (limited to 'webapp/sass/components')
-rw-r--r--webapp/sass/components/_error-bar.scss35
1 files changed, 34 insertions, 1 deletions
diff --git a/webapp/sass/components/_error-bar.scss b/webapp/sass/components/_error-bar.scss
index 2791337c4..c2ad2402a 100644
--- a/webapp/sass/components/_error-bar.scss
+++ b/webapp/sass/components/_error-bar.scss
@@ -11,6 +11,9 @@
z-index: 9999;
a {
+ color: $white !important;
+ text-decoration: underline;
+
&.error-bar__close {
color: $white;
font-family: 'Open Sans', sans-serif;
@@ -30,7 +33,7 @@
}
}
-.error-bar-developer {
+.error-bar-critical {
background-color: #B0171F;
color: white;
padding: 5px 30px;
@@ -59,3 +62,33 @@
}
}
}
+
+.error-bar-developer {
+ background-color: purple;
+ color: white;
+ padding: 5px 30px;
+ position: absolute;
+ text-align: center;
+ top: 0;
+ width: 100%;
+ z-index: 9999;
+
+ a {
+ &.error-bar__close {
+ color: $white;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 20px;
+ font-weight: 600;
+ padding: 0 10px;
+ position: absolute;
+ right: 0;
+ text-decoration: none;
+ top: 0;
+
+ &:hover {
+ color: $white;
+ text-decoration: none;
+ }
+ }
+ }
+}