Last active
January 1, 2016 11:49
-
-
Save bhubbard/8140584 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 { | |
.list-unstyled(); | |
} | |
.gform_wrapper li { | |
.form-group(); | |
} | |
.gform_wrapper form { | |
margin-bottom: 0; | |
} | |
.gform_wrapper .gfield_label { | |
} | |
.gform_wrapper .gfield_required { | |
padding-left: 1px; | |
color: @state-danger-text; | |
} | |
.ginput_container input, | |
.ginput_container select, | |
.ginput_container textarea { | |
.form-control(); | |
} | |
.ginput_container textarea { | |
height: auto; | |
} | |
.gform_button { | |
.btn(); | |
.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; | |
.form-control-focus(@alert-danger-text); | |
} | |
} | |
.validation_error { | |
.alert(); | |
.alert-danger(); | |
} | |
#gforms_confirmation_message { | |
.alert(); | |
} |
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
// Not Done | |
.gform_wrapper ul { | |
@extend .list-unstyled; | |
} | |
.gform_wrapper li { | |
.form-group(); | |
@extend .form-group; | |
} | |
.gform_wrapper form { | |
margin-bottom: 0; | |
} | |
.gform_wrapper .gfield_label { | |
} | |
.gform_wrapper .gfield_required { | |
padding-left: 1px; | |
color: @state-danger-text; | |
} | |
.ginput_container input, | |
.ginput_container select, | |
.ginput_container textarea { | |
@extend .form-control; | |
} | |
.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; | |
.form-control-focus(@alert-danger-text); | |
} | |
} | |
.validation_error { | |
@extend .alert; | |
@extend .alert-danger; | |
} | |
#gforms_confirmation_message { | |
@extend .alert; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment