Enabled text selection in diffs in Web IDE

Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/47771

Changelog entry
This commit is contained in:
Denys Mishunov 2019-03-28 14:31:07 +01:00
parent a85fd76f52
commit a7d169b47b
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