Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ kbd {
}

.dimmed {
opacity: 0.8;
opacity: 0.6;
}

/*
Expand Down
1 change: 1 addition & 0 deletions frontend/css/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
/* Interface fonts */
@import url("@fontsource/fira-mono/400.css");
@import url("@fontsource/fira-mono/500.css");
@import url("@fontsource/fira-mono/700.css");
@import url("@fontsource/fira-sans/400.css");
@import url("@fontsource/fira-sans/500.css");
1 change: 1 addition & 0 deletions frontend/css/journal-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

.num {
font-family: var(--font-family-monospaced);
font-weight: 700;
text-align: right;
}

Expand Down
8 changes: 8 additions & 0 deletions frontend/src/tree-table/AccountCell.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
button {
position: absolute;
padding: 0 3px;
font-size: 17px;
color: var(--treetable-expander);
}

Expand All @@ -61,14 +62,21 @@
/* Indent each level of account by one more 1em. */
:global(ol ol) span {
--account-indent: 1em;

font-weight: 700;
}

:global(ol ol ol) span {
--account-indent: 2em;

font-weight: 700;
opacity: 0.7; /* Will be inherited to levels below */
}

:global(ol ol ol ol) span {
--account-indent: 3em;

font-weight: 500; /* Will be inherited to levels below */
}

:global(ol ol ol ol ol) span {
Expand Down