Show different color arrow for folds without children

This commit is contained in:
Peter Stuifzand 2020-05-24 20:40:12 +02:00
parent f96bf8e8f8
commit f4f647acdd
3 changed files with 29 additions and 5 deletions

View File

@ -7538,9 +7538,9 @@
}
},
"wiki-list-editor": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/wiki-list-editor/-/wiki-list-editor-0.5.3.tgz",
"integrity": "sha512-4hzqnHb+RsX0SFPjLelsZN1TbU5KQVi+UQPrW2upJiyJ6T09yifajYAdWyf+q2R0bPSiwBQYoMp5w5JG3L7z6Q==",
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/wiki-list-editor/-/wiki-list-editor-0.5.5.tgz",
"integrity": "sha512-S3RLxVNTkrtrY4o830PtJGIRRKS4BcBVjCE8heLDoN7kHOeW9SSHtYzLdVvu/oAaBgD9hViPykudcrlvWUMfCQ==",
"requires": {
"dragula": "^3.7.2",
"jquery": "^3.5.1",

View File

@ -18,7 +18,7 @@
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"wiki-list-editor": "^0.5.3"
"wiki-list-editor": "^0.5.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",

View File

@ -38,9 +38,33 @@ body {
z-index: 50;
}
.hidden {
#autocomplete.hidden {
display: none;
}
#result-template.hidden {
display: none;
}
.fold {
align-self:flex-start;
font-size: 11px;
margin-top: 4px;
}
.fold.no-children {
color: #cccccc;
}
.fold.open {
transform: rotate(90deg);
}
.list-item.hidden {
border: 0;
padding: 0;
margin: 0;
height: 0;
overflow: hidden;
}
.marker {
display: inline-block;