Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
I managed to get the inspector running on MacOS. Wow, this is way different 
than 3.18.

So, try this:

#account_tree button
#account_tree header button

also

#account_tree label
#account_tree header label

Note, I discovered that font/letter rules don’t work on the buttons, only on 
the labels. (but you *can* set the foreground color with ‘color:’ on the 
buttons however)

I haven’t figured it all out yet, but it seems all of the buttons (and labels) 
are children of ‘#account_tree header'. So the descendent style works either 
way. (with or without specifying ‘header’) And there are no other pertinent 
button or label descendants to get messy. (at least not for now)

#account_tree

simply styles the rest of the page, but I’ve found that the letter-spacing rule 
doesn’t work there. (it does work on the header labels)

Though these do (in addition to the background-color and color):

font-family
font-size
font-weight

Note, there is also this:

.GncAccountPage

which styles the area of the sheet above the header around (and behind) the 
totals button bar.

Note, you could subsitute .GncTreeView for #account_tree as that class is also 
assigned to this widget, but it might also be assigned to other widgets used on 
other tabs. So if you want to stay safe, stick with the ID #account_tree.

Regards,
Adrien

> On Jul 31, 2018, at 11:44 PM, GT-I9070 H  wrote:
> 
> Em ter, 31 de jul de 2018 às 23:01, John Ralls  escreveu:
> It’s missing the colon (‘:’) between account_tree and column-header. That 
> could be a typo in the email rather than in gtk.css, of course.
> 
> Regards,
> John Ralls
> 
> Thanks John,
> 
> It was not a typo in the email, I copied and pasted.
> 
> I tested
> 
> #account_tree:column-header {
>   color: lime;
> }
> 
> and it did not work on Windows.
> 
> PS: For some reason your email dropped into my span folder.
> 
> Regards
> GTI
> 
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Get Quote is Not Working?

2018-07-31 Thread Ethan Swint
I'm also having trouble the last 36 hours or so, but the API is working, if
you put something like this in your web browser:

https://www.alphavantage.co/query?function=BATCH_STOCK_QUOTES&symbols=T&apikey=*yourAPIkeyhere*

It seems that Alphavantage has bumped their freebie access rate limit to
one every 12 seconds according to https://www.alphavantage.co/premium/

Finance::Quote's Alphavantage.pm has the following in lines 276-280:

# Alpha Vantage recommends that API call frequency does not extend
far
# beyond ~1 call per second so that they can continue to deliver
# optimal server-side performance:
#   https://www.alphavantage.co/support/#api-key
sleep(1);

I'll try bumping that up to 12 and see what I get. When I tried to put some
print statements in the Perl scripts to follow along, I just got an error
message from GC.

Regards,
Ethan

-- Forwarded message --
From: 
Date: Tue, Jul 31, 2018 at 8:20 PM
Subject: gnucash-user Digest, Vol 184, Issue 81
To: gnucash-user@gnucash.org


Send gnucash-user mailing list submissions to
gnucash-user@gnucash.org

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.gnucash.org/mailman/listinfo/gnucash-user
or, via email, send a message with subject or body 'help' to
gnucash-user-requ...@gnucash.org

You can reach the person managing the list at
gnucash-user-ow...@gnucash.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of gnucash-user digest..."


Today's Topics:

   1. Re:  Change text color (Adrien Monteleone)
   2. Re:  Get Quote is Not Working? (Chen Thomas)
   3. Re:  Linux Mint 18.2 Sonya and Gnucash 3.2 (David Cousens)
   4. Re:  Change text color (John Ralls)
   5. Re:  Get Quote is Not Working? (Adrien Monteleone)
   6. Re:  Change text color (Adrien Monteleone)


--

Message: 1
Date: Tue, 31 Jul 2018 19:53:09 -0500
From: Adrien Monteleone 
To: gnucash-user 
Subject: Re: [GNC] Change text color
Message-ID: <6909b18e-f043-4166-ac35-a7ae8b5b1...@lusfiber.net>
Content-Type: text/plain;   charset=utf-8

Ah yes, I tested that too. I thought you meant the arrow pointer itself.

Regards,
Adrien

> On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
>
> Excuse me, this works fine:
>
> #account_tree:selected {
>   color: white;
>   background-color: steelblue;
> }
>
> Regards
> GTI
>
> Em ter, 31 de jul de 2018 ?s 16:25, GT-I9070 H 
escreveu:
> It would be interesting also to stylize the account sheet cursor.
>
> Regards
> GTI
>
> Em ter, 31 de jul de 2018 ?s 16:02, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:
> Hmm...
>
> It was working using the GtkInspector, and with the css file Linux. But
when I try similar selectors via css on MacOS (which I normally use) they
don?t work at all. (just the header stuff that is) I?ll have to investigate
more.
>
> Regards,
> Adrien
>
> > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> >
> > Hi Adrien,
> >
> > This does not work:
> >
> > #account_tree column-header {
> >   color: lime;
> > }
> >
> > Am I writing something wrong?
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 ?s 14:38, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:
> > GTI,
> >
> > You could test the font-family rule by changing it to something
obviously different, like serif, monospaced, or say ?Comic Sans?. (I
suppose it?s useful at least for this) I just revamped my css from the old
gtkrc method from 2.6.x and it picked up the font rules just fine.
> >
> > I found the header selectors.
> >
> > So here is the hierarchy:
> >
> > GncTreeViewAccount (id=?account_tree?) > column-header > GtkButton
(class=?button?) > GtkBox > GtkAlignment > GtkLabel (class=?label?)
> >
> > GncTreeViewAccount affect the entire tab contents.
> > column-header affects the entire header.
> > GtkButton affects each section of the header.
> > GtkBox affects only the portion of the header cell that contains text
and white space. (Does not include separators or margins)
> > GtkAlignment affects only the portion of GtkBox that contains actual
text characters. (GtkBox minus padding)
> > GtkLabel is the text itself.
> >
> > Thus if you want to style the entire header bar you could use:
> >
> > #account_tree column-header
> >
> > #account_tree column-header GtkButton/button will target only the first
header. (you can use the :x-child pseudo selectors for the others)
> >
> > #account_tree column-header .button targets all header buttons seems to
have the same effect as if you hadn?t specified the class as in the first
instance.
> >
> > #account_tree column-header GtkLabel/label targets only the first
header label. (same as button)
> >
> > #account_tree column-header .label targets all header labels.
> >
> >
> > Note, ?column-header? for some reason doesn?t appear to be specifically
necessary at least in gtk-3.18, but it?s probably a go

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em qua, 1 de ago de 2018 às 00:45, John Ralls  escreveu:

> That’s gtk+-3.22.30.
>
> Regards,
> John Ralls
>

 Good, I feel happier with gtk + -3.22.30! :)

Regards
GTI
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em qua, 1 de ago de 2018 às 00:43, John Ralls  escreveu:

> If you’re using GnuCash.app, it’s gtk+-3.22.29.
>
> Regards,
> John Ralls
>

Thank you John, I did not know where to get this information.

Regards
GTI
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread John Ralls
That’s gtk+-3.22.30.

Regards,
John Ralls

> On Jul 31, 2018, at 9:33 PM, GT-I9070 H  wrote:
> 
> My GTK version is the version that comes with GnuCash 3.2.
> 
> Regards
> GTI
> 
> Em qua, 1 de ago de 2018 às 00:22, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> 
>> I give up for the evening. I think I need to find out what my gtk version
>> is on Mac and check both it and my Linux version against the Gnome spec. If
>> you find out what version you have on Windows, that might shed some light
>> on what will work and what won’t.
>> 
>> Regards,
>> Adrien
>> 
>>> On Jul 31, 2018, at 11:15 PM, GT-I9070 H  wrote:
>>> 
>>> Em qua, 1 de ago de 2018 às 00:00, Adrien Monteleone <
>> adrien.montele...@lusfiber.net> escreveu:
>>> #account_tree > GtkButton
>>> #account_tree column_header > GtkButton
>>> 
>>> none of this worked for me.
>>> 
>>> Regards
>>> GTI
>> 
>> 
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Sweet, thanks! I was just on my mission to hunt for it. Saved me the trouble.

Regards,
Adrien

> On Jul 31, 2018, at 11:41 PM, John Ralls  wrote:
> 
> If you’re using GnuCash.app, it’s gtk+-3.22.29.
> 
> Regards,
> John Ralls
> 
>> On Jul 31, 2018, at 9:18 PM, Adrien Monteleone 
>>  wrote:
>> 
>> I give up for the evening. I think I need to find out what my gtk version is 
>> on Mac and check both it and my Linux version against the Gnome spec. If you 
>> find out what version you have on Windows, that might shed some light on 
>> what will work and what won’t.
>> 
>> Regards,
>> Adrien
>> 
>>> On Jul 31, 2018, at 11:15 PM, GT-I9070 H  wrote:
>>> 
>>> Em qua, 1 de ago de 2018 às 00:00, Adrien Monteleone 
>>>  escreveu:
>>> #account_tree > GtkButton
>>> #account_tree column_header > GtkButton
>>> 
>>> none of this worked for me.
>>> 
>>> Regards
>>> GTI
>> 
>> 
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> 
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em ter, 31 de jul de 2018 às 23:01, John Ralls 
escreveu:

> It’s missing the colon (‘:’) between account_tree and column-header. That
> could be a typo in the email rather than in gtk.css, of course.
>
> Regards,
> John Ralls
>

Thanks John,

It was not a typo in the email, I copied and pasted.

I tested

#account_tree:column-header {
  color: lime;
}

and it did not work on Windows.

PS: For some reason your email dropped into my span folder.

Regards
GTI
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread John Ralls
If you’re using GnuCash.app, it’s gtk+-3.22.29.

Regards,
John Ralls

> On Jul 31, 2018, at 9:18 PM, Adrien Monteleone 
>  wrote:
> 
> I give up for the evening. I think I need to find out what my gtk version is 
> on Mac and check both it and my Linux version against the Gnome spec. If you 
> find out what version you have on Windows, that might shed some light on what 
> will work and what won’t.
> 
> Regards,
> Adrien
> 
>> On Jul 31, 2018, at 11:15 PM, GT-I9070 H  wrote:
>> 
>> Em qua, 1 de ago de 2018 às 00:00, Adrien Monteleone 
>>  escreveu:
>> #account_tree > GtkButton
>> #account_tree column_header > GtkButton
>> 
>> none of this worked for me.
>> 
>> Regards
>> GTI
> 
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
My GTK version is the version that comes with GnuCash 3.2.

Regards
GTI

Em qua, 1 de ago de 2018 às 00:22, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> I give up for the evening. I think I need to find out what my gtk version
> is on Mac and check both it and my Linux version against the Gnome spec. If
> you find out what version you have on Windows, that might shed some light
> on what will work and what won’t.
>
> Regards,
> Adrien
>
> > On Jul 31, 2018, at 11:15 PM, GT-I9070 H  wrote:
> >
> > Em qua, 1 de ago de 2018 às 00:00, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > #account_tree > GtkButton
> > #account_tree column_header > GtkButton
> >
> >  none of this worked for me.
> >
> > Regards
> > GTI
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em qua, 1 de ago de 2018 às 00:15, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> GtkButton
> > GtkButton
> .button
>

no luck.

Regards
GTI
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
I give up for the evening. I think I need to find out what my gtk version is on 
Mac and check both it and my Linux version against the Gnome spec. If you find 
out what version you have on Windows, that might shed some light on what will 
work and what won’t.

Regards,
Adrien

> On Jul 31, 2018, at 11:15 PM, GT-I9070 H  wrote:
> 
> Em qua, 1 de ago de 2018 às 00:00, Adrien Monteleone 
>  escreveu:
> #account_tree > GtkButton
> #account_tree column_header > GtkButton
> 
>  none of this worked for me.
> 
> Regards
> GTI


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em qua, 1 de ago de 2018 às 00:00, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> #account_tree > GtkButton
> #account_tree column_header > GtkButton
>

 none of this worked for me.

Regards
GTI
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Unless you need the lettering spacing rule for the entire sheet, I’d just put 
it in your header rules.

If you do need it for the sheet, then putting a different one in the header 
rule will override the first one just for the header due to specificity.

Yeah, it looks like using ‘:’ isn’t correct in any scenario.

I also think you need spacing around the ‘>’ but I could be mistaken. Anyway, 
as I noted in that last reply, you need to have one of the following after 
‘column-header’...

GtkButton
> GtkButton
.button

also, if you’re setting font properties instead of just background or box 
padding, you can opt to target the label itself via...

GtkLabel
.label

‘> GtkLabel’ should also work, but you’d need the intervening ‘> GtkBox > 
GtkAlignment’ nodes as well as it isn’t a child of either #account_tree or 
column-header.

While it takes more rules, it’s probably better to target GtkButton for 
box/background styles and GtkLabel for font styles. Of course in any case, 
comments are always useful months (years) from now.

Regards,
Adrien

> On Jul 31, 2018, at 11:02 PM, GT-I9070 H  wrote:
> 
> Em ter, 31 de jul de 2018 às 23:43, Adrien Monteleone 
>  escreveu:
> Hmm. ‘:column-header’ doesn’t work at all for me in either Mac or Linux. 
> (well, nothing about the header is working in Mac for me at the moment, might 
> be a Gtk version thing)
> 
> Remember
> 
> #account_tree {
>   letter-spacing: 5px;
> }
> 
> affects the header for me.
>  
> On Linux, with gtk-3.18, the following works for the entire column-header row:
> 
> #account_tree > GtkButton
> #account_tree GtkButton
> #account_tree .button
> #account_tree column-header GtkButton
> #account_tree column-header > GtkButton
> #account_tree column-header .button
> 
> Neither ‘#account_tree column-header’ by itself, nor placing the direct child 
> selector ‘>’ or the pseudo selector ‘:’ between #account_tree and column 
> header works in any combination by themselves, or with GktButton/.button. 
> That tells me column-header is a child of #account_tree, just not the first 
> one. (can’t seem to find what that is though) It’s also not a pseudo selector 
> because it fails to render.
> 
> Regards,
> Adrien
> 
> #account_tree:column-header {
>   color: lime;
> }
> 
> and
> 
> #account_tree>column-header {
>   color: lime;
> }
> 
> they also do not work.
> 
> Regards
> GTI
> 
> 
> 
> 
> > On Jul 31, 2018, at 10:32 PM, GT-I9070 H  wrote:
> > 
> > I figured you thought that! :)
> > 
> > Em ter, 31 de jul de 2018 às 20:53, Adrien Monteleone 
> >  escreveu:
> > Ah yes, I tested that too. I thought you meant the arrow pointer itself.
> > 
> > Regards,
> > Adrien
> > 
> > > On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
> > > 
> > > Excuse me, this works fine:
> > > 
> > > #account_tree:selected {
> > >   color: white;
> > >   background-color: steelblue;
> > > }
> > > 
> > > Regards
> > > GTI
> > > 
> > > Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H  
> > > escreveu:
> > > It would be interesting also to stylize the account sheet cursor.
> > > 
> > > Regards
> > > GTI
> > > 
> > > Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone 
> > >  escreveu:
> > > Hmm...
> > > 
> > > It was working using the GtkInspector, and with the css file Linux. But 
> > > when I try similar selectors via css on MacOS (which I normally use) they 
> > > don’t work at all. (just the header stuff that is) I’ll have to 
> > > investigate more.
> > > 
> > > Regards,
> > > Adrien
> > > 
> > > > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> > > > 
> > > > Hi Adrien,
> > > > 
> > > > This does not work:
> > > > 
> > > > #account_tree column-header {
> > > >   color: lime;
> > > > }
> > > > 
> > > > Am I writing something wrong?
> > > > 
> > > > Regards
> > > > GTI
> > > > 
> > > > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone 
> > > >  escreveu:
> > > > GTI,
> > > > 
> > > > You could test the font-family rule by changing it to something 
> > > > obviously different, like serif, monospaced, or say ‘Comic Sans’. (I 
> > > > suppose it’s useful at least for this) I just revamped my css from the 
> > > > old gtkrc method from 2.6.x and it picked up the font rules just fine.
> > > > 
> > > > I found the header selectors.
> > > > 
> > > > So here is the hierarchy:
> > > > 
> > > > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
> > > > (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> > > > 
> > > > GncTreeViewAccount affect the entire tab contents.
> > > > column-header affects the entire header.
> > > > GtkButton affects each section of the header.
> > > > GtkBox affects only the portion of the header cell that contains text 
> > > > and white space. (Does not include separators or margins)
> > > > GtkAlignment affects only the portion of GtkBox that contains actual 
> > > > text characters. (GtkBox minus padding)
> > > > GtkLabel is the text itself.
> > > > 
> > > > Thus if you want to style the entire header bar you could use:
> >

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em ter, 31 de jul de 2018 às 23:43, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> Hmm. ‘:column-header’ doesn’t work at all for me in either Mac or Linux.
> (well, nothing about the header is working in Mac for me at the moment,
> might be a Gtk version thing)
>

Remember

#account_tree {
  letter-spacing: 5px;
}

affects the header for me.


> On Linux, with gtk-3.18, the following works for the entire column-header
> row:
>
> #account_tree > GtkButton
> #account_tree GtkButton
> #account_tree .button
> #account_tree column-header GtkButton
> #account_tree column-header > GtkButton
> #account_tree column-header .button
>
> Neither ‘#account_tree column-header’ by itself, nor placing the direct
> child selector ‘>’ or the pseudo selector ‘:’ between #account_tree and
> column header works in any combination by themselves, or with
> GktButton/.button. That tells me column-header is a child of #account_tree,
> just not the first one. (can’t seem to find what that is though) It’s also
> not a pseudo selector because it fails to render.
>
> Regards,
> Adrien
>

