summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_error-bar.scss
diff options
context:
space:
mode:
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;
-}