diff options
Diffstat (limited to 'viewer/src/views/MainLayout.vue')
-rw-r--r-- | viewer/src/views/MainLayout.vue | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue index 78d8a8a..31b0440 100644 --- a/viewer/src/views/MainLayout.vue +++ b/viewer/src/views/MainLayout.vue | |||
@@ -24,6 +24,10 @@ | |||
24 | <router-view v-if="!isLoading" class="layout layout-content scrollbar" /> | 24 | <router-view v-if="!isLoading" class="layout layout-content scrollbar" /> |
25 | <b-loading :active="isLoading" is-full-page /> | 25 | <b-loading :active="isLoading" is-full-page /> |
26 | <ld-key-press :keycode="27" @action="$uiStore.fullscreen=false" /> | 26 | <ld-key-press :keycode="27" @action="$uiStore.fullscreen=false" /> |
27 | |||
28 | <!-- TODO: Remove when #21 (remove explicit navigation/search modes) is resolved --> | ||
29 | <ld-mode-radio v-if="!isLoading" class="tmp-mode-selector" /> | ||
30 | <!-- ===== --> | ||
27 | </div> | 31 | </div> |
28 | </template> | 32 | </template> |
29 | 33 | ||
@@ -123,4 +127,15 @@ html { | |||
123 | background-color: $content-bgcolor; | 127 | background-color: $content-bgcolor; |
124 | } | 128 | } |
125 | } | 129 | } |
126 | </style> \ No newline at end of file | 130 | |
131 | // TODO: Remove when #21 (remove explicit navigation/search modes) is resolved | ||
132 | // Forced at the bottom right corner so we can continue working on the sidebar without interference | ||
133 | .tmp-mode-selector { | ||
134 | position: absolute; | ||
135 | bottom: 0; | ||
136 | right: 0; | ||
137 | z-index: 100; | ||
138 | opacity: 0.75; | ||
139 | } | ||
140 | // ===== | ||
141 | </style> | ||