Created
August 20, 2014 16:59
-
-
Save jarrodmedrano/d80aae516809c3eade9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.gform_wrapper { | |
ul { | |
@extend .list-unstyled; | |
} | |
li { | |
@extend .form-group; | |
} | |
form { | |
margin-bottom: 0; | |
} | |
.gfield_required { | |
padding-left: 1px; | |
color: $state-danger-text; | |
} | |
} | |
.ginput_container { | |
input, | |
select, | |
textarea { | |
@extend .form-control; | |
} | |
textarea { | |
height: auto; | |
} | |
} | |
.gform_button { | |
@extend .btn; | |
@extend .btn-warning; | |
} | |
.gform_wrapper .gfield_error { | |
.gfield_label { | |
color: $state-danger-text; | |
} | |
input, | |
select, | |
textarea { | |
border-color: $alert-danger-border; | |
background-color: $alert-danger-bg; | |
color: $alert-danger-text; | |
@include form-control-focus( $alert-danger-text ); | |
} | |
} | |
.validation_error { | |
@extend .alert; | |
@extend .alert-danger; | |
} | |
#gforms_confirmation_message { | |
@extend .alert; | |
@extend .alert-success; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment