mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Allow history view to be closed
This commit is contained in:
parent
e0cd9ba163
commit
548d7d98a4
3 changed files with 35 additions and 8 deletions
|
@ -426,6 +426,10 @@
|
|||
script(type='text/template')#trackChangesPanelTemplate
|
||||
#trackChangesPanel
|
||||
.track-changes-side-bar
|
||||
.track-changes-header
|
||||
h3 Recent changes
|
||||
a(href="#").track-changes-close
|
||||
i.icon-remove
|
||||
.change-list-area
|
||||
.track-changes-diff
|
||||
|
||||
|
|
|
@ -12,6 +12,13 @@ define [
|
|||
$("#editorWrapper").append(@$el)
|
||||
@hideEl()
|
||||
|
||||
@ide.editor.on "change:doc", () =>
|
||||
@hideEl()
|
||||
|
||||
@$el.find(".track-changes-close").on "click", (e) =>
|
||||
e.preventDefault
|
||||
@hideEl()
|
||||
|
||||
show: () ->
|
||||
@project_id = window.userSettings.project_id
|
||||
@doc_id = @ide.editor.current_doc_id
|
||||
|
|
|
@ -26,15 +26,31 @@
|
|||
position: absolute;
|
||||
right: 0;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.change-list-area {
|
||||
overflow: scroll;
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
bottom: 0px;
|
||||
.track-changes-header {
|
||||
background-color: black;
|
||||
h3 {
|
||||
color: white;
|
||||
padding-left: 8px;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 8px;
|
||||
}
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.change-list-area {
|
||||
overflow: scroll;
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
top: 30px;
|
||||
bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.deleted-change-background, .deleted-change-foreground, .inserted-change, .change-name-marker {
|
||||
|
|
Loading…
Reference in a new issue