This commit is contained in:
parent
c5ee37cd99
commit
974109ac39
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="topBar">
|
<div class="topBar">
|
||||||
<p tabindex="0" class="logo" id="burgerButton">Burgernotes</p>
|
<p tabindex="0" class="logo" id="burgerButton"></p>
|
||||||
<button tabindex="0" class="logo hidden" style="font-size: 17px;margin-left: 0;" onclick="handleGesture()" id="backButton"><img src="/static/svg/arrow-back.svg"></button>
|
<button tabindex="0" class="logo hidden" style="font-size: 17px;margin-left: 0;" onclick="handleGesture()" id="backButton"><img src="/static/svg/arrow-back.svg"></button>
|
||||||
<button id="usernameBox" class="usernameBox"><div class="vcenter"><img src="/static/svg/acct-settings.svg"></div></button>
|
<button id="usernameBox" class="usernameBox"><div class="vcenter"><img src="/static/svg/acct-settings.svg"></div></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -162,12 +162,13 @@ body {
|
||||||
/* Web app */
|
/* Web app */
|
||||||
.topBar {
|
.topBar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 100%;
|
right: 0;
|
||||||
|
width: calc(100% - 181px);
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|
||||||
background-color: var(--bar);
|
background-color: rgba(0, 0, 0, 0);
|
||||||
|
|
||||||
border: solid;
|
border: none;
|
||||||
border-color: var(--border-color);
|
border-color: var(--border-color);
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
|
@ -289,7 +290,7 @@ body {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
background-color: var(--bar);
|
background-color: rgba(0, 0, 0, 0);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border: none;
|
border: none;
|
||||||
transition: 0.125s;
|
transition: 0.125s;
|
||||||
|
@ -403,11 +404,11 @@ body {
|
||||||
.noteBox {
|
.noteBox {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 50px;
|
top: 35px;
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
background-color: var(--editor);
|
background-color: rgba(0, 0, 0, 0);
|
||||||
width: calc(100% - 200px);
|
width: calc(100% - 200px);
|
||||||
height: calc(100% - 50px - 30px);
|
height: calc(100% - 50px - 30px);
|
||||||
font-family: "Inter", sans-serif;
|
font-family: "Inter", sans-serif;
|
||||||
|
|
|
@ -448,6 +448,7 @@ function selectNote(nameithink) {
|
||||||
|
|
||||||
let bytes = CryptoJS.AES.decrypt(responseData["content"], password);
|
let bytes = CryptoJS.AES.decrypt(responseData["content"], password);
|
||||||
noteBox.value = bytes.toString(CryptoJS.enc.Utf8)
|
noteBox.value = bytes.toString(CryptoJS.enc.Utf8)
|
||||||
|
|
||||||
updateWordCount()
|
updateWordCount()
|
||||||
renderMarkDown()
|
renderMarkDown()
|
||||||
|
|
||||||
|
|
Reference in New Issue