Skip to content

Commit 4314d4b

Browse files
committed
Resolve Scope icon and store view specific label text alignment issue issue24440
1 parent ebee07a commit 4314d4b

File tree

2 files changed

+9
-1
lines changed
  • app
    • code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus
    • design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main

2 files changed

+9
-1
lines changed

app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ protected function _addStoresFieldset($model, $form)
8181
if (!$this->_storeManager->isSingleStoreMode()) {
8282
$fieldset = $form->addFieldset(
8383
'store_labels_fieldset',
84-
['legend' => __('Store View Specific Labels'), 'class' => 'store-scope']
84+
['legend' => __('Store View Specific Labels'), 'class' => 'store-scope no-margin-top-tooltip']
8585
);
8686
} else {
8787
$fieldset = $form->addFieldset(

app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_store-scope.less

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,11 @@
4242
}
4343
}
4444
}
45+
46+
.no-margin-top-tooltip {
47+
.admin__legend {
48+
.admin__field-tooltip {
49+
margin-top: 0;
50+
}
51+
}
52+
}

0 commit comments

Comments
 (0)