style: unify all button hover to cyan ghost style, drop orange

This commit is contained in:
flym 2026-09-12 03:15:12 +08:00
parent bbc7622d1b
commit a06b5f44c4

View File

@ -178,24 +178,28 @@ select:focus-visible {
}
.button-primary {
border: 1px solid #2a2f36;
background: transparent;
color: #ff812b;
color: #d1d5db;
}
.button-primary:hover {
background: #ff6a00;
color: #0d0f12;
background: rgba(0, 209, 230, 0.1);
border-color: #00d1e6;
color: #f5f7fa;
transform: translateY(-2px);
}
.button-secondary {
border: 1px solid #1677ff;
border: 1px solid #2a2f36;
background: transparent;
color: #dbeafe;
color: #d1d5db;
}
.button-secondary:hover {
background: rgba(22, 119, 255, 0.18);
background: rgba(0, 209, 230, 0.1);
border-color: #00d1e6;
color: #f5f7fa;
transform: translateY(-2px);
}