From 567b8b56319994dc0488de629b2dd2447be10115 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 3 Jun 2013 21:58:58 -0700 Subject: fix docs highlighting of grid --- docs/assets/css/docs.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 305247251..6a608b4da 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -246,13 +246,13 @@ body { .show-grid { margin-bottom: 15px; } -.show-grid .col { +.show-grid [class^="col-"] { padding-top: 10px; padding-bottom: 10px; background-color: #eee; border: 1px solid #ddd; } -.show-grid .col:hover { +.show-grid [class^="col-"]:hover { background-color: #ddd; } -- cgit v1.2.3 From 441bbe1998c790dad1c4d44c5f85e6360209eaac Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 8 Jun 2013 18:34:16 -0230 Subject: Another grid update * Update docs to include table of grid levels and behaviors * Change from .col-md to .col-sm to match existing size variables we use elsewhere * Keep .col-lg as-is though for simplicity as we won't likely add a fourth level of the grid * Combine responsive .container breakpoints with grid breakpoints in grid.less * Other misc docs updates --- docs/assets/css/docs.css | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 6a608b4da..811961d60 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -520,6 +520,7 @@ body { /* Utility classes table ------------------------- */ +.bs-table th small, .responsive-utilities th small { display: block; font-weight: normal; -- cgit v1.2.3 From 0a18d33d2c1600c9d5133127dac4db2f690df71a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Jun 2013 23:43:43 -0700 Subject: Redo grid documentation * Update example sections to include basic, mobile-desktop, and mobile-tablet-desktop implementations * Add more examples to the grid example page * Red columns instead of gray for more Bootstrapy aesthetic --- docs/assets/css/docs.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 811961d60..814208f78 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -251,9 +251,13 @@ body { padding-bottom: 10px; background-color: #eee; border: 1px solid #ddd; + /* Todo: reconcile these */ + background-color: rgba(185,74,72,.15); + border: 1px solid rgba(185,74,72,.2); } .show-grid [class^="col-"]:hover { background-color: #ddd; + background-color: rgba(185,74,72,.25); } -- cgit v1.2.3 From 9ba11ba60a444d84a9cf731bad49e91dd20826a4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Jun 2013 23:44:14 -0700 Subject: No more need for grid column highlighting, so nuke that --- docs/assets/css/docs.css | 4 ---- 1 file changed, 4 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 814208f78..db1cb1778 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -255,10 +255,6 @@ body { background-color: rgba(185,74,72,.15); border: 1px solid rgba(185,74,72,.2); } -.show-grid [class^="col-"]:hover { - background-color: #ddd; - background-color: rgba(185,74,72,.25); -} -- cgit v1.2.3