Mode Gelap disimpan
Logo Galaxy Media

GALAXY MEDIA

Sistem Pekuliahan Terintegrasi

/* Desktop: Large size */ @media (min-width: 1025px) and (max-width: 1599px) { #chat-popup-container { width: 700px !important; height: 750px !important; } } /* Extra large desktop: Maximum size */ @media (min-width: 1600px) { #chat-popup-container { width: 800px !important; height: 800px !important; } } /* Resizer styling */ #chat-resizer.resizing { background: #3b82f6 !important; } /* Chat search suggestions dropdown */ #chat-search-suggestions { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .chat-suggestion-item { transition: all 0.15s ease; } .chat-suggestion-item:hover { transform: translateX(2px); } .chat-suggestion-item:active { transform: scale(0.98); } /* Notification animations */ @keyframes slideInRight { from { transform: translateX(400px); opacity: 0; } to { transform: translateX(0); opacity: 1; } } @keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(400px); opacity: 0; } } /* Mobile adjustments (max-width: 640px) */ @media (max-width: 640px) { #chat-float-btn { bottom: 1.25rem !important; right: 1.25rem !important; width: 52px !important; height: 52px !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; } #chat-float-btn i { font-size: 1.375rem !important; } /* Mobile chat list wider */ #chat-list-sidebar { width: 140px !important; } /* Mobile chat header more compact */ #chat-popup-container h3 { font-size: 0.95rem !important; } #chat-popup-container .px-5 { padding-left: 1rem !important; padding-right: 1rem !important; } #chat-popup-container .py-4 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; } /* Mobile message bubbles */ .chat-message-bubble { max-width: 85% !important; font-size: 0.8rem !important; } /* Mobile input smaller */ #chat-input { font-size: 0.85rem !important; padding: 0.6rem 0.9rem !important; } #chat-send-btn { padding: 0.6rem 1rem !important; } } /* Tablet adjustments (640px - 1024px) */ @media (min-width: 641px) and (max-width: 1024px) { #chat-popup-container { width: 380px !important; height: 550px !important; } #chat-list-sidebar { width: 160px !important; } } /* Chat item compact style for popup */ .chat-item { padding: 0.75rem; border-bottom: 1px solid #f3f4f6; cursor: pointer; transition: background 0.2s; } .chat-item:hover { background: #f9fafb; } .chat-item.active { background: #eff6ff; border-left: 3px solid #3b82f6; } .chat-item.unread { background: #fef3c7; } .chat-item-avatar img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; } .chat-item-content { flex: 1; min-width: 0; } .chat-item-name { font-size: 11px; font-weight: 600; color: #1f2937; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .chat-item-nim { font-size: 9px; color: #9ca3af; margin-top: 1px; } .chat-item-preview { font-size: 10px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; } .chat-item-meta { flex-shrink: 0; text-align: right; } .chat-item-time { font-size: 9px; color: #9ca3af; white-space: nowrap; } .chat-item-badge { display: inline-block; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px; background: #ef4444; color: white; font-size: 9px; font-weight: bold; text-align: center; line-height: 16px; margin-top: 4px; } /* Dark mode styles for compact chat items */ .dark .chat-item { border-bottom-color: #334155; } .dark .chat-item:hover { background: #334155; } .dark .chat-item.active { background: #1e3a8a; border-left-color: #60a5fa; } .dark .chat-item.unread { background: #854d0e; } .dark .chat-item-name { color: #f1f5f9; } .dark .chat-item-nim { color: #64748b; } .dark .chat-item-preview { color: #94a3b8; } .dark .chat-item-time { color: #64748b; } .dark .chat-item-badge { background: #dc2626; } /* Custom scrollbar for chat popup */ .custom-scrollbar::-webkit-scrollbar { width: 6px; } .custom-scrollbar::-webkit-scrollbar-track { background: #f3f4f6; } .custom-scrollbar::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; } .custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #9ca3af; } /* Chat message styles */ .chat-message { margin-bottom: 1rem; display: flex; flex-direction: column; } .chat-message.sent { align-items: flex-end; } .chat-message.received { align-items: flex-start; } .chat-message-bubble { max-width: 75%; padding: 0.625rem 0.875rem; border-radius: 1rem; font-size: 0.8125rem; line-height: 1.4; word-wrap: break-word; } .chat-message.sent .chat-message-bubble { background: #3b82f6; color: white; border-bottom-right-radius: 0.25rem; } .chat-message.received .chat-message-bubble { background: white; color: #1f2937; border: 1px solid #e5e7eb; border-bottom-left-radius: 0.25rem; } .chat-message-time { font-size: 0.625rem; color: #9ca3af; margin-top: 0.25rem; }