2016-07-21 06:57:19 -05:00
|
|
|
/* Structure */
|
|
|
|
json-tree {
|
|
|
|
.json-tree-key {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
.expandable {
|
|
|
|
position: relative;
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
&::before {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2017-12-19 09:22:41 -06:00
|
|
|
&::before,
|
2021-10-20 04:34:24 -05:00
|
|
|
> .json-tree-key {
|
2016-07-21 06:57:19 -05:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
.json-tree-branch-preview {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Looks */
|
|
|
|
json-tree {
|
|
|
|
ul {
|
|
|
|
padding-left: $spacer;
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2017-12-19 09:22:41 -06:00
|
|
|
li,
|
|
|
|
ul {
|
2016-07-21 06:57:19 -05:00
|
|
|
list-style: none;
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
li {
|
2019-03-27 02:48:24 -05:00
|
|
|
line-height: 18px;
|
2016-07-21 06:57:19 -05:00
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
.json-tree-key {
|
|
|
|
color: $variable;
|
|
|
|
padding: 5px 10px 5px 15px;
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
&::after {
|
2018-12-25 13:18:38 -06:00
|
|
|
content: ':';
|
2016-07-21 06:57:19 -05:00
|
|
|
}
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
json-node.expandable {
|
|
|
|
&::before {
|
2018-12-25 13:18:38 -06:00
|
|
|
content: '\25b6';
|
2016-07-21 06:57:19 -05:00
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
2016-07-21 09:19:28 -05:00
|
|
|
font-size: 8px;
|
2017-12-19 09:22:41 -06:00
|
|
|
transition: transform 0.1s ease;
|
2016-07-21 06:57:19 -05:00
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
&.expanded::before {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2017-12-19 09:22:41 -06:00
|
|
|
.json-tree-leaf-value,
|
|
|
|
.json-tree-branch-preview {
|
2016-07-21 06:57:19 -05:00
|
|
|
word-break: break-all;
|
|
|
|
}
|
2018-12-25 13:18:38 -06:00
|
|
|
|
2016-07-21 06:57:19 -05:00
|
|
|
.json-tree-branch-preview {
|
|
|
|
overflow: hidden;
|
|
|
|
font-style: italic;
|
|
|
|
max-width: 40%;
|
|
|
|
height: 1.5em;
|
2017-12-19 09:22:41 -06:00
|
|
|
opacity: 0.7;
|
2016-07-21 06:57:19 -05:00
|
|
|
}
|
|
|
|
}
|