Skip to content
Snippets Groups Projects
Unverified Commit 00b2e9ba authored by Paul Slaughter's avatar Paul Slaughter
Browse files

Fix subpixel border issue

**What?**
In some browsers subpixel heights are rounded in tables.
This was causing the discussion border to be hidden because the
content overflowed.
Adding `padding-bottom: 1px` basically overrides this rounding.

https://gitlab.com/gitlab-org/gitlab-ce/issues/53973
parent cf5c8e73
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -471,6 +471,11 @@ $note-form-margin-left: 72px;
vertical-align: top;
white-space: normal;
 
// Fixes subpixel rounding issue https://gitlab.com/gitlab-org/gitlab-ce/issues/53973
// background-color is needed for dark code preference
padding-bottom: 1px;
background-color: $white-light;
&.parallel {
border-width: 1px;
 
Loading
Loading
---
title: Fix MR discussion border missing in chrome sometimes
merge_request: 28185
author:
type: fixed
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