diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 491bf9961..faac33a44 100644 --- a/RELEASE-NOTES.md +++ b/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 diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index c66852157..d97193468 100755 --- a/src/definitions/collections/grid.less +++ b/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 {