summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_error-bar.scss
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-22 19:19:27 -0800
committerCorey Hulen <corey@hulen.com>2015-07-22 19:19:27 -0800
commitdc79707787b521ea5fc0d9088ccd9069780c8e0c (patch)
tree2f37a2aa6aa897fac5c5045d513eb1a69c818f6e /web/sass-files/sass/partials/_error-bar.scss
parent37c8193dceb37dc6bd2d38b50fdbe0b4647bff2f (diff)
parent8476062d214230e2370af87a9495457c7a5a2a6d (diff)
downloadchat-dc79707787b521ea5fc0d9088ccd9069780c8e0c.tar.gz
chat-dc79707787b521ea5fc0d9088ccd9069780c8e0c.tar.bz2
chat-dc79707787b521ea5fc0d9088ccd9069780c8e0c.zip
Merge pull request #194 from ralder/fix-command-box-css
[webui] fix command-list css
Diffstat (limited to 'web/sass-files/sass/partials/_error-bar.scss')
-rw-r--r--web/sass-files/sass/partials/_error-bar.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_error-bar.scss b/web/sass-files/sass/partials/_error-bar.scss
new file mode 100644
index 000000000..2e3d3c87e
--- /dev/null
+++ b/web/sass-files/sass/partials/_error-bar.scss
@@ -0,0 +1,25 @@
+.error-bar {
+ background-color: #0099FF;
+ text-align:center;
+ position: relative;
+ color: #fff;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 9999;
+ padding: 5px 30px;
+ &__close {
+ position: absolute;
+ right: 0;
+ top: 0;
+ color: #FFF;
+ font-size: 20px;
+ font-weight: 600;
+ text-decoration: none;
+ padding: 0 10px;
+ &:hover {
+ color: #FFF;
+ text-decoration: none;
+ }
+ }
+}