1
0

Add paw icon for queued items in commit list

This commit is contained in:
2025-05-26 11:32:38 +02:00
parent e5e5acc012
commit 624baf0cc9
2 changed files with 23 additions and 3 deletions

View File

@@ -191,7 +191,17 @@
1px 1px 2px rgba(0,0,0,0.25),
0px 1px 1px color-mix(in srgb, currentColor 40%, black);
}
/* Füge das in deine CSS ein */
.paw-queued {
opacity: 0.65;
filter: drop-shadow(0 2px 2px rgba(0,0,0,0.10));
transition: transform 0.18s cubic-bezier(0.4,0.2,0.6,1);
pointer-events: none;
}
li:hover .paw-queued {
opacity: 0.88;
filter: drop-shadow(0 3px 4px rgba(0,0,0,0.17));
}
</style>
</head>
<body class="flex h-screen bg-white">