mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-17 04:52:10 +01:00
Fix color for namespace in high contrast theme
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
- type: fixed
|
||||
description: Color for available plugins
|
||||
2
gradle/changelog/fix_styles.yaml
Normal file
2
gradle/changelog/fix_styles.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
- type: fixed
|
||||
description: Color for available plugins and namespace
|
||||
@@ -828,3 +828,11 @@ form .field:not(.is-grouped) {
|
||||
.sg-sub-section + .sg-sub-section {
|
||||
margin-top: 2.5rem;
|
||||
}
|
||||
|
||||
.has-text-inherit {
|
||||
color: inherit !important;
|
||||
}
|
||||
|
||||
.has-text-default {
|
||||
color: $text !important;
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ const RepositoryGroupEntry: FC<Props> = ({ group }) => {
|
||||
);
|
||||
const namespaceHeader = (
|
||||
<>
|
||||
<Link to={`/repos/${group.name}/`} className="has-text-dark">
|
||||
<Link to={`/repos/${group.name}/`} className="has-text-inherit">
|
||||
{group.name}
|
||||
</Link>{" "}
|
||||
{settingsLink}
|
||||
|
||||
@@ -158,7 +158,7 @@ const RepositoryRoot = () => {
|
||||
|
||||
const titleComponent = (
|
||||
<>
|
||||
<RouteLink to={`/repos/${repository.namespace}/`} className="has-text-dark">
|
||||
<RouteLink to={`/repos/${repository.namespace}/`} className="has-text-inherit">
|
||||
{repository.namespace}
|
||||
</RouteLink>
|
||||
/{repository.name}
|
||||
|
||||
Reference in New Issue
Block a user