Skip to content
Snippets Groups Projects
Verified Commit 3ad9ff98 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3404218 by djsagar, mherchel, smustgrave: Table filter creates jank...

Issue #3404218 by djsagar, mherchel, smustgrave: Table filter creates jank (layout shift) on page load
parent fe8bed7b
No related branches found
No related tags found
No related merge requests found
...@@ -20,3 +20,16 @@ ...@@ -20,3 +20,16 @@
.js .js-show { .js .js-show {
display: block; display: block;
} }
/**
* Use the scripting media features for modern browsers to reduce layout shifts.
*/
@media (scripting: enabled) {
/* Extra specificity to override previous selector. */
.js-hide.js-hide {
display: none;
}
.js-show {
display: block;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment