1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Fix untheme parts in element picker widget

Related feedback:
- https://github.com/uBlockOrigin/uBlock-issues/discussions/1963#discussioncomment-2117965
This commit is contained in:
Raymond Hill 2022-02-05 17:17:16 -05:00
parent 6eb9b0998e
commit ed1b5e2053
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -63,7 +63,7 @@ html#ublock0-epicker,
width: 100%;
}
#ublock0-epicker section > div:first-child {
border: 1px solid var(--border-2);
border: 1px solid var(--button-surface);
margin: 0;
position: relative;
}
@ -115,7 +115,7 @@ html#ublock0-epicker,
}
.resultsetModifier > span > span:nth-of-type(1) {
background-color: var(--checkbox-checked-ink);
border-inline-end: 1px solid #aaa;
border-inline-end: 1px solid var(--button-surface);
display: inline-block;
flex-shrink: 0;
height: 6px;
@ -136,8 +136,8 @@ html#ublock0-epicker,
width: 16px;
}
.resultsetModifier > span > span:nth-of-type(3) {
background-color: var(--checkbox-ink);
border-inline-start: 1px solid #aaa;
background-color: var(--button-surface);
border-inline-start: 1px solid var(--button-surface);
display: inline-block;
flex-grow: 1;
height: 6px;
@ -155,8 +155,8 @@ html#ublock0-epicker,
}
#resultsetCount {
align-items: center;
background-color: #aaa;
color: white;
background-color: var(--button-surface);
color: var(--ink-1);
display: inline-flex;
justify-content: center;
min-width: 2.2em;