[Glitch] Add follow button to detailed status, add gradient to mask bio cut-off (fixes #566)

Port 30e1da7668 to glitch-soc
This commit is contained in:
Thibaut Girka 2018-07-11 18:06:52 +02:00 committed by ThibG
parent 017628fd00
commit debc6544d9
3 changed files with 58 additions and 38 deletions

View file

@ -443,6 +443,20 @@
overflow: hidden;
text-overflow: ellipsis;
height: 5.5em;
position: relative;
&::after {
display: block;
content: "";
width: 100%;
height: 100px;
position: absolute;
bottom: 0;
background: linear-gradient(to bottom, rgba($simple-background-color, 0.01) 0%, rgba($simple-background-color, 1) 100%);
left: 0;
border-radius: 0 0 4px 4px;
pointer-events: none;
}
}
}
}

View file

@ -18,3 +18,9 @@
background: url('~images/elephant_ui_plane.svg') no-repeat left bottom / contain;
}
}
@media screen and (max-width: 600px) {
.account-header {
margin-top: 0;
}
}

View file

@ -312,6 +312,8 @@
.embed {
.activity-stream {
box-shadow: none;
}
}
.entry {
@ -360,5 +362,3 @@
}
}
}
}
}