From ede4d77cfd882ea37ae2bd331d14a95af9129205 Mon Sep 17 00:00:00 2001 From: shpuld Date: Wed, 22 Feb 2017 23:08:14 +0200 Subject: [PATCH 1/3] Move profile picture to right side, make the names appear next to it, extend profile background pic further and fade it out with gradients, fix the crappy borders around the inline user card. --- src/App.scss | 36 ----- src/components/status/status.vue | 2 +- .../user_card_content/user_card_content.vue | 131 ++++++++++++++++-- src/components/user_profile/user_profile.vue | 43 +----- 4 files changed, 127 insertions(+), 85 deletions(-) diff --git a/src/App.scss b/src/App.scss index 431aeb32..b0888ac7 100644 --- a/src/App.scss +++ b/src/App.scss @@ -142,46 +142,10 @@ main-router { min-width: 0px; } -.user-info { - color: white; - padding: 1em; - img { - border: 2px solid; - border-radius: 0.5em - } - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); - .user-name{ - margin-top: 0.2em; - } - .user-screen-name { - margin-top: 0.3em; - font-weight: lighter; - padding-right: 0.1em; - } -} - -.user-counts { - display: flex; - line-height:16px; - padding: 1em 1.5em 0em 1em; - text-align: center; -} - -.user-count { - flex: 1; - - h5 { - font-size:1em; - font-weight: bolder; - margin: 0 0 0.25em; - } -} - .fa { color: grey; } - .status-actions { width: 50%; display: flex; diff --git a/src/components/status/status.vue b/src/components/status/status.vue index f111c2d5..a97e6b75 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -157,7 +157,7 @@ .usercard { border-style: solid; border-width: 1px; - border-radius: 1em; + border-radius: 0.5em; margin-bottom: 1em; } diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue index ee4384fa..befe8bf2 100644 --- a/src/components/user_card_content/user_card_content.vue +++ b/src/components/user_card_content/user_card_content.vue @@ -1,11 +1,13 @@