Browse Source

Fixes comment sizing #4408

slider
Jack Lukic 8 years ago
parent
commit
b78df3745d
2 changed files with 18 additions and 3 deletions
  1. 1
      RELEASE-NOTES.md
  2. 20
      src/definitions/views/comment.less

1
RELEASE-NOTES.md

@ -9,6 +9,7 @@
- **Modal** - Modal will now focus first tabable element, not just `input` #4370
**Bugs**
- **Comments** - Adds missing sizes (mini, tiny etc) #4408
- **NPM** - Fixed `package.json` to allow either jQuery `2.x` or `3.x` #4254
- **Button/Dropdown** - Fixed issue where `ui dropdown button` could have incorrect spacing for dropdown icon
- **Form/Segment** - Fix typo causing `pointer-events: none` no to work on `loading segment` and `loading form`

20
src/definitions/views/comment.less

@ -235,10 +235,17 @@
opacity: 1;
}
/*--------------------
Sizes
---------------------*/
/*-------------------
Sizes
--------------------*/
.ui.mini.comments {
font-size: @mini;
}
.ui.tiny.comments {
font-size: @tiny;
}
.ui.small.comments {
font-size: @small;
}
@ -248,8 +255,15 @@
.ui.large.comments {
font-size: @large;
}
.ui.big.comments {
font-size: @big;
}
.ui.huge.comments {
font-size: @huge;
}
.ui.massive.comments {
font-size: @massive;
}
.loadUIOverrides();
Loading…
Cancel
Save