forked from Ponysearch/Ponysearch
3d9e48b84e
Do note that checkboxes in the engine tab are displayed reversed.
See: 3408d061aa/searx/templates/simple/preferences.html (L313)
A checkbox for an engine is checked when the engine is disabled.
19 lines
309 B
Text
19 lines
309 B
Text
.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;
|
|
}
|