Commit d8368447 by Brian Talbot

edx.org - adjusted input height and padding to handle previously uneditable fieldsin firefox

parent 13b74175
......@@ -250,6 +250,7 @@
label, input, textarea {
@include border-radius(0);
display: block;
height: auto;
font-family: $sans-serif;
font-style: normal;
font-weight: 500;
......@@ -273,7 +274,7 @@
input, textarea {
width: 100%;
margin: 0;
padding: $baseline ($baseline*.75);
padding: ($baseline/2) ($baseline*.75);
&.long {
width: 100%;
......
......@@ -73,6 +73,7 @@
input[type="email"],
input[type="text"],
input[type="password"] {
border: 1px solid red !important;
background: rgb(255,255,255);
display: block;
height: 45px;
......
......@@ -93,11 +93,11 @@
<ol class="list-input">
<li class="field required password" id="field-password-initial">
<label for="password-initial">Your New Password</label>
<input class="" id="password-initial" type="password" name="password-initial" value="" placeholder="*****" />
<input id="password-initial" type="password" name="password-initial" placeholder="*****" />
</li>
<li class="field required password" id="field-password-repeat">
<label for="password-repeat">Your New Password Again</label>
<input class="" id="password-repeat" type="password" name="password-repeat" value="" placeholder="*****" />
<input id="password-repeat" type="password" name="password-repeat" placeholder="*****" />
</li>
</ol>
</fieldset>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment