Browse Source

Swap aliases on thermometer, fix issue with scrolling dropdown right padding

pull/4454/merge
Jack Lukic 8 years ago
parent
commit
01dbc261ca
7 changed files with 9 additions and 9 deletions
  1. 7
      RELEASE-NOTES.md
  2. 1
      dist/components/dropdown.css
  3. 2
      dist/components/dropdown.min.css
  4. 1
      dist/semantic.css
  5. 2
      dist/semantic.min.css
  6. 1
      src/definitions/modules/dropdown.less
  7. 4
      src/themes/default/elements/icon.overrides

7
RELEASE-NOTES.md

@ -4,8 +4,11 @@
**Enhancements**
- **Icons** - Updates Font Awesome to `4.7.0` #4766 **Always the man @BreadMaker**
- **Dropdown** - Added new setting `filterAPIResults` which when enabled will filter results locally by query after API returns, allowing your API call to return the full dropdown dataset. **Thanks @enix223**
- **Icons** - Updates Font Awesome to `4.7.0` **Always the man @BreadMaker** #4766
- **Dropdown** - Added new setting `filterAPIResults` which when enabled will filter results locally by query after API returns, allowing your API call to return the full dropdown dataset. **Thanks @enix223** #4815
**Bugs**
- **Dropdown** - Fix bug where `scrolling menu` or `scrolling dropdown` would have excessive right padding by removing scrollbar width from calculation (no longer necessary in modern browsers)
**Documentation**
- **Visibility** - Added documentation for `onOnscreen` and `onOffScreen` to important callbacks somehow omitted from docs

1
dist/components/dropdown.css

@ -1065,7 +1065,6 @@ select.ui.dropdown {
.ui.scrolling.dropdown .menu .item.item.item,
.ui.dropdown .scrolling.menu > .item.item.item {
border-top: none;
padding-right: calc( 1.14285714rem + 17px ) !important;
}
.ui.scrolling.dropdown .menu .item:first-child,
.ui.dropdown .scrolling.menu .item:first-child {

2
dist/components/dropdown.min.css
File diff suppressed because it is too large
View File

1
dist/semantic.css

@ -29991,7 +29991,6 @@ select.ui.dropdown {
.ui.scrolling.dropdown .menu .item.item.item,
.ui.dropdown .scrolling.menu > .item.item.item {
border-top: none;
padding-right: calc( 1.14285714rem + 17px ) !important;
}
.ui.scrolling.dropdown .menu .item:first-child,

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

1
src/definitions/modules/dropdown.less

@ -1065,7 +1065,6 @@ select.ui.dropdown {
.ui.scrolling.dropdown .menu .item.item.item,
.ui.dropdown .scrolling.menu > .item.item.item {
border-top: @scrollingMenuItemBorder;
padding-right: @scrollingMenuRightItemPadding !important;
}
.ui.scrolling.dropdown .menu .item:first-child,
.ui.dropdown .scrolling.menu .item:first-child {

4
src/themes/default/elements/icon.overrides

@ -290,7 +290,7 @@ i.icon.hand.scissors:before { content: "\f257"; }
i.icon.hand.lizard:before { content: "\f258"; }
i.icon.hand.spock:before { content: "\f259"; }
i.icon.tv:before { content: "\f26c"; }
i.icon.thermometer:before { content: "\f2c7"; }
i.icon.thermometer.full:before { content: "\f2c7"; }
i.icon.thermometer.three.quarters:before { content: "\f2c8"; }
i.icon.thermometer.half:before { content: "\f2c9"; }
i.icon.thermometer.quarter:before { content: "\f2ca"; }
@ -984,7 +984,7 @@ i.icon.vcard:before { content: "\f2bb"; }
i.icon.vcard.outline:before { content: "\f2bc"; }
i.icon.drivers.license:before { content: "\f2c2"; }
i.icon.drivers.license.outline:before { content: "\f2c3"; }
i.icon.thermometer.full:before { content: "\f2c7"; }
i.icon.thermometer:before { content: "\f2c7"; }
i.icon.s15:before { content: "\f2cd"; }
i.icon.bath:before { content: "\f2cd"; }
i.icon.times.rectangle:before { content: "\f2d3"; }

Loading…
Cancel
Save