diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index e3460137e6..fa5d69331a 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -550,6 +550,18 @@ ol.unstyled { list-style: none; } +ul.inline, +ol.inline { + list-style: none; +} + +ul.inline > li, +ol.inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} + dl { margin-bottom: 20px; } diff --git a/docs/base-css.html b/docs/base-css.html index cb7af3fe41..d3e4ec3075 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -347,7 +347,7 @@
A list of items with no list-style
or additional left padding.
Remove default the list-style
and left padding on list items (immediate children only).
Place all list items on a single line with inline-block
and some light padding.
+<ul class="inline"> + <li>...</li> +</ul>
{{_i}}A list of items with no list-style
or additional left padding.{{/i}}
{{_i}}Remove default the list-style
and left padding on list items (immediate children only).{{/i}}
{{_i}}Place all list items on a single line with inline-block
and some light padding.{{/i}}
+<ul class="inline"> + <li>...</li> +</ul>