| |
| |
|
|
|
|
|
|
| .floating-add-btn {
|
| filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
|
| transition: all 0.2s ease-in-out;
|
| }
|
|
|
| .floating-add-btn:hover {
|
| transform: scale(1.05);
|
| filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.15));
|
| }
|
|
|
| .floating-add-btn:active {
|
| transform: scale(0.98);
|
| }
|
|
|
|
|
| .back-to-top {
|
| position: fixed;
|
| bottom: 20px;
|
| right: 20px;
|
| width: 48px;
|
| height: 48px;
|
| border-radius: 50%;
|
| background-color: #0284c7;
|
| color: white;
|
| display: flex;
|
| align-items: center;
|
| justify-content: center;
|
| cursor: pointer;
|
| opacity: 0;
|
| visibility: hidden;
|
| transition: all 0.3s ease;
|
| z-index: 999;
|
| box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
| }
|
|
|
| .back-to-top.visible {
|
| opacity: 0.9;
|
| visibility: visible;
|
| }
|
|
|
| .back-to-top:hover {
|
| background-color: #0369a1;
|
| transform: translateY(-3px);
|
| box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
|
| opacity: 1;
|
| }
|
|
|
|
|
| .simplified-modal {
|
| max-width: 400px;
|
| border-radius: 12px;
|
| }
|
|
|
| .modal-field-hint {
|
| font-size: 11px;
|
| color: #6b7280;
|
| margin-left: 4px;
|
| }
|
|
|
|
|
| .backdrop-blur-md {
|
| backdrop-filter: blur(8px);
|
| -webkit-backdrop-filter: blur(8px);
|
| }
|
|
|
|
|
| .input-card {
|
| transition: all 0.3s ease;
|
| }
|
|
|
| .input-card:hover {
|
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
| transform: translateY(-1px);
|
| }
|
|
|
|
|
| .clipboard-btn {
|
| background: transparent;
|
| transition: all 0.2s ease;
|
| border-radius: 50%;
|
| padding: 4px;
|
| }
|
|
|
| .clipboard-btn:hover {
|
| background: rgba(2, 132, 199, 0.1);
|
| transform: scale(1.1);
|
| }
|
|
|
|
|
| .shortcut-hint {
|
| position: absolute;
|
| bottom: -18px;
|
| right: 4px;
|
| font-size: 10px;
|
| color: rgba(255, 255, 255, 0.8);
|
| background: rgba(0, 0, 0, 0.5);
|
| padding: 1px 4px;
|
| border-radius: 3px;
|
| pointer-events: none;
|
| }
|
|
|
| .shortcut-hint-box {
|
| font-size: 10px;
|
| color: #9ca3af;
|
| display: flex;
|
| align-items: center;
|
| position: absolute;
|
| bottom: 3px;
|
| left: 6px;
|
| }
|
|
|
| .shortcut-hint-box svg {
|
| margin-right: 4px;
|
| width: 14px;
|
| height: 14px;
|
| }
|
|
|
|
|
| .bulk-toolbar {
|
| box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.1);
|
| backdrop-filter: blur(10px);
|
| -webkit-backdrop-filter: blur(10px);
|
| }
|
|
|
|
|
| .bg-blue-50 {
|
| position: relative;
|
| overflow: hidden;
|
| }
|
|
|
| .bg-blue-50::before {
|
| content: '';
|
| position: absolute;
|
| inset: 0;
|
| background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.1) 50%, rgba(59, 130, 246, 0.05) 100%);
|
| z-index: -1;
|
| opacity: 0.7;
|
| }
|
|
|