mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Don't show cursor in track-changes diff
This commit is contained in:
parent
0d334a560e
commit
7af839215f
2 changed files with 6 additions and 1 deletions
|
@ -57,7 +57,7 @@ div#trackChanges(ng-show="ui.view == 'track-changes'")
|
|||
span(ng-if="update_user.id == user.id") You
|
||||
|
||||
.diff.full-size
|
||||
.diff-editor(
|
||||
.diff-editor.hide-ace-cursor(
|
||||
ace-editor,
|
||||
ng-show="!!trackChanges.diff && !trackChanges.diff.loading",
|
||||
theme="settings.theme",
|
||||
|
|
|
@ -123,6 +123,11 @@
|
|||
|
||||
.diff {
|
||||
margin-right: @changesListWidth;
|
||||
.hide-ace-cursor {
|
||||
.ace_active-line, .ace_cursor-layer, .ace_gutter-active-line {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
aside.change-list {
|
||||
|
|
Loading…
Reference in a new issue