fixed mobile layout

This commit is contained in:
zadam 2019-09-09 21:31:50 +02:00
parent f5228f87f0
commit 649862b01c
4 changed files with 30 additions and 28 deletions

View File

@ -1,4 +1,4 @@
FROM node:12.9.1-alpine FROM node:12.10.0-alpine
# Create app directory # Create app directory
WORKDIR /usr/src/app WORKDIR /usr/src/app

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
PKG_DIR=dist/trilium-linux-x64-server PKG_DIR=dist/trilium-linux-x64-server
NODE_VERSION=12.9.1 NODE_VERSION=12.10.0
rm -r $PKG_DIR rm -r $PKG_DIR
mkdir $PKG_DIR mkdir $PKG_DIR

2
package-lock.json generated
View File

@ -13610,7 +13610,7 @@
}, },
"xmlbuilder": { "xmlbuilder": {
"version": "9.0.7", "version": "9.0.7",
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", "resolved": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
"integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=", "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=",
"dev": true "dev": true
}, },

View File

@ -38,36 +38,38 @@
<div id="note-tab-container"> <div id="note-tab-container">
<div class="note-tab-content note-tab-content-template"> <div class="note-tab-content note-tab-content-template">
<div class="note-title-row"> <div class="note-detail-content" style="width: 100%">
<button type="button" class="note-menu-button action-button jam jam-align-justify"></button> <div class="note-title-row">
<button type="button" class="note-menu-button action-button jam jam-align-justify"></button>
<input autocomplete="off" value="" class="form-control note-title" tabindex="1"> <input autocomplete="off" value="" class="form-control note-title" tabindex="1">
<button type="button" class="close-detail-button action-button d-sm-none d-md-none d-lg-none d-xl-none" aria-label="Close"> <button type="button" class="close-detail-button action-button d-sm-none d-md-none d-lg-none d-xl-none" aria-label="Close">
<span aria-hidden="true">&times;</span> <span aria-hidden="true">&times;</span>
</button> </button>
</div>
<div class="note-detail-component-wrapper">
<div class="note-detail-text note-detail-component" tabindex="10000">
<div class="note-detail-text-editor"></div>
</div> </div>
<div class="note-detail-code note-detail-component"> <div class="note-detail-component-wrapper">
<div class="note-detail-code-editor"></div> <div class="note-detail-text note-detail-component" tabindex="10000">
<div class="note-detail-text-editor"></div>
</div>
<div class="note-detail-code note-detail-component">
<div class="note-detail-code-editor"></div>
</div>
<% include details/search.ejs %>
<% include details/render.ejs %>
<% include details/file.ejs %>
<% include details/image.ejs %>
<% include details/relation_map.ejs %>
<% include details/protected_session_password.ejs %>
</div> </div>
<% include details/search.ejs %>
<% include details/render.ejs %>
<% include details/file.ejs %>
<% include details/image.ejs %>
<% include details/relation_map.ejs %>
<% include details/protected_session_password.ejs %>
</div> </div>
</div> </div>
</div> </div>