Skip to content

Commit

Permalink
SHIBUI-1270 Fixed a11y issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Jul 16, 2019
1 parent dd0ad86 commit 757d2b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion ui/src/app/metadata/configuration/effect/compare.effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class CompareVersionEffects {
compareVersionRequest$ = this.actions$.pipe(
ofType<CompareVersionRequest>(CompareActionTypes.COMPARE_METADATA_REQUEST),
map(action => action.payload),
combineLatest(
withLatestFrom(
this.store.select(getConfigurationModel)
),
switchMap(([versions, model]) => {
Expand Down
15 changes: 2 additions & 13 deletions ui/src/theme/breadcrumb.scss
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
.breadcrumb-bar {
$default-color: $gray-400;
$default-color: $gray-700;

padding: 0;
margin: 1rem 0;
background: none;
border-radius: 0;
padding: 0.375rem 0;
border-bottom: 1px solid $gray-600;
/*
&, & > .breadcrumb-item.active {
& > .breadcrumb-item.active {
color: $default-color;
}
> .breadcrumb-item > a {
color: $white;
}
& > .breadcrumb-item + .breadcrumb-item {
&::before {
color: $default-color;
}
}
*/
}

0 comments on commit 757d2b8

Please sign in to comment.