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/bootswatch.less | |
parent | 3ab898379581b9a4a079930fb88f3a78537c0752 (diff) | |
parent | 18a968b54959d49d8057542906822d6b994ca333 (diff) |
Merge pull request #348 from hebbet/gh-pages
[Paper] add styling for select
Diffstat (limited to 'paper/bootswatch.less')
-rw-r--r-- | paper/bootswatch.less | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/paper/bootswatch.less b/paper/bootswatch.less index c248d8b0..72b5007b 100644 --- a/paper/bootswatch.less +++ b/paper/bootswatch.less @@ -141,9 +141,16 @@ input[type=number], select, select.form-control { - background-color: #fff; - border: 1px solid #ddd; - .box-shadow(none); + border: 0; + border-radius: 0; + -webkit-appearance: none; + .box-shadow(inset 0 -1px 0 #ddd); + font-size: 16px; + padding-left: 0px; + + &:focus { + .box-shadow(inset 0 -2px 0 @brand-primary); + } } .has-warning { |