Skip to content

Commit

Permalink
fix(components): misc fixes for v9 (#854)
Browse files Browse the repository at this point in the history
* fix(inline-dropdown): removed box-shadow

* fix(time-picker): fixed arrow being positioned weird in firefox

* fix(code-snippet): banner showing up on ie11
  • Loading branch information
marijohannessen authored Jun 4, 2018
1 parent a981d74 commit 6c108cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/code-snippet/_code-snippet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
padding: 0;
height: rem(32px);
width: rem(32px);
overflow: visible;

&:focus {
@include focus-outline('border');
Expand Down Expand Up @@ -226,7 +227,7 @@
padding-bottom: 0;
}

/*
/*
Deprecated class names will be removed in v10.x
*/

Expand Down
2 changes: 2 additions & 0 deletions src/components/dropdown/_dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,11 @@

.#{$prefix}--dropdown--inline {
background-color: transparent;
box-shadow: none;

&:focus {
outline: none;
box-shadow: none;
}

&:focus .#{$prefix}--dropdown-text {
Expand Down
2 changes: 1 addition & 1 deletion src/components/select/_select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
}

.#{$prefix}--select__arrow {
top: auto;
top: 40%;
}
}
}

0 comments on commit 6c108cd

Please sign in to comment.