changed row highlight color

This commit is contained in:
Ed Silkworth 2022-11-17 13:08:06 -08:00
parent b968d94665
commit 2877ae3e7b
No known key found for this signature in database
GPG Key ID: 26F260F04191F431
2 changed files with 6 additions and 0 deletions

View File

@ -19,3 +19,5 @@ Nov 16, 2022 · forked, rebased theme from Gitea's default theme, adopted colors
In fact, sometimes you cannot use !important (e.g., I could not use !important for .ui.tabular.menu because it would clash with !important in .ui.secondary.tabular.menu).
To circumvent that, be more specific (e.g., instead of .ui.tabular.menu {}, input .ui.tabular.stackable.menu.navbar {}).
Of course, being more specific may result in other related attributes not changing. So, be sure to retest any change.
Nov 17, 2022 · changed row highlight color

View File

@ -59,3 +59,7 @@ span.green .svg {
.ui.vertical.menu {
background: unset!important; /* make issues, pull requests and milestones menus background match --color-background */
}
#repo-files-table tr:hover {
background-color: var(--color-secondary-alpha-70)!important; /* row highlight color */
}