From c5f3d3fa714ae8af5511c4af3cd49a4877941a88 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Thu, 8 Dec 2022 16:57:14 +0100 Subject: [PATCH] Use a darker grey for disabled button --- app/webpacker/css/admin/v2/components/buttons.scss | 2 +- app/webpacker/css/admin/v2/variables.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/webpacker/css/admin/v2/components/buttons.scss b/app/webpacker/css/admin/v2/components/buttons.scss index 1b687b995e..891f2f4716 100644 --- a/app/webpacker/css/admin/v2/components/buttons.scss +++ b/app/webpacker/css/admin/v2/components/buttons.scss @@ -27,7 +27,7 @@ fieldset .filter-actions .button:hover, &.disabled, &[disabled] { - @include backgroundAndBorder($v2-light-grey); + @include backgroundAndBorder($v2-dark-light-grey); box-shadow: none; cursor: default; } diff --git a/app/webpacker/css/admin/v2/variables.scss b/app/webpacker/css/admin/v2/variables.scss index b6548511de..21fedeca07 100644 --- a/app/webpacker/css/admin/v2/variables.scss +++ b/app/webpacker/css/admin/v2/variables.scss @@ -9,6 +9,7 @@ $v2-dark-grey: #333333; $v2-medium-dark-grey: #444444; $v2-body-grey: $color-4; $v2-medium-grey: #717171; +$v2-dark-light-grey: #d9d9d9; $v2-medium-light-grey: #e6e6e6; $v2-light-grey: #e7e7e7;