You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.4 KiB
SCSS
73 lines
1.4 KiB
SCSS
2 years ago
|
@import "../../css/variables.module";
|
||
4 years ago
|
|
||
|
.excalidraw {
|
||
2 years ago
|
.collab-button {
|
||
2 years ago
|
--button-bg: var(--color-primary);
|
||
|
--button-color: white;
|
||
|
--button-border: var(--color-primary);
|
||
2 years ago
|
|
||
2 years ago
|
--button-width: var(--lg-button-size);
|
||
|
--button-height: var(--lg-button-size);
|
||
2 years ago
|
|
||
2 years ago
|
--button-hover-bg: var(--color-primary-darker);
|
||
|
--button-hover-border: var(--color-primary-darker);
|
||
2 years ago
|
|
||
2 years ago
|
--button-active-bg: var(--color-primary-darker);
|
||
|
|
||
1 year ago
|
box-shadow: 0 0 0 1px var(--color-surface-lowest);
|
||
|
|
||
2 years ago
|
flex-shrink: 0;
|
||
2 years ago
|
|
||
2 years ago
|
// double .active to force specificity
|
||
|
&.active.active {
|
||
2 years ago
|
background-color: #0fb884;
|
||
|
border-color: #0fb884;
|
||
|
|
||
|
svg {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
&:hover,
|
||
|
&:active {
|
||
|
background-color: #0fb884;
|
||
|
border-color: #0fb884;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.theme--dark {
|
||
|
.collab-button {
|
||
|
color: var(--color-gray-90);
|
||
|
}
|
||
|
}
|
||
|
|
||
4 years ago
|
.CollabButton.is-collaborating {
|
||
4 years ago
|
background-color: var(--button-special-active-bg-color);
|
||
4 years ago
|
|
||
4 years ago
|
.ToolIcon__icon svg,
|
||
|
.ToolIcon__label {
|
||
4 years ago
|
color: var(--icon-green-fill-color);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.CollabButton-collaborators {
|
||
|
:root[dir="ltr"] & {
|
||
|
right: -5px;
|
||
|
}
|
||
|
:root[dir="rtl"] & {
|
||
|
left: -5px;
|
||
|
}
|
||
|
min-width: 1em;
|
||
3 years ago
|
min-height: 1em;
|
||
|
line-height: 1;
|
||
4 years ago
|
position: absolute;
|
||
|
bottom: -5px;
|
||
|
padding: 3px;
|
||
|
border-radius: 50%;
|
||
2 years ago
|
background-color: $oc-green-2;
|
||
|
color: $oc-green-9;
|
||
|
font-size: 0.6rem;
|
||
3 years ago
|
font-family: "Cascadia";
|
||
4 years ago
|
}
|
||
|
}
|