From 71bd0961af9d4b34a393f43247fbd5897fd12d35 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Fri, 27 Apr 2018 21:50:25 +0200 Subject: [PATCH] Fixed #184: small UI glitches/bugs in federation tabs --- changes/changelog.d/184.bugfix | 1 + front/src/App.vue | 6 ++++++ front/src/components/federation/LibraryCard.vue | 8 ++++++-- front/src/components/federation/LibraryForm.vue | 2 +- front/src/components/federation/LibraryTrackTable.vue | 2 +- front/src/views/federation/LibraryDetail.vue | 7 ++++++- front/src/views/federation/LibraryList.vue | 3 ++- 7 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 changes/changelog.d/184.bugfix diff --git a/changes/changelog.d/184.bugfix b/changes/changelog.d/184.bugfix new file mode 100644 index 000000000..354b691db --- /dev/null +++ b/changes/changelog.d/184.bugfix @@ -0,0 +1 @@ +Fixed small UI glitches/bugs in federation tabs (#184) diff --git a/front/src/App.vue b/front/src/App.vue index e8cac7476..a21337428 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -97,6 +97,12 @@ html, body { } } +.ellipsis { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + .ui.small.text.container { max-width: 500px !important; } diff --git a/front/src/components/federation/LibraryCard.vue b/front/src/components/federation/LibraryCard.vue index 757561fb3..a16c80f7e 100644 --- a/front/src/components/federation/LibraryCard.vue +++ b/front/src/components/federation/LibraryCard.vue @@ -1,8 +1,12 @@