diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-02-28 13:52:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 13:52:21 +0100 |
commit | d3217560a611b94f888ecf3de93b428a7521d4de (patch) | |
tree | 26fc984f351afb994dc13c94e138476ded50c76a /client/src/sass/primeng-custom.scss | |
parent | 64645512b08875c18ebdc009a550cdfa69def955 (diff) | |
download | PeerTube-d3217560a611b94f888ecf3de93b428a7521d4de.tar.gz PeerTube-d3217560a611b94f888ecf3de93b428a7521d4de.tar.zst PeerTube-d3217560a611b94f888ecf3de93b428a7521d4de.zip |
Add visitor settings, rework logged-in dropdown (#2514)
* Add visitor settings, rework logged-in dropdown
* Make user dropdown P2P switch functional
* Fix lint
* Fix unnecessary notification when user logs out
* Simplify visitor settings code and remove unnecessary icons
* Catch parsing errors and reindent menu styles
Diffstat (limited to 'client/src/sass/primeng-custom.scss')
-rw-r--r-- | client/src/sass/primeng-custom.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/client/src/sass/primeng-custom.scss b/client/src/sass/primeng-custom.scss index 4d2d6cb67..e2c453228 100644 --- a/client/src/sass/primeng-custom.scss +++ b/client/src/sass/primeng-custom.scss | |||
@@ -274,6 +274,15 @@ p-multiselect { | |||
274 | // left: -2px !important; | 274 | // left: -2px !important; |
275 | //} | 275 | //} |
276 | } | 276 | } |
277 | |||
278 | .ui-multiselect-panel .ui-multiselect-items .ui-multiselect-item.ui-state-highlight { | ||
279 | background-color: var(--mainColorLighter); | ||
280 | } | ||
281 | |||
282 | .ui-inputtext:enabled:focus:not(.ui-state-error) { | ||
283 | border-color: var(--mainColorLighter) !important; | ||
284 | box-shadow: none; | ||
285 | } | ||
277 | } | 286 | } |
278 | 287 | ||
279 | // PrimeNG calendar tweaks | 288 | // PrimeNG calendar tweaks |
@@ -379,6 +388,24 @@ p-inputswitch { | |||
379 | .ui-inputswitch-checked .ui-inputswitch-slider { | 388 | .ui-inputswitch-checked .ui-inputswitch-slider { |
380 | background-color: var(--mainColor) !important; | 389 | background-color: var(--mainColor) !important; |
381 | } | 390 | } |
391 | |||
392 | &.small { | ||
393 | height: 20px; | ||
394 | |||
395 | .ui-inputswitch { | ||
396 | width: 2.5em !important; | ||
397 | height: 1.45em !important; | ||
398 | |||
399 | .ui-inputswitch-slider::before { | ||
400 | height: 1em !important; | ||
401 | width: 1em !important; | ||
402 | } | ||
403 | } | ||
404 | |||
405 | .ui-inputswitch-checked .ui-inputswitch-slider::before { | ||
406 | transform: translateX(1em) !important; | ||
407 | } | ||
408 | } | ||
382 | } | 409 | } |
383 | 410 | ||
384 | p-toast { | 411 | p-toast { |