Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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: 5 additions & 1 deletion classes/helpers/FrmFormsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,11 @@ public static function insert_opt_html( $args ) {
<a href="javascript:void(0)" class="frmids frm_insert_code" data-code="<?php echo esc_attr( $args['id'] ); ?>">
<?php
echo FrmAppHelper::kses_icon( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo esc_html( $truncated_name );
// echo esc_html( $truncated_name );
printf(
'<span>%s</span>',
esc_html( $truncated_name )
);
?>
<span>[<?php echo esc_attr( $args['id_label'] ?? $args['id'] ); ?>]</span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion css/frm_admin.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/frm_testing_mode.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/form-templates.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/formidable-settings-components.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/formidable_admin.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/formidable_admin.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/formidable_dashboard.js.map

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions js/formidable_styles.js.map

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions resources/scss/admin/components/list/_code-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@
margin-left: auto;
}

.frm_form_settings, #frm_edit_box_content_modal {
& .frm_code_list.frm-full-hover a span:first-of-type {
max-width: 170px;
margin-left: 0;
margin-right: auto;
}
}

.frm_code_list.frm-full-hover a {
border-radius: var(--small-radius);

Expand Down