Browse Source

Fixes secondary inverted style

pull/3879/merge
Jack Lukic 9 years ago
parent
commit
0ffa8f96d9
2 changed files with 4 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 4
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -44,6 +44,7 @@
- **Menu** - `@dividerSize` was not being used in `vertical menu` #3781
- **Modal** - RGB values set for dimmer `background-color` were not being correctly interpreted #3665 **Thanks @larsbo**
- **Popup** - checking `instanceof SVGGraphicsElement` caused error in IE11 #3043
- **Progress** - Progress `onSuccess`, `onError`, and `onWarning` callbacks now occur **after** the animation completes for the state change.
- **Rating** - rating does not fire `onRate` when rating is initialized #3712
- **Segment/Message** - `top attached message` has no border when attached to `segment` #3619
- **Statistic** - statistic receives incorrect size when using `tiny` `large` etc inside a statistic group #3116

4
src/definitions/collections/menu.less

@ -998,10 +998,12 @@ Floated Menu / Item
}
/* Hover */
.ui.secondary.inverted.pointing.menu .item:hover {
.ui.secondary.inverted.pointing.menu .link.item:hover,
.ui.secondary.inverted.pointing.menu a.item:hover {
color: @secondaryPointingInvertedItemHoverTextColor;
}
/* Active */
.ui.secondary.inverted.pointing.menu .active.item {
border-color: @secondaryPointingInvertedActiveBorderColor;

Loading…
Cancel
Save