mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-17 11:23:01 +00:00
Merge branch 'master' into ja-use-dirty-state
This commit is contained in:
commit
e1cf6229f7
2 changed files with 10 additions and 8 deletions
|
@ -55,7 +55,7 @@ define [
|
|||
controls.css({
|
||||
position: "absolute"
|
||||
right: state.east.size
|
||||
"z-index": 10
|
||||
"z-index": 3
|
||||
})
|
||||
|
||||
resetOpenStates = () ->
|
||||
|
@ -106,7 +106,14 @@ define [
|
|||
, 0
|
||||
|
||||
if attrs.allowOverflowOn?
|
||||
element.layout().allowOverflow(scope.$eval(attrs.allowOverflowOn))
|
||||
layoutObj = element.layout()
|
||||
overflowPane = scope.$eval(attrs.allowOverflowOn)
|
||||
overflowPaneEl = layoutObj.panes[overflowPane]
|
||||
# Set the panel as overflowing (gives it higher z-index and sets overflow rules)
|
||||
layoutObj.allowOverflow overflowPane
|
||||
# Read the given z-index value and increment it, so that it's higher than synctex controls.
|
||||
overflowPaneZVal = overflowPaneEl.css "z-index"
|
||||
overflowPaneEl.css "z-index", overflowPaneZVal + 1
|
||||
|
||||
resetOpenStates()
|
||||
onInternalResize()
|
||||
|
|
|
@ -149,12 +149,7 @@
|
|||
}
|
||||
|
||||
.rp-entry-list {
|
||||
.rp-size-expanded & {
|
||||
width: @review-panel-width;
|
||||
}
|
||||
.rp-size-mini & {
|
||||
width: @review-off-width;
|
||||
}
|
||||
width: 100%;
|
||||
|
||||
.rp-state-current-file & {
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in a new issue