From 0340504457d673914675b4da2e7dd175a8384bc7 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Wed, 8 Aug 2018 11:59:16 +0300 Subject: [PATCH] [start page] fix 'primary' button's active state --- common/loginpage/src/styles.less | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/common/loginpage/src/styles.less b/common/loginpage/src/styles.less index e141f7dcb..4d5b97988 100644 --- a/common/loginpage/src/styles.less +++ b/common/loginpage/src/styles.less @@ -127,6 +127,19 @@ button { background-color: @color-gray-4; padding: 0 36px; + &:hover { + background-color: @color-gray-6; + } + + &:active:not(:disabled) { + background-color: @color-gray-5; + } + + &:disabled { + background-color: @color-gray-4; + cursor: default; + } + &.primary { background-color: @color-blue-light; @@ -144,19 +157,6 @@ button { } } - &:hover { - background-color: @color-gray-6; - } - - &:active { - background-color: @color-gray-5; - } - - &:disabled { - background-color: @color-gray-4; - cursor: default; - } - .btn-quick { background-color: transparent; }