Skip to content

Commit 1edf2db

Browse files
committed
[IMP] accounting: cheat sheet styles
closes #13216 X-original-commit: c97f57e Signed-off-by: Ruben Gomes (rugo) <[email protected]> Signed-off-by: Samuel Lieber (sali) <[email protected]>
1 parent ee982d5 commit 1edf2db

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

static/css/accounting.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ main.index .toctree-wrapper > .row:first-child > .col-md-3 {
2121

2222
.related {
2323
background-color: hsl(317deg 16% 90%) !important;
24+
border: 1px solid #000000 !important;
2425
transition: .3s;
2526
}
2627
.secondary {
@@ -46,13 +47,13 @@ label:hover,
4647
.accounts-table dl {
4748
margin: 0;
4849
padding: .5rem 0;
50+
border: 1px solid transparent;
4951
}
5052

5153
.accounts-table h4, .accounts-table h5 {
5254
font-weight: 700;
5355
text-transform: uppercase;
5456
padding: .5rem;
55-
5657
}
5758

5859
.accounts-table h4 {
@@ -61,11 +62,13 @@ label:hover,
6162
/* table root */
6263
.accounts-table > div {
6364
display: flex;
65+
border: 1px solid transparent;
6466
}
6567
/* P&L & Balance Sheet columns */
6668
.accounts-table > div > div {
6769
flex: 1;
6870
padding: .5rem;
71+
border: 1px solid transparent;
6972
}
7073

7174
.accounts-table > div > div:first-child {
@@ -76,6 +79,7 @@ label:hover,
7679
.accounts-table > div > div div {
7780
display: flex;
7881
flex-direction: column;
82+
border: 1px solid transparent;
7983
}
8084

8185
.accounts-table > div > div div > h5 {
@@ -139,16 +143,19 @@ label:hover,
139143
.chart-of-accounts .highlight-op,
140144
.valuation-chart .highlight-op {
141145
background-color: #030035;
146+
border-bottom: 1px solid #000000 !important;
142147
}
143148

144149
.chart-of-accounts .highlight-op,
145150
.valuation-chart-continental .highlight-op {
146151
background-color: #030035;
152+
border-bottom: 1px solid #000000 !important;
147153
}
148154

149155
.chart-of-accounts .highlight-op,
150156
.valuation-chart-anglo-saxon .highlight-op {
151157
background-color: #030035;
158+
border-bottom: 1px solid #000000 !important;
152159
}
153160
}
154161
.entries-listing {
@@ -173,20 +180,24 @@ label:hover,
173180
padding-top: 5px;
174181
padding-bottom: 5px;
175182
background-color: transparent;
183+
border-bottom: 1px solid transparent;
176184
}
177185
60% {
178186
background-color: hsl(317deg 16% 90%);
187+
border-bottom: 1px solid #000000;
179188
}
180189
80% {
181190
opacity: 1;
182191
padding-top: 5px;
183192
padding-bottom: 5px;
193+
border-bottom: 1px solid #000000;
184194
}
185195
100% {
186196
opacity: 0;
187197
padding-top: 0;
188198
padding-bottom: 0;
189199
display: none;
200+
border-bottom: 1px solid #000000;
190201
}
191202
}
192203
.reconcile1 .invoice1, .reconcile1 .invoice1 td {

static/js/reconciliation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
update_btn();
5050

5151
function update_btn() {
52-
var $reconcile = $('<button class="btn btn-success" type="button">')
52+
var $reconcile = $('<button class="btn btn-secondary" type="button">')
5353
.text("Next Reconcile")
5454
.appendTo($buttons.empty())
5555
switch (state) {

0 commit comments

Comments
 (0)