From acf59b218b598f38d8a9dcc125ad83bdb065d98e Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Mon, 29 Oct 2018 13:30:31 +0100 Subject: [PATCH] Add popover to room entry --- client/src/components/rooms/RoomEntry.vue | 74 +++++++++++++++++++---- 1 file changed, 61 insertions(+), 13 deletions(-) diff --git a/client/src/components/rooms/RoomEntry.vue b/client/src/components/rooms/RoomEntry.vue index ef006002..c5621b48 100644 --- a/client/src/components/rooms/RoomEntry.vue +++ b/client/src/components/rooms/RoomEntry.vue @@ -1,26 +1,49 @@ @@ -66,6 +94,7 @@ break-inside: avoid; /* IE 10+ */ margin-bottom: 25px; cursor: pointer; + position: relative; &__image { max-width: 100%; @@ -85,5 +114,24 @@ margin-bottom: 10px; } + &__ellipses { + width: 30px; + fill: $color-darkgrey-1; + } + + &__more { + position: absolute; + top: 5px; + right: 10px; + display: flex; + justify-content: flex-end; + } + + &__more-link { + } + + &__popover { + width: 180px; + } }