Browse Source

ref(js): Remove unused `inline-commit` class (#35036)

Evan Purkhiser 2 years ago
parent
commit
ed8e7c5d6d
2 changed files with 1 additions and 16 deletions
  1. 1 1
      static/app/components/commitLink.tsx
  2. 0 15
      static/less/group-detail.less

+ 1 - 1
static/app/components/commitLink.tsx

@@ -76,7 +76,7 @@ function CommitLink({inline, commitId, repository}: Props) {
       {shortId}
     </Button>
   ) : (
-    <ExternalLink className="inline-commit" href={commitUrl}>
+    <ExternalLink href={commitUrl}>
       {providerData.icon}
       {' ' + shortId}
     </ExternalLink>

+ 0 - 15
static/less/group-detail.less

@@ -87,21 +87,6 @@
   }
 }
 
-/**
-* Commit Activity
-* TODO(billy): Move this to relevant components
-* (This used to be nested under `.activity-item` which is now a styled component)
-* ============================================================================
-*/
-.inline-commit {
-  color: @60;
-  padding-left: 3px;
-
-  &:hover {
-    color: @80;
-  }
-}
-
 /**
 * Event Details
 * ============================================================================