mirror of
https://github.com/searxng/searxng.git
synced 2026-05-13 06:25:47 +02:00
3d9e48b84e
Do note that checkboxes in the engine tab are displayed reversed. See: https://github.com/searxng/searxng/blob/3408d061aab9abc6168fec9bbc6deab71b236dac/searx/templates/simple/preferences.html#L313 A checkbox for an engine is checked when the engine is disabled.
20 lines
309 B
Plaintext
20 lines
309 B
Plaintext
.dialog-modal {
|
|
animation-name: dialogmodal;
|
|
animation-duration: 0.13s;
|
|
|
|
@keyframes dialogmodal {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.5;
|
|
transform: translate(-50%, -50%) scale(1.05);
|
|
}
|
|
}
|
|
}
|
|
|
|
input.checkbox-onoff[type="checkbox"]::before {
|
|
transition: left 0.25s;
|
|
}
|