You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_mini_toolbox.scss 623B

12345678910111213141516171819202122232425262728293031323334
  1. .filmstrip-toolbox,
  2. .always-on-top-toolbox {
  3. background-color: $newToolbarBackgroundColor;
  4. border-radius: 3px;
  5. display: flex;
  6. z-index: $toolbarZ;
  7. .toolbox-icon {
  8. cursor: pointer;
  9. padding: 7px;
  10. width: 25px;
  11. height : 25px;
  12. &.toggled {
  13. background: $AOTToolbarButtonToggleColor;
  14. }
  15. &.disabled {
  16. cursor: initial;
  17. }
  18. }
  19. }
  20. .always-on-top-toolbox {
  21. flex-direction: row;
  22. left: 50%;
  23. position: absolute;
  24. bottom: 10px;
  25. transform: translateX(-50%);
  26. }
  27. .filmstrip-toolbox {
  28. flex-direction: column;
  29. }