From a9edc0cb9ce1712778d3396c9910f7f4df3d0d70 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Mon, 28 Nov 2022 11:25:19 +0100 Subject: [PATCH] Use the default blue for the link and a darker one when hovering --- app/webpacker/css/admin/v2/components/tables.scss | 6 ++++-- app/webpacker/css/admin/v2/variables.scss | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/app/webpacker/css/admin/v2/components/tables.scss b/app/webpacker/css/admin/v2/components/tables.scss index f9bcc74f6d..a9aa391aff 100644 --- a/app/webpacker/css/admin/v2/components/tables.scss +++ b/app/webpacker/css/admin/v2/components/tables.scss @@ -47,9 +47,11 @@ table tbody tr { table th a, table td a { // This should probably be a default rule for all links at a general level - color: $v2-blue-light; + color: $v2-blue; + border-color: $v2-blue; &:hover { - color: $v2-blue; + color: $v2-blue-dark; + border-color: $v2-blue-dark; } } diff --git a/app/webpacker/css/admin/v2/variables.scss b/app/webpacker/css/admin/v2/variables.scss index 4d439e3206..81f4423c42 100644 --- a/app/webpacker/css/admin/v2/variables.scss +++ b/app/webpacker/css/admin/v2/variables.scss @@ -12,6 +12,7 @@ $v2-medium-light-grey: #e6e6e6; $v2-light-grey: #e7e7e7; $v2-blue: #017a9a; +$v2-blue-dark: #005e7a; $v2-blue-light: #0096ad; $v2-blue-lightest: #e6f7fa; // Could be used as a background color for the action icons