Updated to later version of vue cli to improve build process

* Updated some simples styles
* Added archive button to main notes
fixes #21
This commit is contained in:
Max G
2020-03-11 03:47:07 +00:00
parent 282cbfe7bc
commit 3ed26bcc03
15 changed files with 12003 additions and 74 deletions

View File

@@ -4,7 +4,7 @@
id="InputNotes"
class="master-note-edit"
@keyup.esc="close"
:class="[{ 'size-down':(sizeDown == true) }, 'position-'+position ]"
:class="[{ 'size-down':(sizeDown == true), 'full-focus':(fullFocusEditor) }, 'position-'+position ]"
:style="{ 'background-color':styleObject['noteBackground'], 'color':styleObject['noteText']}"
>
@@ -202,6 +202,8 @@
</div>
</side-slide-menu>
<div class="full-focus-shade"></div>
</div>
</template>
@@ -252,7 +254,7 @@
colorPickerLocation: null,
tinymce: null, //Initialized editor instance
fullFocusEditor: true, //Initialized editor instance
//Settings vars
showAllSettings: true,
@@ -1160,6 +1162,10 @@
left: 50%;
right: 0%;
}
.master-note-edit.position-1.full-focus {
left: 20%;
right: 20%;
}
.master-note-edit.position-2 {
left: 0%;
right: 50%;
@@ -1179,13 +1185,9 @@
@keyframes size-down {
0% {
/*opacity: 1;*/
/*top: 0;*/
top: 0;
}
100% {
/*opacity: 0;*/
/*top: 30vh;*/
top: 150vh;
}
}