Created
March 21, 2016 17:20
-
-
Save craigpearson/d419ae09395a769c88eb 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; | |
} | |
.gform_wrapper li { | |
@extend .form-group; | |
} | |
.gform_wrapper form { | |
margin-bottom: 0; | |
} | |
.gform_wrapper .gfield_required { | |
padding-left: 1px; | |
color: $state-danger-text; | |
} | |
.ginput_container input, | |
.ginput_container select, | |
.ginput_container textarea { | |
@extend .form-control; | |
background-color: white; | |
} | |
.ginput_container textarea { | |
height: auto; | |
} | |
.gform_button { | |
@extend .btn; | |
@extend .btn-primary; | |
} | |
.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; | |
} | |
.gform_confirmation_message { | |
min-height: 200px; | |
text-align: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment