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 628B

1234567891011121314151617181920212223242526272829303132333435
  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: 22px;
  11. height : 22px;
  12. &.toggled {
  13. background: none;
  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. padding: 3px !important;
  27. }
  28. .filmstrip-toolbox {
  29. flex-direction: column;
  30. }