From f9e66a3117cb2ac65c1a9cad9761a25e5da1cf08 Mon Sep 17 00:00:00 2001 From: Shreyaaaash Date: Wed, 1 Jul 2026 15:41:08 +0530 Subject: [PATCH] =?UTF-8?q?Replace=20=C3=97=20with=20checkmark=20on=20sele?= =?UTF-8?q?cted=20language=20checkboxes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/_all-languages-list.scss | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/assets/stylesheets/components/_all-languages-list.scss b/app/assets/stylesheets/components/_all-languages-list.scss index 8e2d9f9c3..d12d9c8e5 100644 --- a/app/assets/stylesheets/components/_all-languages-list.scss +++ b/app/assets/stylesheets/components/_all-languages-list.scss @@ -26,9 +26,10 @@ &::before { @include position(absolute, 3px null null -2px); @include size(1.1rem, 1rem); - background-color: $codetriage-blue; + background-color: transparent; + border: 1px solid $codetriage-blue; border-radius: $base-border-radius; - color: $base-background-color; + color: $white; content: ""; display: inline-block; line-height: 1rem; @@ -37,10 +38,11 @@ } } - &:checked + label { - &::before { - background-color: $white; - content: "×"; + &:checked +label{ + &::before{ + background-color :$codetriage-blue; + border-color:$codetriage-blue; + content:"\2713"; } } }