Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_always_on_top.scss 954B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .always-on-top-toolbox {
  2. background-color: $newToolbarBackgroundColor;
  3. border-radius: 3px;
  4. display: flex;
  5. flex-direction: row;
  6. left: 50%;
  7. position: absolute;
  8. top: 10px;
  9. transform: translateX(-50%);
  10. z-index: $toolbarZ;
  11. .toolbox-icon {
  12. cursor: pointer;
  13. padding: 7px;
  14. &.toggled {
  15. background: $AOTToolbarButtonToggleColor;
  16. }
  17. &.disabled {
  18. cursor: initial;
  19. }
  20. }
  21. .toolbox-button {
  22. &:first-child {
  23. .toolbox-icon {
  24. border-top-left-radius: 3px;
  25. border-bottom-left-radius: 3px;
  26. }
  27. }
  28. &:nth-child(2) {
  29. svg {
  30. fill: $hangupColor;
  31. }
  32. }
  33. &:last-child {
  34. .toolbox-icon {
  35. border-top-right-radius: 3px;
  36. border-bottom-right-radius: 3px;
  37. }
  38. }
  39. }
  40. }