From 6313a65df30e79cef71778d6c8089fc09abb3ea4 Mon Sep 17 00:00:00 2001 From: Jonathan Preston Date: Thu, 5 Nov 2015 14:03:46 -0800 Subject: [PATCH] OPAGEZ-49 #Comments Adds date input styling --- css/skeleton.ontraport.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/css/skeleton.ontraport.css b/css/skeleton.ontraport.css index 8dab7a2..50d3566 100644 --- a/css/skeleton.ontraport.css +++ b/css/skeleton.ontraport.css @@ -212,8 +212,26 @@ input[type="search"], input[type="text"], input[type="tel"], input[type="url"], +input[type="date"], input[type="password"], textarea, select { font-size: 15px; } + +input[type="date"] { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #D1D1D1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +input[type="date"]:focus { + border: 1px solid #33C3F0; + outline: 0; +}