Fix border radii on diff files and repo files

This commit is contained in:
Annabel Dunstone Gray 2019-05-23 12:14:15 -05:00
parent dd454852bc
commit efb3741408
4 changed files with 14 additions and 1 deletions

View File

@ -241,6 +241,7 @@
*/
&.code {
padding: 0;
border-radius: 0 0 $border-radius-default $border-radius-default;
}
.list-inline.previews {

View File

@ -8,7 +8,7 @@
pre {
padding: 10px 0;
border: 0;
border-radius: 0;
border-radius: 0 0 $border-radius-default $border-radius-default;
font-family: $monospace-font;
font-size: $code-font-size;
line-height: 19px;
@ -42,6 +42,7 @@
padding: 10px;
text-align: right;
float: left;
border-bottom-left-radius: $border-radius-default;
a {
font-family: $monospace-font;

View File

@ -494,6 +494,12 @@ table.code {
}
}
.line_holder:last-of-type {
td:first-child {
border-bottom-left-radius: $border-radius-default;
}
}
&.left-side-selected {
td.line_content.parallel.right-side {
user-select: none;

View File

@ -0,0 +1,5 @@
---
title: Fix border radii on diff files and repo files
merge_request:
author:
type: fixed