@@ -18,6 +18,66 @@ vaadin-dialog-overlay::part(title) {
18
18
margin-inline-start : 0 ;
19
19
}
20
20
21
+ /* set the width of the notification */
22
+ .notification-dialog ::part (overlay ) {
23
+ width : 36.75rem ;
24
+ }
25
+
26
+ .notification-dialog .content {
27
+ width : 100% ;
28
+ }
29
+
30
+ /* notification dialog header */
31
+ .notification-dialog > [slot = "header" ] {
32
+ display : flex;
33
+ align-items : center;
34
+ justify-items : flex-start;
35
+ gap : var (--lumo-space-s );
36
+ }
37
+
38
+ .notification-dialog .title {
39
+ font-family : var (--lumo-font-family );
40
+ line-height : var (--lumo-line-height-m );
41
+ font-size : var (--lumo-font-size-xl );
42
+ margin : 0 ;
43
+ }
44
+
45
+ /* icon in header */
46
+ .notification-dialog > [slot = "header" ] vaadin-icon {
47
+ width : 1.83rem ;
48
+ height : 1.83rem ;
49
+ margin : 0.46rem ;
50
+ margin-inline-start : calc (var (--lumo-space-l ) - var (--lumo-space-m ));
51
+ }
52
+
53
+ .notification-dialog .error-icon {
54
+ fill : var (--lumo-error-color );
55
+ }
56
+
57
+ .notification-dialog .warning-icon {
58
+ fill : var (--lumo-warning-color );
59
+ }
60
+
61
+ .notification-dialog .info-icon {
62
+ fill : var (--lumo-primary-color );
63
+ }
64
+
65
+ /* experimental groups exist dialog on variable edit */
66
+ .existing-groups-prevent-variable-edit .content .experimental-group-count {
67
+ font-weight : bold;
68
+ }
69
+
70
+ /* samples exist on variable edit */
71
+ .existing-samples-prevent-variable-edit .content .sample-count {
72
+ font-weight : bold;
73
+ }
74
+
75
+ /* samples exist on group edit */
76
+ .existing-samples-prevent-group-edit .content .sample-count {
77
+ font-weight : bold;
78
+ }
79
+
80
+
21
81
.add-user-to-project-dialog ::part (overlay ) {
22
82
height : 100% ;
23
83
min-width : 66vw ;
@@ -27,8 +87,14 @@ vaadin-dialog-overlay::part(title) {
27
87
height : 100%
28
88
}
29
89
90
+ .batch-registration-dialog vaadin-tabsheet {
91
+ height : 100% ;
92
+ width : 100% ;
93
+ }
94
+
30
95
.batch-registration-dialog ::part (overlay ) {
31
96
min-width : 66vw ;
97
+ height : 100% ;
32
98
}
33
99
34
100
.batch-registration-dialog .stepper vaadin-tabs {
@@ -54,7 +120,6 @@ vaadin-dialog-overlay::part(title) {
54
120
55
121
.batch-registration-dialog .batch-content .data-type-information {
56
122
display : flex;
57
- height : inherit;
58
123
flex-direction : column;
59
124
}
60
125
@@ -86,10 +151,14 @@ vaadin-dialog-overlay::part(title) {
86
151
gap : var (--lumo-space-s );
87
152
}
88
153
154
+ .batch-registration-dialog .sample-spreadsheet-container {
155
+ width : 100% ;
156
+ height : 100% ;
157
+ }
158
+
89
159
.batch-registration-dialog .sample-spreadsheet {
90
- /*Todo Find solution on how to let spreadsheet set its size*/
91
160
width : 100% ;
92
- height : 60 vh ;
161
+ height : 100 % ;
93
162
}
94
163
95
164
.create-project-dialog .content {
0 commit comments