From 8220259648b15a182d10ca5c1870832d5330bbf5 Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 23 Sep 2024 07:40:29 +0100 Subject: [PATCH 1/3] [WDTK] Popup black version --- app/assets/stylesheets/responsive/custom.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/responsive/custom.scss b/app/assets/stylesheets/responsive/custom.scss index efa657cb..b6f08543 100644 --- a/app/assets/stylesheets/responsive/custom.scss +++ b/app/assets/stylesheets/responsive/custom.scss @@ -317,14 +317,14 @@ a.link_button_green_large { /* Popups */ .popup { - background-color: $color_green; + background-color: $color_black; border: 0; - color: #fff; + color: $color_white; a, a:hover, a:active, a:focus, a:visited, a:visited:hover, a:visited:active, a:visited:focus { - color: #fff; + color: $color_white; } } From 722ed5af907b1d412bb71b5dfff4b2f1f5fa06eb Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 23 Sep 2024 08:15:10 +0100 Subject: [PATCH 2/3] [WDTK] Popup green version --- app/assets/stylesheets/responsive/custom.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/responsive/custom.scss b/app/assets/stylesheets/responsive/custom.scss index b6f08543..9338fca1 100644 --- a/app/assets/stylesheets/responsive/custom.scss +++ b/app/assets/stylesheets/responsive/custom.scss @@ -317,14 +317,14 @@ a.link_button_green_large { /* Popups */ .popup { - background-color: $color_black; + background: linear-gradient(90deg, rgba(140, 210, 130, 1) 0%, rgba(192, 246, 185, 1) 100%); border: 0; - color: $color_white; + color: $color_black; a, a:hover, a:active, a:focus, a:visited, a:visited:hover, a:visited:active, a:visited:focus { - color: $color_white; + color: $color_black; } } From 1f5765e2d3392817ebc6212a32fd278e364e3f82 Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 23 Sep 2024 08:22:10 +0100 Subject: [PATCH 3/3] [WDTK] Popup blue version --- app/assets/stylesheets/responsive/custom.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/responsive/custom.scss b/app/assets/stylesheets/responsive/custom.scss index 9338fca1..2a1b84df 100644 --- a/app/assets/stylesheets/responsive/custom.scss +++ b/app/assets/stylesheets/responsive/custom.scss @@ -1,5 +1,6 @@ $color_orange: #f4a140; $color_blue: #2078C2; +$color_blue_light: #A2D2FA; $color_green: #62b356; $color_yellow: #ffd836; $color_red: #e04b4b; @@ -317,7 +318,7 @@ a.link_button_green_large { /* Popups */ .popup { - background: linear-gradient(90deg, rgba(140, 210, 130, 1) 0%, rgba(192, 246, 185, 1) 100%); + background-color: $color_blue_light; border: 0; color: $color_black; a, a:hover, a:active, a:focus, a:visited,