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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. padding: 4px;
  25. position: absolute;
  26. right: -4px;
  27. top: -3px;
  28. &:hover {
  29. background: #F2F3F4;
  30. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  31. &> svg {
  32. fill: #000;
  33. }
  34. &.settings-button-small-icon--disabled {
  35. background: #36383C;
  36. &> svg {
  37. fill: #929292;
  38. }
  39. }
  40. }
  41. &> svg {
  42. fill: #fff;
  43. }
  44. &--disabled {
  45. background-color: #36383c;
  46. cursor: default;
  47. &> svg {
  48. fill: #929292;
  49. }
  50. }
  51. }