overleaf/services/web/public/stylesheets/app/editor/review-panel.less
2016-10-12 17:27:20 +01:00

46 lines
No EOL
675 B
Text

#review-panel {
position: absolute;
width: 160px;
top: 0px;
bottom: 0px;
right: 0px;
background-color: #eee;
overflow: hidden;
}
.review-panel-scroller {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: -30px; // Hide scroll bar
overflow-y: scroll;
}
.review-entry-list {
position: relative;
width: 160px;
}
.review-entry {
position: absolute;
font-size: 12px;
padding: 2px 6px;
border: 1px solid #999;
margin: 0 6px;
background-color: white;
max-width: 148px;
word-wrap: break-word;
}
#editor.has-review-panel {
right: 160px;
left: 0px;
width: auto;
.ace-editor-body {
overflow: visible;
.ace_scrollbar-v {
right: -160px;
}
}
}