Spaces:
Building
Building
Create project-edit-dialog.component.scss
Browse files
flare-ui/src/app/dialogs/project-edit-dialog/project-edit-dialog.component.scss
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mat-dialog-content {
|
2 |
+
padding: 20px 24px;
|
3 |
+
min-width: 500px;
|
4 |
+
max-width: 600px;
|
5 |
+
}
|
6 |
+
|
7 |
+
.full-width {
|
8 |
+
width: 100%;
|
9 |
+
margin-bottom: 16px;
|
10 |
+
}
|
11 |
+
|
12 |
+
.test-users-section {
|
13 |
+
margin-top: 24px;
|
14 |
+
|
15 |
+
h4 {
|
16 |
+
margin-bottom: 16px;
|
17 |
+
color: rgba(0, 0, 0, 0.87);
|
18 |
+
}
|
19 |
+
|
20 |
+
.test-user-row {
|
21 |
+
display: flex;
|
22 |
+
gap: 8px;
|
23 |
+
align-items: flex-start;
|
24 |
+
margin-bottom: 8px;
|
25 |
+
|
26 |
+
.flex-1 {
|
27 |
+
flex: 1;
|
28 |
+
}
|
29 |
+
|
30 |
+
button {
|
31 |
+
margin-top: 8px;
|
32 |
+
}
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
+
mat-dialog-actions {
|
37 |
+
padding: 16px 24px;
|
38 |
+
margin: 0;
|
39 |
+
border-top: 1px solid #e0e0e0;
|
40 |
+
}
|
41 |
+
|
42 |
+
// Material form field density
|
43 |
+
::ng-deep {
|
44 |
+
.mat-mdc-form-field {
|
45 |
+
margin-bottom: 4px;
|
46 |
+
}
|
47 |
+
|
48 |
+
.mat-mdc-option {
|
49 |
+
.mat-icon {
|
50 |
+
margin-right: 8px;
|
51 |
+
vertical-align: middle;
|
52 |
+
}
|
53 |
+
}
|