Skip to content

Commit

Permalink
Applied css changes from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Aug 9, 2019
1 parent 7cd178f commit b73ccb3
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions src/AireBootstrapServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,39 @@ public function boot()
'checkbox_wrapper' => 'form-check',
'checkbox_group_label' => '',
'checkbox_group_label_wrapper' => '',
'radio_group' => 'form-check-input',
'radio_group_label' => 'form-check',
'radio_group_label_wrapper' => 'form-check-label',
'radio_group' => 'custom-control-input',
'radio_group_label' => 'custom-control-label',
'radio_group_label_wrapper' => 'custom-control custom-radio',
'summary' => '',
'button' => 'btn btn-primary',
'select' => 'form-control',
'textarea' => 'form-control',
],
'validation_classes' => [
'none' => [
'input' => '',
'select' => '',
'textarea' => '',
'input' => 'no-yet-validated',
'radio' => 'no-yet-validated',
'select' => 'no-yet-validated',
'textarea' => 'no-yet-validated',
'group_errors' => 'hidden',
'group_help_text' => '',
'group_help_text' => 'no-yet-validated',
],
'valid' => [
'label' => '',
'label' => 'is-valid',
'checkbox' => 'is-valid',
'radio' => 'is-valid',
'radio-group' => 'is-valid',
'input' => 'is-valid',
'select' => 'is-valid',
'textarea' => 'is-valid',
'group_errors' => 'valid-feedback',
'group_help_text' => 'valid-feedback',
],
'invalid' => [
'label' => '',
'label' => 'is-invalid',
'checkbox' => 'is-invalid',
'radio-group' => 'is-invalid',
'radio' => 'is-invalid',
'input' => 'is-invalid',
'select' => 'is-invalid',
'textarea' => 'is-invalid',
Expand Down

0 comments on commit b73ccb3

Please sign in to comment.