From 2877ae3e7b45ef763a5692e9bccf2bd96a1050d1 Mon Sep 17 00:00:00 2001 From: Ed Silkworth Date: Thu, 17 Nov 2022 13:08:06 -0800 Subject: [PATCH] changed row highlight color --- CHANGELOG | 2 ++ public/css/theme-red.css | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 139850a..203f587 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 \ No newline at end of file diff --git a/public/css/theme-red.css b/public/css/theme-red.css index 6b146e4..d6fe960 100644 --- a/public/css/theme-red.css +++ b/public/css/theme-red.css @@ -58,4 +58,8 @@ 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 */ } \ No newline at end of file