Browse Source

Text width inheritance issue

pull/2034/head
jlukic 10 years ago
parent
commit
8915d9c46d
2 changed files with 9 additions and 3 deletions
  1. 7
      RELEASE-NOTES.md
  2. 5
      src/definitions/elements/container.less

7
RELEASE-NOTES.md

@ -2,6 +2,12 @@
### Version 1.12.0 - March 6, 2015 ### Version 1.12.0 - March 6, 2015
**New UI**
- **Container** -
**Major Changes**
- **Menu** - Menu now uses flexbox. This is a *significant* change which means
**Enhancements** **Enhancements**
- **Segment** - Added `padded` and `very padded` segment variations - **Segment** - Added `padded` and `very padded` segment variations
- **Grid** - `equal height` and `equal width` now work without `row` wrappers - **Grid** - `equal height` and `equal width` now work without `row` wrappers
@ -10,6 +16,7 @@
**Changes** **Changes**
- **Table** - Table cells now default to top vertical alignment. - **Table** - Table cells now default to top vertical alignment.
- **Grid** - Small computer `page grid` gutters have been adjusted from 8% to 3% to allow for roomier layouts on small screens.
**Bugs** **Bugs**
- **All Modules** - Performance logging now delays 500ms instead of 100ms for console logging to ensure all logs are captured in one group - **All Modules** - Performance logging now delays 500ms instead of 100ms for console logging to ensure all logs are captured in one group

5
src/definitions/elements/container.less

@ -27,7 +27,7 @@
.ui.container { .ui.container {
display: block; display: block;
max-width: @maxWidth;
max-width: @maxWidth !important;
} }
@media only screen and (max-width: @largestMobileScreen) { @media only screen and (max-width: @largestMobileScreen) {
@ -67,8 +67,7 @@
.ui.text.container { .ui.text.container {
display: block; display: block;
margin: 0px auto;
max-width: @textWidth;
max-width: @textWidth !important;
} }
.ui.text.container p { .ui.text.container p {

Loading…
Cancel
Save