Skip to content

Commit

Permalink
Merge branch 'master' into Fix_4893
Browse files Browse the repository at this point in the history
  • Loading branch information
asudoh authored Dec 17, 2019
2 parents 6986aeb + de63504 commit 03f5e8d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
'squad: system':
- ./**/*
12 changes: 12 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Label pull request'

on:
- pull_request

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
13 changes: 3 additions & 10 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -3439,7 +3439,6 @@ $carbon--spacing-06: 1.5rem;
- [toast-notifications [mixin]](#toast-notifications-mixin)
- [progress-indicator [mixin]](#progress-indicator-mixin)
- [padding-td [mixin]](#padding-td-mixin)
- [tags [mixin]](#tags-mixin)

### ✅carbon--spacing-07 [variable]

Expand Down Expand Up @@ -17722,7 +17721,9 @@ List box styles
// Menu status inside of a `list-box__field`
.#{$prefix}--list-box__menu-icon {
position: absolute;
top: 0;
right: $carbon--spacing-05;
bottom: 0;
height: 100%;
transition: transform $duration--fast-01 motion(standard, productive);
cursor: pointer;
Expand Down Expand Up @@ -21905,7 +21906,6 @@ Tag styles
@include type-style('label-01');

display: inline-flex;
position: relative;
align-items: center;
padding: 0 $carbon--spacing-03;
height: 1.5rem;
Expand Down Expand Up @@ -21982,16 +21982,10 @@ Tag styles
@include tag-theme($inverse-02, $inverse-01);

cursor: pointer;
padding-right: calc(
#{$carbon--spacing-06} + #{rem(2px)}
); // icon width + 2px space from right edge
padding-right: rem(2px);
}

.#{$prefix}--tag--filter > svg {
position: absolute;
right: rem(2px);
top: 50%;
transform: translateY(-50%);
fill: $inverse-01;
margin-left: rem(4px);
padding: rem(2px);
Expand Down Expand Up @@ -22036,7 +22030,6 @@ Tag styles
- [text-01 [variable]](#text-01-variable)
- [inverse-02 [variable]](#inverse-02-variable)
- [inverse-01 [variable]](#inverse-01-variable)
- [carbon--spacing-06 [variable]](#carbon--spacing-06-variable)
- [inverse-hover-ui [variable]](#inverse-hover-ui-variable)
- [inverse-focus-ui [variable]](#inverse-focus-ui-variable)

Expand Down
2 changes: 2 additions & 0 deletions packages/components/src/components/list-box/_list-box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,9 @@ $list-box-menu-width: rem(300px);
// Menu status inside of a `list-box__field`
.#{$prefix}--list-box__menu-icon {
position: absolute;
top: 0;
right: $carbon--spacing-05;
bottom: 0;
height: 100%;
transition: transform $duration--fast-01 motion(standard, productive);
cursor: pointer;
Expand Down

0 comments on commit 03f5e8d

Please sign in to comment.