Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_mini_toolbox.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. &.toggled {
  11. background: $AOTToolbarButtonToggleColor;
  12. }
  13. &.disabled {
  14. cursor: initial;
  15. }
  16. }
  17. .toolbox-button {
  18. &:nth-child(2) {
  19. svg {
  20. fill: $hangupColor;
  21. }
  22. }
  23. }
  24. }
  25. .always-on-top-toolbox {
  26. flex-direction: row;
  27. left: 50%;
  28. position: absolute;
  29. top: 10px;
  30. transform: translateX(-50%);
  31. .toolbox-button {
  32. &:first-child {
  33. .toolbox-icon {
  34. border-top-left-radius: 3px;
  35. border-bottom-left-radius: 3px;
  36. }
  37. }
  38. &:last-child {
  39. .toolbox-icon {
  40. border-top-right-radius: 3px;
  41. border-bottom-right-radius: 3px;
  42. }
  43. }
  44. }
  45. }
  46. .filmstrip-toolbox {
  47. flex-direction: column;
  48. .toolbox-button {
  49. .toolbox-icon {
  50. border-radius: 3px;
  51. }
  52. }
  53. }