getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Remove project specific rules from Gravitty Forms compound #267

Closed getdave closed 10 years ago

getdave commented 10 years ago

We have project specific rules for Gravity Forms in the Gravity Forms SASS partial. Please remove.

getdave commented 10 years ago

Also add standard rules for Complex input type labels and the "required" asterisk.

// COMPLEX (eg: address...etc)
// ==========================================================================
.ginput_complex {
    label {
        font-weight: normal;
        font-size: 0.9em;
    }
}

// REQUIRED
// ==========================================================================

.gfield_required {
    color: $errorText;
    font-weight: normal;
    margin-left: 0.1em;
}