Commit d8368447 by Brian Talbot

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

parent 13b74175
...@@ -250,6 +250,7 @@ ...@@ -250,6 +250,7 @@
label, input, textarea { label, input, textarea {
@include border-radius(0); @include border-radius(0);
display: block; display: block;
height: auto;
font-family: $sans-serif; font-family: $sans-serif;
font-style: normal; font-style: normal;
font-weight: 500; font-weight: 500;
...@@ -273,7 +274,7 @@ ...@@ -273,7 +274,7 @@
input, textarea { input, textarea {
width: 100%; width: 100%;
margin: 0; margin: 0;
padding: $baseline ($baseline*.75); padding: ($baseline/2) ($baseline*.75);
&.long { &.long {
width: 100%; width: 100%;
......
...@@ -73,6 +73,7 @@ ...@@ -73,6 +73,7 @@
input[type="email"], input[type="email"],
input[type="text"], input[type="text"],
input[type="password"] { input[type="password"] {
border: 1px solid red !important;
background: rgb(255,255,255); background: rgb(255,255,255);
display: block; display: block;
height: 45px; height: 45px;
......
...@@ -93,11 +93,11 @@ ...@@ -93,11 +93,11 @@
<ol class="list-input"> <ol class="list-input">
<li class="field required password" id="field-password-initial"> <li class="field required password" id="field-password-initial">
<label for="password-initial">Your New Password</label> <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>
<li class="field required password" id="field-password-repeat"> <li class="field required password" id="field-password-repeat">
<label for="password-repeat">Your New Password Again</label> <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> </li>
</ol> </ol>
</fieldset> </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