Fix opacity of relationship tags (#10411)

This commit is contained in:
ThibG 2019-03-28 18:33:26 +01:00 committed by Eugen Rochko
parent 1a7d1f4a42
commit 58667072d9
1 changed files with 6 additions and 2 deletions

View File

@ -3064,15 +3064,19 @@ a.status-card.compact:hover {
.relationship-tag {
color: $primary-text-color;
margin-bottom: 4px;
opacity: 0.7;
display: block;
vertical-align: top;
background-color: rgba($base-overlay-background, 0.4);
background-color: $base-overlay-background;
text-transform: uppercase;
font-size: 11px;
font-weight: 500;
padding: 4px;
border-radius: 4px;
opacity: 0.7;
&:hover {
opacity: 1;
}
}
.setting-toggle {