diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml index dd90b3b57de7c2c7e1345060d825035ae45195f5..4a3219efbb946ffa9ea57d98f058a37174d7f399 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml @@ -17,25 +17,27 @@ </div> <div class="fieldset-wrapper-content in collapse" id="manage-titles-content"> <fieldset class="admin__fieldset fieldset"> - <table class="admin__control-table" id="attribute-labels-table"> - <thead> - <tr> - <?php foreach ($block->getStores() as $_store): ?> - <th class="col-store-view"><?php /* @escapeNotVerified */ echo $_store->getName() ?></th> - <?php endforeach; ?> - </tr> - </thead> - <tbody> - <tr> - <?php $_labels = $block->getLabelValues() ?> - <?php foreach ($block->getStores() as $_store): ?> - <td class="col-store-view"> - <input class="input-text<?php if ($_store->getId() == \Magento\Store\Model\Store::DEFAULT_STORE_ID): ?> required-option<?php endif; ?>" type="text" name="frontend_label[<?php /* @escapeNotVerified */ echo $_store->getId() ?>]" value="<?php echo $block->escapeHtml($_labels[$_store->getId()]) ?>"<?php if ($block->getReadOnly()):?> disabled="disabled"<?php endif;?>/> - </td> - <?php endforeach; ?> - </tr> - </tbody> - </table> + <div class="admin__control-table-wrapper"> + <table class="admin__control-table" id="attribute-labels-table"> + <thead> + <tr> + <?php foreach ($block->getStores() as $_store): ?> + <th class="col-store-view"><?php /* @escapeNotVerified */ echo $_store->getName() ?></th> + <?php endforeach; ?> + </tr> + </thead> + <tbody> + <tr> + <?php $_labels = $block->getLabelValues() ?> + <?php foreach ($block->getStores() as $_store): ?> + <td class="col-store-view"> + <input class="input-text<?php if ($_store->getId() == \Magento\Store\Model\Store::DEFAULT_STORE_ID): ?> required-option<?php endif; ?>" type="text" name="frontend_label[<?php /* @escapeNotVerified */ echo $_store->getId() ?>]" value="<?php echo $block->escapeHtml($_labels[$_store->getId()]) ?>"<?php if ($block->getReadOnly()):?> disabled="disabled"<?php endif;?>/> + </td> + <?php endforeach; ?> + </tr> + </tbody> + </table> + </div> </fieldset> </div> </div>