Merge branch '47771-highlighting-in-diff' into 'master'

Enabled text selection in diffs in Web IDE

Closes #47771

See merge request gitlab-org/gitlab-ce!26721
This commit is contained in:
Tim Zallmann 2019-04-03 07:34:41 +00:00
commit b7c818192d
2 changed files with 13 additions and 0 deletions

View File

@ -179,6 +179,14 @@ $ide-commit-header-height: 48px;
display: none;
}
.monaco-editor .selected-text {
z-index: 1;
}
.monaco-editor .view-lines {
z-index: 2;
}
.is-readonly,
.editor.original {
.view-lines {

View File

@ -0,0 +1,5 @@
---
title: Enabled text selection highlighting in diffs in Web IDE
merge_request: 26721
author: Isaac Smith
type: fixed