Skip to content

Commit

Permalink
component-library: PR recomendations
Browse files Browse the repository at this point in the history
  • Loading branch information
feedmypixel committed Mar 14, 2016
1 parent 491caf8 commit 3f0b1c9
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions assets/scss/base/form/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Markup:
<fieldset class="{{modifier_class}}">
<div class="form-field">
<label for="first-name">
<input type="text" id="first-name" value=""/>
First Name
<input type="text" id="first-name" value=""/>
</label>
</div>
<div class="form-field">
<label for="second-name">
<input type="text" id="second-name" value=""/>
Second Name
<input type="text" id="second-name" value=""/>
</label>
</div>
<div class="form-field">
Expand Down Expand Up @@ -100,7 +100,7 @@ Styleguide Form.field
/*
Inline
For an inline elements you have a few choices.
For a inline elements you have a few choices.
Markup:
<fieldset class="form-field-group">
Expand Down Expand Up @@ -209,8 +209,8 @@ Markup:
<div class="form-date">
<div class="form-group form-group-year">
<label for="year" class="block-label">
<input class="input--xsmall" type="number" pattern="[0-9]*" min="0" max="31" id="year" name="year"/>
Blue
<input class="input--xsmall" type="number" pattern="[0-9]*" min="0" max="12" id="year" name="year"/>
Year
</label>
</div>
</div>
Expand All @@ -223,7 +223,7 @@ Styleguide Form.date
@extend %contains-floats;
display: inline-block;

@include ie-lte(7){
@include ie-lte(7) {
zoom: 1;
}
}
Expand Down Expand Up @@ -278,7 +278,8 @@ For displaying form controls.
Markup:
<label for="control">
Surname
<input type="text" id="control" name="surname" class="form-control {{modifier_class}}"/>
<input type="text" id="control"
name="surname" class="form-control {{modifier_class}}"/>
</label>
.form-control--block - For a block control use `.form-control--block`
Expand Down

0 comments on commit 3f0b1c9

Please sign in to comment.