Skip to content

Commit

Permalink
Merge pull request #559 from akashgp09/style-issue
Browse files Browse the repository at this point in the history
FIX (BB-456) : CSS style issue in older version of certain browsers
  • Loading branch information
MonkeyDo committed Mar 25, 2021
2 parents adac4ae + e95af12 commit d4648cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/client/helpers/entity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export function getEntityLabel(entity, returnHTML = true) {
deletedEntityName = entity.parentAlias.name;
}
if (returnHTML) {
return <span className="text-muted deleted" title={`Deleted ${entity.type}`}>{deletedEntityName}</span>;
return <span className="deleted"><span className="text-muted" title={`Deleted ${entity.type}`}>{deletedEntityName}</span></span>;
}
return `${deletedEntityName}`;
}
Expand Down
4 changes: 2 additions & 2 deletions src/client/stylesheets/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ a.contact-text:visited {
}

.deleted {
text-decoration-line: line-through;
text-decoration-color: @brand-danger;
text-decoration: line-through;
color: @brand-danger;
}

/* getStarted.jade */
Expand Down

0 comments on commit d4648cf

Please sign in to comment.