#account_tree:column-header {
  color: lime;
}

and

#account_tree>column-header {
  color: lime;
}

they also do not work.

Regards
GTI



>
> > On Jul 31, 2018, at 10:32 PM, GT-I9070 H  wrote:
> >
> > I figured you thought that! :)
> >
> > Em ter, 31 de jul de 2018 às 20:53, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > Ah yes, I tested that too. I thought you meant the arrow pointer itself.
> >
> > Regards,
> > Adrien
> >
> > > On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
> > >
> > > Excuse me, this works fine:
> > >
> > > #account_tree:selected {
> > >   color: white;
> > >   background-color: steelblue;
> > > }
> > >
> > > Regards
> > > GTI
> > >
> > > Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H 
> escreveu:
> > > It would be interesting also to stylize the account sheet cursor.
> > >
> > > Regards
> > > GTI
> > >
> > > Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > > Hmm...
> > >
> > > It was working using the GtkInspector, and with the css file Linux.
> But when I try similar selectors via css on MacOS (which I normally use)
> they don’t work at all. (just the header stuff that is) I’ll have to
> investigate more.
> > >
> > > Regards,
> > > Adrien
> > >
> > > > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> > > >
> > > > Hi Adrien,
> > > >
> > > > This does not work:
> > > >
> > > > #account_tree column-header {
> > > >   color: lime;
> > > > }
> > > >
> > > > Am I writing something wrong?
> > > >
> > > > Regards
> > > > GTI
> > > >
> > > > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > > > GTI,
> > > >
> > > > You could test the font-family rule by changing it to something
> obviously different, like serif, monospaced, or say ‘Comic Sans’. (I
> suppose it’s useful at least for this) I just revamped my css from the old
> gtkrc method from 2.6.x and it picked up the font rules just fine.
> > > >
> > > > I found the header selectors.
> > > >
> > > > So here is the hierarchy:
> > > >
> > > > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> > > >
> > > > GncTreeViewAccount affect the entire tab contents.
> > > > column-header affects the entire header.
> > > > GtkButton affects each section of the header.
> > > > GtkBox affects only the portion of the header cell that contains
> text and white space. (Does not include separators or margins)
> > > > GtkAlignment affects only the portion of GtkBox that contains actual
> text characters. (GtkBox minus padding)
> > > > GtkLabel is the text itself.
> > > >
> > > > Thus if you want to style the entire header bar you could use:
> > > >
> > > > #account_tree column-header
> > > >
> > > > #account_tree column-header GtkButton/button will target only the
> first header. (you can use the :x-child pseudo selectors for the others)
> > > >
> > > > #account_tree column-header .button targets all header buttons seems
> to have the same effect as if you hadn’t specified the class as in the
> first instance.
> > > >
> > > > #account_tree column-header GtkLabel/label targets only the first
> header label. (same as button)
> > > >
> > > > #account_tree column-header .label targets all header labels.
> > > >
> > > >
> > > > Note, ‘column-header’ for some reason doesn’t appear to be
> specifically necessary at least in gtk-3.18, but it’s probably a good idea
> to include it. It seems all of the accounts are also GtkButton nodes with
> GtkLabels, but they don’t seem to change on the declarations when I don’t
> include column-header for some reason. Perhaps this is a code issue as
> noted in a previous reply. Since this might change, I’d say it’s safer to
> specify buttons/labels as children of column-header for future durability.
> > > >
> > > > Since including column-h

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Sorry, I misspoke there.

The fact that ‘#account_tree column-header’ works means that ‘column-header’ is 
a descendent of #account_tree, but the fact that using ‘>’ fails, means it is 
not a direct child. (though the node tree seems to look that way in the 
inspector)

‘column-header’ itself seems a bit mystifying in that case, as both of these 
rules work to style ONLY the header:

#account_tree > GtkButton
#account_tree column_header > GtkButton

Which is it? Are those GtkButtons that make up the header children of 
#account_tree or column-header? They can’t be both and be the same nodes. I 
don’t see any indication what type of widget/node column-header is, unlike 
everything else in the tree. (no indication it is just a class or other name)

Very strange...

Regards,
Adrien

> On Jul 31, 2018, at 10:40 PM, Adrien Monteleone 
>  wrote:
> 
> Hmm. ‘:column-header’ doesn’t work at all for me in either Mac or Linux. 
> (well, nothing about the header is working in Mac for me at the moment, might 
> be a Gtk version thing)
> 
> On Linux, with gtk-3.18, the following works for the entire column-header row:
> 
> #account_tree > GtkButton
> #account_tree GtkButton
> #account_tree .button
> #account_tree column-header GtkButton
> #account_tree column-header > GtkButton
> #account_tree column-header .button
> 
> Neither ‘#account_tree column-header’ by itself, nor placing the direct child 
> selector ‘>’ or the pseudo selector ‘:’ between #account_tree and column 
> header works in any combination by themselves, or with GktButton/.button. 
> That tells me column-header is a child of #account_tree, just not the first 
> one. (can’t seem to find what that is though) It’s also not a pseudo selector 
> because it fails to render.
> 
> Regards,
> Adrien
> 
> 
>> On Jul 31, 2018, at 10:32 PM, GT-I9070 H  wrote:
>> 
>> I figured you thought that! :)
>> 
>> Em ter, 31 de jul de 2018 às 20:53, Adrien Monteleone 
>>  escreveu:
>> Ah yes, I tested that too. I thought you meant the arrow pointer itself.
>> 
>> Regards,
>> Adrien
>> 
>>> On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
>>> 
>>> Excuse me, this works fine:
>>> 
>>> #account_tree:selected {
>>>  color: white;
>>>  background-color: steelblue;
>>> }
>>> 
>>> Regards
>>> GTI
>>> 
>>> Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H  
>>> escreveu:
>>> It would be interesting also to stylize the account sheet cursor.
>>> 
>>> Regards
>>> GTI
>>> 
>>> Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone 
>>>  escreveu:
>>> Hmm...
>>> 
>>> It was working using the GtkInspector, and with the css file Linux. But 
>>> when I try similar selectors via css on MacOS (which I normally use) they 
>>> don’t work at all. (just the header stuff that is) I’ll have to investigate 
>>> more.
>>> 
>>> Regards,
>>> Adrien
>>> 
 On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
 
 Hi Adrien,
 
 This does not work:
 
 #account_tree column-header {
  color: lime;
 }
 
 Am I writing something wrong?
 
 Regards
 GTI
 
 Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone 
  escreveu:
 GTI,
 
 You could test the font-family rule by changing it to something obviously 
 different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s 
 useful at least for this) I just revamped my css from the old gtkrc method 
 from 2.6.x and it picked up the font rules just fine.
 
 I found the header selectors.
 
 So here is the hierarchy:
 
 GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
 (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
 
 GncTreeViewAccount affect the entire tab contents.
 column-header affects the entire header.
 GtkButton affects each section of the header.
 GtkBox affects only the portion of the header cell that contains text and 
 white space. (Does not include separators or margins)
 GtkAlignment affects only the portion of GtkBox that contains actual text 
 characters. (GtkBox minus padding)
 GtkLabel is the text itself.
 
 Thus if you want to style the entire header bar you could use:
 
 #account_tree column-header
 
 #account_tree column-header GtkButton/button will target only the first 
 header. (you can use the :x-child pseudo selectors for the others)
 
 #account_tree column-header .button targets all header buttons seems to 
 have the same effect as if you hadn’t specified the class as in the first 
 instance.
 
 #account_tree column-header GtkLabel/label targets only the first header 
 label. (same as button)
 
 #account_tree column-header .label targets all header labels.
 
 
 Note, ‘column-header’ for some reason doesn’t appear to be specifically 
 necessary at least in gtk-3.18, but it’s probably a good idea to include 
 it. It seems all of the accounts are also GtkButton nodes with Gt

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Hmm. ‘:column-header’ doesn’t work at all for me in either Mac or Linux. (well, 
nothing about the header is working in Mac for me at the moment, might be a Gtk 
version thing)

On Linux, with gtk-3.18, the following works for the entire column-header row:

#account_tree > GtkButton
#account_tree GtkButton
#account_tree .button
#account_tree column-header GtkButton
#account_tree column-header > GtkButton
#account_tree column-header .button

Neither ‘#account_tree column-header’ by itself, nor placing the direct child 
selector ‘>’ or the pseudo selector ‘:’ between #account_tree and column header 
works in any combination by themselves, or with GktButton/.button. That tells 
me column-header is a child of #account_tree, just not the first one. (can’t 
seem to find what that is though) It’s also not a pseudo selector because it 
fails to render.

Regards,
Adrien


> On Jul 31, 2018, at 10:32 PM, GT-I9070 H  wrote:
> 
> I figured you thought that! :)
> 
> Em ter, 31 de jul de 2018 às 20:53, Adrien Monteleone 
>  escreveu:
> Ah yes, I tested that too. I thought you meant the arrow pointer itself.
> 
> Regards,
> Adrien
> 
> > On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
> > 
> > Excuse me, this works fine:
> > 
> > #account_tree:selected {
> >   color: white;
> >   background-color: steelblue;
> > }
> > 
> > Regards
> > GTI
> > 
> > Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H  
> > escreveu:
> > It would be interesting also to stylize the account sheet cursor.
> > 
> > Regards
> > GTI
> > 
> > Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone 
> >  escreveu:
> > Hmm...
> > 
> > It was working using the GtkInspector, and with the css file Linux. But 
> > when I try similar selectors via css on MacOS (which I normally use) they 
> > don’t work at all. (just the header stuff that is) I’ll have to investigate 
> > more.
> > 
> > Regards,
> > Adrien
> > 
> > > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> > > 
> > > Hi Adrien,
> > > 
> > > This does not work:
> > > 
> > > #account_tree column-header {
> > >   color: lime;
> > > }
> > > 
> > > Am I writing something wrong?
> > > 
> > > Regards
> > > GTI
> > > 
> > > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone 
> > >  escreveu:
> > > GTI,
> > > 
> > > You could test the font-family rule by changing it to something obviously 
> > > different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s 
> > > useful at least for this) I just revamped my css from the old gtkrc 
> > > method from 2.6.x and it picked up the font rules just fine.
> > > 
> > > I found the header selectors.
> > > 
> > > So here is the hierarchy:
> > > 
> > > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
> > > (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> > > 
> > > GncTreeViewAccount affect the entire tab contents.
> > > column-header affects the entire header.
> > > GtkButton affects each section of the header.
> > > GtkBox affects only the portion of the header cell that contains text and 
> > > white space. (Does not include separators or margins)
> > > GtkAlignment affects only the portion of GtkBox that contains actual text 
> > > characters. (GtkBox minus padding)
> > > GtkLabel is the text itself.
> > > 
> > > Thus if you want to style the entire header bar you could use:
> > > 
> > > #account_tree column-header
> > > 
> > > #account_tree column-header GtkButton/button will target only the first 
> > > header. (you can use the :x-child pseudo selectors for the others)
> > > 
> > > #account_tree column-header .button targets all header buttons seems to 
> > > have the same effect as if you hadn’t specified the class as in the first 
> > > instance.
> > > 
> > > #account_tree column-header GtkLabel/label targets only the first header 
> > > label. (same as button)
> > > 
> > > #account_tree column-header .label targets all header labels.
> > > 
> > > 
> > > Note, ‘column-header’ for some reason doesn’t appear to be specifically 
> > > necessary at least in gtk-3.18, but it’s probably a good idea to include 
> > > it. It seems all of the accounts are also GtkButton nodes with GtkLabels, 
> > > but they don’t seem to change on the declarations when I don’t include 
> > > column-header for some reason. Perhaps this is a code issue as noted in a 
> > > previous reply. Since this might change, I’d say it’s safer to specify 
> > > buttons/labels as children of column-header for future durability.
> > > 
> > > Since including column-header is more specific, it shouldn’t matter the 
> > > cascade order as it will take precedence over plain #account_tree rules.
> > > 
> > > Regards,
> > > Adrien
> > > 
> > > 
> > > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> > > > 
> > > > Thanks  Adrien ,
> > > > 
> > > > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> > > > 
> > > > I tested this on Windos 10:
> > > > 
> > > > /* Account sheet font settings */
> > > > #account_tree {
> > > >   font-fam

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Em ter, 31 de jul de 2018 às 23:21, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> ‘column-header' is a pseudo selector? It looks like a Css node in
> GtkInspector. I’ll give it a try.
>
> Regards,
> Adrien
>
> > On Jul 31, 2018, at 9:59 PM, John Ralls  wrote:
> >
> > It’s missing the colon (‘:’) between account_tree and column-header.
> That could be a typo in the email rather than in gtk.css, of course.
> >
> > Regards,
> > John Ralls
> >
>

I got more hopeful, but I test this:

#account_tree:column-header {
  color: lime;
}

and it did not work. :(


Regards
GTI


> >
> >> On Jul 31, 2018, at 12:42 PM, GT-I9070 H  wrote:
> >>
> >> Hi Adrien,
> >>
> >> This does not work:
> >>
> >> #account_tree column-header {
> >> color: lime;
> >> }
> >>
> >> Am I writing something wrong?
> >>
> >> Regards
> >> GTI
> >>
> >> Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
> >> adrien.montele...@lusfiber.net> escreveu:
> >>
> >>> GTI,
> >>>
> >>> You could test the font-family rule by changing it to something
> obviously
> >>> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s
> >>> useful at least for this) I just revamped my css from the old gtkrc
> method
> >>> from 2.6.x and it picked up the font rules just fine.
> >>>
> >>> I found the header selectors.
> >>>
> >>> So here is the hierarchy:
> >>>
> >>> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> >>> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> >>>
> >>> GncTreeViewAccount affect the entire tab contents.
> >>> column-header affects the entire header.
> >>> GtkButton affects each section of the header.
> >>> GtkBox affects only the portion of the header cell that contains text
> and
> >>> white space. (Does not include separators or margins)
> >>> GtkAlignment affects only the portion of GtkBox that contains actual
> text
> >>> characters. (GtkBox minus padding)
> >>> GtkLabel is the text itself.
> >>>
> >>> Thus if you want to style the entire header bar you could use:
> >>>
> >>> #account_tree column-header
> >>>
> >>> #account_tree column-header GtkButton/button will target only the first
> >>> header. (you can use the :x-child pseudo selectors for the others)
> >>>
> >>> #account_tree column-header .button targets all header buttons seems to
> >>> have the same effect as if you hadn’t specified the class as in the
> first
> >>> instance.
> >>>
> >>> #account_tree column-header GtkLabel/label targets only the first
> header
> >>> label. (same as button)
> >>>
> >>> #account_tree column-header .label targets all header labels.
> >>>
> >>>
> >>> Note, ‘column-header’ for some reason doesn’t appear to be specifically
> >>> necessary at least in gtk-3.18, but it’s probably a good idea to
> include
> >>> it. It seems all of the accounts are also GtkButton nodes with
> GtkLabels,
> >>> but they don’t seem to change on the declarations when I don’t include
> >>> column-header for some reason. Perhaps this is a code issue as noted
> in a
> >>> previous reply. Since this might change, I’d say it’s safer to specify
> >>> buttons/labels as children of column-header for future durability.
> >>>
> >>> Since including column-header is more specific, it shouldn’t matter the
> >>> cascade order as it will take precedence over plain #account_tree
> rules.
> >>>
> >>> Regards,
> >>> Adrien
> >>>
> >>>
>  On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> 
>  Thanks  Adrien ,
> 
>  I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> 
>  I tested this on Windos 10:
> 
>  /* Account sheet font settings */
>  #account_tree {
>  font-family: Arial;
>  font-size: 15;
>  color: blue;
>  background-color: #1C2833;
>  padding: 1px;
>  letter-spacing: 5px;
>  }
> 
>  #account_tree:selected {
>  color: white;
>  }
> 
>  /* Tab font color */
>  notebook tab label {
>  color: blue;
>  }
> 
>  and it worked the first time. I'm not sure if "font-family: Arial;"
> >>> worked, but I'm sure it did not block the .css.
> 
>  Only "letter-spacing: 5px;" changed the column header.
> 
>  Now we just need to customize the column header.
> 
>  Regards
>  GTI
> 
>  Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
> >>> adrien.montele...@lusfiber.net> escreveu:
>  Follow-up:
> 
>  I’m not sure what was wrong the first time, but the following does
> work
> >>> for all text on the CoA tab but does not change the header row:
> 
>  #account_tree {
>  color: *your-color-here*;
>  }
> 
>  #account_tree:selected {
>  color: *other-color-here*;
>  }
> 
>  If there was a need to address the GtkLabels directly, that doesn’t
> seem
> >>> possible. According to the spec, it should be to style the node by
> type,
> >>> but it isn’t working. (at least in 3.18)
> 
>  The class ‘label’ is also no

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
I figured you thought that! :)

Em ter, 31 de jul de 2018 às 20:53, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> Ah yes, I tested that too. I thought you meant the arrow pointer itself.
>
> Regards,
> Adrien
>
> > On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
> >
> > Excuse me, this works fine:
> >
> > #account_tree:selected {
> >   color: white;
> >   background-color: steelblue;
> > }
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H 
> escreveu:
> > It would be interesting also to stylize the account sheet cursor.
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > Hmm...
> >
> > It was working using the GtkInspector, and with the css file Linux. But
> when I try similar selectors via css on MacOS (which I normally use) they
> don’t work at all. (just the header stuff that is) I’ll have to investigate
> more.
> >
> > Regards,
> > Adrien
> >
> > > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> > >
> > > Hi Adrien,
> > >
> > > This does not work:
> > >
> > > #account_tree column-header {
> > >   color: lime;
> > > }
> > >
> > > Am I writing something wrong?
> > >
> > > Regards
> > > GTI
> > >
> > > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > > GTI,
> > >
> > > You could test the font-family rule by changing it to something
> obviously different, like serif, monospaced, or say ‘Comic Sans’. (I
> suppose it’s useful at least for this) I just revamped my css from the old
> gtkrc method from 2.6.x and it picked up the font rules just fine.
> > >
> > > I found the header selectors.
> > >
> > > So here is the hierarchy:
> > >
> > > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> > >
> > > GncTreeViewAccount affect the entire tab contents.
> > > column-header affects the entire header.
> > > GtkButton affects each section of the header.
> > > GtkBox affects only the portion of the header cell that contains text
> and white space. (Does not include separators or margins)
> > > GtkAlignment affects only the portion of GtkBox that contains actual
> text characters. (GtkBox minus padding)
> > > GtkLabel is the text itself.
> > >
> > > Thus if you want to style the entire header bar you could use:
> > >
> > > #account_tree column-header
> > >
> > > #account_tree column-header GtkButton/button will target only the
> first header. (you can use the :x-child pseudo selectors for the others)
> > >
> > > #account_tree column-header .button targets all header buttons seems
> to have the same effect as if you hadn’t specified the class as in the
> first instance.
> > >
> > > #account_tree column-header GtkLabel/label targets only the first
> header label. (same as button)
> > >
> > > #account_tree column-header .label targets all header labels.
> > >
> > >
> > > Note, ‘column-header’ for some reason doesn’t appear to be
> specifically necessary at least in gtk-3.18, but it’s probably a good idea
> to include it. It seems all of the accounts are also GtkButton nodes with
> GtkLabels, but they don’t seem to change on the declarations when I don’t
> include column-header for some reason. Perhaps this is a code issue as
> noted in a previous reply. Since this might change, I’d say it’s safer to
> specify buttons/labels as children of column-header for future durability.
> > >
> > > Since including column-header is more specific, it shouldn’t matter
> the cascade order as it will take precedence over plain #account_tree rules.
> > >
> > > Regards,
> > > Adrien
> > >
> > >
> > > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> > > >
> > > > Thanks  Adrien ,
> > > >
> > > > I'm with my smartphone bricked and I stopped Flash it to test
> GnuCash.
> > > >
> > > > I tested this on Windos 10:
> > > >
> > > > /* Account sheet font settings */
> > > > #account_tree {
> > > >   font-family: Arial;
> > > >   font-size: 15;
> > > >   color: blue;
> > > >   background-color: #1C2833;
> > > >   padding: 1px;
> > > >   letter-spacing: 5px;
> > > > }
> > > >
> > > > #account_tree:selected {
> > > >   color: white;
> > > > }
> > > >
> > > > /* Tab font color */
> > > > notebook tab label {
> > > >   color: blue;
> > > > }
> > > >
> > > > and it worked the first time. I'm not sure if "font-family: Arial;"
> worked, but I'm sure it did not block the .css.
> > > >
> > > > Only "letter-spacing: 5px;" changed the column header.
> > > >
> > > > Now we just need to customize the column header.
> > > >
> > > > Regards
> > > > GTI
> > > >
> > > > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > > > Follow-up:
> > > >
> > > > I’m not sure what was wrong the first time, but the following does
> work for all text on the CoA tab but does not change the header row:
> > > >
> > > > #account_tree {
> > > >   color: 

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
‘column-header' is a pseudo selector? It looks like a Css node in GtkInspector. 
I’ll give it a try.

Regards,
Adrien

> On Jul 31, 2018, at 9:59 PM, John Ralls  wrote:
> 
> It’s missing the colon (‘:’) between account_tree and column-header. That 
> could be a typo in the email rather than in gtk.css, of course.
> 
> Regards,
> John Ralls
> 
> 
>> On Jul 31, 2018, at 12:42 PM, GT-I9070 H  wrote:
>> 
>> Hi Adrien,
>> 
>> This does not work:
>> 
>> #account_tree column-header {
>> color: lime;
>> }
>> 
>> Am I writing something wrong?
>> 
>> Regards
>> GTI
>> 
>> Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
>> adrien.montele...@lusfiber.net> escreveu:
>> 
>>> GTI,
>>> 
>>> You could test the font-family rule by changing it to something obviously
>>> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s
>>> useful at least for this) I just revamped my css from the old gtkrc method
>>> from 2.6.x and it picked up the font rules just fine.
>>> 
>>> I found the header selectors.
>>> 
>>> So here is the hierarchy:
>>> 
>>> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
>>> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
>>> 
>>> GncTreeViewAccount affect the entire tab contents.
>>> column-header affects the entire header.
>>> GtkButton affects each section of the header.
>>> GtkBox affects only the portion of the header cell that contains text and
>>> white space. (Does not include separators or margins)
>>> GtkAlignment affects only the portion of GtkBox that contains actual text
>>> characters. (GtkBox minus padding)
>>> GtkLabel is the text itself.
>>> 
>>> Thus if you want to style the entire header bar you could use:
>>> 
>>> #account_tree column-header
>>> 
>>> #account_tree column-header GtkButton/button will target only the first
>>> header. (you can use the :x-child pseudo selectors for the others)
>>> 
>>> #account_tree column-header .button targets all header buttons seems to
>>> have the same effect as if you hadn’t specified the class as in the first
>>> instance.
>>> 
>>> #account_tree column-header GtkLabel/label targets only the first header
>>> label. (same as button)
>>> 
>>> #account_tree column-header .label targets all header labels.
>>> 
>>> 
>>> Note, ‘column-header’ for some reason doesn’t appear to be specifically
>>> necessary at least in gtk-3.18, but it’s probably a good idea to include
>>> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
>>> but they don’t seem to change on the declarations when I don’t include
>>> column-header for some reason. Perhaps this is a code issue as noted in a
>>> previous reply. Since this might change, I’d say it’s safer to specify
>>> buttons/labels as children of column-header for future durability.
>>> 
>>> Since including column-header is more specific, it shouldn’t matter the
>>> cascade order as it will take precedence over plain #account_tree rules.
>>> 
>>> Regards,
>>> Adrien
>>> 
>>> 
 On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
 
 Thanks  Adrien ,
 
 I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
 
 I tested this on Windos 10:
 
 /* Account sheet font settings */
 #account_tree {
 font-family: Arial;
 font-size: 15;
 color: blue;
 background-color: #1C2833;
 padding: 1px;
 letter-spacing: 5px;
 }
 
 #account_tree:selected {
 color: white;
 }
 
 /* Tab font color */
 notebook tab label {
 color: blue;
 }
 
 and it worked the first time. I'm not sure if "font-family: Arial;"
>>> worked, but I'm sure it did not block the .css.
 
 Only "letter-spacing: 5px;" changed the column header.
 
 Now we just need to customize the column header.
 
 Regards
 GTI
 
 Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
>>> adrien.montele...@lusfiber.net> escreveu:
 Follow-up:
 
 I’m not sure what was wrong the first time, but the following does work
>>> for all text on the CoA tab but does not change the header row:
 
 #account_tree {
 color: *your-color-here*;
 }
 
 #account_tree:selected {
 color: *other-color-here*;
 }
 
 If there was a need to address the GtkLabels directly, that doesn’t seem
>>> possible. According to the spec, it should be to style the node by type,
>>> but it isn’t working. (at least in 3.18)
 
 The class ‘label’ is also not working properly. It seems to only apply
>>> to toolbar button labels and the header row of the CoA table.
 
 Using the GtkInspector, I added the label class to the
>>> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
>>> code needs to somehow include this for it to work. (my reading of the
>>> Gtk-css reference doesn’t seem to make this clear, with the impression that
>>> one can specify a node or a label regardless)
 
 There should probably be

Re: [GNC] Get Quote is Not Working?

2018-07-31 Thread Adrien Monteleone
Worked just fine about 2 hours ago for me. It might be intermittent.

Regards,
Adrien

> On Jul 31, 2018, at 9:27 PM, Chen Thomas  wrote:
> 
> I also think AlphaVantage is having a problem, due to I tried it on another 
> laptop, it's still not working yet.
> 
> thomas
> 
> -Original Message-
> From: gnucash-user  On 
> Behalf Of Les
> Sent: Tuesday, July 31, 2018 9:48 PM
> To: gnucash-user@gnucash.org
> Subject: Re: [GNC] Get Quote is Not Working?
> 
> I have the same problem. I think AlphaVantage is having a problem.
> 
> Les
> 
> 
> On 07/31/2018 08:28 AM, Chen Thomas wrote:
>> Hi,
>> 
>> My GC is 3.2 and Finance::Quote is also up to date 1.47 in Windows 10.
>> Get Quote had been working well until yesterday. Get Quote window (perl is 
>> running) is now freezing and not working today.
>> 
>> Is anyone experiencing the same issue?
>> 
>> Thanks,
>> thomas
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo%2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0
>> If you are using Nabble or Gmane, please see 
>> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash.org%2Fwiki%2FMailing_Lists&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ%2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0
>>  for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo%2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0
> If you are using Nabble or Gmane, please see 
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash.org%2Fwiki%2FMailing_Lists&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ%2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0
>  for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Change text color

2018-07-31 Thread John Ralls
It’s missing the colon (‘:’) between account_tree and column-header. That could 
be a typo in the email rather than in gtk.css, of course.

Regards,
John Ralls


> On Jul 31, 2018, at 12:42 PM, GT-I9070 H  wrote:
> 
> Hi Adrien,
> 
> This does not work:
> 
> #account_tree column-header {
> color: lime;
> }
> 
> Am I writing something wrong?
> 
> Regards
> GTI
> 
> Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> 
>> GTI,
>> 
>> You could test the font-family rule by changing it to something obviously
>> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s
>> useful at least for this) I just revamped my css from the old gtkrc method
>> from 2.6.x and it picked up the font rules just fine.
>> 
>> I found the header selectors.
>> 
>> So here is the hierarchy:
>> 
>> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
>> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
>> 
>> GncTreeViewAccount affect the entire tab contents.
>> column-header affects the entire header.
>> GtkButton affects each section of the header.
>> GtkBox affects only the portion of the header cell that contains text and
>> white space. (Does not include separators or margins)
>> GtkAlignment affects only the portion of GtkBox that contains actual text
>> characters. (GtkBox minus padding)
>> GtkLabel is the text itself.
>> 
>> Thus if you want to style the entire header bar you could use:
>> 
>> #account_tree column-header
>> 
>> #account_tree column-header GtkButton/button will target only the first
>> header. (you can use the :x-child pseudo selectors for the others)
>> 
>> #account_tree column-header .button targets all header buttons seems to
>> have the same effect as if you hadn’t specified the class as in the first
>> instance.
>> 
>> #account_tree column-header GtkLabel/label targets only the first header
>> label. (same as button)
>> 
>> #account_tree column-header .label targets all header labels.
>> 
>> 
>> Note, ‘column-header’ for some reason doesn’t appear to be specifically
>> necessary at least in gtk-3.18, but it’s probably a good idea to include
>> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
>> but they don’t seem to change on the declarations when I don’t include
>> column-header for some reason. Perhaps this is a code issue as noted in a
>> previous reply. Since this might change, I’d say it’s safer to specify
>> buttons/labels as children of column-header for future durability.
>> 
>> Since including column-header is more specific, it shouldn’t matter the
>> cascade order as it will take precedence over plain #account_tree rules.
>> 
>> Regards,
>> Adrien
>> 
>> 
>>> On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
>>> 
>>> Thanks  Adrien ,
>>> 
>>> I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
>>> 
>>> I tested this on Windos 10:
>>> 
>>> /* Account sheet font settings */
>>> #account_tree {
>>>  font-family: Arial;
>>>  font-size: 15;
>>>  color: blue;
>>>  background-color: #1C2833;
>>>  padding: 1px;
>>>  letter-spacing: 5px;
>>> }
>>> 
>>> #account_tree:selected {
>>>  color: white;
>>> }
>>> 
>>> /* Tab font color */
>>> notebook tab label {
>>>  color: blue;
>>> }
>>> 
>>> and it worked the first time. I'm not sure if "font-family: Arial;"
>> worked, but I'm sure it did not block the .css.
>>> 
>>> Only "letter-spacing: 5px;" changed the column header.
>>> 
>>> Now we just need to customize the column header.
>>> 
>>> Regards
>>> GTI
>>> 
>>> Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
>> adrien.montele...@lusfiber.net> escreveu:
>>> Follow-up:
>>> 
>>> I’m not sure what was wrong the first time, but the following does work
>> for all text on the CoA tab but does not change the header row:
>>> 
>>> #account_tree {
>>>  color: *your-color-here*;
>>> }
>>> 
>>> #account_tree:selected {
>>>  color: *other-color-here*;
>>> }
>>> 
>>> If there was a need to address the GtkLabels directly, that doesn’t seem
>> possible. According to the spec, it should be to style the node by type,
>> but it isn’t working. (at least in 3.18)
>>> 
>>> The class ‘label’ is also not working properly. It seems to only apply
>> to toolbar button labels and the header row of the CoA table.
>>> 
>>> Using the GtkInspector, I added the label class to the
>> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
>> code needs to somehow include this for it to work. (my reading of the
>> Gtk-css reference doesn’t seem to make this clear, with the impression that
>> one can specify a node or a label regardless)
>>> 
>>> There should probably be something on the wiki documenting this, as well
>> as all the relevant selectors. (some are documented on Git as part of a
>> sample css file) If I have page permissions I’ll start one, but if not I’ll
>> have to file a wiki bug and wait for it to be created.
>>> 
>>> Regards,
>>> Adrien
>>> 
>>> 
 On Jul 30,

Re: [GNC] Linux Mint 18.2 Sonya and Gnucash 3.2

2018-07-31 Thread David Cousens
Tommy,

Linux Mint is an Ubuntu based distribution. Lm 18 was based on Ubuntu
16.04 and the latest release Lm 19 is based on ubuntu 18.04. The
Software Manager has a standard build of GnuCash 2.6.19 and has a
flatpak version of V3.2 which has some issues in regard to accessing
some devices. It is possible some of these can be fixed with additional
flatpak components. 

GnuCash is fairly easy to build on Linux Mint if anyone needs to stay
ahead of the versions available in the distributions. See the Wiki http
s://wiki.gnucash.org/wiki/BuildUbuntu16.04. (It also covers Ubuntu
18.04 and Linux Mint 18 and now Linux Mint 19.)

David Cousens
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Get Quote is Not Working?

2018-07-31 Thread Chen Thomas
I also think AlphaVantage is having a problem, due to I tried it on another 
laptop, it's still not working yet.

thomas

-Original Message-
From: gnucash-user  On 
Behalf Of Les
Sent: Tuesday, July 31, 2018 9:48 PM
To: gnucash-user@gnucash.org
Subject: Re: [GNC] Get Quote is Not Working?

I have the same problem. I think AlphaVantage is having a problem.

Les


On 07/31/2018 08:28 AM, Chen Thomas wrote:
> Hi,
>
> My GC is 3.2 and Finance::Quote is also up to date 1.47 in Windows 10.
> Get Quote had been working well until yesterday. Get Quote window (perl is 
> running) is now freezing and not working today.
>
> Is anyone experiencing the same issue?
>
> Thanks,
> thomas
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo%2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0
> If you are using Nabble or Gmane, please see 
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash.org%2Fwiki%2FMailing_Lists&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ%2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0
>  for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo%2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0
If you are using Nabble or Gmane, please see 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash.org%2Fwiki%2FMailing_Lists&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ%2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0
 for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Ah yes, I tested that too. I thought you meant the arrow pointer itself.

Regards,
Adrien

