mirror of
https://github.com/pat-s/gitea-github-theme.git
synced 2024-11-21 21:01:00 +00:00
dark: fix background of profile cards (fixes #3)
This commit is contained in:
parent
373d16112a
commit
2ea37c89d9
1 changed files with 20 additions and 0 deletions
|
@ -435,3 +435,23 @@ a.blob-excerpt {
|
|||
.ui.form .field .dropdown .menu > .item {
|
||||
background-color: var(--color-border);
|
||||
}
|
||||
|
||||
/* hover font color */
|
||||
.ui.secondary.pointing.menu .active.item, .ui.secondary.pointing.menu .active.item:hover, .ui.secondary.pointing.menu .dropdown.item:hover, .ui.secondary.pointing.menu .link.item:hover, .ui.secondary.pointing.menu a.item:hover {
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
/* user avatar background */
|
||||
.user.profile .ui.card #profile-avatar {
|
||||
background: var(--color-navbar);
|
||||
}
|
||||
.ui.cards>.card>.content, .ui.card>.content {
|
||||
background: var(--color-navbar);
|
||||
}
|
||||
.user.profile .ui.card .extra.content ul li:not(:last-child) {
|
||||
border-bottom: 1px solid var(--color-secondary);
|
||||
background-color: var(--color-navbar);
|
||||
}
|
||||
.user.profile .ui.card .extra.content ul li {
|
||||
background-color: var(--color-navbar);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue