Skip to content

Commit

Permalink
INTLY-4337: Updated the font color for the component names on Service…
Browse files Browse the repository at this point in the history
…s tab (#532)

* INTLY-4337: Updated the color of the font for app name

* Updated version.

* Fixed linting error.
  • Loading branch information
dlabaj authored Dec 5, 2019
1 parent 7cd4833 commit 8d9c670
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "integreatly-web-app",
"version": "2.20.2",
"version": "2.20.3",
"private": true,
"proxy": "http://localhost:5001/",
"dependencies": {
Expand Down
6 changes: 4 additions & 2 deletions src/components/installedAppsView/InstalledAppsView.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ class InstalledAppsView extends React.Component {
</Expandable>
</DataListCell>,
<DataListCell key="primary content">
<span id="Red Hat OpenShift">Red Hat OpenShift</span>
<span className="integr8ly-pretty-name" id="Red Hat OpenShift">
Red Hat OpenShift
</span>
</DataListCell>,
<DataListCell
key="cell one"
Expand Down Expand Up @@ -310,7 +312,7 @@ class InstalledAppsView extends React.Component {
</span>
</DataListCell>,
<DataListCell key="primary content">
<span id={`appName-${prettyName}`}>
<span className="integr8ly-pretty-name" id={`appName-${prettyName}`}>
{' '}
{prettyName}{' '}
{gaStatus && (gaStatus === 'preview' || gaStatus === 'community') ? (
Expand Down
4 changes: 4 additions & 0 deletions src/styles/application/components/_installedAppsView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,7 @@
.integr8ly-panel-title {
background-color: $pf-color-white !important; /* stylelint-disable-line declaration-no-important */
}

.integr8ly-pretty-name {
color: var(--pf-global--Color--200);
}

0 comments on commit 8d9c670

Please sign in to comment.