Various arc-green fixes (#12384)

- Fix various white borders
- Fix dropdown triangle
- Fix tab backgrounds
- Fix release page timeline dots

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
silverwind 2020-07-31 03:27:06 +02:00 committed by GitHub
parent bf60146444
commit 24f8625790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 6 deletions

View File

@ -534,7 +534,8 @@ a:hover {
.ui.secondary.menu .dropdown.item:hover, .ui.secondary.menu .dropdown.item:hover,
.ui.secondary.menu .link.item:hover, .ui.secondary.menu .link.item:hover,
.ui.secondary.menu .active.item:hover, .ui.secondary.menu .active.item:hover,
.ui.secondary.menu a.item:hover { .ui.secondary.menu a.item:hover,
.ui.dropdown .menu .active.item {
color: #ffffff; color: #ffffff;
} }
@ -825,10 +826,10 @@ a.ui.basic.green.label:hover {
border-bottom-color: rgba(255, 255, 255, .1); border-bottom-color: rgba(255, 255, 255, .1);
.item.active { .item.active {
border-top-color: transparent; border-top-color: #404552;
border-left-color: transparent; border-left-color: #404552;
border-right-color: transparent; border-right-color: #404552;
background: #383c4a; background: #353945;
color: #dbdbdb; color: #dbdbdb;
} }
@ -842,8 +843,10 @@ a.ui.basic.green.label:hover {
&.navbar { &.navbar {
.item.active { .item.active {
border-top-color: transparent;
border-left-color: transparent; border-left-color: transparent;
border-right-color: transparent; border-right-color: transparent;
background: #383c4a;
} }
} }
} }
@ -1188,6 +1191,10 @@ td.blob-hunk {
color: #dbdbdb; color: #dbdbdb;
} }
.ui.pointing.dropdown > .menu:not(.hidden)::after {
background: #2c303a;
}
.ui.checkbox label, .ui.checkbox label,
.ui.checkbox + label, .ui.checkbox + label,
.ui.form .field > label { .ui.form .field > label {
@ -1568,6 +1575,11 @@ a.ui.labels .label:hover {
border-color: #634343 !important; border-color: #634343 !important;
} }
.organization.teams .detail .item:not(:last-child),
.organization.members .list .item {
border-bottom-color: #404552;
}
.ui.blue.button:active, .ui.blue.button:active,
.ui.blue.buttons .button:active { .ui.blue.buttons .button:active {
background-color: #a27558; background-color: #a27558;
@ -1875,11 +1887,20 @@ footer .container .links > * {
} }
.repository.release #release-list > li .detail { .repository.release #release-list > li .detail {
border-left-color: #888; border-left-color: #4c505c;
} }
.repository.release #release-list > li .detail .dot { .repository.release #release-list > li .detail .dot {
background-color: #888; background-color: #888;
border-color: #383c4a;
}
.repository.release #release-list > li .detail .download .list {
border-top-color: #404552;
}
.repository.release #release-list > li .detail .download .list li {
border-bottom-color: #404552;
} }
.tribute-container { .tribute-container {