diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-11-04 11:17:32 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-11-04 11:17:32 -0500 |
commit | 5f8d6a42d5919db8b8c63daf8851d1be704b4437 (patch) | |
tree | 91e91c4e8e5aa328e5fb56f61525214bef3e5bcf /paper/bootstrap.css | |
parent | 3ab898379581b9a4a079930fb88f3a78537c0752 (diff) | |
parent | 18a968b54959d49d8057542906822d6b994ca333 (diff) |
Merge pull request #348 from hebbet/gh-pages
[Paper] add styling for select
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, |