rewrite CSS query selectors to use updated data

This commit is contained in:
buzz-lightsnack-2007 2024-05-17 23:30:04 +08:00
parent f1048ebd79
commit 7eb43a5224

View file

@ -2,21 +2,21 @@
}*/ }*/
article [data-result-content="*"] { article[data-result-linked="filters"] > h2 {
display: none; display: none;
} }
a > [data-result-content="*"] { a[data-result-linked="filters"] > * {
display: none; display: none;
} }
@media only screen and (max-width: 992px) { @media only screen and (max-width: 992px) {
article [data-result-content="*"] {display: block;} article[data-result-linked="filters"] > h2 {display: block;}
} }
@media only screen and (min-width: 992px) { @media only screen and (min-width: 992px) {
a > [data-result-content="*"] { a[data-result-linked="filters"] > * {
display: block; display: block;
} }
} }