Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob <jakobroehrl@users.noreply.github.com>2020-01-07 17:26:00 +0300
committerCorentin Mors <corentin.mors@dashlane.com>2020-01-07 17:26:00 +0300
commitaa3a5cbfd65724a41dfbe1d24889dcb20d8c7693 (patch)
treed96bae86eb5f3391bd673e5d5350601117a7d76e /src
parent373e9d8eadc25a2bd6d250dd8f47d7ffbe69e338 (diff)
Fix album title CSS with ellipsis (#53)
Signed-off-by: Jakob <jakob.roehrl@web.de>
Diffstat (limited to 'src')
-rw-r--r--src/components/Navigation.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/Navigation.vue b/src/components/Navigation.vue
index 85c8b004..50891f2e 100644
--- a/src/components/Navigation.vue
+++ b/src/components/Navigation.vue
@@ -152,8 +152,12 @@ export default {
position: absolute;
height: 44px;
align-items: center;
+ max-width: 100%;
&__title {
margin: 0;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
&__share {
margin-left: 10px;