From 554069d7ee7e8df1fc553e0908c8818c62d53404 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 28 Apr 2015 18:27:48 -0400 Subject: [PATCH] Fix misnamed variables --- src/definitions/modules/rating.less | 4 ++-- src/themes/default/modules/rating.variables | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/definitions/modules/rating.less b/src/definitions/modules/rating.less index 829bfca9a..73b97f664 100755 --- a/src/definitions/modules/rating.less +++ b/src/definitions/modules/rating.less @@ -77,8 +77,8 @@ /* Selected Icon */ .ui.rating .icon.selected, .ui.rating .icon.selected.active { - background: @hoverBackground; - color: @hoverColor; + background: @selectedBackground; + color: @selectedColor; } diff --git a/src/themes/default/modules/rating.variables b/src/themes/default/modules/rating.variables index 594e55fa4..01e3cf8fd 100644 --- a/src/themes/default/modules/rating.variables +++ b/src/themes/default/modules/rating.variables @@ -20,8 +20,8 @@ @inactiveBackground: transparent; @inactiveColor: rgba(0, 0, 0, 0.15); -@hoverBackground: @inactiveBackground; -@hoverColor: @textColor; +@selectedBackground: @inactiveBackground; +@selectedColor: @textColor; @activeBackground: @inactiveBackground; @activeColor: @darkTextColor;