visionforge/dataforge-vis-common/src/jsMain/resources/css/main.css

40 lines
712 B
CSS
Raw Normal View History

2019-10-13 12:38:24 +03:00
/* Remove default bullets */
ul, .tree {
2019-10-13 12:38:24 +03:00
list-style-type: none;
}
/* Style the caret/arrow */
.tree-caret {
2019-10-13 12:38:24 +03:00
cursor: pointer;
user-select: none; /* Prevent text selection */
}
/* Create the caret/arrow with a unicode, and style it */
.tree-caret::before {
2019-10-13 12:38:24 +03:00
content: "\25B6";
color: black;
display: inline-block;
margin-right: 6px;
}
.tree-leaf{
user-select: none;
display: inline-block;
2020-03-23 22:19:52 +03:00
}
.tree-leaf::before {
content: "\25C6";
color: black;
2020-03-23 22:19:52 +03:00
display: inline-block;
margin-right: 6px;
}
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.tree-caret-down::before {
2020-03-23 22:19:52 +03:00
transform: rotate(90deg);
}
.tree-label-inactive {
color: gray;
}