Browse Source

Fixes issue with bulleted list appearing as link color when list item is a link

api-progress
Jack Lukic 8 years ago
parent
commit
8ef074b042
3 changed files with 8 additions and 1 deletions
  1. 2
      RELEASE-NOTES.md
  2. 6
      src/definitions/elements/list.less
  3. 1
      src/themes/default/elements/list.variables

2
RELEASE-NOTES.md

@ -27,7 +27,7 @@
- **Form** - Fixed use of deprecated `size()` method in `prompt` #3655 **Thanks @SimonArdrey**
- **List** - Fixed issue where `relaxed` and `very relaxed` lists included unnecessary padding on the first and last items #3710
- **List** - Fixed issue where divided lists had unnecessary padding on first and last items, in both horizontal and vertical layouts #3710
- **List** - Fixed issue where bullets would be affected by font weight #3715
- **List** - Fixed issue where bullets would be affected by font weight, or whether the list item was a link #3715 #3721
- **Rating** - Fixed issue where rating would not fire `onRate` when rating is initialized #3712
- **Table** - Fixed issue where `striped selectable` table would not correctly show hover color on striped rows
- **Segment/Message** - Fixed issue where `top attached message` would have no border when attached to `segment` #3619

6
src/definitions/elements/list.less

@ -572,6 +572,12 @@ ul.ui.list li:before,
vertical-align: @bulletVerticalAlign;
}
ul.ui.list li:before,
.ui.bulleted.list .list > a.item:before,
.ui.bulleted.list > a.item:before {
color: @bulletLinkColor;
}
ul.ui.list ul,
.ui.bulleted.list .list {
padding-left: @bulletChildDistance;

1
src/themes/default/elements/list.variables

@ -162,6 +162,7 @@
@bulletOpacity: 1;
@bulletCharacter: '•';
@bulletColor: inherit;
@bulletLinkColor: @textColor;
@bulletVerticalAlign: top;
@bulletChildDistance: @bulletDistance;

Loading…
Cancel
Save