Unhide completions, strengthen shadows a bit, force the 0.1 shade to always span the full height, make usercard use correct borders.

This commit is contained in:
shpuld 2017-11-20 13:03:02 +02:00
parent 092848b32b
commit 95cbd19254
4 changed files with 12 additions and 19 deletions

View file

@ -1,9 +1,9 @@
<template>
<div class="card base00-background base03-border">
<div class="card base00-background">
<a href="#">
<img @click.prevent="toggleUserExpanded" class="avatar" :src="user.profile_image_url">
</a>
<div class="base05 base05=border usercard" v-if="userExpanded">
<div class="usercard" v-if="userExpanded">
<user-card-content :user="user" :switcher="false"></user-card-content>
</div>
<div class="name-and-screen-name" v-else>
@ -62,6 +62,10 @@
width: -webkit-fill-available;
width: -moz-webkit-fill-available;
stretch: fill;
margin-left: 0.7em;
margin: 0.2em 0 0.7em 0;
border-radius: 5px;
border-style: solid;
border-color: inherit;
border-width: 1px;
}
</style>