Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for sendBtn (0.03 seconds)

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

  1. src/main/webapp/WEB-INF/view/chat/chat.jsp

    									placeholder="<la:message key="labels.chat_input_placeholder" />"
    									rows="1" maxlength="4000"
    									aria-label="<la:message key="labels.chat_input_placeholder" />"></textarea>
    								<button type="button" id="sendBtn" class="btn btn-primary" aria-label="<la:message key="labels.chat_send" />">
    									<i class="fa fa-paper-plane" aria-hidden="true"></i>
    								</button>
    							</div>
    							<div class="input-footer">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  2. src/main/webapp/js/chat.js

         */
        function init(options) {
            $.extend(true, config, options);
    
            elements = {
                chatMessages: $('#chatMessages'),
                chatInput: $('#chatInput'),
                sendBtn: $('#sendBtn'),
                newChatBtn: $('#newChatBtn'),
                statusArea: $('#statusArea'),
                emptyState: $('#emptyState'),
                progressIndicator: $('#progressIndicator'),
    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)
  3. src/main/webapp/css/chat.css

        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    
    .card-footer #chatInput:focus {
        border-color: #0052cc;
        box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2);
    }
    
    .card-footer #sendBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0 8px 8px 0;
        min-width: 48px;
        background: linear-gradient(135deg, #0052cc 0%, #0747a6 100%);
    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)
Back to Top