diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-08 07:30:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-08 07:30:37 +0000 |
commit | 8a7b72f7cd1ccd547a03eb4243294e741d661d3f (patch) | |
tree | 7bc7be4a8e9e298daa1349348400aa2a653866f2 /web/gui/main.css | |
parent | New upstream version 1.11.1+dfsg (diff) | |
download | netdata-8a7b72f7cd1ccd547a03eb4243294e741d661d3f.tar.xz netdata-8a7b72f7cd1ccd547a03eb4243294e741d661d3f.zip |
Adding upstream version 1.12.0.upstream/1.12.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/gui/main.css')
-rw-r--r-- | web/gui/main.css | 64 |
1 files changed, 60 insertions, 4 deletions
diff --git a/web/gui/main.css b/web/gui/main.css index 3e2c4bfc..b1fb94fd 100644 --- a/web/gui/main.css +++ b/web/gui/main.css @@ -1,6 +1,6 @@ /* force the vertical window scrollbar */ html { - overflow-y: scroll; + overflow-y: hidden; } /* prevent body from hiding under the navbar */ @@ -532,7 +532,11 @@ body.modal-open { transition: 0s } -/* --- */ +/* -------------------------------------------------------------------------- */ + +#my-netdata-dropdown-content { + width: 500px; +} #my-netdata-dropdown-content a:hover { color: #fff; @@ -551,6 +555,10 @@ body.modal-open { font-weight: 300; } +#my-netdata-dropdown-content .agent-item .__title { + cursor: pointer; +} + #my-netdata-dropdown-content .agent-item:hover { background-color: #262626; } @@ -571,7 +579,7 @@ body.modal-open { #my-netdata-dropdown-content .agent-item :nth-child(2) { min-width: 420px; - line-height: 14px; + line-height: 32px; } .agent-item--separated { @@ -605,9 +613,57 @@ body.modal-open { } #my-netdata-dropdown-content.theme-white a { - color: #555; + color: #888; } #my-netdata-dropdown-content.theme-white a:hover { color: #000; } + +#sign-in-iframe { + background-color: #fff; + border: none; +} + +#cloud-menu { +} + +#cloud-menu.dropdown-menu > li > a { + text-align: left; +} + +#my-netdata-menu-filter-input { + color: #fff; + border: none; + background-color: #4b4f55; + width: 472px; + margin: 5px 14px; + margin-right: 0; + padding: 2px 5px; + outline: none; +} + +#my-netdata-menu-filter-input::placeholder { + opacity: 0.7; +} + +#my-netdata-dropdown-content.theme-white #my-netdata-menu-filter-input { + background-color: #e7e7e7; + color: #555; +} + +.filter-control { + position: relative; +} + +.filter-control .filter-control__clear { + cursor: pointer; + position: absolute; + top: 7px; + right: 19px; +} + +#hostname { + font-size: 18px; +} + |