preparation for js-autohiding submit buttons to not flicker on pageload
This commit is contained in:
parent
756f8cbdb9
commit
a777971004
@ -11,11 +11,25 @@ fieldset {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[data-autosubmit][type="submit"] {
|
||||||
|
animation: fade-in 500ms ease-in-out backwards;
|
||||||
|
animation-delay: 500ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fade-in {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
visibility: hidden;
|
visibility: hidden !important;
|
||||||
height: 0;
|
height: 0 !important;
|
||||||
opacity: 0;
|
width: 0 !important;
|
||||||
margin: 0;
|
opacity: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
min-width: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select--pagesize {
|
.select--pagesize {
|
||||||
|
|||||||
Reference in New Issue
Block a user