Skip to content

Commit

Permalink
Merge branch '7.0' into 7
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Jan 28, 2025
2 parents f74d421 + 971ba30 commit ce792d5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code/Model/EditableFormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public function getCMSFields()
LiteralField::create(
'MergeField',
'<div class="form-group field readonly">' .
'<label class="left form__field-label" for="Form_ItemEditForm_MergeField">'
'<label class="left form__field-label form-label" for="Form_ItemEditForm_MergeField">'
. _t(__CLASS__.'.MERGEFIELDNAME', 'Merge field')
. '</label>'
. '<div class="form__field-holder">'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<input id="$ID" class="checkbox" name="$Name" type="checkbox" value="$Value.ATT"<% if $isChecked %>
checked="checked"<% end_if %><% if $isDisabled %> disabled="disabled"<% end_if %>
$Top.getValidationAttributesHTML().RAW />
<label for="$ID">$Title.XML</label>
<label for="$ID" class="form-label">$Title.XML</label>
</div>
<% end_loop %>
<% else %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<input id="$ID" class="radio" name="$Name" type="radio" value="$Value.ATT"<% if $isChecked %>
checked<% end_if %><% if $isDisabled %> disabled<% end_if %> <% if $Up.Required %>required<% end_if %>
$Top.getValidationAttributesHTML().RAW />
<label for="$ID">$Title</label>
<label class="form-label" for="$ID">$Title</label>
</div>
<% end_loop %>
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<input $AttributesHTML<% if $RightTitle %> aria-describedby="{$Name}_right_title"<% end_if %>/>
<% if $Title %><label class="left" for="$ID">$Title</label><% end_if %>
<% if $Title %><label class="left form-label" for="$ID">$Title</label><% end_if %>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div id="$Name" class="field<% if $extraClass %> $extraClass<% end_if %>">
<% if $Title %><label class="left" for="$ID">$Title</label><% end_if %>
<% if $Title %><label class="left form-label" for="$ID">$Title</label><% end_if %>
<div class="middleColumn">
$Field
</div>
Expand Down

0 comments on commit ce792d5

Please sign in to comment.