Browse Source

Fixes #2810 nested grid receives wrong flex-direction

pull/2755/merge
Jack Lukic 9 years ago
parent
commit
464ced0013
2 changed files with 4 additions and 3 deletions
  1. 1
      RELEASE-NOTES.md
  2. 6
      src/definitions/collections/grid.less

1
RELEASE-NOTES.md

@ -27,6 +27,7 @@
- **Embed** - Remove accidental `console.log` statements in js #2760
- **Transition** - Transition callbacks now all have the correct `this` set. #2758
- **Form / Input** - Fixes `::placeholder` text color for `ui error input`, modifies form error placeholder color to distinguish from form value error color #2786
- **Menu** - Fixed `(x) column` nested grid with alignment stacking vertically (wrong flex-direction) #2810
- **Form** - Date input and other special input in chrome now are the same height as normal input (adds custom vendor shadow dom styling) #2704
- **Dropdown** - Remove use of `trim` which causes issues IE 11 and below #2806

6
src/definitions/collections/grid.less

@ -1168,7 +1168,7 @@
-----------------------*/
/* Top Aligned */
.ui[class*="top aligned"].grid .column:not(.row),
.ui[class*="top aligned"].grid > .column:not(.row),
.ui.grid > [class*="top aligned"].row > .column,
.ui.grid > [class*="top aligned"].column:not(.row),
.ui.grid > .row > [class*="top aligned"].column {
@ -1178,7 +1178,7 @@
}
/* Middle Aligned */
.ui[class*="middle aligned"].grid .column:not(.row),
.ui[class*="middle aligned"].grid > .column:not(.row),
.ui.grid > [class*="middle aligned"].row > .column,
.ui.grid > [class*="middle aligned"].column:not(.row),
.ui.grid > .row > [class*="middle aligned"].column {
@ -1188,7 +1188,7 @@
}
/* Bottom Aligned */
.ui[class*="bottom aligned"].grid .column:not(.row),
.ui[class*="bottom aligned"].grid > .column:not(.row),
.ui.grid > [class*="bottom aligned"].row > .column,
.ui.grid > [class*="bottom aligned"].column:not(.row),
.ui.grid > .row > [class*="bottom aligned"].column {

Loading…
Cancel
Save