From 37fe04c014c1218585206d7a44ebe1aad2421a16 Mon Sep 17 00:00:00 2001 From: Alexandre Butynski Date: Mon, 14 Apr 2014 18:28:11 +0200 Subject: [PATCH] Apply input text style to email inputs --- cmd/droned/assets/css/drone.css | 5 +++++ cmd/droned/assets/css/drone.less | 1 + 2 files changed, 6 insertions(+) diff --git a/cmd/droned/assets/css/drone.css b/cmd/droned/assets/css/drone.css index 77b7ee7b0..b1f874633 100644 --- a/cmd/droned/assets/css/drone.css +++ b/cmd/droned/assets/css/drone.css @@ -1019,6 +1019,7 @@ ul.account-radio-group li img { -moz-border-radius: 5px; } .form-centered input[type="text"], +.form-centered input[type="email"], .form-centered input[type="password"] { margin-bottom: 0px; font-size: 16px; @@ -1027,17 +1028,20 @@ ul.account-radio-group li img { height: 40px; } .form-centered input[type="text"]:last-child, +.form-centered input[type="email"]:last-child, .form-centered input[type="password"]:last-child { border-top-width: 0px; border-top-right-radius: 0px; border-top-left-radius: 0px; } .form-centered input[type="text"]:first-child, +.form-centered input[type="email"]:first-child, .form-centered input[type="password"]:first-child { border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } .form-centered input[type="text"][disabled], +.form-centered input[type="email"][disabled], .form-centered input[type="password"][disabled] { box-shadow: none; background: #f7f7f7; @@ -1045,6 +1049,7 @@ ul.account-radio-group li img { text-shadow: none; } .form-centered input[type="text"].only-child, +.form-centered input[type="email"].only-child, .form-centered input[type="password"].only-child { border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; diff --git a/cmd/droned/assets/css/drone.less b/cmd/droned/assets/css/drone.less index 433ed20bb..9f8ce5e15 100644 --- a/cmd/droned/assets/css/drone.less +++ b/cmd/droned/assets/css/drone.less @@ -1207,6 +1207,7 @@ pre { } input[type="text"], + input[type="email"], input[type="password"] { margin-bottom: 0px; font-size: 16px;