1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-07 03:12:33 +01:00

Minor fine-tuning of visual of select elements

Additionally, have the width of the page selector
in the logger proportional to the width of the
logger -- this should improve usability on small
screen devices.
This commit is contained in:
Raymond Hill 2020-05-08 06:38:23 -04:00
parent 6d51c9fb6c
commit d8bf72a435
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 2 additions and 9 deletions

View File

@ -205,13 +205,6 @@ label {
select { select {
padding: 2px; padding: 2px;
} }
:root.desktop select {
appearance: none;
--webkit-appearance: none;
background-color: var(--select-surface);
font: inherit;
font-size: var(--font-size);
}
.hidden { .hidden {
display: none; display: none;

View File

@ -37,8 +37,9 @@ textarea {
background-color: #eee; background-color: #eee;
} }
#pageSelector { #pageSelector {
min-width: 10em;
padding: 0.25em 0; padding: 0.25em 0;
width: 28em; width: 50vw;
} }
body[dir="ltr"] #pageSelector { body[dir="ltr"] #pageSelector {
margin-right: 1em; margin-right: 1em;
@ -518,7 +519,6 @@ body[dir="rtl"] #modalOverlay > div > div:nth-of-type(2) {
#netFilteringDialog select { #netFilteringDialog select {
max-width: 75%; max-width: 75%;
outline: none; outline: none;
padding: 0.2em;
} }
#netFilteringDialog > .preview { #netFilteringDialog > .preview {
align-items: center; align-items: center;