organic_ast_explorer/src/OrgAst.module.css

49 lines
721 B
CSS
Raw Normal View History

2024-01-24 02:27:12 +00:00
.OrgAst {
flex: 1;
2024-01-24 03:05:07 +00:00
background: #eeeeee;
padding: 5px;
overflow: scroll;
2024-01-24 02:27:12 +00:00
}
.OrgAstNode {
2024-01-24 03:05:07 +00:00
border: 1px solid #000000;
background: #ffffff;
2024-01-24 03:27:31 +00:00
box-shadow: 3px 3px 4px #000000;
> details {
2024-01-24 04:07:26 +00:00
border: 1px solid #000000;
margin: 5px 5px 5px 2px;
2024-01-24 03:27:31 +00:00
> summary {
cursor: pointer;
padding: 5px 2px;
}
}
2024-01-24 04:07:26 +00:00
> details[open] {
> summary {
border-width: 0 0 1px 0;
border-style: dotted;
border-color: #000000;
}
}
2024-01-24 02:27:12 +00:00
}
2024-01-27 19:04:44 +00:00
.OrgAstNode.selected {
> .OrgAstNodeType {
background: #9cfc97;
}
}
2024-01-24 02:27:12 +00:00
.OrgAstNodeType {
font-size: 1.3rem;
2024-01-24 04:07:26 +00:00
font-weight: 700;
background: #6ccff6;
padding: 3px;
}
.OrgAstChildren {
padding: 5px 5px 5px 20px;
background: #eeeeee;
2024-01-24 02:27:12 +00:00
}