0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-11 08:54:23 +01:00

Remove .dl-horizontal; it's redundant to the grid system; fixes #18652

[skip sauce]
This commit is contained in:
Chris Rebert 2015-12-24 21:26:24 -07:00
parent c9d86ff3a3
commit 4c86e37c2d
3 changed files with 3 additions and 10 deletions

View File

@ -215,12 +215,12 @@ Place all list items on a single line with `display: inline-block;` and some bas
</ul> </ul>
{% endexample %} {% endexample %}
### Horizontal description ### Description list alignment
Align terms and descriptions horizontally by using our grid system's predefined classes (or semantic mixins). For longer terms, you can optionally add a `.text-truncate` class to truncate the text with an ellipsis. Align terms and descriptions horizontally by using our grid system's predefined classes (or semantic mixins). For longer terms, you can optionally add a `.text-truncate` class to truncate the text with an ellipsis.
{% example html %} {% example html %}
<dl class="dl-horizontal"> <dl class="row">
<dt class="col-sm-3">Description lists</dt> <dt class="col-sm-3">Description lists</dt>
<dd class="col-sm-9">A description list is perfect for defining terms.</dd> <dd class="col-sm-9">A description list is perfect for defining terms.</dd>

View File

@ -54,7 +54,7 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with
- Moved all `.text-` utilities to the `_utilities.scss` file. - Moved all `.text-` utilities to the `_utilities.scss` file.
- Dropped the `.page-header` class entirely. - Dropped the `.page-header` class entirely.
- `.dl-horizontal` now requires grid classes, increasing flexbility in column widths. - `.dl-horizontal` has been dropped. Instead, use `.row` on `<dl>` and use grid column classes on its `<dt>` and `<dd>` children.
- Custom `<blockquote>` styling has moved to classes—`.blockquote` and the `.blockquote-reverse` modifier. - Custom `<blockquote>` styling has moved to classes—`.blockquote` and the `.blockquote-reverse` modifier.
### Images ### Images

View File

@ -101,13 +101,6 @@ mark,
} }
} }
// Horizontal description lists w/ grid classes
.dl-horizontal {
margin-right: -$grid-gutter-width;
margin-left: -$grid-gutter-width;
@include clearfix;
}
// //
// Misc // Misc