From ff9974102f0344e2696e42f6f5419e0b2029f714 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Sat, 27 Feb 2016 14:56:59 -0500 Subject: [PATCH] #3116 - Fixes issue with inheritance of statistic font size in groups --- RELEASE-NOTES.md | 18 +++++++------- src/definitions/views/statistic.less | 36 ++++++++++++++-------------- 2 files changed, 28 insertions(+), 26 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index a7d25c571..78c45157f 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -17,23 +17,25 @@ -**Divider** - Fixed issue where descenders like "g" would be cut off in `horizontal divider` #3585 **Bugs** +**Grid** - Fixed issue where `centered` content would cause `justified` content to appear aligned left. #3496 +- **Button** - Fixes issue where `right icon` like `right arrow icon` would have additional margin inside an `icon button` #3525 - **Checkbox** - Fixed a chrome issue where radio buttons may receive `indeterminate` styles when user has not yet interacted with the page - **Dropdown** - Fixed issue where `apiSettings` was not defaulting to use `cache: 'local'` as specified in the docs -- **Dropdown** - Fixed issue where long dropdown text entry with `allowAdditions` would cause input to mistakingly drop to next line early #3743 - **Dropdown** - Fixed issue where dropdowns with sub-menus would not properly activate on mobile #3183 +- **Dropdown** - Fixed issue where long dropdown text entry with `allowAdditions` would cause input to mistakingly drop to next line early #3743 - **Form** - Fixed issue where grouped `fields` and `field` would cause different margin collapse, making `fields` include larger gaps between content #3717 -- **Menu** - Fixed issue with `stackable` menu where `left/right` `menu` or `item` would incorrectly be floated when stacked. #3604 -- **Modal** - Fixes issue where RGB values set for dimmer `background-color` werent being correctly interpreted #3665 **Thanks @larsbo** - **Form** - Fixed use of deprecated `size()` method in `prompt` #3655 **Thanks @SimonArdrey** +- **Input** - Fixes issue with `dropdown` or button on the left side of an `action` input not properly rounding - **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, or whether the list item was a link #3715 #3721 +- **List** - Fixed issue where divided lists had unnecessary padding on first and last items, in both horizontal and vertical layouts #3710 +- **Menu** - Fixed issue with `stackable` menu where `left/right` `menu` or `item` would incorrectly be floated when stacked. #3604 +- **Modal** - Fixes issue where RGB values set for dimmer `background-color` werent being correctly interpreted #3665 **Thanks @larsbo** +- **Popup** - Fixed issue where checking `instanceof SVGGraphicsElement` caused error in IE11 #3043 - **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 -- **Popup** - Fixed issue where checking `instanceof SVGGraphicsElement` caused error in IE11 #3043 -- **Button** - Fixes issue where `right icon` like `right arrow icon` would have additional margin inside an `icon button` #3525 -**Grid** - Fixed issue where `centered` content would cause `justified` content to appear aligned left. #3496 +- **Statistic** - Fixes issue where statistic would receive incorrect size when using `tiny` `large` etc inside a statistic group #3116 +- **Table** - Fixed issue where `striped selectable` table would not correctly show hover color on striped rows **Enhancements** diff --git a/src/definitions/views/statistic.less b/src/definitions/views/statistic.less index 294254ec2..b3c4142d8 100755 --- a/src/definitions/views/statistic.less +++ b/src/definitions/views/statistic.less @@ -472,86 +472,86 @@ /* Mini */ .ui.mini.statistics .statistic > .value, .ui.mini.statistic > .value { - font-size: @miniValueSize; + font-size: @miniValueSize !important; } .ui.mini.horizontal.statistics .statistic > .value, .ui.mini.horizontal.statistic > .value { - font-size: @miniHorizontalValueSize; + font-size: @miniHorizontalValueSize !important; } .ui.mini.statistics .statistic > .text.value, .ui.mini.statistic > .text.value { - font-size: @miniTextValueSize; + font-size: @miniTextValueSize !important; } /* Tiny */ .ui.tiny.statistics .statistic > .value, .ui.tiny.statistic > .value { - font-size: @tinyValueSize; + font-size: @tinyValueSize !important; } .ui.tiny.horizontal.statistics .statistic > .value, .ui.tiny.horizontal.statistic > .value { - font-size: @tinyHorizontalValueSize; + font-size: @tinyHorizontalValueSize !important; } .ui.tiny.statistics .statistic > .text.value, .ui.tiny.statistic > .text.value { - font-size: @tinyTextValueSize; + font-size: @tinyTextValueSize !important; } /* Small */ .ui.small.statistics .statistic > .value, .ui.small.statistic > .value { - font-size: @smallValueSize; + font-size: @smallValueSize !important; } .ui.small.horizontal.statistics .statistic > .value, .ui.small.horizontal.statistic > .value { - font-size: @smallHorizontalValueSize; + font-size: @smallHorizontalValueSize !important; } .ui.small.statistics .statistic > .text.value, .ui.small.statistic > .text.value { - font-size: @smallTextValueSize; + font-size: @smallTextValueSize !important; } /* Medium */ .ui.statistics .statistic > .value, .ui.statistic > .value { - font-size: @valueSize; + font-size: @valueSize !important; } .ui.horizontal.statistics .statistic > .value, .ui.horizontal.statistic > .value { - font-size: @horizontalValueSize; + font-size: @horizontalValueSize !important; } .ui.statistics .statistic > .text.value, .ui.statistic > .text.value { - font-size: @textValueSize; + font-size: @textValueSize !important; } /* Large */ .ui.large.statistics .statistic > .value, .ui.large.statistic > .value { - font-size: @largeValueSize; + font-size: @largeValueSize !important; } .ui.large.horizontal.statistics .statistic > .value, .ui.large.horizontal.statistic > .value { - font-size: @largeHorizontalValueSize; + font-size: @largeHorizontalValueSize !important; } .ui.large.statistics .statistic > .text.value, .ui.large.statistic > .text.value { - font-size: @largeTextValueSize; + font-size: @largeTextValueSize !important; } /* Huge */ .ui.huge.statistics .statistic > .value, .ui.huge.statistic > .value { - font-size: @hugeValueSize; + font-size: @hugeValueSize !important; } .ui.huge.horizontal.statistics .statistic > .value, .ui.huge.horizontal.statistic > .value { - font-size: @hugeHorizontalValueSize; + font-size: @hugeHorizontalValueSize !important; } .ui.huge.statistics .statistic > .text.value, .ui.huge.statistic > .text.value { - font-size: @hugeTextValueSize; + font-size: @hugeTextValueSize !important; }