Skip to content

Commit 9b27953

Browse files
committed
MC-31168: [2.3.x] Mark core payment methods as deprecated in Admin
1 parent a0baaa5 commit 9b27953

File tree

2 files changed

+6
-3
lines changed
  • app/design/adminhtml/Magento/backend/Magento_Config/web/css/source
  • lib/web/css/source/lib/variables

2 files changed

+6
-3
lines changed

app/design/adminhtml/Magento/backend/Magento_Config/web/css/source/_module.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@
150150
}
151151

152152
.deprecated-message > .comment {
153-
background: #faecec;
154-
border: 1px solid #d6474a;
153+
background: @deprecated__light_color;
154+
border: 1px solid @deprecated__dark_color;
155155
border-radius: 3px;
156-
color: #d6474a;
156+
color: @deprecated__dark_color;
157157
margin: 5px 0 0;
158158
padding: 3px 7px;
159159
position: relative;

lib/web/css/source/lib/variables/_colors.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,6 @@
120120

121121
@active__color: @theme__color__secondary;
122122
@error__color: @color-red10;
123+
124+
@deprecated__light_color: #faecec;
125+
@deprecated__dark_color: #d6474a;

0 commit comments

Comments
 (0)