-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathreport-config-modal.component.css
More file actions
119 lines (100 loc) · 1.89 KB
/
report-config-modal.component.css
File metadata and controls
119 lines (100 loc) · 1.89 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
.config-content {
max-height: 70vh;
overflow-y: auto;
padding: 0 40px;
background-color: var(--background-primary);
}
mat-dialog-title{
font-size:20px;
}
.config-section {
padding: 16px 0;
}
.config-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
margin-top: 12px;
}
.config-row-label {
font-size: 0.95em;
white-space: nowrap;
}
.slider-row {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.word-cap-slider {
width: 100%;
}
.config-section h3 {
margin: 0 0 4px 0;
font-size: 1.1em;
font-weight: 500;
}
.config-hint {
margin: 0 0 12px 0;
font-size: 0.85em;
color: var(--text-secondary);
}
.select-all-actions {
display: flex;
gap: 8px;
margin-bottom: 8px;
}
.checkbox-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 8px;
}
.search-field {
width: 80%;
margin-bottom: 8px;
}
.activity-list {
display: flex;
flex-direction: column;
gap: 4px;
max-height: 300px;
overflow-y: auto;
padding: 4px 0;
border: 1px solid var(--text-tertiary);
border-radius: 4px;
padding: 8px;
}
.activity-checkbox-label {
display: flex;
flex-direction: column;
}
.activity-name {
font-weight: 500;
}
.activity-meta {
font-size: 0.8em;
color: var(--text-secondary);
}
mat-divider {
margin: 4px 0;
}
.column-toggle {
border-radius: 999px;
padding: 2px;
border: 1px solid var(--text-tertiary);
background: var(--background-secondary);
}
/* buttons */
.column-toggle .mat-button-toggle {
border-radius: 999px;
border: none;
padding: 0 16px;
color: var(--text-secondary);
background: transparent;
}
/* selected */
.column-toggle .mat-button-toggle-checked {
background: var(--primary-color);
color: var(--text-on-primary);
box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}