Darken user card bg to make text more readable

Will also be handy when there’s an extension that implements cover
photos
This commit is contained in:
Toby Zerner 2015-03-12 12:22:07 +10:30
parent f3fab617da
commit 720fbd6ac6
2 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,17 @@
.user-card {
.drawer-components();
&, & .container {
position: relative;
}
}
.darken-overlay {
background: rgba(0, 0, 0, 0.1);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.user-hero {
& .contextual-controls {

View File

@ -1,3 +1,4 @@
<div class="darken-overlay"></div>
<div class="container">
{{#if controls}}
{{ui/dropdown-button items=controls class="contextual-controls" menuClass="pull-right" buttonClass=controlsButtonClass}}