smaller children overview font

This commit is contained in:
zadam 2019-01-27 14:26:39 +01:00
parent 76fbff68ba
commit fb27088fcd
2 changed files with 3 additions and 4 deletions

View File

@ -270,7 +270,7 @@ async function showChildrenOverview() {
text: await treeUtils.getNoteTitle(childBranch.noteId, childBranch.parentNoteId)
}).attr('data-action', 'note').attr('data-note-path', notePath + '/' + childBranch.noteId);
const childEl = $('<div class="child-overview">').html(link);
const childEl = $('<div class="child-overview-item">').html(link);
$childrenOverview.append(childEl);
}

View File

@ -489,9 +489,8 @@ div.ui-tooltip {
overflow: auto;
}
.child-overview {
.child-overview-item {
font-weight: bold;
font-size: larger;
padding: 10px;
background: var(--accented-background-color);
width: 150px;
@ -506,7 +505,7 @@ div.ui-tooltip {
word-wrap: break-word;
}
.child-overview a {
.child-overview-item a {
color: var(--muted-text-color);
}