-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUploadForm.scss
More file actions
142 lines (130 loc) · 2.63 KB
/
UploadForm.scss
File metadata and controls
142 lines (130 loc) · 2.63 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
.UploadForm {
max-width: 1000px;
padding: 1em 3em;
> * + * {
margin-block-start: 1em;
}
h2 {
color: #222;
font-size: 1.5em;
font-weight: 500;
margin: 0;
padding: 22px 0 8px 0;
}
.formSection {
> & {
margin-block-start: 2em;
}
display: flex;
flex-direction: column;
gap: 0.5em;
> label {
font-size: medium;
}
#data-set-name {
width: 300px;
}
}
.additionalDetailsFormSection {
> & {
margin-block-start: 2em;
}
display: flex;
flex-direction: column;
gap: 0.5em;
padding-right: 1em;
> label {
font-size: medium;
}
}
.formInfo {
width: 90%;
text-align: justify;
font-size: 1.2em;
}
select {
max-width: 450px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
& &--UploadMethodSelector {
margin-top: 2em;
margin-bottom: 3.5em;
li > label {
display: grid;
grid-template-columns: auto 10em 1fr;
align-items: baseline;
label {
font-size: medium;
margin-left: 0.25em;
}
}
}
& &--UploadMethodSelector &--FixedUploadItem {
display: grid;
grid-template-columns: 10em 1fr;
label {
font-size: medium;
margin-left: 0.25em;
}
}
& &--UploadMethodField {
&__disabled {
opacity: 0.3;
pointer-events: none;
}
}
& &--NestedInputContainer {
border-style: solid;
border-width: 0.5px;
border-color: lightgray;
}
& &--NestedInputContainer &--NestedInputTitle {
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 1.5em;
margin-top: 0.5em;
margin-right: 0.5em;
}
& &--NestedInputContainer &--NestedInputFields {
display: grid;
grid-template-columns: 11em 50em;
row-gap: 1.5em;
align-items: baseline;
padding-left: 2.5em;
margin-bottom: 1em;
}
& &--AdditionalDetails {
summary {
list-style-position: outside;
margin-left: 2em;
padding: 10px 10px 10px 20px;
cursor: pointer;
font-size: 1.2em;
&::marker {
font-size: 1.2em; // Change the size of the marker
}
}
padding: 10px;
background-color: #fafafa;
color: #333;
}
& &--OrganismInputFields {
display: grid;
grid-template-columns: 10em 30em 11em;
align-items: center;
padding-left: 2.5em;
column-gap: 1em;
}
}
.wdk-RadioList.horizontal {
display: flex;
flex-direction: row;
flex-wrap: wrap; /* Optional: allows wrapping to the next line if there are too many items */
gap: 1em;
}
.wdk-RadioList.horizontal li {
list-style: none;
}