From 64746d6ef52390a2827c95bccd0a6feaa429f8a5 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Fri, 11 Oct 2013 15:17:47 -0700 Subject: [PATCH] Make the combobox caret a larger target --- css/app.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/css/app.css b/css/app.css index 52f95a7fd..0d504e12c 100644 --- a/css/app.css +++ b/css/app.css @@ -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;