2021-05-06 18:51:19 +02:00
|
|
|
@import "colors";
|
2015-12-08 11:32:29 +01:00
|
|
|
|
2021-01-28 15:27:29 +01:00
|
|
|
.areas {
|
|
|
|
margin-bottom: 10px;
|
2016-06-24 16:41:44 +02:00
|
|
|
|
2021-01-28 15:27:29 +01:00
|
|
|
input {
|
|
|
|
margin-top: 5px;
|
2016-06-24 16:41:44 +02:00
|
|
|
}
|
2021-01-28 15:27:29 +01:00
|
|
|
}
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
.ds-ctrl button {
|
|
|
|
color: $dark-grey;
|
|
|
|
|
|
|
|
&.on,
|
|
|
|
&:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
}
|
2021-05-06 18:51:19 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
.react-aria-popover {
|
|
|
|
&[data-placement='top'] {
|
|
|
|
--origin: translateY(8px);
|
2021-05-06 18:51:19 +02:00
|
|
|
}
|
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
&[data-placement='bottom'] {
|
|
|
|
--origin: translateY(-8px);
|
|
|
|
}
|
2021-05-06 18:51:19 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
&[data-placement='right'] {
|
|
|
|
--origin: translateX(-8px);
|
2021-05-06 18:51:19 +02:00
|
|
|
}
|
2021-06-30 10:28:02 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
&[data-placement='left'] {
|
|
|
|
--origin: translateX(8px);
|
|
|
|
}
|
2021-06-30 10:28:02 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
&[data-entering] {
|
|
|
|
animation: popover-slide 200ms;
|
|
|
|
}
|
2021-06-30 10:28:02 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
&[data-exiting] {
|
|
|
|
animation: popover-slide 200ms reverse ease-in;
|
2021-06-30 10:28:02 +02:00
|
|
|
}
|
2021-05-06 18:51:19 +02:00
|
|
|
}
|
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
@keyframes popover-slide {
|
|
|
|
from {
|
|
|
|
transform: var(--origin);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2021-05-06 18:51:19 +02:00
|
|
|
|
2024-09-20 18:22:49 +02:00
|
|
|
to {
|
|
|
|
transform: translateY(0);
|
|
|
|
opacity: 1;
|
2021-05-06 18:51:19 +02:00
|
|
|
}
|
|
|
|
}
|