The file name must be gtk-3.0.css and on Windows must be in
%APPDATA%\gnucash\

Done this way, the file customizations should work, if it doesn't work the
issue is inside the file.

I already published my broken (Partially works) gtk-3.0.css file here and
it has not served to bring any solution so far and as you may have noticed,
Adrien is very good at giving us homework  : )

Test my gtk-3.0.css (Attached) there, if it doesn't work for you, only with
GtkInspector can we solve this issue.

Good luck!


--
Regards

Em ter., 28 de jul. de 2020 às 14:26, Jimmy R via gnucash-user <
gnucash-user@gnucash.org> escreveu:

> I don't want to wast anyone's time since I only need to make a dozen
> changes
> for 3 Win 10 computers based on screen size
>
> As for this file I understand they use an assortment of colors to show
> where
> tags are in GNC, but is it complete
> https://github.com/Gnucash/gnucash/blob/maint/doc/gtk-3.0.css)
>
> Making this file work depends on where you put it and how you name it, one
> or the other gtk-3.0.css or gtk.css
> C:\Users\"username"\AppData\Roaming\GnuCash\gtk-3.0.css
> C:\Users\"username"\AppData\Local\gtk-3.0\gtk.css
>
> Having the a copy of the css file used for Win 10 install for me is needed
> to see whats not included in the above Git custom css. I am assuming that
> the css in embedded in a program file thus not accessible since it is not
> placed in any of the above C:\Users........
>
> Jimmy
>
> Jimmy
>
>
>
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> _______________________________________________
> 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.
>


-- 
Regards
GTI
/* CSS Styler by GTI 08/2018 - Tested on Windows -----------------

   This is an Styler GTK CSS file that can be used with Gnucash.
   
   Simply copy this file to the loaction specified below according
   to your platform and then restart gnucash.
   
  - Windows: CSIDL_APPDATA/GnuCash
    (or the default is users %USERNAME%\AppData\Roaming\GnuCash)
  - OS X: $HOME/Application Support/GnuCash
  - Linux: $XDG_CONFIG_HOME/gnucash
    (or the default is $HOME/.config/gnucash)
	
  These settings can be seen when the preference setting
  'Register\Use GnuCash built-in color theme' and/or 
  'Account\Show account color as background color' is unset.
  
  Note: Widgets obtained from Glade files will not be addressable
  directly by name as these are not brought in when loaded, only
  the widget type can be configured unless they are named in code.
  
  Help sites:
  https://wiki.gnucash.org/wiki/GTK3#Visual_Styling
  https://developer.gnome.org/gtk3/stable/chap-css-overview.html
  https://www.w3schools.com/cssref/pr_text_color.asp
  https://www.w3schools.com/colors/colors_picker.asp
  
  Events: :hover | :selected | :disable | :focus
--------------------------------------------------------------- */

/* ---Define Defaults Variables--- */
/* @define-color register_fg_color black; */

/* ---Sample of Use of Defaults Variables - Register Font Color--- */
/* *.register-foreground { */
  /* color: @register_fg_color; */
/* } */


/* ---Areas--- */
/* .GncMainWindow { */
  /* background-color: red; */
/* } */

/* .background { */
  /* background-color: red; */
/* } */

/* .horizontal { */
  /* background-color: red; */
/* } */

/* .vertical { */
  /* background-color: red; */
/* } */


/* ---Buttons--- */
/* .button { */
  /* background-color: red; */
  /* color: pink; */
/* } */

/* button:hover */
  /* background-color: red; */
/* } */


/* ---Tab Label Settings--- */
notebook tab {
  color: blue;
  font-size: 14;
  /* ---Reduce Tab--- */
  /* margin-top: -8px; */
  /* margin-bottom: -3px; */
  /* padding-left: 0px; */
  /* padding-right: 0px; */
}

notebook tab:hover {
  color: red;
  font-size: 15;
}

/* ---Reduce Tab--- */
/* notebook tab box { */
  /* padding-top: 0px; */
  /* padding-bottom: 0px; */
/* } */


