Skip to content
Snippets Groups Projects
Commit f3841291 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray
Browse files

Fix border radius on MR diffs

Changelog: fixed
parent 3767785c
No related branches found
No related tags found
1 merge request!148716Fix border radius on MR diffs
......@@ -539,9 +539,29 @@ table.code {
}
.line_holder:last-of-type {
.diff-td:first-child,
td:first-child {
border-bottom-left-radius: $border-radius-default - 1px;
.diff-grid-left {
.diff-td:first-child,
td:first-child {
border-bottom-left-radius: $border-radius-default - 1px;
.diff-line-expand-button {
border-bottom-left-radius: $border-radius-default - 1px;
}
}
}
.diff-td:last-child:not(.left-side.parallel),
td:last-child:not(.left-side.parallel) {
border-bottom-right-radius: $border-radius-default - 1px;
}
}
.line_holder:last-of-type {
.diff-grid-left.left-side.parallel {
.diff-td:last-child,
td:last-child {
border-bottom-right-radius: 0;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment