Border radius fix for commit list

This commit is contained in:
John Mertz 2023-09-28 06:38:30 +00:00
parent d33638cc28
commit d1273662f5
1 changed files with 9 additions and 5 deletions

View File

@ -1363,11 +1363,11 @@ form.ui.form.ignore-dirty input {
border: 0px !important;
}
.ui.primary.button {
background-color: var(--green) !important;
background-color: var(--cyanhl) !important;
color: var(--fghl) !important;
}
.ui.primary.button:hover {
background-color: var(--greenhl) !important;
background-color: var(--cyanhl) !important;
color: var(--white) !important;
}
.user.profile .ui.fluid input {
@ -1384,10 +1384,14 @@ form.ui.form.ignore-dirty input {
border-bottom: solid 5px var(--blue) !important;
border-radius: 5px;
}
.repository.file.list #repo-files-table thead th {
.repository.file.list #repo-files-table {
background-color: var(--blue) !important;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.repository.file.list #repo-files-table tr.commit-list {
border-top-left-radius: 5px !important;
border-top-right-radius: 5px !important;
}
.repository.file.list #repo-files-table thead th {
}
.repository.file.list .repo-files-table {
border: 0px !important;