1
1
/** Auto-completion menu */
2
2
html {
3
3
--autocomplete-muted-color : # 969faf ;
4
+ --redirect-hit-element-height : 45px ;
4
5
}
5
6
6
7
/********************
@@ -277,6 +278,11 @@ html {
277
278
/********************
278
279
REDIRECT HITS
279
280
********************/
281
+
282
+ .aa-Panel .aa-PanelLayout : not (.show-selectable-redirect ) section [data-autocomplete-source-id = redirectUrlPlugin ] {
283
+ display : none
284
+ }
285
+
280
286
.aa-Panel .aa-PanelLayout section [data-autocomplete-source-id = redirectUrlPlugin ] .aa-ItemWrapper ,
281
287
.aa-Panel .aa-PanelLayout section [data-autocomplete-source-id = redirectUrlPlugin ] .aa-ItemWrapper .aa-ItemContent {
282
288
display : flex;
@@ -305,7 +311,7 @@ html {
305
311
}
306
312
307
313
/* Hide products when redirecting */
308
- .aa-Panel .aa-PanelLayout section [data-autocomplete-source-id = redirectUrlPlugin ] ~ section [data-autocomplete-source-id = products ] {
314
+ .aa-Panel .aa-PanelLayout : not (. show-hits-with-redirect ) section [data-autocomplete-source-id = redirectUrlPlugin ] ~ section [data-autocomplete-source-id = products ] {
309
315
display : none;
310
316
}
311
317
@@ -380,11 +386,18 @@ html {
380
386
/* Redirect section */
381
387
.aa-Panel .aa-PanelLayout .with-grid section [data-autocomplete-source-id = redirectUrlPlugin ] {
382
388
grid-column : 2 ;
383
- grid-row : 1 / 999 ;
389
+ grid-row : 1 / 999 ; /* Default mode is to replace the product section */
384
390
border-left : 1px solid # BBB ;
385
391
z-index : 999 ;
386
392
}
387
393
394
+ .aa-Panel .aa-PanelLayout .with-grid .show-hits-with-redirect section [data-autocomplete-source-id = redirectUrlPlugin ] {
395
+ z-index : 1000 ;
396
+ /* Contain if showing with selectable redirect option */
397
+ grid-row : 1 ;
398
+ max-height : var (--redirect-hit-element-height );
399
+ }
400
+
388
401
/* Products section */
389
402
.aa-Panel .aa-PanelLayout .with-grid section [data-autocomplete-source-id = products ] {
390
403
grid-column : 2 ;
@@ -395,8 +408,9 @@ html {
395
408
}
396
409
397
410
/* Redirect behaviors */
398
- .aa-Panel .aa-PanelLayout .with-grid section [data-autocomplete-source-id = redirectUrlPlugin ] ~ section [data-autocomplete-source-id = products ] {
399
- padding-top : 45px ; /* Pad if showing with redirect option - set z-index as needed */
411
+ .aa-Panel .aa-PanelLayout .with-grid .show-selectable-redirect section [data-autocomplete-source-id = redirectUrlPlugin ] ~ section [data-autocomplete-source-id = products ] {
412
+ padding-top : var (--redirect-hit-element-height ); /* Pad if showing with selectable redirect option */
413
+ z-index : 999 ;
400
414
}
401
415
402
416
/* Products grid */
0 commit comments