diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index ede141ce51..243130e018 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -146,34 +146,6 @@ div.quickstart form textarea { .show-grid:hover .column, .show-grid:hover .columns { background: rgba(0, 0, 0, 0.25); } -/* Hashgrid.js grid (press G & H to view) --------------------------------------------------- */ -#grid { - width: 980px; - position: absolute; - top: 0; - left: 50%; - margin-left: -490px; -} -#grid div.vert { - background-color: rgba(0, 206, 209, 0.075); - width: 39px; - border: solid darkturquoise; - border-width: 0 1px; - margin-right: 19px; -} -#grid div.vert.first-line { - margin-left: 19px; -} -#grid div.horiz { - height: 19px; - border-bottom: 1px solid rgba(255, 0, 0, 0.1); - margin: 0; - padding: 0; -} -#grid div.horiz:nth-child(5n) { - border-color: rgba(255, 0, 0, 0.25); -} /* Render mini layout previews -------------------------------------------------- */ div.mini-layout { @@ -199,7 +171,9 @@ div.mini-layout div.mini-layout-body { width: 450px; height: 340px; } -div.mini-layout.fluid div.mini-layout-sidebar, div.mini-layout.fluid div.mini-layout-header, div.mini-layout.fluid div.mini-layout-body { +div.mini-layout.fluid div.mini-layout-sidebar, +div.mini-layout.fluid div.mini-layout-header, +div.mini-layout.fluid div.mini-layout-body { float: left; } div.mini-layout.fluid div.mini-layout-sidebar { diff --git a/docs/index.html b/docs/index.html index ce2a96c220..6cc832344d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -878,7 +878,7 @@

Fixed topbar

-
+

Project Name

  • Home
  • @@ -920,20 +920,20 @@
    -
    -
    -

    Tabs and pills

    -

    Create simple secondary navigation with a <ul>. Swap between tabs or pills by adding the appropriate class.

    -

    Great for sub-sections of content like our account settings pages and user timelines for toggling between pages of like content. Available in tabbed or pill styles.

    -
    -
    - +
    +
    +

    Tabs and pills

    +

    Create simple secondary navigation with a <ul>. Swap between tabs or pills by adding the appropriate class.

    +

    Great for sub-sections of content like our account settings pages and user timelines for toggling between pages of like content. Available in tabbed or pill styles.

    +
    +
    +
     <ul class="tabs">
       <li class="active"><a href="#">Home</a></li>
    @@ -943,13 +943,13 @@
       <li><a href="#">Contact</a></li>
     </ul>
     
    - +
     <ul class="pills">
       <li class="active"><a href="#">Home</a></li>
    @@ -959,56 +959,57 @@
       <li><a href="#">Contact</a></li>
     </ul>
     
    -
    -
    +
    +
    -
    -
    -

    Pagination

    -

    Ultra simplistic and minimally styled pagination inspired by Rdio. The large block is hard to miss, easily scalable, and provides large click areas.

    -
    -
    - - - +
    @@ -1033,6 +1034,7 @@ +

    Basic alerts

    @@ -1056,7 +1058,8 @@

    Heads up! This is an alert that needs your attention, but it’s not a huge priority just yet.

    -
    +
+

Block messages

@@ -1084,11 +1087,13 @@

Take this action Or do this

-
+
+ + @@ -1117,6 +1122,7 @@
+

Tool Tips

@@ -1149,6 +1155,7 @@ Lorem ipsum dolar sit amet illo error ipsum verita
+

Popovers

@@ -1172,7 +1179,6 @@ Lorem ipsum dolar sit amet illo error ipsum verita
- diff --git a/lib/preboot.less b/lib/preboot.less index 9aad126d39..941f2817c5 100644 --- a/lib/preboot.less +++ b/lib/preboot.less @@ -145,39 +145,39 @@ // Border Radius .border-radius(@radius: 5px) { -webkit-border-radius: @radius; - -moz-border-radius: @radius; - border-radius: @radius; + -moz-border-radius: @radius; + border-radius: @radius; } // Drop shadows .box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) { -webkit-box-shadow: @shadow; - -moz-box-shadow: @shadow; - box-shadow: @shadow; + -moz-box-shadow: @shadow; + box-shadow: @shadow; } // Transitions .transition(@transition) { -webkit-transition: @transition; - -moz-transition: @transition; - transition: @transition; + -moz-transition: @transition; + transition: @transition; } // Background clipping .background-clip(@clip) { -webkit-background-clip: @clip; - -moz-background-clip: @clip; - background-clip: @clip; + -moz-background-clip: @clip; + background-clip: @clip; } // CSS3 Content Columns .content-columns(@columnCount, @columnGap: 20px) { -webkit-column-count: @columnCount; - -webkit-column-gap: @columnGap; - -moz-column-count: @columnCount; - -moz-column-gap: @columnGap; - column-count: @columnCount; - column-gap: @columnGap; + -moz-column-count: @columnCount; + column-count: @columnCount; + -webkit-column-gap: @columnGap; + -moz-column-gap: @columnGap; + column-gap: @columnGap; } // Buttons @@ -265,6 +265,6 @@ .opacity(@opacity: 100) { filter: e(%("alpha(opacity=%d)", @opacity)); -khtml-opacity: @opacity / 100; - -moz-opacity: @opacity / 100; - opacity: @opacity / 100; + -moz-opacity: @opacity / 100; + opacity: @opacity / 100; } \ No newline at end of file