> On Jul 31, 2018, at 5:48 PM, GT-I9070 H  wrote:
> 
> Excuse me, this works fine:
> 
> #account_tree:selected {
>   color: white;
>   background-color: steelblue;
> }
> 
> Regards
> GTI
> 
> Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H  escreveu:
> It would be interesting also to stylize the account sheet cursor.
> 
> Regards
> GTI
> 
> Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone 
>  escreveu:
> Hmm...
> 
> It was working using the GtkInspector, and with the css file Linux. But when 
> I try similar selectors via css on MacOS (which I normally use) they don’t 
> work at all. (just the header stuff that is) I’ll have to investigate more.
> 
> Regards,
> Adrien
> 
> > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> > 
> > Hi Adrien,
> > 
> > This does not work:
> > 
> > #account_tree column-header {
> >   color: lime;
> > }
> > 
> > Am I writing something wrong?
> > 
> > Regards
> > GTI
> > 
> > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone 
> >  escreveu:
> > GTI,
> > 
> > You could test the font-family rule by changing it to something obviously 
> > different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s 
> > useful at least for this) I just revamped my css from the old gtkrc method 
> > from 2.6.x and it picked up the font rules just fine.
> > 
> > I found the header selectors.
> > 
> > So here is the hierarchy:
> > 
> > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
> > (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> > 
> > GncTreeViewAccount affect the entire tab contents.
> > column-header affects the entire header.
> > GtkButton affects each section of the header.
> > GtkBox affects only the portion of the header cell that contains text and 
> > white space. (Does not include separators or margins)
> > GtkAlignment affects only the portion of GtkBox that contains actual text 
> > characters. (GtkBox minus padding)
> > GtkLabel is the text itself.
> > 
> > Thus if you want to style the entire header bar you could use:
> > 
> > #account_tree column-header
> > 
> > #account_tree column-header GtkButton/button will target only the first 
> > header. (you can use the :x-child pseudo selectors for the others)
> > 
> > #account_tree column-header .button targets all header buttons seems to 
> > have the same effect as if you hadn’t specified the class as in the first 
> > instance.
> > 
> > #account_tree column-header GtkLabel/label targets only the first header 
> > label. (same as button)
> > 
> > #account_tree column-header .label targets all header labels.
> > 
> > 
> > Note, ‘column-header’ for some reason doesn’t appear to be specifically 
> > necessary at least in gtk-3.18, but it’s probably a good idea to include 
> > it. It seems all of the accounts are also GtkButton nodes with GtkLabels, 
> > but they don’t seem to change on the declarations when I don’t include 
> > column-header for some reason. Perhaps this is a code issue as noted in a 
> > previous reply. Since this might change, I’d say it’s safer to specify 
> > buttons/labels as children of column-header for future durability.
> > 
> > Since including column-header is more specific, it shouldn’t matter the 
> > cascade order as it will take precedence over plain #account_tree rules.
> > 
> > Regards,
> > Adrien
> > 
> > 
> > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> > > 
> > > Thanks  Adrien ,
> > > 
> > > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> > > 
> > > I tested this on Windos 10:
> > > 
> > > /* Account sheet font settings */
> > > #account_tree {
> > >   font-family: Arial;
> > >   font-size: 15;
> > >   color: blue;
> > >   background-color: #1C2833;
> > >   padding: 1px;
> > >   letter-spacing: 5px;
> > > }
> > > 
> > > #account_tree:selected {
> > >   color: white;
> > > }
> > > 
> > > /* Tab font color */
> > > notebook tab label {
> > >   color: blue; 
> > > }
> > > 
> > > and it worked the first time. I'm not sure if "font-family: Arial;" 
> > > worked, but I'm sure it did not block the .css.
> > > 
> > > Only "letter-spacing: 5px;" changed the column header.
> > > 
> > > Now we just need to customize the column header.
> > > 
> > > Regards
> > > GTI
> > > 
> > > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone 
> > >  escreveu:
> > > Follow-up:
> > > 
> > > I’m not sure what was wrong the first time, but the following does work 
> > > for all text on the CoA tab but does not change the header row:
> > > 
> > > #account_tree {
> > >   color: *your-color-here*;
> > > }
> > > 
> > > #account_tree:selected {
> > >   color: *other-color-here*;
> > > }
> > > 
> > > If there was a need to address the GtkLabels directly, that doesn’t seem 
> > > possible. According to the spec, it should be to style the node by type, 
> > > but it isn’t working. (at least in 3.18)
> > > 
> > > The class ‘label’ is also not working

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Excuse me, this works fine:

#account_tree:selected {
  color: white;
  background-color: steelblue;
}

Regards
GTI

Em ter, 31 de jul de 2018 às 16:25, GT-I9070 H 
escreveu:

> It would be interesting also to stylize the account sheet cursor.
>
> Regards
> GTI
>
> Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
>
>> Hmm...
>>
>> It was working using the GtkInspector, and with the css file Linux. But
>> when I try similar selectors via css on MacOS (which I normally use) they
>> don’t work at all. (just the header stuff that is) I’ll have to investigate
>> more.
>>
>> Regards,
>> Adrien
>>
>> > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
>> >
>> > Hi Adrien,
>> >
>> > This does not work:
>> >
>> > #account_tree column-header {
>> >   color: lime;
>> > }
>> >
>> > Am I writing something wrong?
>> >
>> > Regards
>> > GTI
>> >
>> > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
>> adrien.montele...@lusfiber.net> escreveu:
>> > GTI,
>> >
>> > You could test the font-family rule by changing it to something
>> obviously different, like serif, monospaced, or say ‘Comic Sans’. (I
>> suppose it’s useful at least for this) I just revamped my css from the old
>> gtkrc method from 2.6.x and it picked up the font rules just fine.
>> >
>> > I found the header selectors.
>> >
>> > So here is the hierarchy:
>> >
>> > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
>> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
>> >
>> > GncTreeViewAccount affect the entire tab contents.
>> > column-header affects the entire header.
>> > GtkButton affects each section of the header.
>> > GtkBox affects only the portion of the header cell that contains text
>> and white space. (Does not include separators or margins)
>> > GtkAlignment affects only the portion of GtkBox that contains actual
>> text characters. (GtkBox minus padding)
>> > GtkLabel is the text itself.
>> >
>> > Thus if you want to style the entire header bar you could use:
>> >
>> > #account_tree column-header
>> >
>> > #account_tree column-header GtkButton/button will target only the first
>> header. (you can use the :x-child pseudo selectors for the others)
>> >
>> > #account_tree column-header .button targets all header buttons seems to
>> have the same effect as if you hadn’t specified the class as in the first
>> instance.
>> >
>> > #account_tree column-header GtkLabel/label targets only the first
>> header label. (same as button)
>> >
>> > #account_tree column-header .label targets all header labels.
>> >
>> >
>> > Note, ‘column-header’ for some reason doesn’t appear to be specifically
>> necessary at least in gtk-3.18, but it’s probably a good idea to include
>> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
>> but they don’t seem to change on the declarations when I don’t include
>> column-header for some reason. Perhaps this is a code issue as noted in a
>> previous reply. Since this might change, I’d say it’s safer to specify
>> buttons/labels as children of column-header for future durability.
>> >
>> > Since including column-header is more specific, it shouldn’t matter the
>> cascade order as it will take precedence over plain #account_tree rules.
>> >
>> > Regards,
>> > Adrien
>> >
>> >
>> > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
>> > >
>> > > Thanks  Adrien ,
>> > >
>> > > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
>> > >
>> > > I tested this on Windos 10:
>> > >
>> > > /* Account sheet font settings */
>> > > #account_tree {
>> > >   font-family: Arial;
>> > >   font-size: 15;
>> > >   color: blue;
>> > >   background-color: #1C2833;
>> > >   padding: 1px;
>> > >   letter-spacing: 5px;
>> > > }
>> > >
>> > > #account_tree:selected {
>> > >   color: white;
>> > > }
>> > >
>> > > /* Tab font color */
>> > > notebook tab label {
>> > >   color: blue;
>> > > }
>> > >
>> > > and it worked the first time. I'm not sure if "font-family: Arial;"
>> worked, but I'm sure it did not block the .css.
>> > >
>> > > Only "letter-spacing: 5px;" changed the column header.
>> > >
>> > > Now we just need to customize the column header.
>> > >
>> > > Regards
>> > > GTI
>> > >
>> > > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
>> adrien.montele...@lusfiber.net> escreveu:
>> > > Follow-up:
>> > >
>> > > I’m not sure what was wrong the first time, but the following does
>> work for all text on the CoA tab but does not change the header row:
>> > >
>> > > #account_tree {
>> > >   color: *your-color-here*;
>> > > }
>> > >
>> > > #account_tree:selected {
>> > >   color: *other-color-here*;
>> > > }
>> > >
>> > > If there was a need to address the GtkLabels directly, that doesn’t
>> seem possible. According to the spec, it should be to style the node by
>> type, but it isn’t working. (at least in 3.18)
>> > >
>> > > The class ‘label’ is also not working properly. It seems to only
>> apply to toolbar bu

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
I think that has to be done in code.

Regards,
Adrien

> On Jul 31, 2018, at 3:25 PM, GT-I9070 H  wrote:
> 
> It would be interesting also to stylize the account sheet cursor.
> 
> Regards
> GTI
> 
> Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone 
>  escreveu:
> Hmm...
> 
> It was working using the GtkInspector, and with the css file Linux. But when 
> I try similar selectors via css on MacOS (which I normally use) they don’t 
> work at all. (just the header stuff that is) I’ll have to investigate more.
> 
> Regards,
> Adrien
> 
> > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> > 
> > Hi Adrien,
> > 
> > This does not work:
> > 
> > #account_tree column-header {
> >   color: lime;
> > }
> > 
> > Am I writing something wrong?
> > 
> > Regards
> > GTI
> > 
> > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone 
> >  escreveu:
> > GTI,
> > 
> > You could test the font-family rule by changing it to something obviously 
> > different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s 
> > useful at least for this) I just revamped my css from the old gtkrc method 
> > from 2.6.x and it picked up the font rules just fine.
> > 
> > I found the header selectors.
> > 
> > So here is the hierarchy:
> > 
> > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
> > (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> > 
> > GncTreeViewAccount affect the entire tab contents.
> > column-header affects the entire header.
> > GtkButton affects each section of the header.
> > GtkBox affects only the portion of the header cell that contains text and 
> > white space. (Does not include separators or margins)
> > GtkAlignment affects only the portion of GtkBox that contains actual text 
> > characters. (GtkBox minus padding)
> > GtkLabel is the text itself.
> > 
> > Thus if you want to style the entire header bar you could use:
> > 
> > #account_tree column-header
> > 
> > #account_tree column-header GtkButton/button will target only the first 
> > header. (you can use the :x-child pseudo selectors for the others)
> > 
> > #account_tree column-header .button targets all header buttons seems to 
> > have the same effect as if you hadn’t specified the class as in the first 
> > instance.
> > 
> > #account_tree column-header GtkLabel/label targets only the first header 
> > label. (same as button)
> > 
> > #account_tree column-header .label targets all header labels.
> > 
> > 
> > Note, ‘column-header’ for some reason doesn’t appear to be specifically 
> > necessary at least in gtk-3.18, but it’s probably a good idea to include 
> > it. It seems all of the accounts are also GtkButton nodes with GtkLabels, 
> > but they don’t seem to change on the declarations when I don’t include 
> > column-header for some reason. Perhaps this is a code issue as noted in a 
> > previous reply. Since this might change, I’d say it’s safer to specify 
> > buttons/labels as children of column-header for future durability.
> > 
> > Since including column-header is more specific, it shouldn’t matter the 
> > cascade order as it will take precedence over plain #account_tree rules.
> > 
> > Regards,
> > Adrien
> > 
> > 
> > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> > > 
> > > Thanks  Adrien ,
> > > 
> > > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> > > 
> > > I tested this on Windos 10:
> > > 
> > > /* Account sheet font settings */
> > > #account_tree {
> > >   font-family: Arial;
> > >   font-size: 15;
> > >   color: blue;
> > >   background-color: #1C2833;
> > >   padding: 1px;
> > >   letter-spacing: 5px;
> > > }
> > > 
> > > #account_tree:selected {
> > >   color: white;
> > > }
> > > 
> > > /* Tab font color */
> > > notebook tab label {
> > >   color: blue; 
> > > }
> > > 
> > > and it worked the first time. I'm not sure if "font-family: Arial;" 
> > > worked, but I'm sure it did not block the .css.
> > > 
> > > Only "letter-spacing: 5px;" changed the column header.
> > > 
> > > Now we just need to customize the column header.
> > > 
> > > Regards
> > > GTI
> > > 
> > > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone 
> > >  escreveu:
> > > Follow-up:
> > > 
> > > I’m not sure what was wrong the first time, but the following does work 
> > > for all text on the CoA tab but does not change the header row:
> > > 
> > > #account_tree {
> > >   color: *your-color-here*;
> > > }
> > > 
> > > #account_tree:selected {
> > >   color: *other-color-here*;
> > > }
> > > 
> > > If there was a need to address the GtkLabels directly, that doesn’t seem 
> > > possible. According to the spec, it should be to style the node by type, 
> > > but it isn’t working. (at least in 3.18)
> > > 
> > > The class ‘label’ is also not working properly. It seems to only apply to 
> > > toolbar button labels and the header row of the CoA table.
> > > 
> > > Using the GtkInspector, I added the label class to the 
> > > GtkTreeViewAccountView widget and it worked properly th

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
It would be interesting also to stylize the account sheet cursor.

Regards
GTI

Em ter, 31 de jul de 2018 às 16:02, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> Hmm...
>
> It was working using the GtkInspector, and with the css file Linux. But
> when I try similar selectors via css on MacOS (which I normally use) they
> don’t work at all. (just the header stuff that is) I’ll have to investigate
> more.
>
> Regards,
> Adrien
>
> > On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> >
> > Hi Adrien,
> >
> > This does not work:
> >
> > #account_tree column-header {
> >   color: lime;
> > }
> >
> > Am I writing something wrong?
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > GTI,
> >
> > You could test the font-family rule by changing it to something
> obviously different, like serif, monospaced, or say ‘Comic Sans’. (I
> suppose it’s useful at least for this) I just revamped my css from the old
> gtkrc method from 2.6.x and it picked up the font rules just fine.
> >
> > I found the header selectors.
> >
> > So here is the hierarchy:
> >
> > GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> >
> > GncTreeViewAccount affect the entire tab contents.
> > column-header affects the entire header.
> > GtkButton affects each section of the header.
> > GtkBox affects only the portion of the header cell that contains text
> and white space. (Does not include separators or margins)
> > GtkAlignment affects only the portion of GtkBox that contains actual
> text characters. (GtkBox minus padding)
> > GtkLabel is the text itself.
> >
> > Thus if you want to style the entire header bar you could use:
> >
> > #account_tree column-header
> >
> > #account_tree column-header GtkButton/button will target only the first
> header. (you can use the :x-child pseudo selectors for the others)
> >
> > #account_tree column-header .button targets all header buttons seems to
> have the same effect as if you hadn’t specified the class as in the first
> instance.
> >
> > #account_tree column-header GtkLabel/label targets only the first header
> label. (same as button)
> >
> > #account_tree column-header .label targets all header labels.
> >
> >
> > Note, ‘column-header’ for some reason doesn’t appear to be specifically
> necessary at least in gtk-3.18, but it’s probably a good idea to include
> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
> but they don’t seem to change on the declarations when I don’t include
> column-header for some reason. Perhaps this is a code issue as noted in a
> previous reply. Since this might change, I’d say it’s safer to specify
> buttons/labels as children of column-header for future durability.
> >
> > Since including column-header is more specific, it shouldn’t matter the
> cascade order as it will take precedence over plain #account_tree rules.
> >
> > Regards,
> > Adrien
> >
> >
> > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> > >
> > > Thanks  Adrien ,
> > >
> > > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> > >
> > > I tested this on Windos 10:
> > >
> > > /* Account sheet font settings */
> > > #account_tree {
> > >   font-family: Arial;
> > >   font-size: 15;
> > >   color: blue;
> > >   background-color: #1C2833;
> > >   padding: 1px;
> > >   letter-spacing: 5px;
> > > }
> > >
> > > #account_tree:selected {
> > >   color: white;
> > > }
> > >
> > > /* Tab font color */
> > > notebook tab label {
> > >   color: blue;
> > > }
> > >
> > > and it worked the first time. I'm not sure if "font-family: Arial;"
> worked, but I'm sure it did not block the .css.
> > >
> > > Only "letter-spacing: 5px;" changed the column header.
> > >
> > > Now we just need to customize the column header.
> > >
> > > Regards
> > > GTI
> > >
> > > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > > Follow-up:
> > >
> > > I’m not sure what was wrong the first time, but the following does
> work for all text on the CoA tab but does not change the header row:
> > >
> > > #account_tree {
> > >   color: *your-color-here*;
> > > }
> > >
> > > #account_tree:selected {
> > >   color: *other-color-here*;
> > > }
> > >
> > > If there was a need to address the GtkLabels directly, that doesn’t
> seem possible. According to the spec, it should be to style the node by
> type, but it isn’t working. (at least in 3.18)
> > >
> > > The class ‘label’ is also not working properly. It seems to only apply
> to toolbar button labels and the header row of the CoA table.
> > >
> > > Using the GtkInspector, I added the label class to the
> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
> code needs to somehow include this for it to work. (my reading of the
> Gtk-css reference doesn’t seem to make this clear, with the i

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Hmm...

It was working using the GtkInspector, and with the css file Linux. But when I 
try similar selectors via css on MacOS (which I normally use) they don’t work 
at all. (just the header stuff that is) I’ll have to investigate more.

Regards,
Adrien

> On Jul 31, 2018, at 2:42 PM, GT-I9070 H  wrote:
> 
> Hi Adrien,
> 
> This does not work:
> 
> #account_tree column-header {
>   color: lime;
> }
> 
> Am I writing something wrong?
> 
> Regards
> GTI
> 
> Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone 
>  escreveu:
> GTI,
> 
> You could test the font-family rule by changing it to something obviously 
> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s 
> useful at least for this) I just revamped my css from the old gtkrc method 
> from 2.6.x and it picked up the font rules just fine.
> 
> I found the header selectors.
> 
> So here is the hierarchy:
> 
> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
> 
> GncTreeViewAccount affect the entire tab contents.
> column-header affects the entire header.
> GtkButton affects each section of the header.
> GtkBox affects only the portion of the header cell that contains text and 
> white space. (Does not include separators or margins)
> GtkAlignment affects only the portion of GtkBox that contains actual text 
> characters. (GtkBox minus padding)
> GtkLabel is the text itself.
> 
> Thus if you want to style the entire header bar you could use:
> 
> #account_tree column-header
> 
> #account_tree column-header GtkButton/button will target only the first 
> header. (you can use the :x-child pseudo selectors for the others)
> 
> #account_tree column-header .button targets all header buttons seems to have 
> the same effect as if you hadn’t specified the class as in the first instance.
> 
> #account_tree column-header GtkLabel/label targets only the first header 
> label. (same as button)
> 
> #account_tree column-header .label targets all header labels.
> 
> 
> Note, ‘column-header’ for some reason doesn’t appear to be specifically 
> necessary at least in gtk-3.18, but it’s probably a good idea to include it. 
> It seems all of the accounts are also GtkButton nodes with GtkLabels, but 
> they don’t seem to change on the declarations when I don’t include 
> column-header for some reason. Perhaps this is a code issue as noted in a 
> previous reply. Since this might change, I’d say it’s safer to specify 
> buttons/labels as children of column-header for future durability.
> 
> Since including column-header is more specific, it shouldn’t matter the 
> cascade order as it will take precedence over plain #account_tree rules.
> 
> Regards,
> Adrien
> 
> 
> > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> > 
> > Thanks  Adrien ,
> > 
> > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> > 
> > I tested this on Windos 10:
> > 
> > /* Account sheet font settings */
> > #account_tree {
> >   font-family: Arial;
> >   font-size: 15;
> >   color: blue;
> >   background-color: #1C2833;
> >   padding: 1px;
> >   letter-spacing: 5px;
> > }
> > 
> > #account_tree:selected {
> >   color: white;
> > }
> > 
> > /* Tab font color */
> > notebook tab label {
> >   color: blue; 
> > }
> > 
> > and it worked the first time. I'm not sure if "font-family: Arial;" worked, 
> > but I'm sure it did not block the .css.
> > 
> > Only "letter-spacing: 5px;" changed the column header.
> > 
> > Now we just need to customize the column header.
> > 
> > Regards
> > GTI
> > 
> > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone 
> >  escreveu:
> > Follow-up:
> > 
> > I’m not sure what was wrong the first time, but the following does work for 
> > all text on the CoA tab but does not change the header row:
> > 
> > #account_tree {
> >   color: *your-color-here*;
> > }
> > 
> > #account_tree:selected {
> >   color: *other-color-here*;
> > }
> > 
> > If there was a need to address the GtkLabels directly, that doesn’t seem 
> > possible. According to the spec, it should be to style the node by type, 
> > but it isn’t working. (at least in 3.18)
> > 
> > The class ‘label’ is also not working properly. It seems to only apply to 
> > toolbar button labels and the header row of the CoA table.
> > 
> > Using the GtkInspector, I added the label class to the 
> > GtkTreeViewAccountView widget and it worked properly though. So perhaps the 
> > code needs to somehow include this for it to work. (my reading of the 
> > Gtk-css reference doesn’t seem to make this clear, with the impression that 
> > one can specify a node or a label regardless)
> > 
> > There should probably be something on the wiki documenting this, as well as 
> > all the relevant selectors. (some are documented on Git as part of a sample 
> > css file) If I have page permissions I’ll start one, but if not I’ll have 
> > to file a wiki bug and wait for it to be created.
> > 
> > Regards,
> > Adrie

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Hi Adrien,

