2021-05-15 14:49:58 +05:30
|
|
|
.excalidraw {
|
2022-02-17 18:22:19 +05:30
|
|
|
--color-primary-contrast-offset: #625ee0; // to offset Chubb illusion
|
|
|
|
|
|
|
|
&.theme--dark {
|
|
|
|
--color-primary-contrast-offset: #726dff; // to offset Chubb illusion
|
|
|
|
}
|
2022-12-06 16:42:54 +05:30
|
|
|
.layer-ui__wrapper .layer-ui__wrapper__footer-center {
|
|
|
|
justify-content: flex-end;
|
2021-07-15 18:48:03 +02:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
margin-inline-start: auto;
|
2021-05-15 14:49:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.encrypted-icon {
|
|
|
|
border-radius: var(--space-factor);
|
2021-12-15 15:31:44 +01:00
|
|
|
color: var(--color-primary);
|
2021-07-15 18:48:03 +02:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
margin-inline-start: auto;
|
|
|
|
margin-inline-end: 0.6em;
|
2021-05-15 14:49:58 +05:30
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 1.2rem;
|
|
|
|
height: 1.2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-15 21:51:41 +05:30
|
|
|
.excalidraw-app.is-collaborating {
|
|
|
|
[data-testid="clear-canvas-button"] {
|
2022-11-01 17:29:58 +01:00
|
|
|
display: none;
|
2022-04-15 21:51:41 +05:30
|
|
|
}
|
|
|
|
}
|
2022-05-18 18:30:34 +02:00
|
|
|
|
|
|
|
.plus-button {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
align-items: center;
|
|
|
|
border: 1px solid var(--color-primary);
|
2022-11-01 17:29:58 +01:00
|
|
|
padding: 0.5rem 0.75rem;
|
2022-05-18 18:30:34 +02:00
|
|
|
border-radius: var(--space-factor);
|
|
|
|
color: var(--color-primary) !important;
|
|
|
|
text-decoration: none !important;
|
|
|
|
|
2022-11-01 17:29:58 +01:00
|
|
|
font-size: 0.75rem;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: var(--default-button-size);
|
|
|
|
|
2022-05-18 18:30:34 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: var(--color-primary);
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: var(--color-primary-darker);
|
|
|
|
}
|
|
|
|
}
|
2022-11-01 17:29:58 +01:00
|
|
|
|
|
|
|
.theme--dark {
|
|
|
|
.plus-button {
|
|
|
|
&:hover {
|
|
|
|
color: black !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|