aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_card_content/user_card_content.vue
diff options
context:
space:
mode:
authorlambadalambda <gitgud@rogerbraun.net>2017-02-25 06:32:19 -0500
committerlambadalambda <gitgud@rogerbraun.net>2017-02-25 06:32:19 -0500
commite2ba7d9037a5f9e8cfba76f5e927b2ec4c8fbdda (patch)
tree74d35f34067961a2e21a5b41a03f1af3aa2edd86 /src/components/user_card_content/user_card_content.vue
parent2b2061b03f7e23913cf127e1b7e48e0b99f2aedd (diff)
parent614cbb556aeaa5c2ae845de942f8c8b99120df0c (diff)
Merge branch 'fix/various-style-fixes-all-over-the-place' into 'develop'
Fix/various style fixes all over the place See merge request !32
Diffstat (limited to 'src/components/user_card_content/user_card_content.vue')
-rw-r--r--src/components/user_card_content/user_card_content.vue21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue
index 10064d5f..b786ab8d 100644
--- a/src/components/user_card_content/user_card_content.vue
+++ b/src/components/user_card_content/user_card_content.vue
@@ -15,22 +15,22 @@
<div class="follow" v-if="loggedIn">
<span v-if="user.following">
<!--Following them!-->
- <button @click="unfollowUser" class="base06 base01-background">
- Unfollow
+ <button @click="unfollowUser" class="base04 base00-background pressed">
+ Following!
</button>
</span>
<span v-if="!user.following">
- <button @click="followUser" class="base01 base04-background">
+ <button @click="followUser" class="base05 base02-background">
Follow
</button>
</span>
</div>
<div class='mute' v-if='isOtherUser'>
<span v-if='user.muted'>
- <button @click="toggleMute" class="base04 base01-background base06-border">Unmute</button>
+ <button @click="toggleMute" class="base04 base00-background pressed">Muted</button>
</span>
<span v-if='!user.muted'>
- <button @click="toggleMute" class="base01 base04-background base01-border">Mute</button>
+ <button @click="toggleMute" class="base05 base02-background">Mute</button>
</span>
</div>
</div>
@@ -102,7 +102,7 @@
.profile-panel-background {
background-color: #121517;
background-size: cover;
- border-radius: 0.5em 0.5em 0 0;
+ border-radius: 10px;
}
.profile-panel-body {
@@ -127,7 +127,7 @@
img {
border: 2px solid;
- border-radius: 0.5em;
+ border-radius: 5px;
flex: 1 0 100%;
max-width: 48px;
max-height: 48px;
@@ -183,9 +183,14 @@
}
button {
+ border: solid;
+ border-width: 1px;
width: 92%;
height: 100%;
- border: 1px solid;
+ }
+ .pressed {
+ border: solid;
+ border-width: 1px;
}
}
}