15 Commits

Author SHA1 Message Date
pat-s
02cbd1c551 right border of profile search bar 2021-10-15 20:34:37 +02:00
pat-s
2ea37c89d9 dark: fix background of profile cards (fixes #3) 2021-10-15 20:34:19 +02:00
pat-s
373d16112a dark: adjust link colors 2021-10-15 20:25:10 +02:00
pat-s
4699fc648f dark: adjust colors of .ui.positive.message 2021-10-15 20:12:51 +02:00
pat-s
c01e897182 dark: border color of dropdown svg 2021-10-15 20:09:59 +02:00
pat-s
47fe7f4977 dark: remove border of "new file" button 2021-10-13 16:58:37 +02:00
pat-s
91fefbccc4 dark: bg coloring of comment box 2021-10-12 23:11:00 +02:00
pat-s
19c6092361 dark: adaptions to PR diff view coloring 2021-10-12 23:05:16 +02:00
pat-s
c3e99fc8e3 dark: adjust color of .ui.positive.message 2021-10-11 18:15:45 +02:00
pat-s
c60a15481b dark: adjust background color of emoji reactions 2021-10-09 23:02:48 +03:00
pat-s
05d7758f15 diff color of newly added files 2021-10-09 09:33:46 +03:00
pat-s
8fb6ad6f6e dark theme: repo timeline svg icon coloring and warning messages block 2021-10-09 09:29:32 +03:00
pat-s
e3e77d5262 dark: update repos watch and fork counter color 2021-10-07 17:51:55 +03:00
pat-s
c7bd6313a6 dark: adjust color of active tabular item 2021-10-07 17:28:17 +03:00
pat-s
a8324951fd dark: beautify gpg commit label 2021-10-07 17:22:22 +03:00

View File

@@ -71,7 +71,8 @@
}
a,
.ui.breadcrumb a {
color: var(--color-text) !important;
/* color: var(--color-text); */
color: #539bf5;
}
.repo-title a {
color: #539bf5 !important;
@@ -173,7 +174,7 @@ a,
}
a,
.push.news {
color: #a6aab5 !important;
color: null;
}
.ui.header {
color: #a6aab5;
@@ -182,7 +183,7 @@ a,
color: #a6aab5 !important;
}
a.ui.label {
color: #adbac7 !important;
/* color: #adbac7 !important; */
border-color: var(--color-secondary) !important;
}
.ui.label {
@@ -270,7 +271,7 @@ textarea,
}
/* right border of "find repository" field */
.ui.action.input:not([class*="left action"])>input {
.ui.action.input:not([class*="left action"]) > input {
border-right-color: var(--color-input-border-hover);
}
@@ -278,6 +279,20 @@ textarea,
.lines-code {
background-color: #22272e;
}
.code-diff-unified .add-code,
.code-diff-unified .add-code td,
.code-diff-split .add-code .lines-num-new,
.code-diff-split .add-code .lines-type-marker-new,
.code-diff-split .add-code .lines-code-new,
.code-diff-split .del-code .add-code.lines-num-new,
.code-diff-split .del-code .add-code.lines-type-marker-new,
.code-diff-split .del-code .add-code.lines-code-new {
background: #224035;
}
.tag-code,
.tag-code td {
background-color: var(--color-body);
}
/* green code color dark theme */
.chroma .s2 {
@@ -307,5 +322,141 @@ textarea,
}
.repository.file.list #repo-files-table td a {
color: #7f8699!important;
color: #7f8699 !important;
}
/* gpg commit label */
.repository #commits-table td.sha .sha.label.isSigned.isVerified,
.repository #repo-files-table .sha.label.isSigned.isVerified,
.repository #rev-list .sha.label.isSigned.isVerified,
.repository
.timeline-item.commits-list
.singular-commit
.sha.label.isSigned.isVerified {
border: 1px solid #21ba45 !important;
background: transparent;
border-radius: 6px;
}
/* color of active tabular item, e.g. in PR view (conversations, commits, files changed) */
.ui.tabular.menu .active.item,
.ui.tabular.menu .active.item:hover {
background: var(--color-navbar);
}
/* repo watch and fork counters */
.ui.basic.labels:not(.tag):not(.image):not(.ribbon) .label,
.ui.basic.label:not(.tag):not(.image):not(.ribbon) {
color: #adbac7;
}
.repo-buttons .ui.labeled.button.disabled > .label {
color: #adbac7;
}
/* border color of warning message */
.ui.warning.message {
background-color: #22272e;
color: var(--color-text);
}
.ui.warning.message,
.ui.attached.warning.message {
box-shadow: null;
}
.ui.warning.message,
.ui.attached.warning.message {
box-shadow: 0 0 0 0px #c9ba9b inset, 0 0 #0000;
}
/* repo svg icons */
.repository.view.issue .comment-list .timeline-item .badge .svg {
fill: white;
}
/* background emoji reactions */
.repository .segment.reactions .ui.label.basic.blue {
background-color: transparent;
}
.ui.positive.message {
background-color: #22272e;
color: #fff;
}
.ui.positive.message,
.ui.attached.positive.message {
box-shadow: 0 0 0 1px #2c662d inset, 0 0 #0000;
}
/* diff color deletion */
.code-diff-unified .del-code,
.code-diff-unified .del-code td,
.code-diff-split .del-code .lines-num-old,
.code-diff-split .del-code .lines-type-marker-old,
.code-diff-split .del-code .lines-code-old {
background: #7a341e;
}
/* diff color neutral */
.lines-num,
.lines-code {
background-color: var(--color-navbar);
}
.lines-type-marker {
background-color: var(--color-navbar);
}
a.blob-excerpt {
background: var(--color-body);
}
/* PR open label */
.ui.green.labels .label,
.ui.ui.ui.green.label {
background-color: #347d39;
}
/* bg color of PR comment form */
.ui.form,
.ui.form .field .dropdown,
.ui.form .field .dropdown .menu > .item {
background-color: var(--color-navbar);
}
.comment-code-cloud {
background-color: var(--color-navbar);
}
/* remove border of "new file" button */
.ui.buttons .button:first-child {
border-left: 0px solid var(--color-light-border);
}
/* border color of dropdown svg */
.ui.form,
.ui.form .field .dropdown,
.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);
}
/* right border of profile search bar */
.ui.action.input:not([class*="left action"]) > input {
border-right-color: var(--color-text);
}