Skip to content

Commit 91a97bf

Browse files
author
Oleksandr Dubovyk
committed
Merge remote-tracking branch 'origin/MAGETWO-48182' into PR
2 parents 340330a + 0c9024b commit 91a97bf

File tree

1 file changed

+18
-8
lines changed
  • app/code/Magento/Tax/view/adminhtml/templates/rate

1 file changed

+18
-8
lines changed

app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,27 @@
77
// @codingStandardsIgnoreFile
88

99
?>
10-
<div id="tax-rate-titles-table" class="form-inline">
10+
<fieldset id="tax-rate-titles-table" class="admin__fieldset">
1111
<?php $_labels = $block->getTitles() ?>
1212
<?php foreach ($block->getStores() as $_store): ?>
13-
<div class="field">
14-
<label class="label"><span><?php /* @escapeNotVerified */ echo $_store->getName() ?></span></label>
15-
<div class="control">
16-
<input class="input-text<?php if ($_store->getId() == 0): ?> required-entry<?php endif; ?>" type="text" name="title[<?php /* @escapeNotVerified */ echo $_store->getId() ?>]" value="<?php /* @escapeNotVerified */ echo $_labels[$_store->getId()] ?>"/>
13+
<div class="admin__field">
14+
<label class="admin__field-label"><span><?php /* @escapeNotVerified */ echo $_store->getName() ?></span></label>
15+
<div class="admin__field-control">
16+
<input
17+
class="admin__control-text<?php if ($_store->getId() == 0): ?> required-entry<?php endif; ?>"
18+
type="text"
19+
name="title[<?php /* @escapeNotVerified */ echo $_store->getId() ?>]"
20+
value="<?php /* @escapeNotVerified */ echo $_labels[$_store->getId()] ?>" />
1721
</div>
1822
</div>
1923
<?php endforeach; ?>
20-
<div class="tax-rate-titles-note-td">
21-
<strong><?php /* @escapeNotVerified */ echo __('Note:'); ?></strong> <?php /* @escapeNotVerified */ echo __('Leave this field empty if you wish to use the tax identifier.'); ?>
24+
25+
<div class="messages">
26+
<div class="message message-notice">
27+
<div>
28+
<strong><?php /* @escapeNotVerified */ echo __('Note:'); ?></strong>
29+
<?php /* @escapeNotVerified */ echo __('Leave this field empty if you wish to use the tax identifier.'); ?>
30+
</div>
31+
</div>
2232
</div>
23-
</div>
33+
</fieldset>

0 commit comments

Comments
 (0)