Skip to content

Commit

Permalink
Merge branch 'master' into add-controlled-accordion-animations
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Feb 25, 2021
2 parents c020f68 + b4d91b9 commit f72318c
Show file tree
Hide file tree
Showing 112 changed files with 698 additions and 218 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
node-version: '14.x'
- name: Run yarn dedupe
Expand All @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
node-version: '14.x'
- name: Install dependencies
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/[email protected].4
uses: actions/[email protected].5
with:
node-version: '14.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-react-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-vanilla-devenv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v1

- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-generated-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v2.1.5
with:
node-version: '14.x'
- name: Install dependencies
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 2 additions & 1 deletion packages/components/src/components/checkbox/_checkbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@
// different checkbox states.
width: rem(16px);
height: rem(16px);
margin: rem(2px);
// increase left margin for #6480
margin: rem(2px) rem(2px) rem(2px) rem(3px);

// Checkboxes with a background color look visually off against a parent container.
background-color: transparent;
Expand Down
7 changes: 4 additions & 3 deletions packages/components/src/components/list-box/_list-box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -749,9 +749,10 @@ $list-box-menu-width: rem(300px);
border-bottom-color: $selected-light-ui;
}

.#{$prefix}--list-box__menu-item--active:hover {
background-color: $hover-ui;
border-bottom-color: $hover-ui;
.#{$prefix}--list-box__menu-item--active:hover,
.#{$prefix}--list-box__menu-item--active.#{$prefix}--list-box__menu-item--highlighted {
background-color: $hover-selected-ui;
border-bottom-color: $hover-selected-ui;
}

.#{$prefix}--list-box__menu-item--active
Expand Down
Loading

0 comments on commit f72318c

Please sign in to comment.