From dcf6a051e71f73c6f53f36f4a3a9420535f70e42 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 14 Sep 2011 08:58:20 -0700 Subject: allow multi-select lists in forms --- docs/index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'docs') diff --git a/docs/index.html b/docs/index.html index 41bf39b70..3965da1b7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1005,6 +1005,18 @@ +
+ +
+ +
+
-- cgit v1.2.3 From b188c0da8b51cd18d6fa3fa958e823a318ba5f10 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Sep 2011 09:41:58 -0700 Subject: updated table styles a bit and floated the fluid columns to clear the row dropping problem we were having --- docs/assets/css/docs.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 37e18c8e4..cb1dbb2f7 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -22,6 +22,7 @@ section > .row { /* Jumbotrons -------------------------------------------------- */ .jumbotron { + min-width: 940px; padding-top: 40px; } .jumbotron .inner { @@ -98,6 +99,7 @@ section > .row { -------------------------------------------------- */ .footer { background-color: #eee; + min-width: 940px; padding: 30px 0; text-shadow: 0 1px 0 #fff; border-top: 1px solid #e5e5e5; -- cgit v1.2.3 From c579e4d5507170dd14cbfa804ccfca667bf39c28 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Sep 2011 09:55:12 -0700 Subject: expanding comment in application.js --- docs/assets/js/application.js | 1 + 1 file changed, 1 insertion(+) (limited to 'docs') diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js index 7400bc12b..16a20e068 100644 --- a/docs/assets/js/application.js +++ b/docs/assets/js/application.js @@ -20,6 +20,7 @@ $(document).ready(function(){ // Disable certain links in docs // ============================= + // Please do not carry these styles over to your projects, it's merely here to prevent button clicks form taking you away from your spot on page $('ul.tabs a, ul.pills a, .pagination a, .well .btn, .actions .btn, .alert-message .btn, a.close').click(function (e) { e.preventDefault() -- cgit v1.2.3 From e663cfb43fdc9f0ce73865a2a9857579975ecb63 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Sep 2011 10:14:35 -0700 Subject: fix tabs jitter bug when there is no active class --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/index.html b/docs/index.html index 1d20bc3a2..1e446c72b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1367,7 +1367,7 @@
    -
  • Home
  • +
  • Home
  • Profile
  • Messages
  • Settings
  • -- cgit v1.2.3 From 597590c15ddb324ea9eed28d5d54be020c4f1a2b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Sep 2011 10:15:45 -0700 Subject: add active class back to tabs --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/index.html b/docs/index.html index 1e446c72b..1d20bc3a2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1367,7 +1367,7 @@
    -
  • Home
  • +
  • Home
  • Profile
  • Messages
  • Settings
  • -- cgit v1.2.3 From 08b6c47ad7ef91995abfadaef7493a1744f275a7 Mon Sep 17 00:00:00 2001 From: Chris Aniszczyk Date: Fri, 16 Sep 2011 10:30:22 -0700 Subject: Clarify documentation license to be CC BY 3.0 Signed-off-by: Chris Aniszczyk --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/index.html b/docs/index.html index 1d20bc3a2..f99b756fe 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1923,7 +1923,7 @@ Lorem ipsum dolar sit amet illo error ipsum verita

    Back to top

    Designed and built with all the love in the world @twitter by @mdo and @fat.
    - Licensed under the Apache License v2.0. + Code licensed under the Apache License v2.0. Documentation licensed under CC BY 3.0.

-- cgit v1.2.3 From e8d9eb264c3ba8c263d37259f65eece7247b00b9 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 16 Sep 2011 10:51:44 -0700 Subject: update alert message for ie7 to adjust dismiss icon, update example pages to clean up a few things from testing --- docs/assets/css/docs.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index f2ccd0060..fb727a900 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -185,7 +185,6 @@ section > .row { } .show-grid [class*="span"] { background: #eee; - background: rgba(0,0,0,.1); text-align: center; -webkit-border-radius: 3px; -moz-border-radius: 3px; @@ -195,12 +194,14 @@ section > .row { } .show-grid:hover [class*="span"] { background: #ddd; - background: rgba(0,0,0,.2); } .show-grid .show-grid { margin-top: 0; margin-bottom: 0; } +.show-grid .show-grid [class*="span"] { + background-color: #ccc; +} /* Render mini layout previews -- cgit v1.2.3