diff options
Diffstat (limited to 'paper/bootstrap.css')
-rw-r--r-- | paper/bootstrap.css | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/paper/bootstrap.css b/paper/bootstrap.css index 68d3133a..44a9662f 100644 --- a/paper/bootstrap.css +++ b/paper/bootstrap.css @@ -6565,10 +6565,18 @@ input[type=number][readonly], } select, select.form-control { - background-color: #fff; - border: 1px solid #ddd; - -webkit-box-shadow: none; - box-shadow: none; + border: 0; + border-radius: 0; + -webkit-appearance: none; + -webkit-box-shadow: inset 0 -1px 0 #dddddd; + box-shadow: inset 0 -1px 0 #dddddd; + font-size: 16px; + padding-left: 0px; +} +select:focus, +select.form-control:focus { + -webkit-box-shadow: inset 0 -2px 0 #2196f3; + box-shadow: inset 0 -2px 0 #2196f3; } .has-warning input, .has-warning .form-control, |