Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-06 Thread Chris Green
On Thu, May 05, 2022 at 07:22:47PM +0100, Chris Green wrote: > On Thu, May 05, 2022 at 01:13:06PM -0500, Adrien Monteleone wrote: > > I just played around with it on the Transaction Report and came up with > > this: > > > > td:first-child { > > font-weight: bold; > > font-size: large; > > } >

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Chris Green
On Thu, May 05, 2022 at 01:13:06PM -0500, Adrien Monteleone wrote: > I just played around with it on the Transaction Report and came up with > this: > > td:first-child { > font-weight: bold; > font-size: large; > } > > The Account Name doesn't have a class or id to target, but it just so >

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Chris Green
On Thu, May 05, 2022 at 12:59:55PM -0500, Adrien Monteleone wrote: > > On 5/5/22 3:12 AM, Chris Green wrote: > > Is there any guarantee that the CSS Stylesheet wll allow me to access > > every selector I can see in the HTML output? I guess I can simply > > take a look and try it out. > > > The

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Adrien Monteleone
I just played around with it on the Transaction Report and came up with this: td:first-child { font-weight: bold; font-size: large; } The Account Name doesn't have a class or id to target, but it just so happens to be always the first td child of a new tr element in the entire report.

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Adrien Monteleone
The old built-in 'stylesheets' probably do not. But there is a CSS-based (experimental) sheet that is just open text. You spec any id or class or element you want with your chosen rules. Mind you, GnuCash uses Webkit for rendering, so you need to check caniuse.com if you are unsure about a

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Manfred Usselmann
Am 2022-05-04 12:40, schrieb Chris Green: The Transaction Report probably provides the information that my auditor wants by listing each account's transactions in order and giving the total amount below each account. However the formatting and font sizes seem a little odd and I'd like to change

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Glenn Fowler
There is also Edit > Preferences > Reports > Default zoom level In my case, increasing that made the reports readable and fit my screen better. On Thu, May 5, 2022 at 2:33 AM Adrien Monteleone < adrien.montele...@lusfiber.net> wrote: > Export the report. The format is HTML, then you can examine

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Chris Green
On Thu, May 05, 2022 at 01:33:51AM -0500, Adrien Monteleone wrote: > On 5/4/22 5:40 AM, Chris Green wrote: > > The Transaction Report probably provides the information that my > > auditor wants by listing each account's transactions in order and > > giving the total amount below each account. > >

Re: [GNC] Change layout and font sizes in Transaction Report - how?

2022-05-05 Thread Adrien Monteleone
Export the report. The format is HTML, then you can examine it with a text editor and/or open it in a browser and use its inspector. Alternatively, just open it in a spreadsheet app and manipulate it from there. Regards, Adrien On 5/4/22 5:40 AM, Chris Green wrote: The Transaction Report

[GNC] Change layout and font sizes in Transaction Report - how?

2022-05-04 Thread Chris Green
The Transaction Report probably provides the information that my auditor wants by listing each account's transactions in order and giving the total amount below each account. However the formatting and font sizes seem a little odd and I'd like to change them if I can. I have two fairly simple