From fe30ca78ce6495656feb37ef3322dbea9fb6e424 Mon Sep 17 00:00:00 2001 From: test test Date: Mon, 14 Jun 2021 14:52:18 +0200 Subject: [PATCH] Fix issue with input type="email" css --- teleforma/static/teleforma/css/base.css | 4 ++-- teleforma/static/teleforma/css/teleforma.css | 13 ++++++++----- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/teleforma/static/teleforma/css/base.css b/teleforma/static/teleforma/css/base.css index 3581536e..147aa370 100644 --- a/teleforma/static/teleforma/css/base.css +++ b/teleforma/static/teleforma/css/base.css @@ -265,8 +265,8 @@ input[type=reset][disabled] { border-style: solid; color: #999; } -input[type=text], input[type=password], input.textwidget, textarea { border: 1px solid #ccc; } -input[type=text], input[type=password], input.textwidget { padding: .25em .1em } +input[type=text], input[type=password], input[type=email], input.textwidget, textarea { border: 1px solid #ccc; } +input[type=text], input[type=password], input[type=email], input.textwidget { padding: .25em .1em } input[type=text]:focus, input[type=password]:focus, input.textwidget:focus, textarea:focus { border-color: #aaa; } diff --git a/teleforma/static/teleforma/css/teleforma.css b/teleforma/static/teleforma/css/teleforma.css index 0857000b..c07bbbb2 100644 --- a/teleforma/static/teleforma/css/teleforma.css +++ b/teleforma/static/teleforma/css/teleforma.css @@ -306,8 +306,8 @@ input[type=reset][disabled] { border-style: solid; color: #999; } -input[type=text], input[type=password], input.textwidget, textarea { border: 1px solid #ccc; } -input[type=text], input[type=password], input.textwidget { padding: .25em .1em } +input[type=text], input[type=password], input[type=email], input.textwidget, textarea { border: 1px solid #ccc; } +input[type=text], input[type=password], input[type=email], input.textwidget { padding: .25em .1em } input[type=text]:focus, input[type=password]:focus, input.textwidget:focus, textarea:focus { border-color: #aaa; } @@ -2092,7 +2092,7 @@ column-rule: 0; display: inline-block; max-width: 190px; } -#_registerForm fieldset input[type="text"]{ +#_registerForm fieldset input[type="text"], #_registerForm fieldset input[type="email"]{ width: calc(100% - 190px); margin: 0; float: right; @@ -2148,8 +2148,11 @@ column-rule: 0; float: right; background-color: #F2F2F2; } -#_registerForm .submit-panel div{ - padding: 15px 15px 25px 15px; +#_registerForm .submit-panel div { + padding: 5px 15px 25px 15px; +} +#_registerForm .submit-panel .captcha-div{ + padding: 5px 0px; } #_registerForm .submit-panel label{ -- 2.39.5