hide center border more, remove tiny empty spaces

This commit is contained in:
Ed Silkworth 2023-06-06 00:54:01 -07:00
parent 36b9d3d4da
commit 878781c4c7
No known key found for this signature in database
GPG Key ID: 26F260F04191F431
3 changed files with 26 additions and 1 deletions

View File

@ -32,4 +32,5 @@ Feb 6, 2023 · removed background color of alternating table rows, since distrac
Feb 28, 2023 · added "auto" to THEMES list
Mar 1, 2023 · added dark theme and auto theme to mitigate current and any future issues with Dark Reader
May 3, 2023 · `THEME_COLOR_META_TAG = none` no longer required, as of Gitea 1.19.2
Jun 4, 2023 · remove highlight behind some codes that obscured them
Jun 4, 2023 · remove highlight behind some codes that obscured them
Jun 5, 2023 · hide center border more between table header columns, and remove tiny empty spaces between table header corner and table border

View File

@ -281,4 +281,16 @@ details {
.added-code {
background: unset !important; /* remove highlight behind some codes */
}
.ui.table>thead>tr>th {
border-inline: 1px solid var(--color-box-header) !important; /* hide center border more between table header columns */
}
.ui.table>thead>tr:first-child>th:first-child {
border-radius: .22rem 0 0 !important; /* remove tiny empty space between table header corner and table border */
}
.ui.table>thead>tr:first-child>th:last-child {
border-radius: 0 .22rem 0 0 !important; /* remove tiny empty space between table header corner and table border */
}

View File

@ -390,4 +390,16 @@
.added-code {
background: unset !important; /* remove highlight behind some codes */
}
.ui.table>thead>tr>th {
border-inline: 1px solid var(--color-box-header) !important; /* hide center border more between table header columns */
}
.ui.table>thead>tr:first-child>th:first-child {
border-radius: .22rem 0 0 !important; /* remove tiny empty space between table header corner and table border */
}
.ui.table>thead>tr:first-child>th:last-child {
border-radius: 0 .22rem 0 0 !important; /* remove tiny empty space between table header corner and table border */
}
}