Browse Source

Fix misnamed variables

pull/2209/head
jlukic 10 years ago
parent
commit
554069d7ee
2 changed files with 4 additions and 4 deletions
  1. 4
      src/definitions/modules/rating.less
  2. 4
      src/themes/default/modules/rating.variables

4
src/definitions/modules/rating.less

@ -77,8 +77,8 @@
/* Selected Icon */ /* Selected Icon */
.ui.rating .icon.selected, .ui.rating .icon.selected,
.ui.rating .icon.selected.active { .ui.rating .icon.selected.active {
background: @hoverBackground;
color: @hoverColor;
background: @selectedBackground;
color: @selectedColor;
} }

4
src/themes/default/modules/rating.variables

@ -20,8 +20,8 @@
@inactiveBackground: transparent; @inactiveBackground: transparent;
@inactiveColor: rgba(0, 0, 0, 0.15); @inactiveColor: rgba(0, 0, 0, 0.15);
@hoverBackground: @inactiveBackground;
@hoverColor: @textColor;
@selectedBackground: @inactiveBackground;
@selectedColor: @textColor;
@activeBackground: @inactiveBackground; @activeBackground: @inactiveBackground;
@activeColor: @darkTextColor; @activeColor: @darkTextColor;

Loading…
Cancel
Save