@@ -12,6 +12,7 @@ defineProps({
12
12
<span class =" flex font-semibold h-full invisible items-center mr-40 px-6" >
13
13
Kubernetes Explorer
14
14
</span >
15
+
15
16
<div
16
17
class =" broder-box flex h-full hover:bg-base-300 hover:tooltip-open tooltip tooltip-top z-50"
17
18
data-tip =" Open web terminal"
@@ -26,6 +27,7 @@ defineProps({
26
27
</span >
27
28
</button >
28
29
</div >
30
+
29
31
<div
30
32
class =" broder-box flex h-full hover:bg-base-300 hover:tooltip-open tooltip tooltip-top z-50"
31
33
data-tip =" Watch cluster events - Coming soon!"
@@ -40,7 +42,48 @@ defineProps({
40
42
</button >
41
43
</div >
42
44
43
- <div class =" ml-auto mr-1" >
45
+ <div
46
+ class =" broder-box flex h-full hover:bg-base-300 z-50"
47
+ >
48
+ <div class =" dropdown dropdown-hover dropdown-top" >
49
+ <label
50
+ tabindex =" 0"
51
+ class =" btn btn-ghost btn-xs gap-1 hover:opacity-100 hover:shadow-none normal-case opacity-70 rounded-none"
52
+ >
53
+ <div class =" bg-[rgb(21,128,61)] border border-black h-4 rounded-sm w-4" />
54
+ <div class =" bg-[rgb(36,158,235)] border border-black h-4 rounded-sm w-4" />
55
+ <div class =" bg-[rgb(245,158,11)] border border-black h-4 rounded-sm w-4" />
56
+ <div class =" bg-[rgb(239,68,68)] border border-black h-4 rounded-sm w-4" />
57
+ </label >
58
+ <ul
59
+ tabindex =" 0"
60
+ class =" -ml-[50%] bg-base-200 border border-neutral-content dropdown-content flex flex-col gap-y-1 p-2 px-3 rounded-md shadow-lg w-80 z-[50]"
61
+ >
62
+ <h2 class =" font-semibold mb-2 text-base" >
63
+ Color coding of graph objects
64
+ </h2 >
65
+
66
+ <li class =" flex items-center text-sm" >
67
+ <div class =" bg-[rgb(21,128,61)] border border-black h-4 rounded-sm w-4" />  ; - Recently created
68
+ </li >
69
+ <li class =" flex items-center text-sm" >
70
+ <div class =" bg-[rgb(36,158,235)] border border-black h-4 rounded-sm w-4" />  ; - No change for last ~5 sec
71
+ </li >
72
+ <li class =" flex items-center text-sm" >
73
+ <div class =" bg-[rgb(245,158,11)] border border-black h-4 rounded-sm w-4" />  ; - Recently updated
74
+ </li >
75
+ <li class =" flex items-center text-sm" >
76
+ <div class =" bg-[rgb(239,68,68)] border border-black h-4 rounded-sm w-4" />  ; - Deletion timestamp is set
77
+ </li >
78
+
79
+ <p class =" mt-2 text-sm" >
80
+ Objects are removed from the graph ~5 sec after they disappear from the API response.
81
+ </p >
82
+ </ul >
83
+ </div >
84
+ </div >
85
+
86
+ <div class =" ml-auto mr-2" >
44
87
<a
45
88
target =" _blank"
46
89
href =" https://github.com/iximiuz/kexp"
0 commit comments