grey out icons in umb-tree when not published or allowed

This commit is contained in:
Niels Lyngsø
2019-02-13 09:27:24 +01:00
parent f016d04c1f
commit cc50a7a3ba

View File

@@ -219,15 +219,15 @@ body.touch .umb-tree {
// Tree item states
// -------------------------
.not-published {
> i.icon,
a {
> .umb-tree-item__inner > i.icon,
> .umb-tree-item__inner > a {
opacity: 0.6;
}
}
.not-allowed {
> i.icon,
a {
> .umb-tree-item__inner > i.icon,
> .umb-tree-item__inner > a {
cursor: not-allowed;
}
}