fix font color in issue labels

This commit is contained in:
pat-s 2021-08-30 08:51:51 +02:00
parent ba16d957d7
commit 610a3e8dab
No known key found for this signature in database
GPG Key ID: 3C6318841EF78925

View File

@ -8,7 +8,7 @@
--color-purple: #8250df; --color-purple: #8250df;
} }
.ui.label { .ui.label {
padding: .3em .5em; padding: 0.3em 0.5em;
background: var(--color-light); background: var(--color-light);
color: var(--color-text-light); color: var(--color-text-light);
border-radius: 6px; border-radius: 6px;
@ -37,15 +37,15 @@
.ui.green.buttons .button, .ui.green.buttons .button,
.ui.green.button { .ui.green.button {
background-color: #2da44e; background-color: #2da44e;
color: #fff!important color: #fff !important;
} }
.ui.green.labels .label, .ui.green.labels .label,
.ui.ui.ui.green.label { .ui.ui.ui.green.label {
background-color: #2da44e; background-color: #2da44e;
color: #fff!important color: #fff !important;
} }
.ui.label { .ui.label {
padding: .5em .5em; padding: 0.5em 0.5em;
} }
.ui.basic.green.buttons .button, .ui.basic.green.buttons .button,
.ui.basic.green.button { .ui.basic.green.button {
@ -63,17 +63,16 @@ a,
color: var(--color-text) !important; color: var(--color-text) !important;
} }
.repo-title a { .repo-title a {
color: var(--color-primary)!important color: var(--color-primary) !important;
} }
.ui.basic.blue.button, .ui.basic.blue.button,
.ui.basic.blue.buttons .button, .ui.basic.blue.buttons .button,
.ui.basic.primary.button, .ui.basic.primary.button,
.ui.basic.primary.buttons .button { .ui.basic.primary.buttons .button {
background-color: #fff !important; background-color: #fff !important;
box-shadow: inset 0 0 0 1px rgba(34, 36, 38, .15)!important; box-shadow: inset 0 0 0 1px rgba(34, 36, 38, 0.15) !important;
color: var(--color-text) !important; color: var(--color-text) !important;
} }
}
.ui.basic.blue.button:focus, .ui.basic.blue.button:focus,
.ui.basic.blue.buttons .button:focus, .ui.basic.blue.buttons .button:focus,
.ui.basic.primary.button:focus, .ui.basic.primary.button:focus,
@ -122,7 +121,7 @@ color: var(--color-text)!important;
color: var(--color-text) !important; color: var(--color-text) !important;
} }
.repository.file.list #repo-files-table tr:hover { .repository.file.list #repo-files-table tr:hover {
background-color: #f6f8fa!important background-color: #f6f8fa !important;
} }
.ui .error.header { .ui .error.header {
background-color: #cf222e !important; background-color: #cf222e !important;
@ -148,7 +147,7 @@ box-shadow: inset 0 0 0 6px #808080 !important;
background-color: #8250df !important; background-color: #8250df !important;
} }
.repository #clone-panel input { .repository #clone-panel input {
background-color: #f6f8fa background-color: #f6f8fa;
} }
.ui.basic.green.buttons .button, .ui.basic.green.buttons .button,
.ui.basic.green.button { .ui.basic.green.button {
@ -157,3 +156,7 @@ color: var(--color-text)!important;
ul.repo-owner-name-list { ul.repo-owner-name-list {
font-size: 13px; font-size: 13px;
} }
a.ui.label {
cursor: pointer;
color: #fff !important;
}