@@ -4224,34 +4224,17 @@ class FastSearchCard extends HTMLElement {
42244224 flex-shrink: 0;
42254225 }
42264226
4227- .actions-filter-wrapper {
4228- position: relative;
4229- padding: 5px 0px 16px 0px;
4230- margin: 0 20px;
4231- }
4232-
4233-
4234-
4235- .actions-filter-wrapper::before {
4236- left: 0;
4237- background: linear-gradient(to right, var(--card-background-color), transparent);
4238- }
4239-
4240- .actions-filter-wrapper::after {
4241- right: 0;
4242- background: linear-gradient(to left, var(--card-background-color), transparent);
4243- }
4244-
4227+ /* Actions Filter Chips - Subcategory-Chip Design */
42454228 .actions-filter-chips {
42464229 display: flex;
42474230 gap: 8px;
4248- padding: 5px 20px 5px 0px ;
4231+ padding: 5px 20px 16px 20px ;
42494232 overflow-x: auto;
42504233 scrollbar-width: none;
42514234 -ms-overflow-style: none;
42524235 -webkit-overflow-scrolling: touch;
4236+ transition: all 0.3s ease;
42534237 flex-shrink: 0;
4254- box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.3);
42554238 }
42564239
42574240 .actions-filter-chips::-webkit-scrollbar {
@@ -11936,25 +11919,23 @@ class FastSearchCard extends HTMLElement {
1193611919 <div class="actions-container">
1193711920 <div class="actions-header">
1193811921 <h4>Verfügbare Aktionen für ${item.name}</h4>
11939- <div class="actions-filter-wrapper">
11940- <div class="actions-filter-chips">
11941- <button class="action-filter-chip active" data-action-filter="all">
11942- Alle <span class="chip-count" id="actions-all-count">0</span>
11943- </button>
11944- <button class="action-filter-chip" data-action-filter="favorites" style="display: none;">
11945- Favoriten <span class="chip-count" id="actions-favorites-count">0</span>
11946- </button>
11947- <button class="action-filter-chip" data-action-filter="scenes">
11948- Szenen <span class="chip-count" id="actions-scenes-count">0</span>
11949- </button>
11950- <button class="action-filter-chip" data-action-filter="scripts">
11951- Skripte <span class="chip-count" id="actions-scripts-count">0</span>
11952- </button>
11953- <button class="action-filter-chip" data-action-filter="automations">
11954- Automationen <span class="chip-count" id="actions-automations-count">0</span>
11955- </button>
11956- </div>
11957- </div>
11922+ <div class="actions-filter-chips">
11923+ <button class="action-filter-chip active" data-action-filter="all">
11924+ Alle <span class="chip-count" id="actions-all-count">0</span>
11925+ </button>
11926+ <button class="action-filter-chip" data-action-filter="favorites" style="display: none;">
11927+ ⭐ Favoriten <span class="chip-count" id="actions-favorites-count">0</span>
11928+ </button>
11929+ <button class="action-filter-chip" data-action-filter="scenes">
11930+ 🎬 Szenen <span class="chip-count" id="actions-scenes-count">0</span>
11931+ </button>
11932+ <button class="action-filter-chip" data-action-filter="scripts">
11933+ 📜 Skripte <span class="chip-count" id="actions-scripts-count">0</span>
11934+ </button>
11935+ <button class="action-filter-chip" data-action-filter="automations">
11936+ ⚙️ Automationen <span class="chip-count" id="actions-automations-count">0</span>
11937+ </button>
11938+ </div>
1195811939 </div>
1195911940
1196011941 <div class="actions-results-container">
0 commit comments