Browse Source

Fixes specificity of grid column colors

pull/1785/merge
jlukic 10 years ago
parent
commit
33bb7df7b7
2 changed files with 15 additions and 9 deletions
  1. 6
      RELEASE-NOTES.md
  2. 18
      src/definitions/collections/grid.less

6
RELEASE-NOTES.md

@ -18,16 +18,22 @@
**Bugs**
- **Dropdown** - Fixes issue where dropdown would not open after restoring previus value on failed `search dropdown` search
- **Grid** - Fixes specificity of grid `column` colors to not affect other elements with columns
- **Icon** - Fix `clockwise rotated icon` causing `clockwise` icon to appear
- **Popup** - Fix issue with `popup` not re-opening until another element gains focus on a mobile touchscreen
- **Modal** - Fixed issue with modal not appearing when calling `show` during another modal `hide`
- **Popup** - Popup will now fire `onHidden` when an element is hidden by opening a different popup
- **Popup** - Fix popup not namespacing `window` events and unbinding on `destroy` **Thanks @revov**
- **Table** - Fixes table on `mobile` sizes can surpass parent container width
- **Transition** - Fixes `swing out` animations not working correctly
- **Transition** - Fixed display state other than `block` not determined when using `show` and `hide` without an animation
- **Transition** - Fix bug in `remove looping` causing next animation to use same duration
- **Segment** - Fix first/last margins on `ui segments`
- **Search** - Fix special characters not searching correctly with local search
- **Search** - Fix a bug with `onSelect` returning `null` when `minCharacters: 0`
- **Search** - Fix a bug with `onSelect returning `null` when results retrieved from cached API query
- **Sticky** - Fixed sticky position when page loads and content is below sticky content.
- **Sticky** - Fix bottom attached position not adjusting for bottom padding on container element
- **Menu** - Fix vertical pointing menu, sub menu arrow color
- **Item ** - `img` inside of `ui item content` now do not receive size formatting by default
- **Form** - Added `input[type="search"]` styles to `ui form`

18
src/definitions/collections/grid.less

@ -1273,7 +1273,7 @@
-----------------------*/
.ui.grid > .white.row,
.ui.grid .white.column {
.ui.grid > .row > .white.column {
background-color: @white !important;
color: @textColor;
}
@ -1285,7 +1285,7 @@
}
.ui.grid > .black.row,
.ui.grid .black.column {
.ui.grid > .row > .black.column {
background-color: @black !important;
color: @white;
}
@ -1297,7 +1297,7 @@
}
.ui.grid > .blue.row,
.ui.grid .blue.column {
.ui.grid > .row > .blue.column {
background-color: @blue !important;
color: @white;
}
@ -1309,7 +1309,7 @@
}
.ui.grid > .green.row,
.ui.grid .green.column {
.ui.grid > .row > .green.column {
background-color: @green !important;
color: @white;
}
@ -1321,7 +1321,7 @@
}
.ui.grid > .orange.row,
.ui.grid .orange.column {
.ui.grid > .row > .orange.column {
background-color: @orange !important;
color: @white;
}
@ -1345,7 +1345,7 @@
}
.ui.grid > .purple.row,
.ui.grid .purple.column {
.ui.grid > .row > .purple.column {
background-color: @purple !important;
color: @white;
}
@ -1357,7 +1357,7 @@
}
.ui.grid > .red.row,
.ui.grid .red.column {
.ui.grid > .row > .red.column {
background-color: @red !important;
color: @white;
}
@ -1369,7 +1369,7 @@
}
.ui.grid > .teal.row,
.ui.grid .teal.column {
.ui.grid > .row > .teal.column {
background-color: @teal !important;
color: @white;
}
@ -1381,7 +1381,7 @@
}
.ui.grid > .yellow.row,
.ui.grid .yellow.column {
.ui.grid > .row > .yellow.column {
background-color: @yellow !important;
color: @white;
}

Loading…
Cancel
Save