This does not work:

#account_tree column-header {
color: lime;
}

Am I writing something wrong?

Regards
GTI

Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> GTI,
>
> You could test the font-family rule by changing it to something obviously
> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s
> useful at least for this) I just revamped my css from the old gtkrc method
> from 2.6.x and it picked up the font rules just fine.
>
> I found the header selectors.
>
> So here is the hierarchy:
>
> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
>
> GncTreeViewAccount affect the entire tab contents.
> column-header affects the entire header.
> GtkButton affects each section of the header.
> GtkBox affects only the portion of the header cell that contains text and
> white space. (Does not include separators or margins)
> GtkAlignment affects only the portion of GtkBox that contains actual text
> characters. (GtkBox minus padding)
> GtkLabel is the text itself.
>
> Thus if you want to style the entire header bar you could use:
>
> #account_tree column-header
>
> #account_tree column-header GtkButton/button will target only the first
> header. (you can use the :x-child pseudo selectors for the others)
>
> #account_tree column-header .button targets all header buttons seems to
> have the same effect as if you hadn’t specified the class as in the first
> instance.
>
> #account_tree column-header GtkLabel/label targets only the first header
> label. (same as button)
>
> #account_tree column-header .label targets all header labels.
>
>
> Note, ‘column-header’ for some reason doesn’t appear to be specifically
> necessary at least in gtk-3.18, but it’s probably a good idea to include
> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
> but they don’t seem to change on the declarations when I don’t include
> column-header for some reason. Perhaps this is a code issue as noted in a
> previous reply. Since this might change, I’d say it’s safer to specify
> buttons/labels as children of column-header for future durability.
>
> Since including column-header is more specific, it shouldn’t matter the
> cascade order as it will take precedence over plain #account_tree rules.
>
> Regards,
> Adrien
>
>
> > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> >
> > Thanks  Adrien ,
> >
> > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> >
> > I tested this on Windos 10:
> >
> > /* Account sheet font settings */
> > #account_tree {
> >   font-family: Arial;
> >   font-size: 15;
> >   color: blue;
> >   background-color: #1C2833;
> >   padding: 1px;
> >   letter-spacing: 5px;
> > }
> >
> > #account_tree:selected {
> >   color: white;
> > }
> >
> > /* Tab font color */
> > notebook tab label {
> >   color: blue;
> > }
> >
> > and it worked the first time. I'm not sure if "font-family: Arial;"
> worked, but I'm sure it did not block the .css.
> >
> > Only "letter-spacing: 5px;" changed the column header.
> >
> > Now we just need to customize the column header.
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > Follow-up:
> >
> > I’m not sure what was wrong the first time, but the following does work
> for all text on the CoA tab but does not change the header row:
> >
> > #account_tree {
> >   color: *your-color-here*;
> > }
> >
> > #account_tree:selected {
> >   color: *other-color-here*;
> > }
> >
> > If there was a need to address the GtkLabels directly, that doesn’t seem
> possible. According to the spec, it should be to style the node by type,
> but it isn’t working. (at least in 3.18)
> >
> > The class ‘label’ is also not working properly. It seems to only apply
> to toolbar button labels and the header row of the CoA table.
> >
> > Using the GtkInspector, I added the label class to the
> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
> code needs to somehow include this for it to work. (my reading of the
> Gtk-css reference doesn’t seem to make this clear, with the impression that
> one can specify a node or a label regardless)
> >
> > There should probably be something on the wiki documenting this, as well
> as all the relevant selectors. (some are documented on Git as part of a
> sample css file) If I have page permissions I’ll start one, but if not I’ll
> have to file a wiki bug and wait for it to be created.
> >
> > Regards,
> > Adrien
> >
> >
> > > On Jul 30, 2018, at 5:04 PM, Adrien Monteleone <
> adrien.montele...@lusfiber.net> wrote:
> > >
> > > This is proving to be more difficult than it probably should be.
> Unfortunately, there is very little documentation on using GtkInspector,
> and it seems the tool was designed for people who are doing the coding of
> the app and are ‘inyoursleep’ fam

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
"border: 1px solid red;" also works.

Continuing the tests . . .

Regards
GTI


Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> GTI,
>
> You could test the font-family rule by changing it to something obviously
> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s
> useful at least for this) I just revamped my css from the old gtkrc method
> from 2.6.x and it picked up the font rules just fine.
>
> I found the header selectors.
>
> So here is the hierarchy:
>
> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
>
> GncTreeViewAccount affect the entire tab contents.
> column-header affects the entire header.
> GtkButton affects each section of the header.
> GtkBox affects only the portion of the header cell that contains text and
> white space. (Does not include separators or margins)
> GtkAlignment affects only the portion of GtkBox that contains actual text
> characters. (GtkBox minus padding)
> GtkLabel is the text itself.
>
> Thus if you want to style the entire header bar you could use:
>
> #account_tree column-header
>
> #account_tree column-header GtkButton/button will target only the first
> header. (you can use the :x-child pseudo selectors for the others)
>
> #account_tree column-header .button targets all header buttons seems to
> have the same effect as if you hadn’t specified the class as in the first
> instance.
>
> #account_tree column-header GtkLabel/label targets only the first header
> label. (same as button)
>
> #account_tree column-header .label targets all header labels.
>
>
> Note, ‘column-header’ for some reason doesn’t appear to be specifically
> necessary at least in gtk-3.18, but it’s probably a good idea to include
> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
> but they don’t seem to change on the declarations when I don’t include
> column-header for some reason. Perhaps this is a code issue as noted in a
> previous reply. Since this might change, I’d say it’s safer to specify
> buttons/labels as children of column-header for future durability.
>
> Since including column-header is more specific, it shouldn’t matter the
> cascade order as it will take precedence over plain #account_tree rules.
>
> Regards,
> Adrien
>
>
> > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> >
> > Thanks  Adrien ,
> >
> > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> >
> > I tested this on Windos 10:
> >
> > /* Account sheet font settings */
> > #account_tree {
> >   font-family: Arial;
> >   font-size: 15;
> >   color: blue;
> >   background-color: #1C2833;
> >   padding: 1px;
> >   letter-spacing: 5px;
> > }
> >
> > #account_tree:selected {
> >   color: white;
> > }
> >
> > /* Tab font color */
> > notebook tab label {
> >   color: blue;
> > }
> >
> > and it worked the first time. I'm not sure if "font-family: Arial;"
> worked, but I'm sure it did not block the .css.
> >
> > Only "letter-spacing: 5px;" changed the column header.
> >
> > Now we just need to customize the column header.
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > Follow-up:
> >
> > I’m not sure what was wrong the first time, but the following does work
> for all text on the CoA tab but does not change the header row:
> >
> > #account_tree {
> >   color: *your-color-here*;
> > }
> >
> > #account_tree:selected {
> >   color: *other-color-here*;
> > }
> >
> > If there was a need to address the GtkLabels directly, that doesn’t seem
> possible. According to the spec, it should be to style the node by type,
> but it isn’t working. (at least in 3.18)
> >
> > The class ‘label’ is also not working properly. It seems to only apply
> to toolbar button labels and the header row of the CoA table.
> >
> > Using the GtkInspector, I added the label class to the
> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
> code needs to somehow include this for it to work. (my reading of the
> Gtk-css reference doesn’t seem to make this clear, with the impression that
> one can specify a node or a label regardless)
> >
> > There should probably be something on the wiki documenting this, as well
> as all the relevant selectors. (some are documented on Git as part of a
> sample css file) If I have page permissions I’ll start one, but if not I’ll
> have to file a wiki bug and wait for it to be created.
> >
> > Regards,
> > Adrien
> >
> >
> > > On Jul 30, 2018, at 5:04 PM, Adrien Monteleone <
> adrien.montele...@lusfiber.net> wrote:
> > >
> > > This is proving to be more difficult than it probably should be.
> Unfortunately, there is very little documentation on using GtkInspector,
> and it seems the tool was designed for people who are doing the coding of
> the app and are ‘inyoursleep’ familiar with the GUI elements and objects
> u

Re: [GNC] I just looked at Debian Testing (buster)... and GC 3.2 is finally there.

2018-07-31 Thread David Carlson
Patrick,

If you have been watching this mail list you can see that even release 3.2
of GnuCash still has several bugs that are serious enough for many users to
wait for more of them to be squashed before they take the plunge.

Also, there are several background problems that are making it hard to
build a complete and accurate distro.

Oh, did I mention that there are only a few volunteers working on it?

David C

On Tue, Jul 31, 2018, 3:30 AM Patrick Byrne  wrote:

> Yes I saw that.I have it installed via a backport thingy for now. Why is it
> taking so long?
>
> --
> __̴ı ̡͌l̡̡̡ ̡͌l̡*̡̡ ̴̡ı̴̴̡ ̡̡͡| ̲▫̲͡ π̲̲͡͡ ̲̲͡▫̲̲͡͡ ̲|̡̡̡ ̡ ̴̡ı̴̡̡
> ̡͌l.___Patrick Byrne
>
> On 31 July 2018 at 03:08, Lincoln A Baxter  wrote:
>
> > I was mistaken... this is just the docs... :-( The rest of the GC is
> > only in SID,
> > On Mon, 2018-07-30 at 21:43 -0400, Lincoln A Baxter wrote:
> > > For those trying to install 3.2 on distros based on debian testing
> > > (currently buster), it looks like gnucach has finally made it in.
> > >
> > > Version: 3.2-1
> > >
> > > https://packages.debian.org/buster/gnucash-docs
> > >
> > > I usually run testing... but decided I was happy with what I had, and
> > > would wait until it was back in testing before I did my next "dist-
> > > upgrade."  It's been a while.
> > >
> > > :-D
> > >
> > > Lincoln
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see
> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> >
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
I had already tested  "font-family: Arial;" better and this is working.

Continuing the tests . . .

Regards
GTI

Em ter, 31 de jul de 2018 às 14:38, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> GTI,
>
> You could test the font-family rule by changing it to something obviously
> different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s
> useful at least for this) I just revamped my css from the old gtkrc method
> from 2.6.x and it picked up the font rules just fine.
>
> I found the header selectors.
>
> So here is the hierarchy:
>
> GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton
> (class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)
>
> GncTreeViewAccount affect the entire tab contents.
> column-header affects the entire header.
> GtkButton affects each section of the header.
> GtkBox affects only the portion of the header cell that contains text and
> white space. (Does not include separators or margins)
> GtkAlignment affects only the portion of GtkBox that contains actual text
> characters. (GtkBox minus padding)
> GtkLabel is the text itself.
>
> Thus if you want to style the entire header bar you could use:
>
> #account_tree column-header
>
> #account_tree column-header GtkButton/button will target only the first
> header. (you can use the :x-child pseudo selectors for the others)
>
> #account_tree column-header .button targets all header buttons seems to
> have the same effect as if you hadn’t specified the class as in the first
> instance.
>
> #account_tree column-header GtkLabel/label targets only the first header
> label. (same as button)
>
> #account_tree column-header .label targets all header labels.
>
>
> Note, ‘column-header’ for some reason doesn’t appear to be specifically
> necessary at least in gtk-3.18, but it’s probably a good idea to include
> it. It seems all of the accounts are also GtkButton nodes with GtkLabels,
> but they don’t seem to change on the declarations when I don’t include
> column-header for some reason. Perhaps this is a code issue as noted in a
> previous reply. Since this might change, I’d say it’s safer to specify
> buttons/labels as children of column-header for future durability.
>
> Since including column-header is more specific, it shouldn’t matter the
> cascade order as it will take precedence over plain #account_tree rules.
>
> Regards,
> Adrien
>
>
> > On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> >
> > Thanks  Adrien ,
> >
> > I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> >
> > I tested this on Windos 10:
> >
> > /* Account sheet font settings */
> > #account_tree {
> >   font-family: Arial;
> >   font-size: 15;
> >   color: blue;
> >   background-color: #1C2833;
> >   padding: 1px;
> >   letter-spacing: 5px;
> > }
> >
> > #account_tree:selected {
> >   color: white;
> > }
> >
> > /* Tab font color */
> > notebook tab label {
> >   color: blue;
> > }
> >
> > and it worked the first time. I'm not sure if "font-family: Arial;"
> worked, but I'm sure it did not block the .css.
> >
> > Only "letter-spacing: 5px;" changed the column header.
> >
> > Now we just need to customize the column header.
> >
> > Regards
> > GTI
> >
> > Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
> adrien.montele...@lusfiber.net> escreveu:
> > Follow-up:
> >
> > I’m not sure what was wrong the first time, but the following does work
> for all text on the CoA tab but does not change the header row:
> >
> > #account_tree {
> >   color: *your-color-here*;
> > }
> >
> > #account_tree:selected {
> >   color: *other-color-here*;
> > }
> >
> > If there was a need to address the GtkLabels directly, that doesn’t seem
> possible. According to the spec, it should be to style the node by type,
> but it isn’t working. (at least in 3.18)
> >
> > The class ‘label’ is also not working properly. It seems to only apply
> to toolbar button labels and the header row of the CoA table.
> >
> > Using the GtkInspector, I added the label class to the
> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
> code needs to somehow include this for it to work. (my reading of the
> Gtk-css reference doesn’t seem to make this clear, with the impression that
> one can specify a node or a label regardless)
> >
> > There should probably be something on the wiki documenting this, as well
> as all the relevant selectors. (some are documented on Git as part of a
> sample css file) If I have page permissions I’ll start one, but if not I’ll
> have to file a wiki bug and wait for it to be created.
> >
> > Regards,
> > Adrien
> >
> >
> > > On Jul 30, 2018, at 5:04 PM, Adrien Monteleone <
> adrien.montele...@lusfiber.net> wrote:
> > >
> > > This is proving to be more difficult than it probably should be.
> Unfortunately, there is very little documentation on using GtkInspector,
> and it seems the tool was designed for people who are doing the coding of
> the app and are ‘inyoursleep’ familiar wit

Re: [GNC] Linux Mint 18.2 Sonya and Gnucash 3.2

2018-07-31 Thread Adrien Monteleone
Thanks for the run-down.

So simply a case of Universe not pulling an update from Sid yet then? (or will 
that never happen and each release’s Universe is always tied to Testing? and 
then Stable, etc.) I know there is a separate backports repository as well. 
Perhaps that’s a better solution?

Regards,
Adrien

