Merge pull request #4551 from umbraco/temp8-ui-umb-tree-grey-out-icon-when-not-published-or-allowed

grey out icons in umb-tree when not published or allowed
This commit is contained in:
Warren Buckley
2019-02-14 11:54:01 +00:00
committed by GitHub

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;
}
}