UX: adjust bootstrap mode tooltip color (#25002)

This commit is contained in:
Kris 2023-12-21 13:22:28 -05:00 committed by GitHub
parent c91d053dec
commit 2887e2c055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 8 deletions

View File

@ -416,14 +416,21 @@ $mobile-avatar-height: 1.532em;
}
}
.d-header-mode .bootstrap-mode {
color: var(--primary-medium);
font-size: var(--font-down-1);
margin-left: 1em;
padding: 0.15em 0.5em;
.d-header-mode {
.bootstrap-mode {
color: var(--primary-medium);
font-size: var(--font-down-1);
margin-left: 1em;
padding: 0.15em 0.5em;
&:focus {
background-color: var(--primary-medium);
color: var(--secondary);
&:focus {
background-color: var(--primary-medium);
color: var(--secondary);
}
}
.fk-d-button-tooltip .fk-d-tooltip__trigger {
color: var(--header_primary-high);
background: transparent;
}
}