Skip to content

Commit

Permalink
Avoid using 'value' class on uri input. #2041
Browse files Browse the repository at this point in the history
(cherry picked from commit 240aef6)
  • Loading branch information
kimisgold authored and zerocrates committed Jun 15, 2023
1 parent 0e219af commit 8e3eb2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/asset/css/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion application/asset/sass/_screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2777,7 +2777,7 @@ fieldset.section > legend {
font-weight: inherit;
}

[data-data-type="uri"] .input-body input.value,
[data-data-type="uri"] .input-body input.uri-value,
[data-data-type="uri"] textarea.value-label {
height: (1.5 * $spacing-large);
border: 0;
Expand Down
2 changes: 1 addition & 1 deletion application/view/common/data-type/uri.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ $translate = $this->plugin('translate');
<div class="input">
<label>
<span class="value-label-text"><?php echo $translate('URI'); ?></span>
<input type="text" class="value to-require" data-value-key="@id">
<input type="text" class="uri-value to-require" data-value-key="@id">
</label>
</div>
<div class="input">
Expand Down

0 comments on commit 8e3eb2b

Please sign in to comment.