burger
This commit is contained in:
parent
03a4af3419
commit
3fdaf7279d
|
@ -33,10 +33,9 @@
|
|||
<button id="newNote" class="newNote" style="margin-left: 5px;">
|
||||
<div class="vcenter"><img id="newNoteImage" draggable="false" alt="" src="/static/svg/add.svg"></div>
|
||||
</button>
|
||||
<button class="newNote" style="margin-left: 37.5px; background-color: var(--bar) !important;">
|
||||
|
||||
<!--<button class="newNote" style="margin-left: 37.5px; background-color: var(--bar) !important;">-->
|
||||
</button>
|
||||
<button id="removeBox" class="newNote">
|
||||
<button id="removeBox" class="newNote remove">
|
||||
<div class="vcenter"><img id="newNoteImage" draggable="false" alt="" src="/static/svg/delete.svg"></div>
|
||||
</button>
|
||||
<div id="notesDiv" class="notesDiv">
|
||||
|
|
|
@ -372,6 +372,11 @@ body {
|
|||
transition: 0.125s;
|
||||
}
|
||||
|
||||
.notesBar .remove {
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.notesBar .newNote:hover {
|
||||
background-color: var(--icon-button-hover);
|
||||
}
|
||||
|
|
|
@ -76,11 +76,12 @@ if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
|||
mobile = true
|
||||
noteBoxDiv.classList.add("mobile");
|
||||
noteBoxDiv.style.width = "0px";
|
||||
notesBar.style.width = "calc(100% + 7.5px)"
|
||||
notesBar.style.width = "85%"
|
||||
noteBoxDiv.readOnly = true
|
||||
noteBox.style.fontSize = "18px"
|
||||
noteBoxDiv.classList.add("hidden")
|
||||
|
||||
|
||||
let touchstartX, touchstartY, touchendX, touchendY
|
||||
|
||||
notesBar.addEventListener("touchstart", function (event) {
|
||||
|
@ -130,7 +131,7 @@ if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
|||
function handleGesture() {
|
||||
if (indiv) {
|
||||
indiv = false
|
||||
notesBar.style.width = "calc(100% + 7.5px)";
|
||||
notesBar.style.width = "85%"
|
||||
noteBoxDiv.style.width = "0px"
|
||||
if (selectedNote !== 0) {
|
||||
noteBoxDiv.readOnly = true
|
||||
|
|
Reference in New Issue