diff options
| author | Mark Otto <[email protected]> | 2012-02-20 18:56:05 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-20 18:56:05 -0800 |
| commit | 143b3db2c9c97b281b0c4ede937d136e9f904651 (patch) | |
| tree | 18d39b205fffbc81b6c0487e8003bdca4a39e9e0 /docs/templates | |
| parent | 331c85724afa7dbf41799967718b16e75f7ca816 (diff) | |
| download | bootstrap-143b3db2c9c97b281b0c4ede937d136e9f904651.tar.xz bootstrap-143b3db2c9c97b281b0c4ede937d136e9f904651.zip | |
update inline forms to resolve checkbox label with space in it and overlapping content, per #1969
Diffstat (limited to 'docs/templates')
| -rw-r--r-- | docs/templates/pages/base-css.mustache | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache index 96036d6ee..519f07bfe 100644 --- a/docs/templates/pages/base-css.mustache +++ b/docs/templates/pages/base-css.mustache @@ -834,7 +834,7 @@ <input type="text" class="input-small" placeholder="{{_i}}Email{{/i}}"> <input type="password" class="input-small" placeholder="{{_i}}Password{{/i}}"> <label class="checkbox"> - <input type="checkbox"> {{_i}}Remember?{{/i}} + <input type="checkbox"> {{_i}}Remember me{{/i}} </label> <button type="submit" class="btn">{{_i}}Sign in{{/i}}</button> </form> @@ -842,6 +842,9 @@ <form class="well form-inline"> <input type="text" class="input-small" placeholder="{{_i}}Email{{/i}}"> <input type="password" class="input-small" placeholder="{{_i}}Password{{/i}}"> + <label class="checkbox"> + <input type="checkbox"> {{_i}}Remember me{{/i}} + </label> <button type="submit" class="btn">{{_i}}Go{{/i}}</button> </form> </pre> |
