mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge pull request #869 from majick/chat-delete-spin
Proposed: Spinning cute skull when hovering PastChat_cross
This commit is contained in:
@@ -3040,9 +3040,22 @@ h5 {
|
|||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.PastChat_cross:hover {
|
.PastChat_cross:hover {
|
||||||
color: red;
|
color: red;
|
||||||
filter: drop-shadow(0 0 2px red);
|
filter: drop-shadow(0 0 2px red);
|
||||||
|
-webkit-animation: infinite-spinning 1s ease-out 0s infinite normal;
|
||||||
|
animation: infinite-spinning 1s ease-out 0s infinite normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HEINOUS */
|
||||||
|
@keyframes infinite-spinning {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#export_character_div {
|
#export_character_div {
|
||||||
|
Reference in New Issue
Block a user