From 7238531b6d490535c474d4e0c000b7209952017b Mon Sep 17 00:00:00 2001 From: afc163 Date: Mon, 6 Jul 2015 16:21:27 +0800 Subject: [PATCH] update color --- style/components/select.less | 4 ++-- style/components/tabs.less | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/style/components/select.less b/style/components/select.less index 361a415bdc..ebfd35253d 100644 --- a/style/components/select.less +++ b/style/components/select.less @@ -60,10 +60,10 @@ &:hover { border-color: #23c0fa; - box-shadow: 0 0 2px fadeout(#2db7f5, 20%); + box-shadow: 0 0 2px tint(@primary-color, 20%); } &:active { - border-color: #2db7f5; + border-color: @primary-color; } } diff --git a/style/components/tabs.less b/style/components/tabs.less index 2f1d56ce11..4462542118 100644 --- a/style/components/tabs.less +++ b/style/components/tabs.less @@ -76,7 +76,7 @@ } &:hover { - color: fadeout(#2db7f5, 20%); + color: tint(@primary-color, 20%); } } @@ -129,7 +129,7 @@ div.@{prefixClass}-tab-active { > a, > a:hover, > a:focus { - color: fadeout(#2db7f5, 20%); + color: tint(@primary-color, 20%); cursor: pointer; text-decoration: none; } @@ -167,7 +167,7 @@ } > a:hover { - color: fadeout(#2db7f5, 30%); + color: tint(@primary-color, 30%); cursor: pointer; } -- GitLab