@kestra-io/ui-libs 0.0.20 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<span class="badge rounded-pill text-color" :class="[`bg-${data.color}`]">{{ clusterName }}</span>
|
|
2
|
+
<span class="badge rounded-pill text-truncate text-color" :class="[`bg-${data.color}`]">{{ clusterName }}</span>
|
|
3
3
|
<div class="top-button-div text-white d-flex">
|
|
4
4
|
<span
|
|
5
5
|
v-if="data.collapsable"
|
|
@@ -82,9 +82,11 @@
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
.badge {
|
|
85
|
-
top: -
|
|
85
|
+
top: -3px;
|
|
86
86
|
position: relative;
|
|
87
87
|
left: -3px;
|
|
88
|
+
display: inline-block;
|
|
89
|
+
max-width: 100%;
|
|
88
90
|
}
|
|
89
91
|
|
|
90
92
|
.text-color {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
class="dependency-node-wrapper rounded-3 border"
|
|
6
6
|
>
|
|
7
7
|
<TaskIcon :custom-icon="{icon: icon}" class="bg-pink rounded" theme="light" />
|
|
8
|
-
<div class="dependency-text d-flex flex-column">
|
|
8
|
+
<div class="dependency-text d-flex flex-column flex-grow-1">
|
|
9
9
|
<div class="dependency-flow-text text-truncate">
|
|
10
10
|
<tooltip :title="data.flowId">
|
|
11
11
|
{{ data.flowId }}
|
|
@@ -114,6 +114,10 @@
|
|
|
114
114
|
box-shadow: 0 12px 12px 0 rgba(130, 103, 158, 0.10);
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
.wrapper {
|
|
118
|
+
width: 26px;
|
|
119
|
+
}
|
|
120
|
+
|
|
117
121
|
.dependency-text {
|
|
118
122
|
margin-left: 0.5rem;
|
|
119
123
|
}
|
package/src/scss/app.scss
CHANGED
|
@@ -20,8 +20,27 @@
|
|
|
20
20
|
font-size: 0.66rem;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
.vue-flow__controls {
|
|
24
|
+
border: 1px solid var(--bs-border-color);
|
|
25
|
+
border-radius: var(--bs-border-radius);
|
|
26
|
+
}
|
|
27
|
+
|
|
23
28
|
.vue-flow__controls-button {
|
|
24
|
-
color: black;
|
|
29
|
+
color: var(--bs-black);
|
|
30
|
+
border-bottom-color: var(--bs-border-color);
|
|
31
|
+
|
|
32
|
+
svg {
|
|
33
|
+
fill: var(--bs-black);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
html.dark & {
|
|
37
|
+
background: var(--bs-card-bg);
|
|
38
|
+
color: var(--bs-white);
|
|
39
|
+
|
|
40
|
+
svg {
|
|
41
|
+
fill: var(--bs-white);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
25
44
|
}
|
|
26
45
|
|
|
27
46
|
.vue-flow__container {
|