Fix color of source header

This commit is contained in:
René Pfeuffer
2021-11-16 15:35:03 +01:00
parent 142e077b46
commit 23b7e0d85a
5 changed files with 10 additions and 17 deletions

View File

@@ -1,2 +1,2 @@
- type: fixed
description: Color for available plugins and namespace
description: Color for available plugins, namespace and code header

View File

@@ -110,19 +110,6 @@ footer.footer {
background-color: $blue-light;
}
// TODO
/*
.has-text-high-contrast-warning {
color: $warning;
}
.has-text-high-contrast-danger{
color: $high-contrast-danger-50;
}
.has-text-high-contrast-light-gray {
color: $high-contrast-light-gray;
}*/
// border and background colors
.has-background-dark-75 {
background-color: $dark-75;
@@ -836,3 +823,7 @@ form .field:not(.is-grouped) {
.has-text-default {
color: $text !important;
}
.has-background-accent {
background: $background-accent;
}

View File

@@ -30,6 +30,8 @@ $background: $grey-dark;
$text: $white-ter;
$text-strong: $white-bis;
$background-accent: $grey-darker;
$red: #e63453;
// TODO check if we could replace red in commons,
// without breaking the light mode

View File

@@ -28,6 +28,8 @@ $subtitle-color: #666;
$warning-invert: #88550D;
$button-disabled-opacity: .25;
$background-accent: $white-ter;
@import "utils/_post.scss";
:root {

View File

@@ -30,10 +30,8 @@ import { useTranslation } from "react-i18next";
import { Branch } from "@scm-manager/ui-types";
const ActionBar = styled.div`
background-color: whitesmoke;
border: 1px solid #dbdbdb;
border-radius: 4px;
color: #363636;
font-size: 1.25em;
font-weight: 300;
line-height: 1.25;
@@ -60,7 +58,7 @@ const CodeActionBar: FC<Props> = ({ selectedBranch, branches, onSelectBranch, sw
const location = useLocation();
return (
<ActionBar>
<ActionBar className={"has-background-accent"}>
<FlexShrinkLevel
left={
branches &&