Some fixes to gaps, and text color

This commit is contained in:
John Mertz 2023-09-28 06:20:38 +00:00
parent 4dc81aec9d
commit 52da25edec
1 changed files with 25 additions and 5 deletions

View File

@ -37,19 +37,22 @@ code.code-inner span.p {
.chroma .nn {
color: var(--fghl) !important;
}
.chroma .o, .chroma .ow {
.chroma .o, .chroma .ow, .chroma .nf, .chroma .kt {
color: var(--yellow) !important;
}
.chroma .nc, .chroma .sr {
color: var(--magenta) !important;
}
.chroma .cp, .chroma .nb, .chroma .nv {
.chroma .cp, .chroma .nb, .chroma .nd, .chroma .nv {
color: var(--blue) !important;
}
.chroma .m, .chroma .md, .chroma .mf, .chroma .mh, .chroma .mi, .chroma .mo {
color: var(--cyan) !important;
}
.chroma .k, .chroma .kc, .chroma .kd, .chroma .kn, .chroma .kp, .chroma .kr {
color: var(--red) !important;
}
.chroma .s, .chroma .s2, .chroma .sa, .chroma .sb, .chroma .sc, .chroma .sd, .chroma .se, .chroma .sh, .chroma .si {
.chroma .s, .chroma .s2, .chroma .sa, .chroma .sb, .chroma .sc, .chroma .sd, .chroma .se, .chroma .sh, .chroma .si, .chroma .nt {
color: var(--green) !important;
}
body {
@ -383,7 +386,7 @@ a.item {
}
.ui.table {
color: #797979!important;
border: 1px solid #313c47;
border: 0px;
background: #18242f;
}
.ui.table tbody tr {
@ -1285,7 +1288,6 @@ button.branch-dropdown-button, .ui.basic.button, .ui.basic.buttons .button {
color: var(--white);
}
.commit-list, .ui.table th:hover {
background-color: var(--blue) !important;
color: var(--fghl) !important;
}
.ui.table.active a {
@ -1375,6 +1377,24 @@ form.ui.form.ignore-dirty input {
/* Repo Page */
.ui.repo-description {
margin-top: 10px;
}
.repository.file.list #repo-files-table {
border-bottom: solid 5px var(--blue) !important;
border-radius: 5px;
}
.repository.file.list #repo-files-table thead th {
background-color: var(--blue) !important;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.repository.file.list .repo-files-table {
border: 0px !important;
}
.repository.file.list tr.commit-list th {
border-bottom: 0px !important;
}
.ui.divider {
display: none;
}