Initial attempt to show tags on the apps if any

This commit is contained in:
Johannes Zellner
2019-04-11 18:41:26 +02:00
parent a9400785ca
commit f3baf31dcd
2 changed files with 26 additions and 0 deletions

View File

@@ -314,6 +314,28 @@ h1, h2, h3 {
}
}
.grid-item-tags {
display: block;
position: absolute;
top: 26px;
left: -15px;
.grid-item-tag {
margin: 5px 0;
padding: 0 5px;
background-color: $navbar-default-link-hover-color;
border-radius: 2px;
color: white;
max-width: 60px;
overflow: hidden;
transition: all 250ms;
&:hover {
max-width: 200px;
}
}
}
.grid-item:hover .grid-item-actions {
opacity: 1;
right: 10px;