diff options
| author | Mark Otto <[email protected]> | 2014-12-11 14:12:10 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-12-11 14:12:10 -0800 |
| commit | 3737cb1d46418203bae2b01de1cacefe91df741c (patch) | |
| tree | 531687158ae982205a51ad34d867aa7f105e1721 /docs/dist/css/bootstrap.css | |
| parent | 8ba213c9aa0ee78185588758f021a38b0367cbee (diff) | |
| download | bootstrap-3737cb1d46418203bae2b01de1cacefe91df741c.tar.xz bootstrap-3737cb1d46418203bae2b01de1cacefe91df741c.zip | |
Use grid classes or mixins on .dl-horizontal, update docs to include it, removes auto truncate and makes .text-overflow mixin into a .text-truncate class and mixin combo for better granularity
Diffstat (limited to 'docs/dist/css/bootstrap.css')
| -rw-r--r-- | docs/dist/css/bootstrap.css | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/docs/dist/css/bootstrap.css b/docs/dist/css/bootstrap.css index ef6cd1c1b..1f70eafcf 100644 --- a/docs/dist/css/bootstrap.css +++ b/docs/dist/css/bootstrap.css @@ -486,28 +486,17 @@ dd { margin-left: 0; } -.dl-horizontal dd:before, .dl-horizontal dd:after { +.dl-horizontal { + margin-right: -1.5rem; + margin-left: -1.5rem; +} +.dl-horizontal:before, .dl-horizontal:after { display: table; content: " "; } -.dl-horizontal dd:after { +.dl-horizontal:after { clear: both; } -@media (min-width: 34em) { - .dl-horizontal dt { - float: left; - width: 160px; - overflow: hidden; - clear: left; - text-align: right; - text-overflow: ellipsis; - white-space: nowrap; - } - - .dl-horizontal dd { - margin-left: 180px; - } -} abbr[title], abbr[data-original-title] { cursor: help; @@ -5072,6 +5061,12 @@ a.list-group-item-state.active, a.list-group-item-state.active:hover, a.list-gro white-space: nowrap; } +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + .text-lowercase { text-transform: lowercase; } |
