Skip to content

Commit 0fd8c87

Browse files
ENGCOM-2527: [Forwardport] Fixes Black color coding standard. #17028
- Merge Pull Request #17028 from chirag-wagento/magento2:2.3-develop-PR-port-17019 - Merged commits: 1. 742df86
2 parents 54d065a + 742df86 commit 0fd8c87

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module-old.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
}
122122

123123
.mage-suggest-selected > a {
124-
color: #000;
124+
color: @color-black;
125125
background: #F1FFEB;
126126
}
127127
}

app/design/adminhtml/Magento/backend/web/css/styles-old.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,8 @@
487487
}
488488

489489
.notification-entry-dialog .action-close:hover {
490-
color: #000;
491-
border-bottom-color: #000;
490+
color: @color-black;
491+
border-bottom-color: @color-black;
492492
filter: none;
493493
}
494494

@@ -3798,7 +3798,7 @@
37983798
}
37993799

38003800
.rule-param .label {
3801-
color: #000;
3801+
color: @color-black;
38023802
float: none;
38033803
text-align: left;
38043804
padding: 0;
@@ -5229,7 +5229,7 @@
52295229
@media print {
52305230
* {
52315231
background: transparent !important;
5232-
color: #000 !important;
5232+
color: @color-black !important;
52335233
box-shadow: none !important;
52345234
text-shadow: none !important;
52355235
filter: none !important;

lib/web/css/docs/source/_buttons.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ button {
4848
&.example-button-3 {
4949
.lib-button-s();
5050
border-radius: 0;
51-
color: #000;
51+
color: @color-black;
5252
&:hover,
5353
&.active {
54-
color: #000;
54+
color: @color-black;
5555
}
5656
}
5757
}

lib/web/css/docs/source/_messages.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
// ```
177177
//
178178

179-
@message-custom__color: #000;
179+
@message-custom__color: @color-black;
180180
@message-custom__background: #fc0;
181181
@message-custom__border-color: orange;
182182

@@ -185,7 +185,7 @@
185185
@message-custom-link__color-active: darken(@message-custom-link__color, 30%);
186186

187187
@message-custom-icon: @icon-settings;
188-
@message-custom-icon__color-lateral: #000;
188+
@message-custom-icon__color-lateral: @color-black;
189189
@message-custom-icon__background: #green;
190190
@message-custom-icon__top: 15px;
191191
@message-custom-icon__right: false;

lib/web/css/docs/source/_tables.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@
12531253
.lib-table();
12541254
.lib-table-striped(
12551255
@_stripped-background-color: #ffc,
1256-
@_stripped-color: #000,
1256+
@_stripped-color: @color-black,
12571257
@_stripped-direction: horizontal,
12581258
@_stripped-highlight: even
12591259
);

lib/web/css/source/lib/_resets.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185

186186
mark {
187187
background: #ff0;
188-
color: #000;
188+
color: @color-black;
189189
}
190190

191191
small {
@@ -465,13 +465,13 @@
465465

466466
ins {
467467
background-color: #ff9;
468-
color: #000;
468+
color: @color-black;
469469
text-decoration: none;
470470
}
471471

472472
mark {
473473
background-color: #ff9;
474-
color: #000;
474+
color: @color-black;
475475
font-style: italic;
476476
font-weight: bold;
477477
}

0 commit comments

Comments
 (0)