Border radius fix for commit list
This commit is contained in:
parent
d33638cc28
commit
d1273662f5
|
@ -1363,11 +1363,11 @@ form.ui.form.ignore-dirty input {
|
||||||
border: 0px !important;
|
border: 0px !important;
|
||||||
}
|
}
|
||||||
.ui.primary.button {
|
.ui.primary.button {
|
||||||
background-color: var(--green) !important;
|
background-color: var(--cyanhl) !important;
|
||||||
color: var(--fghl) !important;
|
color: var(--fghl) !important;
|
||||||
}
|
}
|
||||||
.ui.primary.button:hover {
|
.ui.primary.button:hover {
|
||||||
background-color: var(--greenhl) !important;
|
background-color: var(--cyanhl) !important;
|
||||||
color: var(--white) !important;
|
color: var(--white) !important;
|
||||||
}
|
}
|
||||||
.user.profile .ui.fluid input {
|
.user.profile .ui.fluid input {
|
||||||
|
@ -1384,10 +1384,14 @@ form.ui.form.ignore-dirty input {
|
||||||
border-bottom: solid 5px var(--blue) !important;
|
border-bottom: solid 5px var(--blue) !important;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
.repository.file.list #repo-files-table thead th {
|
.repository.file.list #repo-files-table {
|
||||||
background-color: var(--blue) !important;
|
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 {
|
.repository.file.list .repo-files-table {
|
||||||
border: 0px !important;
|
border: 0px !important;
|
||||||
|
|
Loading…
Reference in New Issue