Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02cbd1c551 | ||
|
|
2ea37c89d9 | ||
|
|
373d16112a | ||
|
|
4699fc648f | ||
|
|
c01e897182 | ||
|
|
47fe7f4977 | ||
|
|
91fefbccc4 | ||
|
|
19c6092361 | ||
|
|
c3e99fc8e3 | ||
|
|
c60a15481b | ||
|
|
05d7758f15 | ||
|
|
8fb6ad6f6e | ||
|
|
e3e77d5262 | ||
|
|
c7bd6313a6 | ||
|
|
a8324951fd | ||
|
|
89228c7390 | ||
|
|
831a99fbfd | ||
|
|
571e6dadd5 | ||
|
|
18126ed790 | ||
|
|
ef197cf7f0 | ||
|
|
f491463acb |
@@ -23,7 +23,7 @@ I might update the theme over time to fix oversights and other issues - no guara
|
|||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
| | |
|
| | |
|
||||||
| :-----------------------: | :-----------------------: |
|
| :----------------------------: | :----------------------------: |
|
||||||
|  |  |
|
|  |  |
|
||||||
|  |  ||
|
|  |  |
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 230 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 116 KiB |
@@ -71,7 +71,8 @@
|
|||||||
}
|
}
|
||||||
a,
|
a,
|
||||||
.ui.breadcrumb a {
|
.ui.breadcrumb a {
|
||||||
color: var(--color-text) !important;
|
/* color: var(--color-text); */
|
||||||
|
color: #539bf5;
|
||||||
}
|
}
|
||||||
.repo-title a {
|
.repo-title a {
|
||||||
color: #539bf5 !important;
|
color: #539bf5 !important;
|
||||||
@@ -173,7 +174,7 @@ a,
|
|||||||
}
|
}
|
||||||
a,
|
a,
|
||||||
.push.news {
|
.push.news {
|
||||||
color: #a6aab5 !important;
|
color: null;
|
||||||
}
|
}
|
||||||
.ui.header {
|
.ui.header {
|
||||||
color: #a6aab5;
|
color: #a6aab5;
|
||||||
@@ -182,7 +183,11 @@ a,
|
|||||||
color: #a6aab5 !important;
|
color: #a6aab5 !important;
|
||||||
}
|
}
|
||||||
a.ui.label {
|
a.ui.label {
|
||||||
color: #adbac7 !important;
|
/* color: #adbac7 !important; */
|
||||||
|
border-color: var(--color-secondary) !important;
|
||||||
|
}
|
||||||
|
.ui.label {
|
||||||
|
border-color: var(--color-secondary) !important;
|
||||||
}
|
}
|
||||||
.ui.menu .item {
|
.ui.menu .item {
|
||||||
color: #adbac7;
|
color: #adbac7;
|
||||||
@@ -239,3 +244,219 @@ textarea,
|
|||||||
.page-content .ui.button {
|
.page-content .ui.button {
|
||||||
border-color: var(--color-secondary);
|
border-color: var(--color-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* border color form fields settings page */
|
||||||
|
input,
|
||||||
|
textarea,
|
||||||
|
.ui.input > input,
|
||||||
|
.ui.form input:not([type]),
|
||||||
|
.ui.form select,
|
||||||
|
.ui.form textarea,
|
||||||
|
.ui.form input[type="date"],
|
||||||
|
.ui.form input[type="datetime-local"],
|
||||||
|
.ui.form input[type="email"],
|
||||||
|
.ui.form input[type="file"],
|
||||||
|
.ui.form input[type="number"],
|
||||||
|
.ui.form input[type="password"],
|
||||||
|
.ui.form input[type="search"],
|
||||||
|
.ui.form input[type="tel"],
|
||||||
|
.ui.form input[type="text"],
|
||||||
|
.ui.form input[type="time"],
|
||||||
|
.ui.form input[type="url"],
|
||||||
|
.ui.selection.dropdown,
|
||||||
|
.ui.checkbox label:before,
|
||||||
|
.ui.checkbox input:checked ~ label:before,
|
||||||
|
.ui.checkbox input:not([type="radio"]):indeterminate ~ label:before {
|
||||||
|
border-color: var(--color-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* right border of "find repository" field */
|
||||||
|
.ui.action.input:not([class*="left action"]) > input {
|
||||||
|
border-right-color: var(--color-input-border-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* background color of code display */
|
||||||
|
.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 {
|
||||||
|
color: #8ddb8c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chroma .k {
|
||||||
|
color: #f47067;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chroma .m {
|
||||||
|
color: #6cb6ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chroma .nf {
|
||||||
|
color: #96d0ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* border color repo files */
|
||||||
|
.repository.file.list #repo-files-table td {
|
||||||
|
border-bottom: 1px solid #373e47;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* text color repo files */
|
||||||
|
.repository.file.list #repo-files-table td {
|
||||||
|
color: #7f8699;
|
||||||
|
}
|
||||||
|
|
||||||
|
.repository.file.list #repo-files-table td a {
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user