-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
97 lines (83 loc) · 1.29 KB
/
styles.css
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.rootContainer {
display: flex;
flex-direction: column;
block-size: 100%;
gap: 10px;
> .rdg {
flex: 1;
}
}
.square-container {
display: flex;
justify-content: center;
align-items: center;
}
.square-red {
display: block;
width: 90px;
height: 17px;
background-color: red;
margin-top: 8px;
margin-bottom: 10px;
}
.square-yellow {
display: block;
width: 90px;
height: 17px;
background-color: yellow;
margin-top: 8px;
margin-bottom: 10px;
}
select {
appearance: none;
padding: 8px 12px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f0f0f0;
color: #333;
cursor: pointer;
}
select:hover {
border-color: #999;
}
select:focus {
outline: none;
border-color: #2196f3;
box-shadow: 0 0 3px rgba(33, 150, 243, 0.5);
}
select option {
background-color: #f0f0f0;
color: #333;
}
select option:hover {
background-color: #d3d3d3;
}
.toolbar {
display: flex;
justify-content: flex-end;
gap: 8px;
margin-block-end: 8px;
}
.filter-cell {
line-height: 35px;
padding: 0;
text-align: center !important;
> div {
padding: 0 8px;
&:first-child {
border-bottom: 1px solid var(--border-color);
}
}
}
.filter-header {
width: 100%;
padding: 4px;
font-size: 14px;
}
.left-mergin {
margin-left: 25px;
}
.text-align-center {
text-align: center;
}