Skip to content

Commit 40aba9c

Browse files
committed
append checkbox to password input twbs#36
1 parent 899c6f8 commit 40aba9c

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

bootstrap-1.1.0.css

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* http://www.apache.org/licenses/LICENSE-2.0
77
*
88
* Designed and built with all the love in the world @twitter by @mdo and @fat.
9-
* Date: Mon Aug 22 21:47:27 PDT 2011
9+
* Date: Mon Aug 22 21:51:03 PDT 2011
1010
*/
1111
/* Reset.less
1212
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
@@ -910,7 +910,10 @@ form input[readonly]:focus, form textarea[readonly]:focus, form input.disabled {
910910
.inline-inputs span {
911911
padding: 0 2px 0 1px;
912912
}
913-
.input-prepend input[type=text], .input-append input[type=text] {
913+
.input-prepend input[type=text],
914+
.input-append input[type=text],
915+
.input-prepend input[type=password],
916+
.input-append input[type=password] {
914917
-webkit-border-radius: 0 3px 3px 0;
915918
-moz-border-radius: 0 3px 3px 0;
916919
border-radius: 0 3px 3px 0;
@@ -943,7 +946,7 @@ form input[readonly]:focus, form textarea[readonly]:focus, form input.disabled {
943946
/* IE6-7 */
944947

945948
}
946-
.input-append input[type=text] {
949+
.input-append input[type=text], .input-append input[type=password] {
947950
float: left;
948951
-webkit-border-radius: 3px 0 0 3px;
949952
-moz-border-radius: 3px 0 0 3px;

bootstrap-1.1.0.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/forms.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ form {
236236
// Allow us to put symbols and text within the input field for a cleaner look
237237
.input-prepend,
238238
.input-append {
239-
input[type=text] {
239+
input[type=text],
240+
input[type=password] {
240241
.border-radius(0 3px 3px 0);
241242
}
242243
.add-on {
@@ -269,7 +270,8 @@ form {
269270
}
270271

271272
.input-append {
272-
input[type=text] {
273+
input[type=text],
274+
input[type=password] {
273275
float: left;
274276
.border-radius(3px 0 0 3px);
275277
}

0 commit comments

Comments
 (0)