diff --git a/src/api/dashboard/static/css/indicators-new.css b/src/api/dashboard/static/css/indicators-new.css index 50a9878..ffdbf4e 100644 --- a/src/api/dashboard/static/css/indicators-new.css +++ b/src/api/dashboard/static/css/indicators-new.css @@ -115,14 +115,17 @@ display: flex; align-items: center; justify-content: space-between; + gap: 4px; } -.section-title button.clear-all { +.section-title button.clear-all, +.section-title button.visibility-toggle { display: none; - margin-left: auto; } -.section-title:hover button.clear-all { +.section-title:hover button.clear-all, +.section-title:hover button.visibility-toggle { display: inline-block; } +.visibility-toggle, .clear-all { background: var(--tv-red); border: none; @@ -132,6 +135,10 @@ border-radius: 3px; cursor: pointer; } +.visibility-toggle { + background: var(--tv-blue); +} +.visibility-toggle:hover, .clear-all:hover { opacity: 0.9; }