CollabButton.scss 610 B

123456789101112131415161718192021222324252627282930
  1. @import "../css/variables.module";
  2. .excalidraw {
  3. .CollabButton.is-collaborating {
  4. background-color: var(--button-special-active-background-color);
  5. .ToolIcon__icon svg,
  6. .ToolIcon__label {
  7. color: var(--icon-green-fill-color);
  8. }
  9. }
  10. .CollabButton-collaborators {
  11. :root[dir="ltr"] & {
  12. right: -5px;
  13. }
  14. :root[dir="rtl"] & {
  15. left: -5px;
  16. }
  17. min-width: 1em;
  18. position: absolute;
  19. bottom: -5px;
  20. padding: 3px;
  21. border-radius: 50%;
  22. background-color: $oc-green-6;
  23. color: $oc-white;
  24. font-size: 0.7em;
  25. font-family: var(--ui-font);
  26. }
  27. }