mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 06:09:02 +02:00
3f11776ecd
* Remove components, core and modules LESS stylesheets * Remove variables LESS stylesheets * Remove app LESS stylesheets * Remove github-sync, onboarding LESS stylesheets * Remove main-light and IEEE LESS stylesheets * Remove Less loader configuration * Remove bootstrap-3 entrypoint * Rename bootstrap-5 entrypoint to bootstrap * Remove bootstrap-5 CSS folder and move stylesheets * Update CSS variables * Restore and update github-sync.scss path * Fix try-premium.scss path and fix undefined mixin error * Restore entrypoints * Simplify buildCssPath to always use main-style.css * Remove less from prettier formatting scripts * Remove less from addHook extension * Source format * Remove nvd3 file reference from prettierignore (equivalent of nvd3.scss) * Remove less and less-loader * Add SCSS files to pirates require hook GitOrigin-RevId: bd83c79f4d6ef7305d75993959a4dc5e7714ef9c
72 lines
1.2 KiB
SCSS
72 lines
1.2 KiB
SCSS
$stripe-width: 20px;
|
|
|
|
@keyframes pdf-toolbar-stripes {
|
|
from {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
to {
|
|
background-position: $stripe-width 0;
|
|
}
|
|
}
|
|
|
|
.btn-striped-animated {
|
|
@include striped;
|
|
|
|
background-size: $stripe-width $stripe-width;
|
|
background-origin: content-box;
|
|
|
|
@include animation(pdf-toolbar-stripes 2s linear infinite);
|
|
}
|
|
|
|
.detach-compile-button {
|
|
&[disabled],
|
|
&[disabled]:active {
|
|
background-color: var(--bs-btn-bg);
|
|
color: var(--bs-btn-color);
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
@keyframes compile-button-flash {
|
|
0%,
|
|
100% {
|
|
background: rgb(0 0 0 / 0%);
|
|
}
|
|
|
|
25%,
|
|
75% {
|
|
background: rgb(0 0 0 / 20%);
|
|
}
|
|
}
|
|
|
|
@keyframes compile-button-bounce {
|
|
0%,
|
|
50%,
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
25%,
|
|
75% {
|
|
transform: translateY(2px);
|
|
}
|
|
}
|
|
|
|
.detach-compile-button-animate {
|
|
animation-duration: 1.2s;
|
|
animation-fill-mode: both;
|
|
animation-timing-function: ease-in-out;
|
|
animation-name: compile-button-flash;
|
|
}
|
|
|
|
.detach-compile-button-animate .material-symbols {
|
|
animation-duration: 0.6s;
|
|
animation-delay: 0.4s;
|
|
animation-fill-mode: both;
|
|
animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
|
|
animation-name: compile-button-bounce;
|
|
}
|