Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for Bottom (0.11 seconds)

  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/css/admin/style.css

    }
    
    input[type="file"].form-control:not([type="file"]) {
    	height: 0% !important;
    }
    
    #result ol {
    	list-style: none !important;
    	padding-left: 0;
    }
    
    #result ol li {
    	margin-bottom: 0;
    }
    
    #result .title {
    	margin: 1.0em 0 0.5em 0;
    	font-size: 120%;
    	font-weight: 600;
    }
    
    section.content table {
    	display: table;
    	table-layout: fixed;
    	width: 100%;
    }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    	</button>
    	<div class="modal fade" id="confirmToDelete" tabindex="-1"
    		role="alertdialog">
    		<div class="modal-dialog">
    			<div class="modal-content">
    				<div class="modal-header" style="border-bottom: 2px solid #dc3545;">
    					<h4 class="modal-title">
    						<i class="fa fa-exclamation-triangle text-danger" aria-hidden="true"></i>
    						<la:message key="labels.crud_title_delete" />
    					</h4>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3K bytes
    - Click Count (0)
  4. 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