GnuCashew ~ GnuCash Enabled Web
GCW
gcw.css
Go to the documentation of this file.
1 
2 /*
3 ** root document container
4 ** background-color: ghostwhite;
5 ** background-color: whitesmoke;
6 ** background-color: floralwhite;
7 ** font-size: smaller;
8 */
9 .Wt-domRoot
10 {
11  font-family: Arial;
12  font-weight: normal;
13  background-color: azure;
14 }
15 
16 .AccountRegister
17 {
18 /* font-size:smaller; */
19 }
20 
21 /*
22 ** Background and big fat line on the
23 ** bottom border of the header
24 */
25 .AccountRegister
26  .Wt-header
27 {
28  background-color: #96b183;
29  border-bottom:2px solid black;
30 }
31 
32 /*
33 ** Negative values are red
34 **
35 */
36 .AccountRegister
37  .negval
38 {
39  color:red;
40  background-color:gold !important;
41 }
42 
43 /*
44 ** Error values are super-red
45 **
46 */
47 .AccountRegister
48  div.errval
49 {
50  color:#0713ce;
51  background-color:#ff000082 !important;
52  border-radius:5px;
53 }
54 
55 .AccountRegister input
56 {
57  padding:0px;
58 }
59 
60 
61 /* Account elipsis '...' on the left */
62 .AccountRegister
63  .Wt-header
64  .Wt-tv-c4,
65 .AccountRegister
66  .Wt-tv-contents
67  .Wt-tv-c4
68 {
69  direction: rtl;
70 }
71 
72 /* read-only selected row */
73 .AccountRegister
74  .Wt-tableview
75  .Wt-tv-contents.Wt-striped
76  div.Wt-tv-c.active
77 {
78  color: #0d0c0c;
79  font-weight:bold;
80  background-color:#ffff7e !important;
81 }
82 
83 /* Alternating Row Colors */
84 .AccountRegister
85  .Wt-tableview
86  .Wt-tv-contents.Wt-striped
87  div.Wt-tv-c:nth-child(2n)
88 {
89  background-color:#ffcb0024;
90 }
91 
92 .AccountRegister
93  .Wt-tableview
94  .Wt-tv-contents.Wt-striped
95  div.Wt-tv-c:nth-child(2n+1)
96 {
97  background-color:#1c861333;
98 }
99 
100 /* Thin black line underneath each row */
101 .AccountRegister
102  .Wt-tableview
103  .Wt-tv-contents
104  .Wt-tv-c
105 {
106  border-bottom: 1px solid black;
107 }
108 
109 /* Thin black line on the left */
110 .AccountRegister
111  .Wt-tableview
112  .Wt-tv-contents
113  .Wt-tv-c1
114 {
115  border-left: 1px solid black;
116 }
117 
118 /* Selected Editor Widget padding/margin (the div right before the editor) */
119 .AccountRegister
120  .Wt-tableview
121  .Wt-tv-contents
122  div.Wt-tv-c.selectable
123 {
124  padding:0px;
125  margin:0px;
126 }
127 
128 /* Selected Editor Widget background highlight (the editor) */
129 .AccountRegister
130  .Wt-tableview
131  .Wt-tv-contents
132  div.Wt-tv-c.selectable
133  input
134 {
135  background-color:yellow;
136  vertical-align:top;
137 }
138 
139 .AccountEditor
140 {
141  background-color:#ffbf0047;
142  border: 1px solid black;
143  padding: 5px;
144 }
145 
146 .BillPay
147  .EditWidget
148 {
149  background-color:#ffbf0047;
150  border: 1px solid black;
151 }
152 
153 /*
154 ** Selected 'month' columns are highlighted
155 ** important overrides the alternating row colors
156 */
157 .billpay .colsel
158 {
159  background-color:#1aeaff !important;
160  color: black;
161 }
162 
163 .billpay.unpaid.Wt-tableview .Wt-header
164 {
165  background-color:#ffb6c194;
166 }
167 
168 .billpay.paid.Wt-tableview .Wt-header
169 {
170  background-color:#90ee909e;
171 }
172 
173 .billpay.disabled.Wt-tableview .Wt-header
174 {
175  background-color:lightgray;
176 }
177 
178 .billpayedit
179 {
180  display: flex;
181  justify-content: space-around;
182  align-items: flex-start;
183  padding: 5px;
184 }
185 
186 .billpayedit
187  .t1
188 {
189  border-collapse: collapse;
190  width: 75%;
191 }
192 
193 .billpayedit
194  .t1
195  td
196 {
197  padding-left: 3px;
198  padding-right: 3px;
199  text-align: left;
200 }
201 
202 
203