Skip to content

Commit

Permalink
Merge branch 'master' into chore/update-yarn-to-1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asudoh authored Dec 13, 2019
2 parents 2683e27 + d364e9a commit ec8182b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ daysUntilClose: 3
exemptLabels:
- 'type: a11y ♿'
- 'type: bug 🐛'
- 'Severity 1 🚨'
- 'priority: high'
- 'v11'
- 'severity: 1 🚨'
- 'impact: 1'
- 'version: 11'
# Label to use when marking an issue as stale
staleLabel: inactive
staleLabel: 'status: inactive'
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
We've marked this issue as stale because there hasn't been any activity for a couple of weeks.
Expand Down
7 changes: 3 additions & 4 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -13082,8 +13082,7 @@ Button base styles
text-align: left;
text-decoration: none;
transition: all $duration--fast-01 motion(entrance, productive);
outline: $button-outline-width solid transparent;
outline-offset: -4px;
outline: none;
position: relative;
max-width: rem(320px);

Expand Down Expand Up @@ -13136,7 +13135,7 @@ Button variant styles

&:focus {
border-color: $focus;
outline-color: $ui-02;
box-shadow: inset 0 0 0 $button-outline-width $ui-02;
}

&:disabled:hover,
Expand All @@ -13147,7 +13146,7 @@ Button variant styles
background-color: $disabled-02;
border-color: $disabled-02;
text-decoration: none;
outline-color: $disabled-02;
box-shadow: none;
}

&:active {
Expand Down
7 changes: 3 additions & 4 deletions packages/components/src/components/button/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
text-align: left;
text-decoration: none;
transition: all $duration--fast-01 motion(entrance, productive);
outline: $button-outline-width solid transparent;
outline-offset: -4px;
outline: none;
position: relative;
max-width: rem(320px);

Expand Down Expand Up @@ -72,7 +71,7 @@

&:focus {
border-color: $focus;
outline-color: $ui-02;
box-shadow: inset 0 0 0 $button-outline-width $ui-02;
}

&:disabled:hover,
Expand All @@ -83,7 +82,7 @@
background-color: $disabled-02;
border-color: $disabled-02;
text-decoration: none;
outline-color: $disabled-02;
box-shadow: none;
}

&:active {
Expand Down

0 comments on commit ec8182b

Please sign in to comment.