Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for dropdown (0.09 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

    										<i class="fa fa-folder-o me-1" aria-hidden="true"></i><la:message key="${facetQueryView.title}" />
    										<span class="filter-group-badge badge rounded-pill bg-primary d-none">0</span>
    									</button>
    									<div class="dropdown-menu filter-dropdown-menu">
    										<div class="filter-search-wrapper">
    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/WEB-INF/orig/view/chat/chat.jsp

    										<i class="fa fa-folder-o me-1" aria-hidden="true"></i><la:message key="${facetQueryView.title}" />
    										<span class="filter-group-badge badge rounded-pill bg-primary d-none">0</span>
    									</button>
    									<div class="dropdown-menu filter-dropdown-menu">
    										<div class="filter-search-wrapper">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. src/main/webapp/js/chat.js

                array.splice(index, 1);
            }
        }
    
        /**
         * Update badge for a specific dropdown group
         */
        function updateGroupBadge(dropdown) {
            var count = dropdown.find('.filter-check:checked').length;
            var badge = dropdown.find('.filter-group-badge');
            if (count > 0) {
                badge.text(count).removeClass('d-none');
            } else {
    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)
  4. src/main/webapp/css/chat.css

        padding: 0.75rem 1rem;
    }
    
    .filter-dropdowns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-group-toggle {
        font-size: 0.8125rem;
        padding: 0.25rem 0.625rem;
        border-radius: 16px;
        transition: all 0.2s ease;
    }
    
    .filter-group-toggle .filter-group-badge {
        font-size: 0.625rem;
        margin-left: 0.25rem;
    }
    
    .filter-dropdown-menu {
        min-width: 220px;
    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)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

                return entity;
            });
        }
    
        /**
         * Registers roles and labels for the dropdown lists.
         *
         * @param data the render data
         */
        protected void registerRolesAndLabels(final RenderData data) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 21.8K bytes
    - Click Count (0)
Back to Top