> On Jul 31, 2018, at 12:46 PM, Tommy Trussell  wrote:
> 
> On Tue, Jul 31, 2018 at 12:10 PM Adrien Monteleone 
>  wrote:
> I’m not sure what kind of work this would be on the devs, but Ubuntu has a 
> special procedure for LibreOffice and Firefox (if not other apps, perhaps 
> Thunderbird and Chrome/Chromium as well) where new versions are available in 
> the LTS repos either as available or by point-release.
> 
> This may be an option for GnuCash.
> 
> I’m not sure what’s involved, or if the team just has to ask Canonical to 
> give it the same special treatment.
> 
> But Canonical might prefer to push for an up-to-date Snap instead.
> 
> Regards,
> Adrien
> 
> 
> What you're describing is a special Ubuntu maintainer -- essentially someone 
> who has volunteered (and in some cases paid?) to keep particular packages 
> up-to-date. They have identified a few "mission critical" packages such as 
> web browsers and LibreOffice as deserving special treatment.
> 
> Most packages, like GnuCash, get copied in from Debian and go into the 
> "Universe" repository. The folks in charge of those are called "Masters of 
> the Universe" or MOTU.
> 
>  
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
GTI,

You could test the font-family rule by changing it to something obviously 
different, like serif, monospaced, or say ‘Comic Sans’. (I suppose it’s useful 
at least for this) I just revamped my css from the old gtkrc method from 2.6.x 
and it picked up the font rules just fine.

I found the header selectors.

So here is the hierarchy:

GncTreeViewAccount (id=“account_tree”) > column-header > GtkButton 
(class=“button”) > GtkBox > GtkAlignment > GtkLabel (class=“label”)

GncTreeViewAccount affect the entire tab contents.
column-header affects the entire header.
GtkButton affects each section of the header.
GtkBox affects only the portion of the header cell that contains text and white 
space. (Does not include separators or margins)
GtkAlignment affects only the portion of GtkBox that contains actual text 
characters. (GtkBox minus padding)
GtkLabel is the text itself.

Thus if you want to style the entire header bar you could use:

#account_tree column-header

#account_tree column-header GtkButton/button will target only the first header. 
(you can use the :x-child pseudo selectors for the others)

#account_tree column-header .button targets all header buttons seems to have 
the same effect as if you hadn’t specified the class as in the first instance.

#account_tree column-header GtkLabel/label targets only the first header label. 
(same as button)

#account_tree column-header .label targets all header labels.


Note, ‘column-header’ for some reason doesn’t appear to be specifically 
necessary at least in gtk-3.18, but it’s probably a good idea to include it. It 
seems all of the accounts are also GtkButton nodes with GtkLabels, but they 
don’t seem to change on the declarations when I don’t include column-header for 
some reason. Perhaps this is a code issue as noted in a previous reply. Since 
this might change, I’d say it’s safer to specify buttons/labels as children of 
column-header for future durability.

Since including column-header is more specific, it shouldn’t matter the cascade 
order as it will take precedence over plain #account_tree rules.

Regards,
Adrien


> On Jul 31, 2018, at 12:17 PM, GT-I9070 H  wrote:
> 
> Thanks  Adrien ,
> 
> I'm with my smartphone bricked and I stopped Flash it to test GnuCash.
> 
> I tested this on Windos 10:
> 
> /* Account sheet font settings */
> #account_tree {
>   font-family: Arial;
>   font-size: 15;
>   color: blue;
>   background-color: #1C2833;
>   padding: 1px;
>   letter-spacing: 5px;
> }
> 
> #account_tree:selected {
>   color: white;
> }
> 
> /* Tab font color */
> notebook tab label {
>   color: blue; 
> }
> 
> and it worked the first time. I'm not sure if "font-family: Arial;" worked, 
> but I'm sure it did not block the .css.
> 
> Only "letter-spacing: 5px;" changed the column header.
> 
> Now we just need to customize the column header.
> 
> Regards
> GTI
> 
> Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone 
>  escreveu:
> Follow-up:
> 
> I’m not sure what was wrong the first time, but the following does work for 
> all text on the CoA tab but does not change the header row:
> 
> #account_tree {
>   color: *your-color-here*;
> }
> 
> #account_tree:selected {
>   color: *other-color-here*;
> }
> 
> If there was a need to address the GtkLabels directly, that doesn’t seem 
> possible. According to the spec, it should be to style the node by type, but 
> it isn’t working. (at least in 3.18)
> 
> The class ‘label’ is also not working properly. It seems to only apply to 
> toolbar button labels and the header row of the CoA table.
> 
> Using the GtkInspector, I added the label class to the GtkTreeViewAccountView 
> widget and it worked properly though. So perhaps the code needs to somehow 
> include this for it to work. (my reading of the Gtk-css reference doesn’t 
> seem to make this clear, with the impression that one can specify a node or a 
> label regardless)
> 
> There should probably be something on the wiki documenting this, as well as 
> all the relevant selectors. (some are documented on Git as part of a sample 
> css file) If I have page permissions I’ll start one, but if not I’ll have to 
> file a wiki bug and wait for it to be created.
> 
> Regards,
> Adrien
> 
> 
> > On Jul 30, 2018, at 5:04 PM, Adrien Monteleone 
> >  wrote:
> > 
> > This is proving to be more difficult than it probably should be. 
> > Unfortunately, there is very little documentation on using GtkInspector, 
> > and it seems the tool was designed for people who are doing the coding of 
> > the app and are ‘inyoursleep’ familiar with the GUI elements and objects 
> > used.
> > 
> > However, I’ve managed something that might be useful.
> > 
> > Try:
> > 
> > #account_tree {
> >  color: *your-color-here*;
> > }
> > 
> > This should change the base color of the text for the entire tree, 
> > including the column headers.
> > 
> > You can use other common css rules here such as background-color, 
> > font-family, font-size, letter-spacing, padding, etc.
> > 
> > T

Re: [GNC] Linux Mint 18.2 Sonya and Gnucash 3.2

2018-07-31 Thread Tommy Trussell
On Tue, Jul 31, 2018 at 12:10 PM Adrien Monteleone <
adrien.montele...@lusfiber.net> wrote:

> I’m not sure what kind of work this would be on the devs, but Ubuntu has a
> special procedure for LibreOffice and Firefox (if not other apps, perhaps
> Thunderbird and Chrome/Chromium as well) where new versions are available
> in the LTS repos either as available or by point-release.
>
> This may be an option for GnuCash.
>
> I’m not sure what’s involved, or if the team just has to ask Canonical to
> give it the same special treatment.
>
> But Canonical might prefer to push for an up-to-date Snap instead.
>
> Regards,
> Adrien
>
>
What you're describing is a special Ubuntu maintainer -- essentially
someone who has volunteered (and in some cases paid?) to keep particular
packages up-to-date. They have identified a few "mission critical" packages
such as web browsers and LibreOffice as deserving special treatment.

Most packages, like GnuCash, get copied in from Debian and go into the
"Universe" repository. The folks in charge of those are called "Masters of
the Universe" or MOTU.



> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Post invoice still wants to be paid

2018-07-31 Thread Adrien Monteleone
You’re welcome.

It took me lots of web searching and stumbling on some old pages describing 
Lots and the Business Features. (from the days when they were being planned and 
first coded)

I don’t know that there is a definitive wiki page on this yet for this purpose. 
(there is however a good Lots page for investments)

Your case was an easy fix from the Process Payment dialog.

It gets messy when multiple payments are assigned to the wrong bills/invoices 
and they get auto-split incorrectly, applying portions of payments to different 
bills/invoices when originally it was a single payment-bill/invoice 
relationship. That’s where the Lots window is almost a necessity to fix them.

Regards,
Adrien

> On Jul 31, 2018, at 12:25 PM, dlbonline  wrote:
> 
> YEA!
> 
> I would have never figured that out on my own.
> 
> Thank you very much!
> 
> David
> 
> David Briggs
> dlbonl...@cox.net
> 918 625 9170
> 
> 
> -Original Message-
> From: gnucash-user 
> [mailto:gnucash-user-bounces+dlbonline=cox@gnucash.org] On Behalf Of 
> Adrien Monteleone
> Sent: Tuesday, July 31, 2018 11:59 AM
> To: gnucash-user 
> Subject: Re: [GNC] Post invoice still wants to be paid
> 
> David,
> 
> The first three look fine - all balanced.
> 
> The last two are the issue.
> 
> One is a bill. (see the ‘I’ in the type column? GC uses ‘I’ for both bills 
> and invoices) The second one is a payment. (probably should have a ‘P’ there 
> for consistency, but it is blank)
> 
> So the payment is not linked to the bill.
> 
> You can solve this one of three ways:
> 
> Longer method - in the View Lots window, 1. Select the Payment lot 2. Select 
> the payment split 3. Move it to the Splits Free pane on the left 4. Select 
> the Bill lot 5. Select the free payment split 6. Move it to the Splits in Lot 
> pane on the right
> 
> Now the Bill has a balanced payment split. Close the window. Double check the 
> Business > Vendor > Bills Due Reminder and it should no longer appear as 
> needing to be paid.
> 
> Alternatively (much easier in this case) - in the register you made the 
> payment from (checking perhaps?),
> 
> 1. Find and select the transaction for the payment.
> 2. Right-click the transaction and choose ‘Assign as payment...’
> 3. This brings up the Process Payment dialog.
> 4. Select the bill, be *careful* to make sure the payment amount, payment 
> date and Num are all correct. (GC has a tendency to set the date as today, 
> rather than the original transaction date so you might have to change it, as 
> well as re-enter the transaction/check #)
> 
> A slight variation of this second method is to, 1. Choose Process Payment 
> from the Business > Vendor menu 2. Enter the vendor, you’ll see all 
> outstanding bills and unassigned (pre) payments.
> 3. Simply select both the invoice and the payment, be sure the date, amount 
> and Num/Memo details are all correct, double check the account to credit 
> (usually checking or cash) and click OK.
> 
> The functionality is the same as the second method, you just don’t have to 
> remember which account was used to make the payment first to access that 
> register.
> 
> All three methods work in similar fashion for any problems with A/R.
> 
> On a side note, it appears you are either using a custom A/P account or 
> renamed the original A/P account. I’m not sure about renaming, but custom A/P 
> accounts might not always work well with the Business Features. (perhaps this 
> was the original cause of the dissociation - renaming the account) One of the 
> more seasoned users or developers would need to advise on this point. You can 
> certainly have an “Other A/P” account(s) and even make them children of the 
> main A/P account that you manually make entries to, but the Business Features 
> are really looking for only one account in the tree of type A/P and with the 
> name Accounts Payable. (same goes for receivables) And you should rarely if 
> never manually edit transactions in either of the default A/R or A/P accounts.
> 
> Finally, though the app uses the same base code for both, ‘Bills’ are the 
> terminology used for A/P and ‘Invoices’ for A/R. Just an FYI to avoid 
> confusion in any further discussions you might have with regard to either. 
> (but the processes for both are nearly identical, only debits/credits and the 
> actual accounts involved are different)
> 
> Regards,
> Adrien
> 
> 
>> On Jul 31, 2018, at 11:28 AM, dlbonline  wrote:
>> 
>> Adrien,
>> 
>> I have attached a screen shot of the lot details for each "Lots in Account 
>> Due to Briggs" in the AP account Due to Briggs.  I believe the last two in 
>> the attached meet all 4 criteria.  I think the third entry (with a negative 
>> balance) is the one in question.  Is this the one that I should re-assign?
>> 
>> David
>> 
>> 
>> David Briggs
>> dlbonl...@cox.net
>> 918 625 9170
>> 
>> -Original Message-
>> From: gnucash-user 
>> [mailto:gnucash-user-bounces+dlbonline=cox@gnucash.org] On Behalf 
>> Of Adrien

Re: [GNC] Post invoice still wants to be paid

2018-07-31 Thread dlbonline
YEA!

I would have never figured that out on my own.

Thank you very much!

David

David Briggs
dlbonl...@cox.net
918 625 9170


-Original Message-
From: gnucash-user [mailto:gnucash-user-bounces+dlbonline=cox@gnucash.org] 
On Behalf Of Adrien Monteleone
Sent: Tuesday, July 31, 2018 11:59 AM
To: gnucash-user 
Subject: Re: [GNC] Post invoice still wants to be paid

David,

The first three look fine - all balanced.

The last two are the issue.

One is a bill. (see the ‘I’ in the type column? GC uses ‘I’ for both bills and 
invoices) The second one is a payment. (probably should have a ‘P’ there for 
consistency, but it is blank)

So the payment is not linked to the bill.

You can solve this one of three ways:

Longer method - in the View Lots window, 1. Select the Payment lot 2. Select 
the payment split 3. Move it to the Splits Free pane on the left 4. Select the 
Bill lot 5. Select the free payment split 6. Move it to the Splits in Lot pane 
on the right

Now the Bill has a balanced payment split. Close the window. Double check the 
Business > Vendor > Bills Due Reminder and it should no longer appear as 
needing to be paid.

Alternatively (much easier in this case) - in the register you made the payment 
from (checking perhaps?),

1. Find and select the transaction for the payment.
2. Right-click the transaction and choose ‘Assign as payment...’
3. This brings up the Process Payment dialog.
4. Select the bill, be *careful* to make sure the payment amount, payment date 
and Num are all correct. (GC has a tendency to set the date as today, rather 
than the original transaction date so you might have to change it, as well as 
re-enter the transaction/check #)

A slight variation of this second method is to, 1. Choose Process Payment from 
the Business > Vendor menu 2. Enter the vendor, you’ll see all outstanding 
bills and unassigned (pre) payments.
3. Simply select both the invoice and the payment, be sure the date, amount and 
Num/Memo details are all correct, double check the account to credit (usually 
checking or cash) and click OK.

The functionality is the same as the second method, you just don’t have to 
remember which account was used to make the payment first to access that 
register.

All three methods work in similar fashion for any problems with A/R.

On a side note, it appears you are either using a custom A/P account or renamed 
the original A/P account. I’m not sure about renaming, but custom A/P accounts 
might not always work well with the Business Features. (perhaps this was the 
original cause of the dissociation - renaming the account) One of the more 
seasoned users or developers would need to advise on this point. You can 
certainly have an “Other A/P” account(s) and even make them children of the 
main A/P account that you manually make entries to, but the Business Features 
are really looking for only one account in the tree of type A/P and with the 
name Accounts Payable. (same goes for receivables) And you should rarely if 
never manually edit transactions in either of the default A/R or A/P accounts.

Finally, though the app uses the same base code for both, ‘Bills’ are the 
terminology used for A/P and ‘Invoices’ for A/R. Just an FYI to avoid confusion 
in any further discussions you might have with regard to either. (but the 
processes for both are nearly identical, only debits/credits and the actual 
accounts involved are different)

Regards,
Adrien


> On Jul 31, 2018, at 11:28 AM, dlbonline  wrote:
> 
> Adrien,
> 
> I have attached a screen shot of the lot details for each "Lots in Account 
> Due to Briggs" in the AP account Due to Briggs.  I believe the last two in 
> the attached meet all 4 criteria.  I think the third entry (with a negative 
> balance) is the one in question.  Is this the one that I should re-assign?
> 
> David
> 
> 
> David Briggs
> dlbonl...@cox.net
> 918 625 9170
> 
> -Original Message-
> From: gnucash-user 
> [mailto:gnucash-user-bounces+dlbonline=cox@gnucash.org] On Behalf 
> Of Adrien Monteleone
> Sent: Monday, July 30, 2018 8:58 PM
> To: gnucash-user 
> Subject: Re: [GNC] Post invoice still wants to be paid
> 
> Rich,
> 
> Don’t unpost anything yet. It might make more of a mess.
> 
> 
> *EVERY invoice will have at least one split in the View Lots window (‘splits 
> in lot’ pane) - itself.
> 
> 
> To clarify:
> 
> 1. When you go to: Actions > View Lots with the A/R account register 
> open, those invoices show ‘open’ in the ‘closed’ column and each only 
> have the one split for the invoice with no payment splits? (closed 
> invoices will have the date they were closed in that column instead)
> 
> 2. ALL other invoices show their proper invoice and payment splits everything 
> dated correctly and the payment splits balance out the invoice split for each?
> 
> 3. There are no payment lots all by themselves in the upper right 
> ‘Lots in Account’ pane? (listed as their own row along with the 
> invoice lots)
> 
> 4. There is no

Re: [GNC] Change text color

2018-07-31 Thread GT-I9070 H
Thanks  Adrien ,

I'm with my smartphone bricked and I stopped Flash it to test GnuCash.

I tested this on Windos 10:

/* Account sheet font settings */
#account_tree {
  font-family: Arial;
  font-size: 15;
  color: blue;
  background-color: #1C2833;
  padding: 1px;
  letter-spacing: 5px;
}

#account_tree:selected {
  color: white;
}

/* Tab font color */
notebook tab label {
  color: blue;
}

and it worked the first time. I'm not sure if "font-family: Arial;" worked,
but I'm sure it did not block the .css.

Only "letter-spacing: 5px;" changed the column header.

Now we just need to customize the column header.

Regards
GTI

Em ter, 31 de jul de 2018 às 02:25, Adrien Monteleone <
adrien.montele...@lusfiber.net> escreveu:

