aboutsummaryrefslogtreecommitdiff
path: root/viewer
diff options
context:
space:
mode:
authorZero~Informatique2020-02-10 15:20:13 +0100
committerZero~Informatique2020-02-10 15:20:13 +0100
commit675f007d85a69d89a9252d980562509f224d4b29 (patch)
tree119e6a42561346e007fe09e5bf90d95ba46ffc14 /viewer
parent6ee5926ceb928aa04df5d0b47390ff10376a6d01 (diff)
downloadldgallery-675f007d85a69d89a9252d980562509f224d4b29.tar.gz
viewer: re-applied changes which were eaten by the big Eldrich monster
Diffstat (limited to 'viewer')
-rw-r--r--viewer/src/assets/scss/global.scss6
-rw-r--r--viewer/src/locales/en.json6
-rw-r--r--viewer/src/views/PanelLeft.vue8
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>