From 233e050adfc171685fd2c2f6ad760a8556aa0eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Cederstro=CC=88m?= Date: Fri, 26 Oct 2012 09:47:55 +0200 Subject: Adding .inline for ul and ol --- docs/base-css.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index 10a7dc62e..a045ec87e 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -374,6 +374,21 @@ <ul class="unstyled"> <li>...</li> </ul> + + +

Inline

+

A list of floated left items. Can be combined with with .unstyled

+
+ +
+
+<ul class="unstyled inline">
+  <li>...</li>
+</ul>
 

Description

-- cgit v1.2.3 From e4866c4b3c50c1d1bef5c639c13a2210416b0157 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 4 Nov 2012 12:27:18 -0800 Subject: clarify unstyled lists docs --- docs/base-css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index 443400463..b8d3930eb 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -350,7 +350,7 @@

Unstyled

-

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).

  • Lorem ipsum dolor sit amet
  • -- cgit v1.2.3 From 28da31218fc5dc39ece625705c37b8c86d494801 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 4 Nov 2012 12:36:37 -0800 Subject: Refine new inline list option --- docs/base-css.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs/base-css.html') diff --git a/docs/base-css.html b/docs/base-css.html index 8cc571210..dd34401d5 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -377,16 +377,16 @@

    Inline

    -

    A list of floated left items. Can be combined with with .unstyled

    +

    Place all list items on a single line with inline-block and some light padding.

    -
      -
    •    Stop signal
    • -
    •    Prepare for signal
    • -
    •    Go!
    • +
        +
      • Lorem ipsum
      • +
      • Phasellus iaculis
      • +
      • Nulla volutpat
    -<ul class="unstyled inline">
    +<ul class="inline">
       <li>...</li>
     </ul>
     
    -- cgit v1.2.3