adding some standard classes for tree items

This commit is contained in:
zadam 2019-11-28 22:05:27 +01:00
parent 1c057cac75
commit 2953f1bdb8
2 changed files with 7 additions and 0 deletions

View File

@ -113,6 +113,7 @@ class Attribute extends Entity {
// cannot be static!
updatePojo(pojo) {
delete pojo.isOwned;
delete pojo.__note;
}
}

View File

@ -75,6 +75,12 @@ ul.fancytree-container {
content: "\e9f8";
}
/** some common text styling for cssClass label */
span.fancytree-node.underline .fancytree-title { text-decoration: underline; }
span.fancytree-node.dotted .fancytree-title { text-decoration: dotted; }
span.fancytree-node.bold .fancytree-title { font-weight: bold; }
span.fancytree-node.muted { opacity: 0.6; }
.note-title[readonly] {
background: inherit;
}