Skip to content

Commit

Permalink
**Tweak** - Gravity Forms handle gf_list_inline
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomollet committed Aug 6, 2020
1 parent d730f1c commit f491a90
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* **Tweak** - Gravity Forms handle gf_list_inline

### 0.6.4: August 06th, 2020
* **Tweak** - Gravity Forms handle ginput_left and ginput_right classes

Expand Down
8 changes: 8 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -9260,6 +9260,14 @@ body.template-fullwidthnotitle #content .page-header, body.template-fullwidthnot
display: inline-block;
margin-left: 4px;
}
.gform_wrapper .gf_list_inline .ginput_container_checkbox .checkbox,
.gform_wrapper .gf_list_inline .ginput_container_radio .radio {
width: auto !important;
float: none !important;
margin: 0 8px 10px 0;
display: -moz-inline-stack;
display: inline-block;
}
@media (min-width: 768px) {
.gform_wrapper .top_label .gfield.ginput_left,
.gform_wrapper .top_label .gfield.ginput_right {
Expand Down
2 changes: 1 addition & 1 deletion css/styles.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions css/styles.min.css

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions scss/helpers/_gravityforms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
@extend .list-unstyled;
}



.gform_validation_container {
display: none!important;
position: absolute!important;
Expand All @@ -17,6 +15,15 @@
margin-left: 4px;
}

.gf_list_inline .ginput_container_checkbox .checkbox,
.gf_list_inline .ginput_container_radio .radio {
width: auto !important;
float: none !important;
margin: 0 8px 10px 0;
display: -moz-inline-stack;
display: inline-block;
}

.top_label{

.gfield.ginput_left,
Expand Down

0 comments on commit f491a90

Please sign in to comment.