web/admin: fix dark theme for hover on tables
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
33f547c870
commit
52a0b19f7e
|
@ -165,7 +165,7 @@ export class AdminInterface extends AKElement {
|
|||
|
||||
renderSidebarItems(): TemplateResult {
|
||||
return html`
|
||||
${this.version?.versionCurrent !== VERSION
|
||||
${this.version && this.version.versionCurrent !== VERSION
|
||||
? html`
|
||||
<ak-sidebar-item ?highlight=${true}>
|
||||
<span slot="label"
|
||||
|
|
|
@ -177,6 +177,8 @@ html > form > input {
|
|||
--pf-c-table--BackgroundColor: var(--ak-dark-background-light);
|
||||
--pf-c-table--BorderColor: var(--ak-dark-background-lighter);
|
||||
--pf-c-table--cell--Color: var(--ak-dark-foreground);
|
||||
--pf-c-table--tr--m-hoverable--hover--BackgroundColor: var(--ak-dark-background-light-ish);
|
||||
--pf-c-table--tr--m-hoverable--active--BackgroundColor: var(--ak-dark-background-lighter);
|
||||
}
|
||||
.pf-c-table__text {
|
||||
color: var(--ak-dark-foreground);
|
||||
|
|
Reference in New Issue