1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

[mv3] Fix glitchy popup panel when width increases

Related issue:
https://github.com/uBlockOrigin/uBOL-home/issues/66
This commit is contained in:
Raymond Hill 2023-09-16 12:23:47 -04:00
parent ee6de37b6e
commit d005e3f3ac
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -4,10 +4,6 @@
top: -20%;
}
/* Internal CSS values */
:root body {
overflow: hidden;
}
:root body,
:root.mobile body {
--font-size: 14px;
@ -19,6 +15,7 @@
--popup-rule-cell-width: 5em;
font-size: var(--font-size);
line-height: 20px;
min-width: 100%;
}
:root body.loading {
opacity: 0;
@ -37,7 +34,7 @@ a {
display: flex;
flex-direction: column;
max-width: 340px;
min-width: var(--popup-main-min-width);
min-width: 100%;
}
:root.portrait #main {
align-self: inherit;
@ -277,10 +274,3 @@ body:not([data-section~="b"]) [data-section="b"] {
#templates {
display: none;
}
@media (max-width: 480px) {
#main {
max-width: 100vw;
width: 100vw;
}
}