improve option page for missing permission box

This commit is contained in:
nobody 2023-05-29 07:04:40 +02:00
parent ddc9b09e2b
commit d3a9c27f79
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
1 changed files with 10 additions and 3 deletions

View File

@ -406,17 +406,20 @@ body[dir="rtl"] .input-text {
width: 10px; width: 10px;
} }
.chromium-banner { .chromium-banner, #div-permission {
background-color: #ffcccc; background-color: #ffcccc;
border: 1px solid red; border: 1px solid red;
border-radius: 3px; border-radius: 3px;
display: none;
font-weight: bold; font-weight: bold;
margin-top: 20px; margin-top: 20px;
padding: 0.8em; padding: 0.8em;
text-align: center; text-align: center;
} }
.chromium-banner {
display: none;
}
@media only screen and (max-width: 760px) { @media only screen and (max-width: 760px) {
.div-badge { .div-badge {
border: none; border: none;
@ -464,8 +467,12 @@ body[dir="rtl"] .input-text {
background-image: url("../../icons/help-light.svg"); background-image: url("../../icons/help-light.svg");
} }
.chromium-banner { .chromium-banner, #div-permission {
background-color: #A20B0B; background-color: #A20B0B;
color: white; color: white;
} }
#div-permission > p {
color: white !important;
}
} }