@appscode/design-system 2.7.10 → 2.7.12
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
|
@@ -77,6 +77,8 @@
|
|
|
77
77
|
.message-details {
|
|
78
78
|
max-width: 768px;
|
|
79
79
|
margin: 0;
|
|
80
|
+
max-height: calc(100vh - 66px);
|
|
81
|
+
overflow-y: auto;
|
|
80
82
|
.table.ac-table {
|
|
81
83
|
background-color: #fff;
|
|
82
84
|
}
|
|
@@ -134,13 +136,12 @@ body:has(.message-details) {
|
|
|
134
136
|
}
|
|
135
137
|
.ac-system-content {
|
|
136
138
|
max-height: calc(100vh - 60px);
|
|
137
|
-
overflow: hidden;
|
|
139
|
+
// overflow: hidden;
|
|
138
140
|
}
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
.message-details {
|
|
142
144
|
max-width: 100%;
|
|
143
|
-
overflow: hidden;
|
|
144
145
|
transition: 0.2s ease-in-out;
|
|
145
146
|
&.is-open {
|
|
146
147
|
// background-color: $primary-light-gray;
|
|
@@ -158,6 +159,28 @@ body:has(.message-details) {
|
|
|
158
159
|
}
|
|
159
160
|
}
|
|
160
161
|
|
|
162
|
+
.inbox-toggle {
|
|
163
|
+
width: 32px;
|
|
164
|
+
height: 32px;
|
|
165
|
+
background-color: #fff;
|
|
166
|
+
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.15);
|
|
167
|
+
border-radius: 50%;
|
|
168
|
+
border: 1px solid $color-border;
|
|
169
|
+
display: flex;
|
|
170
|
+
align-items: center;
|
|
171
|
+
position: absolute;
|
|
172
|
+
display: none;
|
|
173
|
+
left: -18px;
|
|
174
|
+
cursor: pointer;
|
|
175
|
+
top: 24px;
|
|
176
|
+
z-index: 99999;
|
|
177
|
+
transition: 0.3s ease-in-out;
|
|
178
|
+
&:hover {
|
|
179
|
+
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.25);
|
|
180
|
+
border-color: $color-border-dark;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
161
184
|
// transition css
|
|
162
185
|
/* we will explain what these classes do next! */
|
|
163
186
|
.v-enter-active,
|
|
@@ -49,8 +49,8 @@ const OptionDots = defineAsyncComponent(() => import("../option-dots/Options.vue
|
|
|
49
49
|
v-for="(tag, idx) in clusterData.tags"
|
|
50
50
|
:key="idx + tag.value"
|
|
51
51
|
:class="tag.class"
|
|
52
|
-
:data-testid="idx === 0 ? 'cluster-status-text' : undefined"
|
|
53
52
|
class="is-flex is-align-center gap-6"
|
|
53
|
+
data-testid="cluster-tag-text"
|
|
54
54
|
><span v-if="tag?.isSpinner || false" class="is-flex gap-6"> <SvgSpinners270Ring /> </span
|
|
55
55
|
>{{ tag.value }}</span
|
|
56
56
|
>
|