Browse Source

couple of gitea fixes

pull/124/head
Marius 4 years ago
parent
commit
9ab29f26b4
  1. 30
      CSS/themes/gitea/gitea-base.css

30
CSS/themes/gitea/gitea-base.css

@ -234,7 +234,13 @@ b:hover,
background-color: rgb(0 0 0 / 15%) !important;
color: var(--text);
}
.ui.attached.info.message, .ui.info.message {
box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0 0 0 0 transparent;
}
.ui.info.message {
background-color: rgb(255 255 255 / 8%);
color: #276f86;
}
.ui.attached.header {
background: rgb(0 0 0 / 25%);
border: 1px solid transparent;
@ -577,7 +583,12 @@ svg.vch__wrapper rect.vch__day__square[data-v-a9cfea66]:hover {
.repository .diff-file-box .code-diff-unified tbody tr.add-code td.lines-num {
background-color: #2c4632 !important
}
.repository.view.issue .comment-list .comment .comment-container {
border: 1px solid rgba(255, 255, 255, 0.1);
}
.comment-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.removed-code {
background-color: #5f3737
}
@ -801,7 +812,8 @@ td.blob-excerpt {
background: rgba(0, 0, 0, .25);
}
.editor-toolbar a {
.editor-toolbar a,
.editor-toolbar button {
color: #ffffff !important;
}
@ -812,7 +824,9 @@ td.blob-excerpt {
}
.editor-toolbar a.active,
.editor-toolbar a:hover {
.editor-toolbar a:hover,
.editor-toolbar button.active,
.editor-toolbar button:hover {
background: rgb(255 255 255 / 25%);
border-color: rgb(255 255 255 / 25%);
}
@ -860,6 +874,10 @@ td.blob-excerpt {
color: var(--accent-color);
}
.repository.view.issue .pull-desc code {
color: var(--accent-color);
}
.repository .segment.reactions .ui.label.basic.blue {
background-color: #ffffff00 !important;
border-color: inherit !important;
@ -1132,8 +1150,8 @@ a.ui.label:hover {
}
.ui .sha.label {
background: var(--button-color);
color: var(--button-text);
background: var(--button-color) !important;
color: var(--button-text) !important;
border: 1px solid var(--button-color) !important;
}

Loading…
Cancel
Save