diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-11-05 11:49:39 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-11-05 11:49:39 -0500 |
commit | 3c56aac0d79e5b30053fc83686f01dbe0b2c2d7f (patch) | |
tree | 79430ac2909e1f36e6e832e21fe06149294d60f8 /paper/bootstrap.css | |
parent | d1d30b1c2a22c66692369c55f19ec29726de01ac (diff) | |
parent | bfd092e84fc4075eca9ddc8b46ff36e39ffcf8a2 (diff) |
Merge pull request #352 from hebbet/gh-pages
add styling for input types email, tel, input with class form-control
Diffstat (limited to 'paper/bootstrap.css')
-rw-r--r-- | paper/bootstrap.css | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/paper/bootstrap.css b/paper/bootstrap.css index 44a9662f..e96dd0e6 100644 --- a/paper/bootstrap.css +++ b/paper/bootstrap.css @@ -6519,12 +6519,15 @@ a { } textarea, textarea.form-control, +input.form-control, input[type=text], input[type=password], input[type=email], input[type=number], [type=text].form-control, -[type=password].form-control { +[type=password].form-control, +[type=email].form-control, +[type=tel].form-control { padding: 0; border: none; border-radius: 0; @@ -6534,31 +6537,40 @@ input[type=number], } textarea:focus, textarea.form-control:focus, +input.form-control:focus, input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus, [type=text].form-control:focus, -[type=password].form-control:focus { +[type=password].form-control:focus, +[type=email].form-control:focus, +[type=tel].form-control:focus { -webkit-box-shadow: inset 0 -2px 0 #2196f3; box-shadow: inset 0 -2px 0 #2196f3; } textarea[disabled], textarea.form-control[disabled], +input.form-control[disabled], input[type=text][disabled], input[type=password][disabled], input[type=email][disabled], input[type=number][disabled], [type=text].form-control[disabled], [type=password].form-control[disabled], +[type=email].form-control[disabled], +[type=tel].form-control[disabled], textarea[readonly], textarea.form-control[readonly], +input.form-control[readonly], input[type=text][readonly], input[type=password][readonly], input[type=email][readonly], input[type=number][readonly], [type=text].form-control[readonly], -[type=password].form-control[readonly] { +[type=password].form-control[readonly], +[type=email].form-control[readonly], +[type=tel].form-control[readonly] { -webkit-box-shadow: none; box-shadow: none; border-bottom: 1px dotted #ddd; |