Skip to content

Commit 3e41f31

Browse files
authored
Merge pull request #64 from javiermarinros/namespaces-view
Namespace view
2 parents 1c11a67 + c7e325a commit 3e41f31

File tree

17 files changed

+1127
-488
lines changed

17 files changed

+1127
-488
lines changed

assets/css/styles.css

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@
171171
.pointer-events-none {
172172
pointer-events: none;
173173
}
174+
.invisible {
175+
visibility: hidden;
176+
}
174177
.fixed {
175178
position: fixed;
176179
}
@@ -210,6 +213,9 @@
210213
.mt-0 {
211214
margin-top: calc(0.25rem * 0);
212215
}
216+
.mr-1 {
217+
margin-right: calc(0.25rem * 1);
218+
}
213219
.mr-3 {
214220
margin-right: calc(0.25rem * 3);
215221
}
@@ -247,18 +253,27 @@
247253
.h-1\.5 {
248254
height: calc(0.25rem * 1.5);
249255
}
256+
.h-2 {
257+
height: calc(0.25rem * 2);
258+
}
250259
.h-4 {
251260
height: calc(0.25rem * 4);
252261
}
253262
.h-90 {
254263
height: calc(0.25rem * 90);
255264
}
265+
.h-full {
266+
height: 100%;
267+
}
256268
.min-h-screen {
257269
min-height: 100vh;
258270
}
259271
.w-4 {
260272
width: calc(0.25rem * 4);
261273
}
274+
.w-12 {
275+
width: calc(0.25rem * 12);
276+
}
262277
.w-16 {
263278
width: calc(0.25rem * 16);
264279
}
@@ -295,6 +310,9 @@
295310
.rotate-180 {
296311
rotate: 180deg;
297312
}
313+
.animate-spin {
314+
animation: spin 1s linear infinite;
315+
}
298316
.cursor-pointer {
299317
cursor: pointer;
300318
}
@@ -554,6 +572,10 @@
554572
--tw-font-weight: 700;
555573
font-weight: 700;
556574
}
575+
.font-medium {
576+
--tw-font-weight: 500;
577+
font-weight: 500;
578+
}
557579
.font-semibold {
558580
--tw-font-weight: 600;
559581
font-weight: 600;
@@ -621,9 +643,15 @@
621643
.opacity-0 {
622644
opacity: 0%;
623645
}
646+
.opacity-25 {
647+
opacity: 25%;
648+
}
624649
.opacity-30 {
625650
opacity: 30%;
626651
}
652+
.opacity-75 {
653+
opacity: 75%;
654+
}
627655
.shadow-lg {
628656
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
629657
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -642,6 +670,11 @@
642670
transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
643671
transition-duration: var(--tw-duration, 150ms);
644672
}
673+
.transition-transform {
674+
transition-property: transform, translate, scale, rotate;
675+
transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
676+
transition-duration: var(--tw-duration, 150ms);
677+
}
645678
.duration-300 {
646679
--tw-duration: 300ms;
647680
transition-duration: 300ms;
@@ -1017,6 +1050,11 @@
10171050
background-color: oklch(27.8% 0.033 256.848);
10181051
}
10191052
}
1053+
.dark\:bg-gray-800\/50 {
1054+
&:where(.dark, .dark *) {
1055+
background-color: color-mix(in oklab, oklch(27.8% 0.033 256.848) 50%, transparent);
1056+
}
1057+
}
10201058
.dark\:bg-gray-900 {
10211059
&:where(.dark, .dark *) {
10221060
background-color: oklch(21% 0.034 264.665);
@@ -1597,6 +1635,16 @@
15971635
syntax: "*";
15981636
inherits: false;
15991637
}
1638+
@keyframes spin {
1639+
to {
1640+
transform: rotate(360deg);
1641+
}
1642+
}
1643+
@keyframes spin {
1644+
to {
1645+
transform: rotate(360deg);
1646+
}
1647+
}
16001648
@layer properties {
16011649
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
16021650
*, ::before, ::after, ::backdrop {

assets/icons/namespaceview.svg

Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)