Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for BOTTOM (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/css/chat.css

        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
    }
    
    .empty-state-icon i {
        font-size: 2rem;
        color: white;
    }
    
    .empty-state-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #172b4d;
        margin-bottom: 0.5rem;
    }
    
    .empty-state-description {
        font-size: 0.9375rem;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. src/main/webapp/js/chat.js

         */
        function updateUI() {
            elements.sendBtn.prop('disabled', state.isProcessing);
            elements.chatInput.prop('disabled', state.isProcessing);
        }
    
        /**
         * Scroll chat to bottom
         */
        function scrollToBottom() {
            elements.chatMessages.scrollTop(elements.chatMessages[0].scrollHeight);
        }
    
        /**
         * Render Markdown text to sanitized HTML.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top