diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-04-17 17:57:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-04-17 17:57:47 +0000 |
commit | 1d63948d79ca6f32889656692d6736c9127f2ee1 (patch) | |
tree | bb26a34d7c7b62ac30b0d4da15584efe3e2a754a /web/gui/main.css | |
parent | Releasing debian version 1.13.0-1. (diff) | |
download | netdata-1d63948d79ca6f32889656692d6736c9127f2ee1.tar.xz netdata-1d63948d79ca6f32889656692d6736c9127f2ee1.zip |
Merging upstream version 1.14.0~rc0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/gui/main.css')
-rw-r--r-- | web/gui/main.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/web/gui/main.css b/web/gui/main.css index b1fb94fd..994dbdb7 100644 --- a/web/gui/main.css +++ b/web/gui/main.css @@ -667,3 +667,49 @@ body.modal-open { font-size: 18px; } +.sign-in-btn { + background-color: #1E2126; +} + +.sign-in-btn.theme-white { + background-color: #e6e6e6; +} + +.sign-in-btn.theme-white span { + color: #000; +} + +#sign-in-banner { + position: fixed; + bottom: 0; + left: 0; + right: 0; + z-index: 9999; + /* margin: 5px 0; */ + background-color: #1E2126; + height: 44px; + line-height: 44px; + text-align: center; +} + +#sign-in-banner.theme-white { + background-color: #e6e6e6; +} + +#sign-in-banner .__link { + color: #17CE8A; +} + +#sign-in-banner .__link:hover { + text-decoration: underline; +} + +#sign-in-banner .__close { + cursor: pointer; + float: right; +} + +#sign-in-banner .__close .fa-times { + margin-left: 5px; + color: #17CE8A; +} |