/* ---Hides Tab Icon--- */
/* .GncMainWindow notebook box > image { */
  /* opacity: 0; */
/* } */

/* ---or--- */

/* tabs box > image { */
  /* opacity: 0; */
/* } */

/* ---and--- */

/* tabs label { */
  /* margin-left: -2em; */
/* } */


/* ---Account Sheet Settings--- */
#account_tree header button {
  background-color: dimgray;
  color: lime;
}

/* ---Area Behind Header Bar--- */
/* .GncAccountPage box { */
  /* background-color: red; */
/* } */

/* ---Area Behind Header Bar Text--- */
/* .GncAccountPage label { */
  /* background-color: red; */
  /* color: red; */
/* } */

#account_tree {
  font-size: 15;
  background-color: #1C2833;
  color: blue;
}

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

/* ---Summary Bar--- */
/* ---Summary Bar Behind Area--- */
.GncAccountPage {
  background-color: dimgray;
}

/* ---Summary Bar Left/Right Small Areas--- */
.summary-bar { 
  background-color: red;
}

/* ---Summary Bar Front/DropDown Menu--- */
.summary-bar cellview {
  /* background-color: dimgray; */
  color: lime;
  font-size: 16; 
}

/* ---Summary Bar Button - Child of Summary Bar Front/DropDown Menu--- */
/* .combo box { */
  /* background-color: red; */
/* } */

/* ---Summary Bar - Child of Summary Bar Front/DropDown Menu--- */
.combo {
  background-image: none;
  background-color: dimgray;
  color: lime;
  /* font-size: 16; */
}


/* ---Status Bar--- */
/* frame { */
  /* margin-top: -10px; */
  /* margin-bottom: -10px; */
  /* padding-bottom: 2px; */
/* } */

/* progressbar { */
  /* border: 1px solid lime; */
  /* background-color: lime; */
  /* margin-top: -10px; */
  /* margin-bottom: 10px; */
  /* padding-top: 20px; */
  /* padding-bottom: 8px; */
/* } */

progressbar progress {
  background-color: lime;
  padding-top: 5px;
  /* padding-bottom: 5px; */
}

statusbar label {
  /* font-size: 20px; */
  font-size: 18px;
  color: lime;
}


/* ---Register Sheet Setting--- */
.header-color {
  background-color: dimgray;
  color: lime;
}

sheet {
  font: 15px arial, sans-serif;
  color: white;
}

.primary-color {
  background-color: Black;
}

.primary-color:disabled {
  background-color: midnightblue;
}

.secondary-color {
  background-color: #1C2833;
}

.secondary-color:disabled {
  background-color: midnightblue;
}

.split-color {
  background-color: steelblue;
}

.split-color:disabled {
  background-color: midnightblue;
}

.cursor-color {
  background-color: deepskyblue;
  color: white;
}

cursor entry {
  background-color: deepskyblue;
  color: white;
  /* margin: 2px 5px 2px 5px; */
  /* padding: 0px 2px 0px 2px;   */
  }

/* cursor button { */
  /* margin: 1px 1px 1px 1px; */
/* } */

.arrow {
  /* background-color: red; */
  color: lime;
}


/* ---Calendar Settings--- */
sheet calendar {
  font: 18px arial, sans-serif;
}

.calendar {
  border-color: white;
}

.calendar.header {
  background-color: lightgreen;
}

.calendar.primary {
  background-color: darksalmon;
}

.calendar.secondary {
  background-color: darkseagreen;
}

.calendar.markers {
  background-color: indianred;
}

#dense-cal-popup treeview {
  background-color: lightcoral;
}

/* ---Register Sheet Total Bar--- */
.GncRegisterPage {
  background-color: dimgray;
  /* color: blue; */
  font-size: 15;
}

.GncRegisterPage label {
  /* background-color: red; */
  margin-top: 10px;
  margin-bottom: 10px;  
}

.default-color {
  color: lime;
}

.negative-numbers {
  color: red;
}


/* ---LOCK MSG Label Box--- */
/* .default label { */
  /* color: lime; */
/* } */
_______________________________________________
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.

Reply via email to