Features: - Tree view mode for categories with expand/collapse - Product count badges with clickable preview popover - Select parent with all children button - Client-side tree filtering (refine search) - Keyboard shortcuts: Ctrl+A (select all), Ctrl+D (clear) - View mode switching between tree/list/columns - Tree view as default for categories, respects user preference Backend: - Add previewCategoryProducts and previewCategoryPages AJAX handlers - Support pagination and filtering in category previews Styling: - Consistent count-badge styling across tree and other views - Loading and popover-open states for count badges Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
700 B
SCSS
32 lines
700 B
SCSS
/**
|
|
* Entity Selector Styles
|
|
* @package prestashop-entity-selector
|
|
* @version 2.0.0
|
|
*
|
|
* Compiles to: assets/css/admin/entity-selector.css
|
|
*/
|
|
|
|
// Foundation
|
|
@use 'variables' as *;
|
|
@use 'mixins' as *;
|
|
|
|
// Layouts
|
|
@use 'layouts/form-integration';
|
|
@use 'layouts/responsive';
|
|
|
|
// Components
|
|
@use 'components/entity-selector';
|
|
@use 'components/dropdown';
|
|
@use 'components/chips';
|
|
@use 'components/groups';
|
|
@use 'components/value-picker';
|
|
@use 'components/modal';
|
|
@use 'components/list-preview';
|
|
@use 'components/schedule';
|
|
@use 'components/tips';
|
|
@use 'components/condition-trait';
|
|
@use 'components/combinations';
|
|
@use 'components/method-dropdown';
|
|
@use 'components/tooltip';
|
|
@use 'components/tree';
|