@@ -380,6 +380,8 @@ const ContainerBaseStyle = css`
380380 border: var(--breadcrumb-border);
381381 height: var(--breadcrumb-height);
382382 background: var(--breadcrumb-bg);
383+ box-shadow: var(--breadcrumb-shadow);
384+ border-radius: var(--breadcrumb-border-radius);
383385` ;
384386
385387const BreadcrumbGroup = styled . div `
@@ -417,7 +419,8 @@ const ButtonCrumb = styled(BigButton)`
417419
418420 padding-left: var(--spacing-3);
419421 padding-right: var(--spacing-3);
420- color: var(--color-text-primary);
422+ font-weight: var(--breadcrumb-font-weight);
423+ color: var(--breadcrumb-text-color);
421424
422425 overflow-x: hidden;
423426 max-width: 18.75rem;
@@ -426,6 +429,8 @@ const ButtonCrumb = styled(BigButton)`
426429
427430 &.active {
428431 background: transparent;
432+ font-weight: var(--breadcrumb-highlight-font-weight);
433+ color: var(--breadcrumb-highlight-text-color);
429434 }
430435
431436 &:hover {
@@ -437,7 +442,7 @@ const ButtonCrumb = styled(BigButton)`
437442const BreadcrumbDivider = styled . div `
438443 display: inline-block;
439444 pointer-events: none;
440- color: var(--color -text-primary );
445+ color: var(--breadcrumb -text-color );
441446 font-weight: bold;
442447 &:after {
443448 content: '/';
@@ -465,9 +470,11 @@ const StyledBreadcrumb = styled(ItemRow)`
465470
466471const BreadcrumbInputWrapper = styled ( InputWrapper ) `
467472 ${ ContainerBaseStyle }
473+ box-shadow: none;
468474` ;
469475
470476const GoToHolder = styled . div `
477+ margin-right: 0;
471478 position: relative;
472479 font-size: var(--font-size-primary);
473480 height: var(--breadcrumb-height);
@@ -480,7 +487,7 @@ const GoToContainer = styled.div`
480487 top: calc(var(--spacing-3) * -1);
481488 left: calc(var(--spacing-3) * -1);
482489 ${ PopoverStyles }
483- width: 100%;
490+ width: calc( 100% + var(--spacing-3)) ;
484491` ;
485492
486493const GotoClose = styled . div `
0 commit comments