From 529ef6057cd67d3daa26ff3b4d4d39997032a15f Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 16 Feb 2021 23:51:28 -0500 Subject: [PATCH] fix: UX for selection * make it more obvious what is the selected topic * use branded information --- less/category.less | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/less/category.less b/less/category.less index 8a3c92f..3a836cc 100644 --- a/less/category.less +++ b/less/category.less @@ -76,8 +76,8 @@ } .fa-check { - border: 1px solid @brand-primary; - color: @brand-primary; + border: 1px solid @brand-success; + color: @brand-success; opacity: 1; } } @@ -90,15 +90,17 @@ .avatar .select { .fa-check { opacity: 1; + background-color: @brand-success; border: 1px solid @brand-success; - color: @brand-success; - - &:hover { - border: 1px solid @brand-success; - color: @brand-success; - } + color: @btn-success-color; + .transition(all .15s ease-in-out); } + &:hover .fa-check { + background-color: @brand-success; + border: 1px solid @btn-success-border; + color: @btn-success-color; + } } }