aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-05-22 11:15:31 +0200
committerChocobozzz <me@florianbigard.com>2020-05-22 11:15:31 +0200
commit5f57df54627c61817226768bb360a8a93ea2c0b9 (patch)
tree1bfb456d337210515c2d2319e1ba11ec72adb255 /client/src/app
parentefc84bdc494a3b102e4aa8bc2d24a3766bd0d751 (diff)
downloadPeerTube-5f57df54627c61817226768bb360a8a93ea2c0b9.tar.gz
PeerTube-5f57df54627c61817226768bb360a8a93ea2c0b9.tar.zst
PeerTube-5f57df54627c61817226768bb360a8a93ea2c0b9.zip
Fix action button icons theme
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.scss b/client/src/app/videos/+video-watch/video-watch.component.scss
index 977312a83..e59e6613b 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.scss
+++ b/client/src/app/videos/+video-watch/video-watch.component.scss
@@ -255,21 +255,21 @@ $video-info-margin-left: 44px;
255 255
256 &.action-button-like.activated { 256 &.action-button-like.activated {
257 .count { 257 .count {
258 color: $activated-action-button-color; 258 color: var(--activatedActionButtonColor);
259 } 259 }
260 260
261 my-global-icon { 261 my-global-icon {
262 @include apply-svg-color($activated-action-button-color); 262 @include apply-svg-color(var(--activatedActionButtonColor));
263 } 263 }
264 } 264 }
265 265
266 &.action-button-dislike.activated { 266 &.action-button-dislike.activated {
267 .count { 267 .count {
268 color: $activated-action-button-color; 268 color: var(--activatedActionButtonColor);
269 } 269 }
270 270
271 my-global-icon { 271 my-global-icon {
272 @include apply-svg-color($activated-action-button-color); 272 @include apply-svg-color(var(--activatedActionButtonColor));
273 } 273 }
274 } 274 }
275 275
@@ -325,7 +325,7 @@ $video-info-margin-left: 44px;
325 background-color: #909090; 325 background-color: #909090;
326 326
327 &.liked { 327 &.liked {
328 background-color: $activated-action-button-color; 328 background-color: var(--activatedActionButtonColor);
329 } 329 }
330 } 330 }
331 } 331 }