Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions classes/views/frm-fields/back-end/field-options.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@

<div class="frm6 frm_form_field frm_add_opt_container">
<a href="javascript:void(0);" data-opttype="single" class="frm_cb_button frm-small-add frm_add_opt frm6 frm_form_field" id="frm_add_opt_<?php echo esc_attr( $args['field']['id'] ); ?>">
<span class="frm_icon_font frm_add_tag"></span>
<?php echo esc_html( $this->get_add_option_string() ); ?>
<?php
FrmAppHelper::icon_by_class( 'frm_icon_font frm_plus1_icon frm_add_tag frm_svg13' );
echo esc_html( $this->get_add_option_string() );
?>
</a>
</div>
8 changes: 7 additions & 1 deletion css/frm_admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -5923,6 +5923,13 @@ p.frm-inline-select,
margin-bottom: 5px;
}

.frm-single-settings .frm_add_opt_container svg.frm_add_tag,
.frm-single-settings .frm-add-other svg.frm_add_tag {
position: relative;
top: 5px;
margin-right: 4px;
}

.advanced_settings .frm_logic_row {
margin: 14px 0;
}
Expand Down Expand Up @@ -6270,7 +6277,6 @@ span.howto {
background: var(--sidebar-color);
}

/* */
#frm_form_editor_container #frm_form_key_box {
width: 13em;
max-width: 30%
Expand Down