Fixed the select field bug I caused in Firefox, adjusted browse page aligment

This commit is contained in:
Victoria Wang 2014-09-02 15:15:27 -07:00
parent 92fcee0aea
commit aa35f2f158
3 changed files with 4 additions and 4 deletions

View file

@ -81,9 +81,9 @@ legend, .legend{
/* Drop Down Selection Inputs */ /* Drop Down Selection Inputs */
.select-Container{ .select-Container{
@extend %input-Area; @extend %input-Area;
background:url(/img/drop-Arrow.png) no-repeat 99% center #fff; display:inline-block; background:url(/img/drop-Arrow.png) no-repeat 99% center #fff; display:inline-block; overflow:hidden; float:left;
} }
.input-Select{background:none; border:0; font-size:$base; padding-right:$spacing*4; width:100%; -webkit-appearance:textarea} .input-Select{background:none; border:0; font-size:$base; padding-right:$spacing*4; width:120%; -webkit-appearance:textarea}
// File Input Styling // File Input Styling
.file-Input-Area{ .file-Input-Area{

View file

@ -809,7 +809,7 @@ a.tag:hover {
color: #000; color: #000;
} }
.header-Outro .btn-Action { .header-Outro .btn-Action {
margin: 0 0 0 10px; margin: 2px 0 0 10px;
} }
.browse-page .text-Label { .browse-page .text-Label {
float: left; float: left;

View file

@ -45,7 +45,7 @@
<fieldset class="grouping"> <fieldset class="grouping">
<label class="text-Label" for="tags">Search by tag:</label> <label class="text-Label" for="tags">Search by tag:</label>
<input class="input-Area typeahead" name="tags" type="text" placeholder="pokemon" value="" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" dir="auto"> <input class="input-Area typeahead" name="tags" type="text" placeholder="pokemon" value="" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" dir="auto">
<input style="vertical-align: -4px;" type="submit" class="btn-Action" value="Search"> <input style="vertical-align: -5px;margin-left: 4px;" type="submit" class="btn-Action" value="Search">
</fieldset> </fieldset>
</form> </form>
</div> </div>