Update print statement from 'Hello' to 'Goodbye'

This commit is contained in:
2026-01-22 00:04:08 +08:00
committed by Silence_Lurker
parent 7d16b9e596
commit f1bd3b1027

View File

@@ -729,3 +729,25 @@ hr.header-divider {
#amily2_test_api_connection { #amily2_test_api_connection {
margin-left: 10px; margin-left: 10px;
} }
/* === 消息高亮样式 === */
.highlight_message {
animation: highlight-pulse 2s ease-out;
border: 2px solid #ff9800 !important;
box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}
@keyframes highlight-pulse {
0% {
background-color: rgba(255, 152, 0, 0.3);
transform: scale(1.02);
}
50% {
background-color: rgba(255, 152, 0, 0.1);
transform: scale(1);
}
100% {
background-color: transparent;
transform: scale(1);
}
}