|
@@ -265,7 +265,7 @@
|
265
|
265
|
* TODO: when the old filmstrip has been removed, remove the "new-" prefix.
|
266
|
266
|
*/
|
267
|
267
|
.new-toolbox {
|
268
|
|
- background-color: rgba(40, 52, 71, 0.5);
|
|
268
|
+ background-color: $newToolbarBackgroundColor;
|
269
|
269
|
bottom: calc((#{$newToolbarSize} * 2) * -1);
|
270
|
270
|
box-sizing: border-box;
|
271
|
271
|
display: flex;
|
|
@@ -316,15 +316,15 @@
|
316
|
316
|
}
|
317
|
317
|
|
318
|
318
|
i:hover {
|
319
|
|
- background-color: rgba(40, 52, 71, 0.7);
|
|
319
|
+ background-color: $newToolbarButtonHoverColor;
|
320
|
320
|
}
|
321
|
321
|
|
322
|
322
|
i.toggled {
|
323
|
|
- background: rgba(40, 52, 71, 1);
|
|
323
|
+ background: $newToolbarButtonToggleColor;
|
324
|
324
|
}
|
325
|
325
|
|
326
|
326
|
i.toggled:hover {
|
327
|
|
- background-color: rgba(40, 52, 71, 1);
|
|
327
|
+ background-color: $newToolbarButtonHoverColor;
|
328
|
328
|
}
|
329
|
329
|
|
330
|
330
|
i.disabled {
|
|
@@ -422,7 +422,7 @@
|
422
|
422
|
}
|
423
|
423
|
|
424
|
424
|
.filmstrip-toolbox {
|
425
|
|
- background-color: rgba(40, 52, 71, 0.5);
|
|
425
|
+ background-color: $newToolbarBackgroundColor;
|
426
|
426
|
box-sizing: border-box;
|
427
|
427
|
display: flex;
|
428
|
428
|
flex-direction: column;
|
|
@@ -438,15 +438,15 @@
|
438
|
438
|
}
|
439
|
439
|
|
440
|
440
|
i:hover {
|
441
|
|
- background-color: rgba(40, 52, 71, 0.7);
|
|
441
|
+ background-color: $newToolbarButtonHoverColor;
|
442
|
442
|
}
|
443
|
443
|
|
444
|
444
|
i.toggled {
|
445
|
|
- background: rgba(40, 52, 71, 1);
|
|
445
|
+ background: $newToolbarButtonToggleColor;
|
446
|
446
|
}
|
447
|
447
|
|
448
|
448
|
i.toggled:hover {
|
449
|
|
- background-color: rgba(40, 52, 71, 1);
|
|
449
|
+ background-color: $newToolbarButtonHoverColor;
|
450
|
450
|
}
|
451
|
451
|
|
452
|
452
|
.icon-hangup {
|