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.

_settings-button.scss 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .settings-button-container {
  2. position: relative;
  3. .toolbox-icon {
  4. align-items: center;
  5. border-radius: 3px;
  6. cursor: pointer;
  7. display: flex;
  8. justify-content: center;
  9. &.disabled, .disabled & {
  10. cursor: initial;
  11. color: #929292;
  12. background-color: #36383c;
  13. &:hover {
  14. background-color: #36383c;
  15. }
  16. }
  17. }
  18. }
  19. .settings-button-small-icon {
  20. background: #36383C;
  21. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  22. border-radius: 3px;
  23. cursor: pointer;
  24. height: 18px;
  25. position: absolute;
  26. text-align: center;
  27. top: 0;
  28. right: -4;
  29. width: 18px;
  30. &> svg {
  31. fill: #fff;
  32. margin-top: 5px;
  33. }
  34. &--disabled {
  35. background-color: #36383c;
  36. cursor: default;
  37. &> svg {
  38. fill: #929292;
  39. }
  40. }
  41. &--hovered {
  42. background: #F2F3F4;
  43. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  44. &> svg {
  45. fill: #000;
  46. }
  47. &.settings-button-small-icon--disabled {
  48. &> svg {
  49. fill: #929292;
  50. }
  51. }
  52. }
  53. }