diff options
| author | Mark Otto <[email protected]> | 2012-11-03 13:44:01 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-03 13:44:01 -0700 |
| commit | a249d1c8ee597c4f0f29da55b15cf35accd4221c (patch) | |
| tree | efc755be687dab37f3298c76d4be1649bfe5dec6 /docs/assets/css | |
| parent | 1477e081d46ebf6a5e6acb06debb7edb1a324918 (diff) | |
| parent | 5d6cf2ee1939515ad41b052ed1c406f96274ea37 (diff) | |
| download | bootstrap-a249d1c8ee597c4f0f29da55b15cf35accd4221c.tar.xz bootstrap-a249d1c8ee597c4f0f29da55b15cf35accd4221c.zip | |
Merge branch '2.2.2-wip' into exploratory
Conflicts:
docs/assets/css/bootstrap.css
docs/scaffolding.html
docs/templates/pages/scaffolding.mustache
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 58 | ||||
| -rw-r--r-- | docs/assets/css/docs.css | 6 |
2 files changed, 64 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 309b07b28..5bde2636e 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -128,6 +128,58 @@ textarea { vertical-align: top; } +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; @@ -4561,6 +4613,7 @@ input[type="button"].btn-block { display: none; width: 236px; padding: 1px; + white-space: normal; background-color: #ffffff; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.2); @@ -4776,6 +4829,11 @@ a.thumbnail:hover { border-radius: 9px; } +.label:empty, +.badge:empty { + display: none; +} + a.label:hover, a.badge:hover { color: #ffffff; diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 8af21ddef..8852926d3 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -328,8 +328,14 @@ hr.soften { margin-bottom: 0; } .show-grid .show-grid [class*="span"] { + margin-top: 5px; +} +.show-grid [class*="span"] [class*="span"] { background-color: #ccc; } +.show-grid [class*="span"] [class*="span"] [class*="span"] { + background-color: #999; +} .show-grid [class*="span"]:nth-child(even) { background-color: #ddd; |
