@@ -451,6 +457,10 @@ const hasShootWorkerGroupWarning = computed(() => {
max-width: 350px;
}
+ .readiness-container {
+ max-width: 120px;
+ }
+
.small-container {
max-height: 37px;
max-width: 350px;
diff --git a/frontend/src/components/GStatusTag.vue b/frontend/src/components/GStatusTag.vue
index c60a355ded..1634c94de9 100644
--- a/frontend/src/components/GStatusTag.vue
+++ b/frontend/src/components/GStatusTag.vue
@@ -5,7 +5,12 @@ SPDX-License-Identifier: Apache-2.0
-->
-
+
- {{ chipText }}
+ {{ chipText }}
{
+ this.selfExpanded = true
+ }, 100)
+ },
+ onMouseLeave () {
+ clearTimeout(this.expandTimer)
+ },
+ },
}
diff --git a/frontend/src/components/GStatusTags.vue b/frontend/src/components/GStatusTags.vue
index c3aadf9640..eaa035c675 100644
--- a/frontend/src/components/GStatusTags.vue
+++ b/frontend/src/components/GStatusTags.vue
@@ -5,7 +5,13 @@ SPDX-License-Identifier: Apache-2.0
-->
-
+
@@ -40,6 +47,8 @@ SPDX-License-Identifier: Apache-2.0
diff --git a/frontend/src/plugins/vuetify.js b/frontend/src/plugins/vuetify.js
index 509a90a8c6..9f51356d39 100644
--- a/frontend/src/plugins/vuetify.js
+++ b/frontend/src/plugins/vuetify.js
@@ -73,6 +73,7 @@ const variations = {
'info',
'success',
'warning',
+ 'unknown',
'main-background',
'toolbar-background',
],