Skip to content

Commit

Permalink
Make the combobox caret a larger target
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Oct 11, 2013
1 parent 8c30278 commit 64746d6
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -1554,9 +1554,20 @@ div.combobox {
}

.combobox-caret {
margin-left: -20px;
margin-right: 10px;
display:inline-block;
display: inline-block;
position: relative;
height: 30px;
width: 30px;
margin-left: -30px;
vertical-align: top;
}

.combobox-caret::after {
content:"";
height: 0; width: 0;
position: absolute;
left: 0; right: 0; bottom: 0; top: 0;
margin: auto;
border-top: 5px solid #ccc;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
Expand Down

0 comments on commit 64746d6

Please sign in to comment.