mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 04:29:01 +01:00
25 lines
612 B
CSS
25 lines
612 B
CSS
@keyframes left-pane-toggle-button-expand {
|
|
from {
|
|
transform: rotate(0deg);
|
|
} to {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
@keyframes left-pane-toggle-button-collapse {
|
|
from {
|
|
transform: rotate(180deg);
|
|
} to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.layout-vertical .left-pane-toggle-button.action-collapse::before {
|
|
transform: rotate(360deg);
|
|
animation: left-pane-toggle-button-collapse 250ms linear;
|
|
}
|
|
|
|
.layout-vertical .left-pane-toggle-button.action-expand::before {
|
|
transform: rotate(180deg);
|
|
animation: left-pane-toggle-button-expand 250ms linear;
|
|
} |