Skip to content

Commit b93737e

Browse files
committed
Fix double margin on nested images #6224
1 parent 3f5ca5a commit b93737e

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

RELEASE-NOTES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
## RELEASE NOTES
22

3-
### Version 2.3.1 - Feb 23, 2018
3+
### Version 2.3.1 - Mar 18, 2018
44

55
**Critical Bugs**
66
- **Dropdown** - Fixed issue in `2.3.0` that could cause multiselect dropdowns initialized by converting `<select>` to not add initial selected options. #6123
77
- **Search** - Fixes using category search with `fullTextSearch: 'exact'` returning duplicate results #6223 #6221 @Thanks @prudho
88
- **Icon** - Fixes `centered` and `bordered` icons appearing incorrectly with FA5 **Thanks @w96k** #6192
9-
- **Icons** - Adds fixes for some missing icons from modifications for FA5 in `2.3.0` **Thanks hammy2899** #6181 #6175
9+
- **Icons** - Fixes missing aliases/incorrect icons from Font Awesome 5 port in `2.3.0` **Thanks hammy2899** #6181 #6175 #6176 #6174 #6175
10+
- **Icons** - Fixed issue where `link icon` were appearing incorrectly due to changes in icons #6180
1011

1112
**Enhancements**
1213
- **Search** - Adds disabled variation **Thanks @prudho** #6225
@@ -20,6 +21,7 @@
2021
- **Visibility** - Fixed bug that could cause `onScreen` callback to not occur properly for elements that are taller than screen.
2122
- **Menu** - Fixes `disabled item` showing hover style for `secondary menu` **Thanks @tcmal** #6268
2223
- **CSS Variables** - Added use of `@normal` for normal font weight for all non-default themes included in repo. #6227
24+
- **Image** - Fixes margin being applied twice to `ui images` #6224
2325

2426
**Docs**
2527
- Fixes CDN links in docs **Thanks @KSH-code**

src/definitions/elements/image.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ img.ui.bordered.image {
319319
}
320320

321321
.ui.images .image,
322-
.ui.images img,
323-
.ui.images svg {
322+
.ui.images > img,
323+
.ui.images > svg {
324324
display: inline-block;
325325
margin: 0em @imageHorizontalMargin @imageVerticalMargin;
326326
}

0 commit comments

Comments
 (0)