General design enhancements and scroll area changes

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-01-25 08:42:30 +01:00
parent b42ce6219c
commit 3adadc23d0
21 changed files with 225 additions and 2351 deletions

View File

@@ -64,6 +64,9 @@ export default {
},
computed: {
firstUsers() {
if (!this.users || this.users.length === 0) {
return []
}
return this.users.slice(0, 3)
},
avatarUrl() {
@@ -79,6 +82,9 @@ export default {
}
},
popover() {
if (!this.users || this.users.length < 0) {
return []
}
return [
...this.users.slice(3).map((session) => {
return {

View File

@@ -230,7 +230,7 @@ export default {
.fade-enter-active, .fade-leave-active {
transition: opacity .125s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
.fade-enter, .fade-leave-to {
opacity: 0;
}