-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (41 loc) · 1.11 KB
/
Copy pathstyles.css
File metadata and controls
48 lines (41 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* Xero Cash Coding Filter Styles */
/* Filter row styling */
.xero-filter-row {
background-color: #f0f0f0 !important;
border-bottom: 2px solid #0078d4 !important;
}
/* Filter input boxes */
.xero-filter-input {
width: 95% !important;
padding: 4px 6px !important;
border: 1px solid #ccc !important;
border-radius: 3px !important;
font-size: 12px !important;
font-family: Arial, sans-serif !important;
box-sizing: border-box !important;
}
.xero-filter-input:focus {
outline: none !important;
border-color: #0078d4 !important;
box-shadow: 0 0 3px rgba(0, 120, 212, 0.3) !important;
}
/* Filter checkbox */
.xero-filter-checkbox {
width: 16px !important;
height: 16px !important;
cursor: pointer !important;
margin: 0 auto !important;
display: block !important;
}
/* Load all button - make it visually distinct */
#xero-filter-load-all-btn {
margin-left: 5px !important;
}
#xero-filter-load-all-btn span.text {
font-weight: bold !important;
}
/* Ensure filter row cells have proper padding */
.xero-filter-row .x-grid3-hd-inner {
padding: 5px 3px !important;
height: auto !important;
}