Browse Source

Rename pressedTextColor var

pull/2743/head
jlukic 9 years ago
parent
commit
5527ce6c9a
3 changed files with 3 additions and 2 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/collections/menu.less
  3. 2
      src/themes/default/collections/menu.variables

1
RELEASE-NOTES.md

@ -17,6 +17,7 @@
- **Input** - Input now will reset `font-weight` and `font-style` if set on parent;
- **Menu** - Added `flex: 0 0 auto` to menu item to make sure menu do not collapse text content to reduce space
- **Menu** - Fixed issue with `labeled input` text inside menu not appearing vertically centered
- **Menu** - `@pressedItemColor` has been renamed to `@pressedItemTextColor` to match naming conventions of other variables
**[Merged PR](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A2.1.0+is%3Aclosed)**

2
src/definitions/collections/menu.less

@ -417,7 +417,7 @@
.ui.menu .link.item:active,
.ui.menu a.item:active {
background: @pressedItemBackground;
color: @pressedItemColor;
color: @pressedItemTextColor;
}

2
src/themes/default/collections/menu.variables

@ -163,7 +163,7 @@
/* Pressed Item */
@pressedItemBackground: @subtleTransparentBlack;
@pressedItemColor: @pressedTextColor;
@pressedItemTextColor: @pressedTextColor;
/* Active Item */

Loading…
Cancel
Save