Clean up comments in Sass partials

This commit is contained in:
Michael Rose
2015-01-20 15:25:57 -05:00
parent 422c0a467d
commit e916231560
9 changed files with 477 additions and 208 deletions

View File

@@ -1,3 +1,7 @@
/* ==========================================================================
Forms
========================================================================== */
btnform {
margin: 0 0 5px 0;
fieldset {
@@ -158,7 +162,11 @@ input[type="hidden"] {
.checkbox.inline + .checkbox.inline {
margin-left : 10px;
}
/* disabled ==================================== */
/*
Disabled state
========================================================================== */
input[disabled],
select[disabled],
textarea[disabled],
@@ -168,7 +176,11 @@ textarea[readonly] {
@include opacity(.5);
cursor : not-allowed;
}
/* focus and active ============================ */
/*
Focus & active state
========================================================================== */
input:focus,
textarea:focus {
border-color : $accentcolor;
@@ -181,7 +193,11 @@ input[type="checkbox"]:focus,
select:focus {
@include box-shadow(none);
}
/* help text ==================================== */
/*
Help text
========================================================================== */
.help-block,
.help-inline {
color : lighten($black, 50);
@@ -196,7 +212,11 @@ select:focus {
vertical-align : middle;
padding-left : 5px;
}
/* .form-inline ================================= */
/*
.form-inline
========================================================================== */
.form-inline input,
.form-inline textarea,
.form-inline select {
@@ -218,7 +238,11 @@ select:focus {
float : left;
margin-left : 0;
margin-right : 3px; }
/* .form-search ================================= */
/*
.form-search
========================================================================== */
.form-search input,
.form-search textarea,
.form-search select {
@@ -246,4 +270,4 @@ select:focus {
float : left;
margin-left : 0;
margin-right : 3px;
}
}