> Follow-up:
>
> I’m not sure what was wrong the first time, but the following does work
> for all text on the CoA tab but does not change the header row:
>
> #account_tree {
>   color: *your-color-here*;
> }
>
> #account_tree:selected {
>   color: *other-color-here*;
> }
>
> If there was a need to address the GtkLabels directly, that doesn’t seem
> possible. According to the spec, it should be to style the node by type,
> but it isn’t working. (at least in 3.18)
>
> The class ‘label’ is also not working properly. It seems to only apply to
> toolbar button labels and the header row of the CoA table.
>
> Using the GtkInspector, I added the label class to the
> GtkTreeViewAccountView widget and it worked properly though. So perhaps the
> code needs to somehow include this for it to work. (my reading of the
> Gtk-css reference doesn’t seem to make this clear, with the impression that
> one can specify a node or a label regardless)
>
> There should probably be something on the wiki documenting this, as well
> as all the relevant selectors. (some are documented on Git as part of a
> sample css file) If I have page permissions I’ll start one, but if not I’ll
> have to file a wiki bug and wait for it to be created.
>
> Regards,
> Adrien
>
>
> > On Jul 30, 2018, at 5:04 PM, Adrien Monteleone <
> adrien.montele...@lusfiber.net> wrote:
> >
> > This is proving to be more difficult than it probably should be.
> Unfortunately, there is very little documentation on using GtkInspector,
> and it seems the tool was designed for people who are doing the coding of
> the app and are ‘inyoursleep’ familiar with the GUI elements and objects
> used.
> >
> > However, I’ve managed something that might be useful.
> >
> > Try:
> >
> > #account_tree {
> >  color: *your-color-here*;
> > }
> >
> > This should change the base color of the text for the entire tree,
> including the column headers.
> >
> > You can use other common css rules here such as background-color,
> font-family, font-size, letter-spacing, padding, etc.
> >
> > The account names themselves (and their related text in sibling columns)
> are likely either class “label” or “GtkLabel” (depending on Gtk version,
> 3.20 is the former, 3.18 the latter) but specifying this class instead of
> the ID for the entire tree doesn’t seem to do anything. (I’m on 3.18 using
> Ubuntu 16.04, but I tried both with no result) You might have better luck.
> Ideally, I’d rather style classes than IDs, especially since in this case,
> the ID includes the column headers.
> >
> > An additional complication is that the tree-view has identical nodes for
> pretty much everything under it and the inspector doesn’t seem to let me
> select any particular account label with any specificity or figure out
> which node in the tree is which one I’m looking at on screen. (I understand
> specificity for the web, but building a unique selector seems a little
> different in GTK) I can only select the entire tree at once.
> >
> > The above might also pose an issue because a selected account would need
> different background and font colors. The inspector is supposed to show a
> ’selected’ node that might be useful here, but since I can't figure out
> which child GtkLabel belongs to what, I’m not seeing that particular
> ’selected’ node.  I’ll keep trying and poking around though.
> >
> > Hope that helps.
> >
> > Regards,
> > Adrien
> >
> >> On Jul 26, 2018, at 7:27 PM, GT-I9070 H  wrote:
> >>
> >> One file for everything is better.
> >>
> >> In my .ini file there is only one section and one line to change the
> text size of the accounts page because it was the only method I found and
> worked, the .css method for this fails. For everything else I use .css,
> I've customized the registry with .css.
> >>
> >> For tabs I already got change color and font.
> >>
> >> I had already done searches on the list and I was not lucky.
> >>
> >> Of course we can wait, without problems, meanwhile I'll keep trying.
> >>
> >>
> >> Regards
> >> GTI
> >>
> >
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or

Re: [GNC] Linux Mint 18.2 Sonya and Gnucash 3.2

2018-07-31 Thread Adrien Monteleone
I’m not sure what kind of work this would be on the devs, but Ubuntu has a 
special procedure for LibreOffice and Firefox (if not other apps, perhaps 
Thunderbird and Chrome/Chromium as well) where new versions are available in 
the LTS repos either as available or by point-release.

This may be an option for GnuCash.

I’m not sure what’s involved, or if the team just has to ask Canonical to give 
it the same special treatment.

But Canonical might prefer to push for an up-to-date Snap instead.

Regards,
Adrien

> On Jul 31, 2018, at 11:54 AM, Tommy Trussell  wrote:
> 
> On Sat, Jul 28, 2018 at 1:53 PM Michael via gnucash-user <
> gnucash-user@gnucash.org> wrote:
> 
>> I just recently built Gnucash 3.2 on Mint 18.3 following the steps in
>> the wiki instructions.  Did the dependencies, the googletest install,
>> the build and finally gnc-fq-update.  It works just fine.  There are a
>> lot of steps, but they seem to be correct.
>> 
>> As an aside, Debian, Mint and Ubuntu folks haven't been keeping gnucash
>> available in an up to date form for some time.  When I looked around I
>> was surprised to find it is available in other distributions, at least
>> the arch linux-related distros.
>> 
> 
> Just a little note of explanation -- Ubuntu gets GnuCash as a "snapshot" of
> Debian "unstable" (aka "sid") a few months or weeks before Ubuntu's
> twice-yearly release. It just so happens that there have been lots of
> GnuCash releases in the past six months, and the Debian maintainer had not
> yet succeeded in packaging a working version of any of the 3.x releases in
> time for it to get copied to the Ubuntu LTS release.
> 
> SO that's why the latest Ubuntu supplies GnuCash 2.6.19. The NEXT non-LTS
> release of Ubuntu due in October will likely get GnuCash 3.2 (or newer).
> 
> The lag is probably for the best, because several distros (such as some
> flavors of Mint) base their releases upon the Ubuntu LTS (Long Term
> Support) releases that get updated only every two years, and personally I
> would rather see more folks see a more stable version of GnuCash from the
> LTS such as 2.6.19 than 3.0 or 3.1.
> 
> For my purposes I'm pretty conservative in my expectations with GnuCash so
> I have not pressed for getting 3.x in the current Ubuntu 18.04 "Bionic" LTS
> repository. If enough folks felt GnuCash 3.2 to be solid enough and offers
> enough of an advantage (OR folks believe GnuCash 2.6.19 has a major
> show-stopping flaw) I would gladly help press an Ubuntu "MOTU" maintainer
> to sponsor the upgrade.
> 
> MOST of the time, Ubuntu users can take a current Debian source package and
> install it on the latest Ubuntu (OR any of the Ubuntu-derived
> distributions), but there are a few dependent package changes this time.
> This is why none of the Ubuntu-derived distributions have 3.x in their
> repositories, AND why it's moderately unlikely the new GnuCash releases
> will be "backported" to the previous Ubuntu 16.04 "Xenial" LTS, even though
> that release is still supported for three more years. The difficulty may
> also be a factor in why the GetDeb folks seem to have given up. Porting is
> a lot more work than usual.
> 
> By the way, folks running Debian "unstable" (aka "sid") should have GnuCash
> 3.2 available. https://tracker.debian.org/pkg/gnucash
> 
> I have never used Mint, but I believe some versions are based on Debian,
> and maybe those include the most current release of GnuCash.
> 
> 
> 
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Post invoice still wants to be paid

2018-07-31 Thread Adrien Monteleone
David,

Sorry, just saw this after sending.

Since it says ‘Edit Payment’ that probably means it is mis-assigned rather than 
not-assigned. (but to what other bill is a guess since the other bills don’t 
show it assigned to them, it might be a case of the payment thinks it is 
assigned, but the bill doesn’t)

You should still be able to use that menu entry all the same.

You can also still use the View Lots method.

Regards,
Adrien

> On Jul 31, 2018, at 11:35 AM, dlbonline  wrote:
> 
> Adrien,
> 
> BTW:  There is no "Assign as Payment" option in the right click menu of the 
> payment transaction.  I have attached a screen shot.
> 
> David
> 
> David Briggs
> dlbonl...@cox.net
> 918 625 9170
> 
> 
> -Original Message-
> From: gnucash-user 
> [mailto:gnucash-user-bounces+dlbonline=cox@gnucash.org] On Behalf Of 
> Adrien Monteleone
> Sent: Monday, July 30, 2018 8:58 PM
> To: gnucash-user 
> Subject: Re: [GNC] Post invoice still wants to be paid
> 
> Rich,
> 
> Don’t unpost anything yet. It might make more of a mess.
> 
> 
> *EVERY invoice will have at least one split in the View Lots window (‘splits 
> in lot’ pane) - itself.
> 
> 
> To clarify:
> 
> 1. When you go to: Actions > View Lots with the A/R account register open, 
> those invoices show ‘open’ in the ‘closed’ column and each only have the one 
> split for the invoice with no payment splits? (closed invoices will have the 
> date they were closed in that column instead)
> 
> 2. ALL other invoices show their proper invoice and payment splits everything 
> dated correctly and the payment splits balance out the invoice split for each?
> 
> 3. There are no payment lots all by themselves in the upper right ‘Lots in 
> Account’ pane? (listed as their own row along with the invoice lots)
> 
> 4. There is nothing at all in the bottom left, ’Splits free’ pane.
> 
> If ALL four of those are *exactly* as I’ve described, then go to the checking 
> account, right click the appropriate payment transaction, choose ‘assign as 
> payment’ and select the open invoice to re-link the payment to the invoice. 
> Do this for each payment that doesn’t appear to be properly assigned.
> 
> If one or more of those four aren’t *exactly* as I’ve written, don’t 
> re-assign anything but instead report back and we can go from there.
> 
> Regards,
> Adrien
> 
> 
>> On Jul 30, 2018, at 8:26 PM, Rich Shepard  wrote:
>> 
>> On Mon, 30 Jul 2018, Adrien Monteleone wrote:
>> 
>>> I meant that as a reply for David Briggs who was having bill issues, 
>>> but the process should be the same for A/R and invoices. (I’ve used 
>>> it for
>>> both)
>> 
>> Adrien,
>> 
>> I know you were responding to David's A/P bills.
>> 
>> My 'open' A/R invoices have no splits. I suppose that I could unpost 
>> each invoice, then re-post it, but what's there to change? The invoice 
>> was sent to a client for a project (which posted it in A/R), then I 
>> processed payment for the invoice which put the amount in the checking 
>> account. Seems like there are no intermediate steps I could have done 
>> incorrectly and still have off-setting accounts in the transaction.
>> 
>> I suppose I can un-post it, then process payment again and see what 
>> happens. I must have missed a step somewhere in each of these 'open'
>> invoices.
>> 
>> Regards,
>> 
>> Rich
>> 
>> 
>> 
>> 
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> 
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Post invoice still wants to be paid

2018-07-31 Thread Adrien Monteleone
David,

The first three look fine - all balanced.

The last two are the issue.

One is a bill. (see the ‘I’ in the type column? GC uses ‘I’ for both bills and 
invoices)
The second one is a payment. (probably should have a ‘P’ there for consistency, 
but it is blank)

So the payment is not linked to the bill.

You can solve this one of three ways:

Longer method - in the View Lots window,
1. Select the Payment lot
2. Select the payment split
3. Move it to the Splits Free pane on the left
4. Select the Bill lot
5. Select the free payment split
6. Move it to the Splits in Lot pane on the right

Now the Bill has a balanced payment split. Close the window. Double check the 
Business > Vendor > Bills Due Reminder and it should no longer appear as 
needing to be paid.

Alternatively (much easier in this case) - in the register you made the payment 
from (checking perhaps?),

1. Find and select the transaction for the payment.
2. Right-click the transaction and choose ‘Assign as payment...’
3. This brings up the Process Payment dialog.
4. Select the bill, be *careful* to make sure the payment amount, payment date 
and Num are all correct. (GC has a tendency to set the date as today, rather 
than the original transaction date so you might have to change it, as well as 
re-enter the transaction/check #)

A slight variation of this second method is to,
1. Choose Process Payment from the Business > Vendor menu
2. Enter the vendor, you’ll see all outstanding bills and unassigned (pre) 
payments.
3. Simply select both the invoice and the payment, be sure the date, amount and 
Num/Memo details are all correct, double check the account to credit (usually 
checking or cash) and click OK.

The functionality is the same as the second method, you just don’t have to 
remember which account was used to make the payment first to access that 
register.

All three methods work in similar fashion for any problems with A/R.

On a side note, it appears you are either using a custom A/P account or renamed 
the original A/P account. I’m not sure about renaming, but custom A/P accounts 
might not always work well with the Business Features. (perhaps this was the 
original cause of the dissociation - renaming the account) One of the more 
seasoned users or developers would need to advise on this point. You can 
certainly have an “Other A/P” account(s) and even make them children of the 
main A/P account that you manually make entries to, but the Business Features 
are really looking for only one account in the tree of type A/P and with the 
name Accounts Payable. (same goes for receivables) And you should rarely if 
never manually edit transactions in either of the default A/R or A/P accounts.

Finally, though the app uses the same base code for both, ‘Bills’ are the 
terminology used for A/P and ‘Invoices’ for A/R. Just an FYI to avoid confusion 
in any further discussions you might have with regard to either. (but the 
processes for both are nearly identical, only debits/credits and the actual 
accounts involved are different)

Regards,
Adrien


> On Jul 31, 2018, at 11:28 AM, dlbonline  wrote:
> 
> Adrien,
> 
> I have attached a screen shot of the lot details for each "Lots in Account 
> Due to Briggs" in the AP account Due to Briggs.  I believe the last two in 
> the attached meet all 4 criteria.  I think the third entry (with a negative 
> balance) is the one in question.  Is this the one that I should re-assign?
> 
> David
> 
> 
> David Briggs
> dlbonl...@cox.net
> 918 625 9170
> 
> -Original Message-
> From: gnucash-user 
> [mailto:gnucash-user-bounces+dlbonline=cox@gnucash.org] On Behalf Of 
> Adrien Monteleone
> Sent: Monday, July 30, 2018 8:58 PM
> To: gnucash-user 
> Subject: Re: [GNC] Post invoice still wants to be paid
> 
> Rich,
> 
> Don’t unpost anything yet. It might make more of a mess.
> 
> 
> *EVERY invoice will have at least one split in the View Lots window (‘splits 
> in lot’ pane) - itself.
> 
> 
> To clarify:
> 
> 1. When you go to: Actions > View Lots with the A/R account register open, 
> those invoices show ‘open’ in the ‘closed’ column and each only have the one 
> split for the invoice with no payment splits? (closed invoices will have the 
> date they were closed in that column instead)
> 
> 2. ALL other invoices show their proper invoice and payment splits everything 
> dated correctly and the payment splits balance out the invoice split for each?
> 
> 3. There are no payment lots all by themselves in the upper right ‘Lots in 
> Account’ pane? (listed as their own row along with the invoice lots)
> 
> 4. There is nothing at all in the bottom left, ’Splits free’ pane.
> 
> If ALL four of those are *exactly* as I’ve described, then go to the checking 
> account, right click the appropriate payment transaction, choose ‘assign as 
> payment’ and select the open invoice to re-link the payment to the invoice. 
> Do this for each payment that doesn’t appear to be properly assigned.
> 
> If one or more

Re: [GNC] Linux Mint 18.2 Sonya and Gnucash 3.2

2018-07-31 Thread Tommy Trussell
On Sat, Jul 28, 2018 at 1:53 PM Michael via gnucash-user <
gnucash-user@gnucash.org> wrote:

> I just recently built Gnucash 3.2 on Mint 18.3 following the steps in
> the wiki instructions.  Did the dependencies, the googletest install,
> the build and finally gnc-fq-update.  It works just fine.  There are a
> lot of steps, but they seem to be correct.
>
> As an aside, Debian, Mint and Ubuntu folks haven't been keeping gnucash
> available in an up to date form for some time.  When I looked around I
> was surprised to find it is available in other distributions, at least
> the arch linux-related distros.
>

Just a little note of explanation -- Ubuntu gets GnuCash as a "snapshot" of
Debian "unstable" (aka "sid") a few months or weeks before Ubuntu's
twice-yearly release. It just so happens that there have been lots of
GnuCash releases in the past six months, and the Debian maintainer had not
yet succeeded in packaging a working version of any of the 3.x releases in
time for it to get copied to the Ubuntu LTS release.

SO that's why the latest Ubuntu supplies GnuCash 2.6.19. The NEXT non-LTS
release of Ubuntu due in October will likely get GnuCash 3.2 (or newer).

The lag is probably for the best, because several distros (such as some
flavors of Mint) base their releases upon the Ubuntu LTS (Long Term
Support) releases that get updated only every two years, and personally I
would rather see more folks see a more stable version of GnuCash from the
LTS such as 2.6.19 than 3.0 or 3.1.

For my purposes I'm pretty conservative in my expectations with GnuCash so
I have not pressed for getting 3.x in the current Ubuntu 18.04 "Bionic" LTS
repository. If enough folks felt GnuCash 3.2 to be solid enough and offers
enough of an advantage (OR folks believe GnuCash 2.6.19 has a major
show-stopping flaw) I would gladly help press an Ubuntu "MOTU" maintainer
to sponsor the upgrade.

MOST of the time, Ubuntu users can take a current Debian source package and
install it on the latest Ubuntu (OR any of the Ubuntu-derived
distributions), but there are a few dependent package changes this time.
This is why none of the Ubuntu-derived distributions have 3.x in their
repositories, AND why it's moderately unlikely the new GnuCash releases
will be "backported" to the previous Ubuntu 16.04 "Xenial" LTS, even though
that release is still supported for three more years. The difficulty may
also be a factor in why the GetDeb folks seem to have given up. Porting is
a lot more work than usual.

By the way, folks running Debian "unstable" (aka "sid") should have GnuCash
3.2 available. https://tracker.debian.org/pkg/gnucash

I have never used Mint, but I believe some versions are based on Debian,
and maybe those include the most current release of GnuCash.



> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Post invoice still wants to be paid (dlbonline)

2018-07-31 Thread Colin Whyles via gnucash-user
ease see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> 
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> -- next part --
> A non-text attachment was scrubbed...
> Name: submenu.docx
> Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
> Size: 138889 bytes
> Desc: not available
> URL: 
> <http://lists.gnucash.org/pipermail/gnucash-user/attachments/20180731/4b939345/attachment.docx>
> 
> --
> 
> Subject: Digest Footer
> 
> ___
> 
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 
> --
> 
> End of gnucash-user Digest, Vol 184, Issue 77
> *

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GC 3.2 SaveAs issue

2018-07-31 Thread Geert Janssens
Op dinsdag 31 juli 2018 15:46:07 CEST schreef Joseph Vernice:
> Thanks for the advice, but the ALT+TAB or CTRL+ALT+TAB does not bring up
> the OverWrite dialog box.
> 
> Right now there are only two ways I can bring this to the foreground. 
> (1) minimize all windows and then select GnuCash application OR (2)
> before I choose the SaveAs file, move the dialog box to the right or
> left far enough so that it is not blocked.
> 
Please file this as a bug [1]

Thanks,

Geert

[1] Refer to http://wiki.gnucash.org/wiki/Bugzilla to learn how to use 
bugzilla


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Imbalance bug in credit note generation?

2018-07-31 Thread Geert Janssens
Op dinsdag 31 juli 2018 08:56:15 CEST schreef Amish:
> Can someone using Gnucash for Business account please check credit note
> creation?
> 
> I am wondering how come noone came across this bug. It is a serious bug
> unless I am doing something wrong.
> 
> This bug is now affecting maintaining business account for me.
> 
> Without "correctly assigned / balanced" credit notes all figures come
> out wrong.
> 
> Bug report:
> https://bugs.gnucash.org/show_bug.cgi?id=796766
> 
> I am wondering if developers know this or not. As it has not been
> assigned to anyone or acknowledged.

The impatience... ;)

