diff options
| author | Mark Otto <[email protected]> | 2012-01-28 12:58:26 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-28 12:58:26 -0800 |
| commit | 70c6a6cd855a617b086682ef919e02cf67d4e86e (patch) | |
| tree | 34420da6e4981941fb4c92ded163a10f82c38e68 /docs/assets | |
| parent | b77161f8647f791319c684a191c2308b6dd05100 (diff) | |
| download | bootstrap-70c6a6cd855a617b086682ef919e02cf67d4e86e.tar.xz bootstrap-70c6a6cd855a617b086682ef919e02cf67d4e86e.zip | |
fix border and border radius on radios/checkboxes for iOS, fix forms docs alignment on small devices
Diffstat (limited to 'docs/assets')
| -rw-r--r-- | docs/assets/css/bootstrap-responsive.css | 3 | ||||
| -rw-r--r-- | docs/assets/css/bootstrap.css | 1 | ||||
| -rw-r--r-- | docs/assets/css/docs.css | 62 |
3 files changed, 8 insertions, 58 deletions
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css index e91f25539..0d975824b 100644 --- a/docs/assets/css/bootstrap-responsive.css +++ b/docs/assets/css/bootstrap-responsive.css @@ -20,7 +20,8 @@ padding-top: 0; } .form-horizontal .form-actions { - padding-left: 0; + padding-left: 10px; + padding-right: 10px; } .modal { position: absolute; diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 8cd2d9e36..74cef08f2 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -534,6 +534,7 @@ input[type="image"], input[type="checkbox"], input[type="radio"] { line-height: normal; border: none; + border: initial; cursor: pointer; border-radius: 0 \0/; } diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 8c92f087f..a48558395 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -306,42 +306,6 @@ hr.soften { } -/* Quickstart section for getting le code --------------------------------------------------- */ -.getting-started p { - color: #777; - margin-bottom: 9px; -} -.getting-started .current-version, -.getting-started .current-version a { - color: #999; -} -.getting-started form { - margin-bottom: 0; -} -.getting-started textarea { - display: block; - width: 95%; - height: auto; - font-family: Menlo, Monaco, "Courier New", monospace; - font-size: 12px; - line-height: 20px; - white-space: nowrap; - overflow: hidden; - color: #999; - /* Makes inputs behave like true block-level elements */ - -webkit-box-sizing: border-box; /* Older Webkit */ - -moz-box-sizing: border-box; /* Older FF */ - -ms-box-sizing: border-box; /* IE8 */ - box-sizing: border-box; /* CSS3 spec*/ - /* Hacks for IE7 to make this work just okay enough to function */ - *width: 80%; - *height: 24px; -} -.getting-started textarea:focus { - color: #333; -} - /* Footer -------------------------------------------------- */ @@ -354,27 +318,6 @@ hr.soften { margin-bottom: 0; color: #555; } -.footer dl { - margin-bottom: 0; -} -.footer dl dt { - font-size: 11px; - color: #999; - text-transform: uppercase; -} -.footer dl dd + dt { - margin-top: 18px; -} -.footer dl dd { - margin-left: 0; - font-size: 12px; -} -.footer dl a { - color: #999; -} -.footer dl a:hover { - color: #555; -} @@ -745,6 +688,11 @@ form.well { bottom: auto; left: auto; } + + /* Forms docs */ + .form-docs { + padding-left: 0; /* down from 10px */ + } } |
