Skip to content

Commit 8d9c670

Browse files
authored
INTLY-4337: Updated the font color for the component names on Services tab (#532)
* INTLY-4337: Updated the color of the font for app name * Updated version. * Fixed linting error.
1 parent 7cd4833 commit 8d9c670

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "integreatly-web-app",
3-
"version": "2.20.2",
3+
"version": "2.20.3",
44
"private": true,
55
"proxy": "http://localhost:5001/",
66
"dependencies": {

src/components/installedAppsView/InstalledAppsView.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ class InstalledAppsView extends React.Component {
142142
</Expandable>
143143
</DataListCell>,
144144
<DataListCell key="primary content">
145-
<span id="Red Hat OpenShift">Red Hat OpenShift</span>
145+
<span className="integr8ly-pretty-name" id="Red Hat OpenShift">
146+
Red Hat OpenShift
147+
</span>
146148
</DataListCell>,
147149
<DataListCell
148150
key="cell one"
@@ -310,7 +312,7 @@ class InstalledAppsView extends React.Component {
310312
</span>
311313
</DataListCell>,
312314
<DataListCell key="primary content">
313-
<span id={`appName-${prettyName}`}>
315+
<span className="integr8ly-pretty-name" id={`appName-${prettyName}`}>
314316
{' '}
315317
{prettyName}{' '}
316318
{gaStatus && (gaStatus === 'preview' || gaStatus === 'community') ? (

src/styles/application/components/_installedAppsView.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,7 @@
4646
.integr8ly-panel-title {
4747
background-color: $pf-color-white !important; /* stylelint-disable-line declaration-no-important */
4848
}
49+
50+
.integr8ly-pretty-name {
51+
color: var(--pf-global--Color--200);
52+
}

0 commit comments

Comments
 (0)