web/user: fix user settings colours on dark theme (#6499)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
@ -49,6 +49,18 @@ export class UserSettingsPage extends AKElement {
|
||||
PFFormControl,
|
||||
PFStack,
|
||||
css`
|
||||
.pf-c-page {
|
||||
--pf-c-page--BackgroundColor: transparent;
|
||||
}
|
||||
.pf-c-page__main-section {
|
||||
--pf-c-page__main-section--BackgroundColor: transparent;
|
||||
}
|
||||
:host([theme="dark"]) .pf-c-page {
|
||||
--pf-c-page--BackgroundColor: transparent;
|
||||
}
|
||||
:host([theme="dark"]) .pf-c-page__main-section {
|
||||
--pf-c-page__main-section--BackgroundColor: transparent;
|
||||
}
|
||||
@media screen and (min-width: 1200px) {
|
||||
:host {
|
||||
width: 90rem;
|
||||
|
||||
Reference in New Issue
Block a user