@@ -380,6 +380,8 @@ const ContainerBaseStyle = css`
380
380
border: var(--breadcrumb-border);
381
381
height: var(--breadcrumb-height);
382
382
background: var(--breadcrumb-bg);
383
+ box-shadow: var(--breadcrumb-shadow);
384
+ border-radius: var(--breadcrumb-border-radius);
383
385
` ;
384
386
385
387
const BreadcrumbGroup = styled . div `
@@ -417,7 +419,8 @@ const ButtonCrumb = styled(BigButton)`
417
419
418
420
padding-left: var(--spacing-3);
419
421
padding-right: var(--spacing-3);
420
- color: var(--color-text-primary);
422
+ font-weight: var(--breadcrumb-font-weight);
423
+ color: var(--breadcrumb-text-color);
421
424
422
425
overflow-x: hidden;
423
426
max-width: 18.75rem;
@@ -426,6 +429,8 @@ const ButtonCrumb = styled(BigButton)`
426
429
427
430
&.active {
428
431
background: transparent;
432
+ font-weight: var(--breadcrumb-highlight-font-weight);
433
+ color: var(--breadcrumb-highlight-text-color);
429
434
}
430
435
431
436
&:hover {
@@ -437,7 +442,7 @@ const ButtonCrumb = styled(BigButton)`
437
442
const BreadcrumbDivider = styled . div `
438
443
display: inline-block;
439
444
pointer-events: none;
440
- color: var(--color -text-primary );
445
+ color: var(--breadcrumb -text-color );
441
446
font-weight: bold;
442
447
&:after {
443
448
content: '/';
@@ -465,9 +470,11 @@ const StyledBreadcrumb = styled(ItemRow)`
465
470
466
471
const BreadcrumbInputWrapper = styled ( InputWrapper ) `
467
472
${ ContainerBaseStyle }
473
+ box-shadow: none;
468
474
` ;
469
475
470
476
const GoToHolder = styled . div `
477
+ margin-right: 0;
471
478
position: relative;
472
479
font-size: var(--font-size-primary);
473
480
height: var(--breadcrumb-height);
@@ -480,7 +487,7 @@ const GoToContainer = styled.div`
480
487
top: calc(var(--spacing-3) * -1);
481
488
left: calc(var(--spacing-3) * -1);
482
489
${ PopoverStyles }
483
- width: 100%;
490
+ width: calc( 100% + var(--spacing-3)) ;
484
491
` ;
485
492
486
493
const GotoClose = styled . div `
0 commit comments