-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathadd-evidence-modal.component.css
More file actions
80 lines (66 loc) · 1.02 KB
/
add-evidence-modal.component.css
File metadata and controls
80 lines (66 loc) · 1.02 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
.config-content {
max-height: 70vh;
overflow-y: auto;
padding: 0 40px;
background-color: var(--background-primary);
}
.config-section {
padding: 16px 0;
}
.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);
}
.required {
color: #c62828;
font-weight: bold;
}
.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;
}
.full-width {
width: 100%;
}
.form-row {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.form-row mat-form-field {
flex: 1;
min-width: 180px;
}
.attachment-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}
.attachment-type {
flex: 0 0 120px;
}
.attachment-link {
flex: 1;
}
.field-error {
font-size: 0.8em;
margin-top: -12px;
margin-bottom: 16px;
display: block;
}
mat-divider {
margin: 4px 0;
}