* feat: introduce native smart tags * feat: introduce react navigation * feat: render smart tag special cases * feat: add create tag & all count * feat: move components to react + mobx * fix: workaround issue with snjs * feat: nice smart tag icons in experimental * feat: add back components * fix: typo on all tags * feat: add panel resizer + simplif code * fix: panel resize size & refresh * fix: auto select all notes * style: remove legacy tag view * style: remove legacy directives * fix: select tag from note view * feat: WIP smart tag rename * fix: template checks * fix: user can create new notes * panel: init width * fix: panel resizer ref * fix: update with new component viewer * fix: use fixed isTemplateItem & fixed findItems * refactor: rename tags panel into navigation * style: remove TODOs that are ok * feat: smart tag premium check with premium service * refactor: multi-select variables for debuggability * fix: clean deinit code * fix: prevent trigger tag changes event for the same uuid * fix: typings * fix: use minimal state * style: remove dead code * style: long variable names * refactor: move magic string to module * fix: use smart filter feature * refactor: add task id in todo
86 lines
1.2 KiB
SCSS
86 lines
1.2 KiB
SCSS
.focus-mode {
|
|
.mac-desktop #editor-column {
|
|
// To offset colored circles in Mac
|
|
padding-top: 35px;
|
|
}
|
|
|
|
.mac-desktop #editor-column:before {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 38px;
|
|
-webkit-app-region: drag;
|
|
}
|
|
|
|
#editor-title-bar {
|
|
display: none;
|
|
}
|
|
|
|
#editor-menu-bar {
|
|
display: none;
|
|
}
|
|
|
|
#editor-pane-component-stack {
|
|
display: none;
|
|
}
|
|
|
|
#footer-bar {
|
|
opacity: 0.08;
|
|
transition: opacity 0.25s;
|
|
}
|
|
|
|
#footer-bar:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
navigation,
|
|
notes-view {
|
|
will-change: opacity;
|
|
animation: fade-out 1.25s forwards;
|
|
transition: width 1.25s;
|
|
transition-delay: 0s;
|
|
width: 0px !important;
|
|
flex: none !important;
|
|
}
|
|
|
|
navigation:hover {
|
|
flex: initial;
|
|
width: 0px !important;
|
|
}
|
|
|
|
notes-view:hover {
|
|
flex: initial;
|
|
width: 0px !important;
|
|
}
|
|
}
|
|
|
|
.disable-focus-mode {
|
|
navigation,
|
|
notes-view {
|
|
transition: width 1.25s;
|
|
will-change: opacity;
|
|
animation: fade-in 1.25s forwards;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-out {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
border: none !important;
|
|
}
|
|
}
|