From 493d5cbb39d0a9987dcc2758505b9db7336c39f5 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 17 Nov 2014 18:23:53 -0500 Subject: [PATCH] Add variables for basic text colors --- src/definitions/elements/button.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less index 067ac5ed0..76f67b8e5 100755 --- a/src/definitions/elements/button.less +++ b/src/definitions/elements/button.less @@ -618,7 +618,7 @@ .ui.basic.button { background: @basicBackground !important; background-image: none; - color: @textColor !important; + color: @basicTextColor !important; font-weight: @basicFontWeight; border-radius: @basicBorderRadius; text-transform: @basicTextTransform; @@ -636,20 +636,20 @@ .ui.basic.buttons .button:hover, .ui.basic.button:hover { background: @basicHoverBackground !important; - color: @hoveredTextColor !important; + color: @basicHoverTextColor !important; box-shadow: @basicHoverBoxShadow; } .ui.basic.buttons .button:active, .ui.basic.button:active { background: @basicDownBackground !important; - color: @pressedTextColor !important; + color: @basicDownTextColor !important; box-shadow: @basicDownBoxShadow; } .ui.basic.buttons .button.active, .ui.basic.button.active { background: @basicActiveBackground !important; box-shadow: @basicActiveBoxShadow !important; - color: @basicActiveColor; + color: @basicActiveTextColor; box-shadow: @selectedBorderColor; } .ui.basic.buttons .button.active:hover,