mirror of
https://github.com/pat-s/gitea-github-theme.git
synced 2024-12-18 00:36:28 +00:00
dark: reverse timline icons and adjust green colors in PRs
This commit is contained in:
parent
d06350970a
commit
991975edc1
1 changed files with 16 additions and 5 deletions
|
@ -377,7 +377,7 @@ textarea,
|
||||||
|
|
||||||
/* repo svg icons */
|
/* repo svg icons */
|
||||||
.repository.view.issue .comment-list .timeline-item .badge .svg {
|
.repository.view.issue .comment-list .timeline-item .badge .svg {
|
||||||
fill: white;
|
fill: var(--color-text-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* background emoji reactions */
|
/* background emoji reactions */
|
||||||
|
@ -523,15 +523,15 @@ a.blob-excerpt {
|
||||||
margin-left: -31px;
|
margin-left: -31px;
|
||||||
}
|
}
|
||||||
.repository.view.issue .comment-list .timeline-item .badge.badge-commit {
|
.repository.view.issue .comment-list .timeline-item .badge.badge-commit {
|
||||||
border-color: var(--color-text-light);
|
border-color: var(--color-navbar);
|
||||||
background: var(--color-text);
|
background: var(--color-navbar);
|
||||||
}
|
}
|
||||||
.repository.view.issue .comment-list .timeline:before {
|
.repository.view.issue .comment-list .timeline:before {
|
||||||
background-color: var(--color-secondary);
|
background-color: var(--color-secondary);
|
||||||
}
|
}
|
||||||
.repository.view.issue .comment-list .timeline-item .badge .svg {
|
.repository.view.issue .comment-list .timeline-item .badge .svg {
|
||||||
width: 17px;
|
width: 20px;
|
||||||
height: 17px;
|
height: 20px;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -553,3 +553,14 @@ input {
|
||||||
background: var(--color-project-board-bg);
|
background: var(--color-project-board-bg);
|
||||||
color: #333 !important;
|
color: #333 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* green checkmark background when approving PRs */
|
||||||
|
.bg-green {
|
||||||
|
background: var(--color-primary)!important;
|
||||||
|
}
|
||||||
|
i.green.icon.icon.icon.icon {
|
||||||
|
color: var(--color-primary);
|
||||||
|
}
|
||||||
|
span.green .svg {
|
||||||
|
color: var(--color-primary);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue