commit: a51167fa72a64505080c9aea47b5d3bc97a529b0
parent: 499c6b85d468736cbdbbabfc7dcad790a9ebeae3
Author: Shpuld Shpludson <shp@cock.li>
Date: Wed, 9 Jan 2019 20:57:00 +0000
Merge branch 'fix-265-fix-user-profiles-again' into 'develop'
fixes #265 and also that thin line below gradient on chrome (UGH)
Closes #265
See merge request pleroma/pleroma-fe!456
Diffstat:
1 file changed, 8 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
@@ -142,7 +142,7 @@
border-bottom-right-radius: 0;
.panel-heading {
- padding: .6em 0;
+ padding: .5em 0;
text-align: center;
box-shadow: none;
}
@@ -226,10 +226,11 @@
}
}
- .user-name{
+ .user-name {
text-overflow: ellipsis;
overflow: hidden;
- flex: 1 0 auto;
+ flex: 1 1 auto;
+ margin-right: 1em;
}
.user-screen-name {
@@ -245,6 +246,10 @@
.dailyAvg {
min-width: 1px;
flex: 0 0 auto;
+ margin-left: 1em;
+ font-size: 0.7em;
+ color: $fallback--text;
+ color: var(--text, $fallback--text);
}
.handle {
@@ -381,11 +386,6 @@
}
}
-.dailyAvg {
- margin-left: 1em;
- font-size: 0.7em;
- color: #CCC;
-}
.floater {
}
</style>