mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
This commit is contained in:
parent
b3f32ffc59
commit
ebe06c9c38
@ -605,7 +605,7 @@ class MainScreenComponent extends React.Component {
|
||||
|
||||
const rowHeight = height - theme.headerHeight - (messageBoxVisible ? this.styles_.messageBox.height : 0);
|
||||
|
||||
this.styles_.verticalResizer = {
|
||||
this.styles_.verticalResizerSidebar = {
|
||||
width: 5,
|
||||
// HACK: For unknown reasons, the resizers are just a little bit taller than the other elements,
|
||||
// making the whole window scroll vertically. So we remove 10 extra pixels here.
|
||||
@ -613,8 +613,10 @@ class MainScreenComponent extends React.Component {
|
||||
display: 'inline-block',
|
||||
};
|
||||
|
||||
this.styles_.verticalResizerNotelist = Object.assign({}, this.styles_.verticalResizerSidebar);
|
||||
|
||||
this.styles_.sideBar = {
|
||||
width: sidebarWidth - this.styles_.verticalResizer.width,
|
||||
width: sidebarWidth - this.styles_.verticalResizerSidebar.width,
|
||||
height: rowHeight,
|
||||
display: 'inline-block',
|
||||
verticalAlign: 'top',
|
||||
@ -623,10 +625,11 @@ class MainScreenComponent extends React.Component {
|
||||
if (isSidebarVisible === false) {
|
||||
this.styles_.sideBar.width = 0;
|
||||
this.styles_.sideBar.display = 'none';
|
||||
this.styles_.verticalResizerSidebar.display = 'none';
|
||||
}
|
||||
|
||||
this.styles_.noteList = {
|
||||
width: noteListWidth - this.styles_.verticalResizer.width,
|
||||
width: noteListWidth - this.styles_.verticalResizerNotelist.width,
|
||||
height: rowHeight,
|
||||
display: 'inline-block',
|
||||
verticalAlign: 'top',
|
||||
@ -635,7 +638,7 @@ class MainScreenComponent extends React.Component {
|
||||
if (isNoteListVisible === false) {
|
||||
this.styles_.noteList.width = 0;
|
||||
this.styles_.noteList.display = 'none';
|
||||
this.styles_.verticalResizer.display = 'none';
|
||||
this.styles_.verticalResizerNotelist.display = 'none';
|
||||
}
|
||||
|
||||
this.styles_.noteText = {
|
||||
@ -874,9 +877,9 @@ class MainScreenComponent extends React.Component {
|
||||
<Header style={styles.header} showBackButton={false} items={headerItems} />
|
||||
{messageComp}
|
||||
<SideBar style={styles.sideBar} />
|
||||
<VerticalResizer style={styles.verticalResizer} onDrag={this.sidebar_onDrag} />
|
||||
<VerticalResizer style={styles.verticalResizerSidebar} onDrag={this.sidebar_onDrag} />
|
||||
<NoteList style={styles.noteList} />
|
||||
<VerticalResizer style={styles.verticalResizer} onDrag={this.noteList_onDrag} />
|
||||
<VerticalResizer style={styles.verticalResizerNotelist} onDrag={this.noteList_onDrag} />
|
||||
<NoteEditor bodyEditor={bodyEditor} style={styles.noteText} />
|
||||
{pluginDialog}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user