summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_error-bar.scss
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/sass/components/_error-bar.scss
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/sass/components/_error-bar.scss')
-rw-r--r--webapp/sass/components/_error-bar.scss55
1 files changed, 0 insertions, 55 deletions
diff --git a/webapp/sass/components/_error-bar.scss b/webapp/sass/components/_error-bar.scss
deleted file mode 100644
index b08b6d95b..000000000
--- a/webapp/sass/components/_error-bar.scss
+++ /dev/null
@@ -1,55 +0,0 @@
-@charset 'UTF-8';
-
-.error-bar {
- background-color: darken($primary-color, 5%);
- color: $white;
- padding: 5px 30px;
- position: fixed;
- text-align: center;
- top: 0;
- width: 100%;
- z-index: 9999;
-
- &.error-bar--fixed {
- overflow: hidden;
- padding: 1px 30px;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- a {
- color: inherit !important;
- text-decoration: underline;
-
- &:hover,
- &:active,
- &:focus {
- color: inherit !important;
- }
-
- &.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;
- }
- }
- }
-}
-
-.error-bar-critical {
- background-color: #B0171F;
-}
-
-.error-bar-developer {
- background-color: purple;
-}