Skip to content

Commit

Permalink
Implements #4458
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Feb 20, 2018
1 parent 4a5fe70 commit 06e16f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
**Bugs**
- **Modal** - Modal `autofocus` setting now checks to see if currently focused element is in modal, avoiding issues where focus could be set in `onVisible` or `onShow`
- **Menu** - Fixes `big` and `huge` sizes being swapped in menu **Thanks @jeremy091** #5902 #5899
- **Table** - Fixes tr not having correct border on first row when using multiple `tbody` **Thanks @Mlukman** #4458

**Doc Updates**
- **Icons** - Icon documentation now has a search that will copy the relevent icon html to clipboard
Expand Down
5 changes: 5 additions & 0 deletions src/definitions/collections/table.less
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@
border-top: none;
}

/* Repeated tbody */
.ui.table tbody + tbody tr:first-child td {
border-top: @rowBorder;
}

/* Table Cells */
.ui.table td {
padding: @cellVerticalPadding @cellHorizontalPadding;
Expand Down

0 comments on commit 06e16f2

Please sign in to comment.