It's holiday season so expect replies to have a longer delay. I have only 
returned from vacation today and have a huge backlog to process.

I have seen your bug report but haven't had time to verify. As this is my area 
I will do so soon and if I can reproduce I will for sure put it on my priority 
list for 3,3.

Regards,

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Post invoice still wants to be paid

2018-07-31 Thread Geert Janssens
Op maandag 30 juli 2018 17:19:27 CEST schreef David Briggs:
> David, 
> Since this was one of the very first invoices i entered, and am sure I
> posted,  paid,  and unlisted several times,  I think that is exactly what
> happened.  I'm not particularly familiar with the data structures, and to
> be honest since it's all XML and I'm an old relational-database guy, it's a
> little confusing to parse through it. So to save me some time, can you tell
> me how the data maps? Is there a value in the XML string indicating it is
> an open unpaid vendor bill? A value that I can change that says I'm paid
> and closed leave me alone. Any additional thoughts?
> 
If you know which bill you unposted and subsequently reposted, it's probably 
easiest to
- open Business->Vendors->Process Payment
- select the correct vendor (and post-to account if you have multiple)

In the list of documents you should now see your unpaid bill and the payment 
(indicated as pre-payment).
Select both the unpaid bill and the proper pre-payment and click ok.

The lot viewer can be used as a last resort if the mess has  become more 
complicated.

You may find some more info on
https://wiki.gnucash.org/wiki/Business_Features_Issues

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Change text color

2018-07-31 Thread Adrien Monteleone
Certainly. I see there’s a section: Custom GnuCash Styles. That’s probably the 
place to put them. (the other sections deal with themes, printing and 
keybindings)

Regards,
Adrien

> On Jul 31, 2018, at 9:10 AM, John Ralls  wrote:
> 
> Adrien,
> 
> There’s already https://wiki.gnucash.org/wiki/GTK3 with styling instructions. 
> Let’s keep all of the styling stuff together there.
> 
> Regards,
> John Ralls
> 
> 
>> On Jul 30, 2018, at 11:25 PM, Adrien Monteleone 
>>  wrote:
>> 
>> Follow-up:
>> 
>> I’m not sure what was wrong the first time, but the following does work for 
>> all text on the CoA tab but does not change the header row:
>> 
>> #account_tree {
>>  color: *your-color-here*;
>> }
>> 
>> #account_tree:selected {
>>  color: *other-color-here*;
>> }
>> 
>> If there was a need to address the GtkLabels directly, that doesn’t seem 
>> possible. According to the spec, it should be to style the node by type, but 
>> it isn’t working. (at least in 3.18)
>> 
>> The class ‘label’ is also not working properly. It seems to only apply to 
>> toolbar button labels and the header row of the CoA table.
>> 
>> Using the GtkInspector, I added the label class to the 
>> GtkTreeViewAccountView widget and it worked properly though. So perhaps the 
>> code needs to somehow include this for it to work. (my reading of the 
>> Gtk-css reference doesn’t seem to make this clear, with the impression that 
>> one can specify a node or a label regardless)
>> 
>> There should probably be something on the wiki documenting this, as well as 
>> all the relevant selectors. (some are documented on Git as part of a sample 
>> css file) If I have page permissions I’ll start one, but if not I’ll have to 
>> file a wiki bug and wait for it to be created.
>> 
>> Regards,
>> Adrien
>> 
>> 
>>> On Jul 30, 2018, at 5:04 PM, Adrien Monteleone 
>>>  wrote:
>>> 
>>> This is proving to be more difficult than it probably should be. 
>>> Unfortunately, there is very little documentation on using GtkInspector, 
>>> and it seems the tool was designed for people who are doing the coding of 
>>> the app and are ‘inyoursleep’ familiar with the GUI elements and objects 
>>> used.
>>> 
>>> However, I’ve managed something that might be useful.
>>> 
>>> Try:
>>> 
>>> #account_tree {
>>> color: *your-color-here*;
>>> }
>>> 
>>> This should change the base color of the text for the entire tree, 
>>> including the column headers.
>>> 
>>> You can use other common css rules here such as background-color, 
>>> font-family, font-size, letter-spacing, padding, etc.
>>> 
>>> The account names themselves (and their related text in sibling columns) 
>>> are likely either class “label” or “GtkLabel” (depending on Gtk version, 
>>> 3.20 is the former, 3.18 the latter) but specifying this class instead of 
>>> the ID for the entire tree doesn’t seem to do anything. (I’m on 3.18 using 
>>> Ubuntu 16.04, but I tried both with no result) You might have better luck. 
>>> Ideally, I’d rather style classes than IDs, especially since in this case, 
>>> the ID includes the column headers.
>>> 
>>> An additional complication is that the tree-view has identical nodes for 
>>> pretty much everything under it and the inspector doesn’t seem to let me 
>>> select any particular account label with any specificity or figure out 
>>> which node in the tree is which one I’m looking at on screen. (I understand 
>>> specificity for the web, but building a unique selector seems a little 
>>> different in GTK) I can only select the entire tree at once.
>>> 
>>> The above might also pose an issue because a selected account would need 
>>> different background and font colors. The inspector is supposed to show a 
>>> ’selected’ node that might be useful here, but since I can't figure out 
>>> which child GtkLabel belongs to what, I’m not seeing that particular 
>>> ’selected’ node.  I’ll keep trying and poking around though.
>>> 
>>> Hope that helps.
>>> 
>>> Regards,
>>> Adrien
>>> 
 On Jul 26, 2018, at 7:27 PM, GT-I9070 H  wrote:
 
 One file for everything is better.
 
 In my .ini file there is only one section and one line to change the text 
 size of the accounts page because it was the only method I found and 
 worked, the .css method for this fails. For everything else I use .css, 
 I've customized the registry with .css.
 
 For tabs I already got change color and font.
 
 I had already done searches on the list and I was not lucky.
 
 Of course we can wait, without problems, meanwhile I'll keep trying.
 
 
 Regards
 GTI
 
>>> 
>> 
>> 
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to C

Re: [GNC] Change text color

2018-07-31 Thread John Ralls
Adrien,

There’s already https://wiki.gnucash.org/wiki/GTK3 
 with styling instructions. Let’s keep all 
of the styling stuff together there.

Regards,
John Ralls


> On Jul 30, 2018, at 11:25 PM, Adrien Monteleone 
>  wrote:
> 
> Follow-up:
> 
> I’m not sure what was wrong the first time, but the following does work for 
> all text on the CoA tab but does not change the header row:
> 
> #account_tree {
>  color: *your-color-here*;
> }
> 
> #account_tree:selected {
>  color: *other-color-here*;
> }
> 
> If there was a need to address the GtkLabels directly, that doesn’t seem 
> possible. According to the spec, it should be to style the node by type, but 
> it isn’t working. (at least in 3.18)
> 
> The class ‘label’ is also not working properly. It seems to only apply to 
> toolbar button labels and the header row of the CoA table.
> 
> Using the GtkInspector, I added the label class to the GtkTreeViewAccountView 
> widget and it worked properly though. So perhaps the code needs to somehow 
> include this for it to work. (my reading of the Gtk-css reference doesn’t 
> seem to make this clear, with the impression that one can specify a node or a 
> label regardless)
> 
> There should probably be something on the wiki documenting this, as well as 
> all the relevant selectors. (some are documented on Git as part of a sample 
> css file) If I have page permissions I’ll start one, but if not I’ll have to 
> file a wiki bug and wait for it to be created.
> 
> Regards,
> Adrien
> 
> 
>> On Jul 30, 2018, at 5:04 PM, Adrien Monteleone 
>>  wrote:
>> 
>> This is proving to be more difficult than it probably should be. 
>> Unfortunately, there is very little documentation on using GtkInspector, and 
>> it seems the tool was designed for people who are doing the coding of the 
>> app and are ‘inyoursleep’ familiar with the GUI elements and objects used.
>> 
>> However, I’ve managed something that might be useful.
>> 
>> Try:
>> 
>> #account_tree {
>> color: *your-color-here*;
>> }
>> 
>> This should change the base color of the text for the entire tree, including 
>> the column headers.
>> 
>> You can use other common css rules here such as background-color, 
>> font-family, font-size, letter-spacing, padding, etc.
>> 
>> The account names themselves (and their related text in sibling columns) are 
>> likely either class “label” or “GtkLabel” (depending on Gtk version, 3.20 is 
>> the former, 3.18 the latter) but specifying this class instead of the ID for 
>> the entire tree doesn’t seem to do anything. (I’m on 3.18 using Ubuntu 
>> 16.04, but I tried both with no result) You might have better luck. Ideally, 
>> I’d rather style classes than IDs, especially since in this case, the ID 
>> includes the column headers.
>> 
>> An additional complication is that the tree-view has identical nodes for 
>> pretty much everything under it and the inspector doesn’t seem to let me 
>> select any particular account label with any specificity or figure out which 
>> node in the tree is which one I’m looking at on screen. (I understand 
>> specificity for the web, but building a unique selector seems a little 
>> different in GTK) I can only select the entire tree at once.
>> 
>> The above might also pose an issue because a selected account would need 
>> different background and font colors. The inspector is supposed to show a 
>> ’selected’ node that might be useful here, but since I can't figure out 
>> which child GtkLabel belongs to what, I’m not seeing that particular 
>> ’selected’ node.  I’ll keep trying and poking around though.
>> 
>> Hope that helps.
>> 
>> Regards,
>> Adrien
>> 
>>> On Jul 26, 2018, at 7:27 PM, GT-I9070 H  wrote:
>>> 
>>> One file for everything is better.
>>> 
>>> In my .ini file there is only one section and one line to change the text 
>>> size of the accounts page because it was the only method I found and 
>>> worked, the .css method for this fails. For everything else I use .css, 
>>> I've customized the registry with .css.
>>> 
>>> For tabs I already got change color and font.
>>> 
>>> I had already done searches on the list and I was not lucky.
>>> 
>>> Of course we can wait, without problems, meanwhile I'll keep trying.
>>> 
>>> 
>>> Regards
>>> GTI
>>> 
>> 
> 
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, 

Re: [GNC] backspace and DEL don't work under Windows 8.1

2018-07-31 Thread Ed




Probably https://bugzilla.gnome.org/show_bug.cgi?id=796665.


Yes, I tried without pasting, and it works fine.

Glad it's fixed, I look forward to the next release!

Ed
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Get Quote is Not Working?

2018-07-31 Thread Les

I have the same problem. I think AlphaVantage is having a problem.

Les


On 07/31/2018 08:28 AM, Chen Thomas wrote:

Hi,

My GC is 3.2 and Finance::Quote is also up to date 1.47 in Windows 10.
Get Quote had been working well until yesterday. Get Quote window (perl is 
running) is now freezing and not working today.

Is anyone experiencing the same issue?

Thanks,
thomas
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GC 3.2 SaveAs issue

2018-07-31 Thread Joseph Vernice
Thanks for the advice, but the ALT+TAB or CTRL+ALT+TAB does not bring up 
the OverWrite dialog box.


Right now there are only two ways I can bring this to the foreground.  
(1) minimize all windows and then select GnuCash application OR (2) 
before I choose the SaveAs file, move the dialog box to the right or 
left far enough so that it is not blocked.


Regards JV


On 7/31/2018 9:38 AM, GT-I9070 H wrote:

Use the ALT + TAB key sequence.

Regards
GTI

Em seg, 30 de jul de 2018 às 15:24, Joseph Vernice > escreveu:


I am having an issue with SaveAs under Win10 and GC 3.2.  When
saving to
an existing file, the "Overwrite" dialog box is not in the
foreground.
Any way of making the Overwrite on top?

___
gnucash-user mailing list
gnucash-user@gnucash.org 
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.



___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GC 3.2 SaveAs issue

2018-07-31 Thread GT-I9070 H
Use the ALT + TAB key sequence.

Regards
GTI

Em seg, 30 de jul de 2018 às 15:24, Joseph Vernice 
escreveu:

> I am having an issue with SaveAs under Win10 and GC 3.2.  When saving to
> an existing file, the "Overwrite" dialog box is not in the foreground.
> Any way of making the Overwrite on top?
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

[GNC] Get Quote is Not Working?

2018-07-31 Thread Chen Thomas
Hi,

My GC is 3.2 and Finance::Quote is also up to date 1.47 in Windows 10.
Get Quote had been working well until yesterday. Get Quote window (perl is 
running) is now freezing and not working today.

Is anyone experiencing the same issue?

Thanks,
thomas
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Operating Checking Account in Overdraft

2018-07-31 Thread Maf. King
On Tuesday, 31 July 2018 08:14:14 BST Murray Field wrote:
> Hi,
> 
> We have a permanent overdraft with our bank and we operate our account
> fluctuating within   the overdraft limit approved.
> 
> How should this be classified in gnucash?
> 
> As an asset, a liability or something else? We could not find any reference
> to our situation in your guide which we have downloaded.
> 
> We are potential new users.
> 
> Kind Regards,
> 
> Murray and Yvonne Field

Hi, welcome to the list.

I would create the bank account as an asset and let it have a negative 
balance.  That way, your view of the account will match the Bank's view... 
(running balance when overdrawn is a negative number)

As Adrien said, a local accountant will know your local regulations and norms 
and may be able to advise - I'm not an accountant but if this is for 
personal (not buisness) records, there is normally a lot of leeway in what you 
can do, as long as you are consistent!

0.02
Maf.
 



___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Operating Checking Account in Overdraft

2018-07-31 Thread Adrien Monteleone
Interesting question, but this really would be for a local CPA who’s familiar 
with rules and laws for your jurisdiction to answer. You may find some general 
guidance on the web for the basic situation and what accounts it will involve. 
Here’s something that might be helpful: 
http://simplestudies.com/accounting_for_bank_and_book_overdrafts_and_their_cash_flow_presentation.html

Once you know where it should be classified, if you need help doing this in 
GnuCash, someone here can help.

Regards,
Adrien

> On Jul 31, 2018, at 2:14 AM, Murray Field  wrote:
> 
> Hi,
> 
> We have a permanent overdraft with our bank and we operate our account 
> fluctuating within   the overdraft limit approved.
> 
> How should this be classified in gnucash?
> 
> As an asset, a liability or something else? We could not find any reference 
> to our situation in your guide which we have downloaded.
> 
> We are potential new users.
> 
> Kind Regards,
> 
> Murray and Yvonne Field
> 
> 
> Get Outlook for Android
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] I just looked at Debian Testing (buster)... and GC 3.2 is finally there.

2018-07-31 Thread Patrick Byrne
Yes I saw that.I have it installed via a backport thingy for now. Why is it
taking so long?

--
__̴ı ̡͌l̡̡̡ ̡͌l̡*̡̡ ̴̡ı̴̴̡ ̡̡͡| ̲▫̲͡ π̲̲͡͡ ̲̲͡▫̲̲͡͡ ̲|̡̡̡ ̡ ̴̡ı̴̡̡
̡͌l.___Patrick Byrne

On 31 July 2018 at 03:08, Lincoln A Baxter  wrote:

> I was mistaken... this is just the docs... :-( The rest of the GC is
> only in SID,
> On Mon, 2018-07-30 at 21:43 -0400, Lincoln A Baxter wrote:
> > For those trying to install 3.2 on distros based on debian testing
> > (currently buster), it looks like gnucach has finally made it in.
> >
> > Version: 3.2-1
> >
> > https://packages.debian.org/buster/gnucash-docs
> >
> > I usually run testing... but decided I was happy with what I had, and
> > would wait until it was back in testing before I did my next "dist-
> > upgrade."  It's been a while.
> >
> > :-D
> >
> > Lincoln
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Operating Checking Account in Overdraft

2018-07-31 Thread Murray Field
Hi,

We have a permanent overdraft with our bank and we operate our account 
fluctuating within   the overdraft limit approved.

How should this be classified in gnucash?

As an asset, a liability or something else? We could not find any reference to 
our situation in your guide which we have downloaded.

We are potential new users.

Kind Regards,

Murray and Yvonne Field


Get Outlook for Android

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.