File tree 12 files changed +23
-15
lines changed
namespaces/[namespace]/archival
12 files changed +23
-15
lines changed Original file line number Diff line number Diff line change 40
40
<CodeBlock content ={getCodeBlockValue (value )} {inline } />
41
41
</div >
42
42
{:else if shouldDisplayAsExecutionLink (key )}
43
- <div class =" flex w-full flex-wrap gap-1 pr-1" >
43
+ <div class =" flex w-full flex-wrap items-center gap-1 pr-1" >
44
44
<p class ="mr-3 truncate text-sm" >{format (key )}</p >
45
45
<div class =" truncate text-sm" >
46
46
<Copyable content ={value } container-class =" xl:flex-row" >
59
59
</div >
60
60
</div >
61
61
{:else if shouldDisplayChildWorkflowLink (key , attributes )}
62
- <div class =" flex w-full flex-wrap gap-1 pr-1" >
62
+ <div class =" flex w-full flex-wrap items-center gap-1 pr-1" >
63
63
<p class ="truncate text-sm" >{format (key )}</p >
64
64
<div class =" truncate text-sm" >
65
65
<Copyable content ={value } container-class =" xl:flex-row" >
78
78
</div >
79
79
</div >
80
80
{:else if shouldDisplayAsTaskQueueLink (key )}
81
- <div class =" flex w-full flex-wrap gap-1 pr-1" >
81
+ <div class =" flex w-full flex-wrap items-center gap-1 pr-1" >
82
82
<p class ="mr-3 truncate text-sm" >{format (key )}</p >
83
83
<div class =" truncate text-sm " >
84
84
<Copyable content ={value } container-class =" " >
93
93
</div >
94
94
</div >
95
95
{:else }
96
- <div class =" flex w-full flex-wrap gap-1 pr-1" >
96
+ <div class =" flex w-full flex-wrap items-center gap-1 pr-1" >
97
97
<p class ="mr-3 truncate text-sm" >{format (key )}</p >
98
98
<p class =" truncate text-right text-sm xl:text-left" >
99
99
<span
Original file line number Diff line number Diff line change 172
172
173
173
<style lang =" postcss" >
174
174
.row {
175
- @apply flex table-row flex-wrap items-center border-gray-900 text-sm no-underline xl :py-3 xl:text-base;
175
+ @apply table-row flex-wrap items-center border-gray-900 text-sm no-underline xl :py-3 xl:text-base;
176
176
}
177
177
178
178
.row:hover {
179
- @apply z-50 cursor-pointer bg-gray-50 ;
179
+ @apply z-50 cursor-pointer bg-gradient-to-br from -blue-100 to -purple-100 ;
180
180
}
181
181
182
182
.expanded.row {
183
183
@apply bg-blue-50;
184
184
}
185
185
186
- .failure ,
187
- .failure:hover {
186
+ .failure {
188
187
@apply bg-red-50;
189
188
}
190
189
191
190
.failure .event-name {
192
191
@apply text-red-700;
193
192
}
194
193
195
- .canceled ,
196
- .canceled:hover {
194
+ .canceled {
197
195
@apply bg-yellow-50;
198
196
}
199
197
200
198
.canceled .event-name {
201
199
@apply text-yellow-700;
202
200
}
203
201
204
- .terminated ,
205
- .terminated:hover {
202
+ .terminated {
206
203
@apply bg-pink-50;
207
204
}
208
205
211
208
}
212
209
213
210
.expanded-cell {
214
- @apply flex table-cell w-full flex-wrap text-sm no-underline xl :text-base;
211
+ @apply table-cell w-full flex-wrap text-sm no-underline xl :text-base;
215
212
}
216
213
217
214
.typedError .expanded-cell {
230
227
@apply z-50 cursor-pointer bg-gradient-to-br from -blue-100 to -purple-100;
231
228
}
232
229
230
+ .canceled:hover ,
233
231
.active.canceled {
234
232
@apply bg-gradient-to-br from -yellow-100 to -yellow-200;
235
233
}
236
234
235
+ .failure:hover ,
237
236
.active.failure {
238
237
@apply bg-gradient-to-br from -red-100 to -red-200;
239
238
}
240
239
240
+ .terminated:hover ,
241
241
.active.terminated {
242
242
@apply bg-gradient-to-br from -pink-100 to -pink-200;
243
243
}
Original file line number Diff line number Diff line change 55
55
class =" w-full"
56
56
placeholder =" Search"
57
57
use:rootDocumentHandler
58
+ on:keydown |stopPropagation
58
59
bind:value ={searchValue }
59
60
bind:this ={searchField }
60
61
/>
Original file line number Diff line number Diff line change 27
27
{placeholder }
28
28
autocomplete =" off"
29
29
on:input
30
+ on:keydown |stopPropagation
30
31
/>
31
32
<div >
32
33
<Button class ="m-2" type ="submit" >{label }</Button >
Original file line number Diff line number Diff line change 62
62
}
63
63
64
64
.gray {
65
- @apply bg-gray-100 text-gray-900;
65
+ @apply bg-gray-200 text-gray-900;
66
66
}
67
67
68
68
.orange {
Original file line number Diff line number Diff line change 29
29
placeholder =" Endpoint"
30
30
data-cy =" data-encoder-endpoint-input"
31
31
bind:value ={endpoint }
32
+ on:keydown |stopPropagation
32
33
/>
33
34
{#if error }
34
35
<small data-cy =" data-encoder-endpoint-error" class =" text-red-700"
Original file line number Diff line number Diff line change 14
14
placeholder =" Port"
15
15
data-cy =" data-encoder-port-input"
16
16
bind:value ={port }
17
+ on:keydown |stopPropagation
17
18
/>
18
19
</div >
Original file line number Diff line number Diff line change 106
106
bind:this ={input }
107
107
bind:value ={displayValue }
108
108
on:blur ={handleBlur }
109
- on:keydown ={handleKeydown }
109
+ on:keydown | stopPropagation ={handleKeydown }
110
110
on:paste ={handlePaste }
111
111
/>
112
112
</div >
Original file line number Diff line number Diff line change 20
20
on:change
21
21
on:focus
22
22
on:blur
23
+ on:keydown |stopPropagation
23
24
/>
24
25
<div class ="error-msg" aria-live ={isValid ? ' off' : ' assertive' }>
25
26
{#if ! isValid }
Original file line number Diff line number Diff line change 224
224
class =" block w-full border border-gray-200 rounded-md p-2 mt-4"
225
225
placeholder =" Enter a reason"
226
226
bind:value ={reason }
227
+ on:keydown |stopPropagation
227
228
/>
228
229
</div >
229
230
</Modal >
Original file line number Diff line number Diff line change 30
30
placeholder ={name }
31
31
{id }
32
32
bind:value ={_value }
33
+ on:keydown |stopPropagation
33
34
/>
34
35
</div >
35
36
Original file line number Diff line number Diff line change 53
53
<input
54
54
class =" w-full"
55
55
placeholder =" Search"
56
+ on:keydown |stopPropagation
56
57
bind:value ={searchValue }
57
58
bind:this ={searchField }
58
59
/>
You can’t perform that action at this time.
0 commit comments