diff options
Diffstat (limited to 'viewer')
-rw-r--r-- | viewer/src/assets/scss/global.scss | 6 | ||||
-rw-r--r-- | viewer/src/locales/en.json | 6 | ||||
-rw-r--r-- | viewer/src/views/PanelLeft.vue | 8 |
3 files changed, 12 insertions, 8 deletions
diff --git a/viewer/src/assets/scss/global.scss b/viewer/src/assets/scss/global.scss index ed69841..811a899 100644 --- a/viewer/src/assets/scss/global.scss +++ b/viewer/src/assets/scss/global.scss | |||
@@ -27,6 +27,12 @@ | |||
27 | color: red; | 27 | color: red; |
28 | } | 28 | } |
29 | 29 | ||
30 | // === Titles | ||
31 | |||
32 | .title { | ||
33 | margin: 0.2em 0.5em !important; | ||
34 | } | ||
35 | |||
30 | // === Tools | 36 | // === Tools |
31 | 37 | ||
32 | .nowrap { | 38 | .nowrap { |
diff --git a/viewer/src/locales/en.json b/viewer/src/locales/en.json index dcdf5c5..91be4d7 100644 --- a/viewer/src/locales/en.json +++ b/viewer/src/locales/en.json | |||
@@ -1,8 +1,6 @@ | |||
1 | { | 1 | { |
2 | "tagInput.placeholder": "Tags", | 2 | "tagInput.placeholder": "Filters", |
3 | "panelLeft.filters": "Filters", | ||
4 | "tagInput.nomatch": "No match", | 3 | "tagInput.nomatch": "No match", |
5 | "panelLeft.mode": "Mode", | ||
6 | "mode.navigation": "Navigation", | 4 | "mode.navigation": "Navigation", |
7 | "mode.search": "Search", | 5 | "mode.search": "Search", |
8 | "search.no-results": "No results", | 6 | "search.no-results": "No results", |
@@ -16,4 +14,4 @@ | |||
16 | "command.home": "Go to gallery home", | 14 | "command.home": "Go to gallery home", |
17 | "command.back": "Go back", | 15 | "command.back": "Go back", |
18 | "command.parent": "Go to parent directory" | 16 | "command.parent": "Go to parent directory" |
19 | } | 17 | } \ No newline at end of file |
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue index ea35664..2c00bbf 100644 --- a/viewer/src/views/PanelLeft.vue +++ b/viewer/src/views/PanelLeft.vue | |||
@@ -19,11 +19,11 @@ | |||
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <div class="flex-column"> | 21 | <div class="flex-column"> |
22 | <h1>{{$t('panelLeft.mode')}}</h1> | ||
23 | <ld-mode-radio /> | ||
24 | <h1>{{$t('panelLeft.filters')}}</h1> | ||
25 | <ld-tag-input /> | 22 | <ld-tag-input /> |
26 | <h1>{{$t('panelLeft.propositions')}}</h1> | 23 | <!-- TODO: Remove when #21 is resolved --> |
24 | <ld-mode-radio /> | ||
25 | <!-- === --> | ||
26 | <h1 class="title">{{$t('panelLeft.propositions')}}</h1> | ||
27 | <ld-proposition class="scrollbar no-scroll-x" /> | 27 | <ld-proposition class="scrollbar no-scroll-x" /> |
28 | </div> | 28 | </div> |
29 | </template> | 29 | </template> |