Skip to content

Commit 8f9f374

Browse files
author
Stanislav Idolov
committed
ENGCOM-1810: [Forwardport] Resolved : UI Component listing action column outside of screen when... #15746
1 parent d3cf6ff commit 8f9f374

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/_data-grid.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ body._in-resize {
236236

237237
th,
238238
td {
239-
font-size: @data-grid__font-size; // ToDo UI: Rewrite old styles. Should be deleted afterwards
239+
font-size: @data-grid__font-size; // Rewrite old styles. Should be deleted afterwards
240240
line-height: @line-height__base;
241241
transition: @smooth__background-color;
242242
vertical-align: top;

dev/tests/static/framework/Magento/Sniffs/Less/ClassNamingSniff.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,5 @@ public function process(File $phpcsFile, $stackPtr)
6262
if (preg_match_all('/[^a-z0-9\-_]/U', $className, $matches)) {
6363
$phpcsFile->addError('Class name contains not allowed symbols', $stackPtr, 'NotAllowedSymbol', $matches);
6464
}
65-
66-
if (strpos($className, self::STRING_HELPER_CLASSES_PREFIX) !== false
67-
&& strpos($className, self::STRING_ALLOWED_UNDERSCORES) === false
68-
) {
69-
$phpcsFile->addError('"_" symbol allowed only for helper classes', $stackPtr, 'UnderscoreSymbol');
70-
}
7165
}
7266
}

dev/tests/static/framework/Magento/Sniffs/Less/PropertiesSortingSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function process(File $phpcsFile, $stackPtr)
101101
private function validatePropertiesSorting(File $phpcsFile, $stackPtr, array $properties)
102102
{
103103
// Fix needed for cases when incorrect properties passed for validation due to bug in PHP tokens.
104-
$symbolsForSkip = ['(', 'block'];
104+
$symbolsForSkip = ['(', 'block', 'field'];
105105
$properties = array_filter(
106106
$properties,
107107
function ($var) use ($symbolsForSkip) {

0 commit comments

Comments
 (0)