diff options
author | Chocobozzz <me@florianbigard.com> | 2019-10-22 11:14:58 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-10-22 11:14:58 +0200 |
commit | 18c9772876d0e36a4f404d914140f3d24d6037e1 (patch) | |
tree | 29c5d3e13266828e37c4c58a9735c996e19574e8 /client/src | |
parent | 1cd4fe501de78e67cfdd19ea44989393a29ec2e6 (diff) | |
download | PeerTube-18c9772876d0e36a4f404d914140f3d24d6037e1.tar.gz PeerTube-18c9772876d0e36a4f404d914140f3d24d6037e1.tar.zst PeerTube-18c9772876d0e36a4f404d914140f3d24d6037e1.zip |
Fix checkbox themes
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/menu/avatar-notification.component.scss | 2 | ||||
-rw-r--r-- | client/src/sass/include/_mixins.scss | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/client/src/app/menu/avatar-notification.component.scss b/client/src/app/menu/avatar-notification.component.scss index 5e09225df..d0f01fc32 100644 --- a/client/src/app/menu/avatar-notification.component.scss +++ b/client/src/app/menu/avatar-notification.component.scss | |||
@@ -56,7 +56,7 @@ | |||
56 | align-items: center; | 56 | align-items: center; |
57 | justify-content: center; | 57 | justify-content: center; |
58 | font-weight: $font-semibold; | 58 | font-weight: $font-semibold; |
59 | color: var(--mainForegroundColor); | 59 | color: $fg-color; |
60 | padding: 7px 0; | 60 | padding: 7px 0; |
61 | } | 61 | } |
62 | } | 62 | } |
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 26ba490c7..4b47dde09 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -345,7 +345,7 @@ | |||
345 | width: 18px; | 345 | width: 18px; |
346 | min-width: 18px; | 346 | min-width: 18px; |
347 | height: 18px; | 347 | height: 18px; |
348 | border: $border-width solid var(--mainForegroundColor); | 348 | border: $border-width solid $fg-color; |
349 | border-radius: 3px; | 349 | border-radius: 3px; |
350 | vertical-align: middle; | 350 | vertical-align: middle; |
351 | cursor: pointer; | 351 | cursor: pointer; |
@@ -359,14 +359,14 @@ | |||
359 | height: 12px; | 359 | height: 12px; |
360 | opacity: 0; | 360 | opacity: 0; |
361 | transform: rotate(45deg) scale(0); | 361 | transform: rotate(45deg) scale(0); |
362 | border-right: 2px solid var(--mainBackgroundColor); | 362 | border-right: 2px solid $bg-color; |
363 | border-bottom: 2px solid var(--mainBackgroundColor); | 363 | border-bottom: 2px solid $bg-color; |
364 | } | 364 | } |
365 | } | 365 | } |
366 | 366 | ||
367 | &:checked + span { | 367 | &:checked + span { |
368 | border-color: transparent; | 368 | border-color: transparent; |
369 | background: var(--mainColor); | 369 | background: $orange-color; |
370 | animation: jelly 0.6s ease; | 370 | animation: jelly 0.6s ease; |
371 | 371 | ||
372 | &:after { | 372 | &:after { |