Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 37ea39b

Browse files
authored
Merge pull request #28 from topcoder-platform/qa-accessibility
Qa accessibility
2 parents 60468ce + 1e8b42b commit 37ea39b

File tree

12 files changed

+48
-44
lines changed

12 files changed

+48
-44
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- attach_workspace:
3131
at: .
3232
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
33-
- run: npm publish
33+
- run: npm publish --tag=qa-accessibility
3434

3535
workflows:
3636
version: 2

package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"lint:scss": "./node_modules/.bin/stylelint **/*.scss --syntax scss",
3333
"test": "npm run lint && npm run jest"
3434
},
35-
"version": "0.5.10",
35+
"version": "1.0.12",
3636
"dependencies": {
3737
"prop-types": "^15.6.2",
3838
"react": "^16.4.1",

src/shared/components/buttons/themes/danger.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@import "default";
66

77
@mixin button {
8-
background: $tc-red-70;
8+
background: $tc-red-110;
99
border-color: transparent;
1010
color: $tc-white;
1111
}
@@ -38,7 +38,7 @@
3838
}
3939

4040
&:active {
41-
background-color: $tc-red;
41+
background-color: $tc-red-110;
4242
background-image: none;
4343
box-shadow: inset 0 1px 3px 0 rgba(71, 71, 79, 0.38);
4444
border-color: transparent;

src/shared/components/buttons/themes/primary.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@import "default";
66

77
@mixin button {
8-
background: $tc-dark-blue;
8+
background: $tc-dark-blue-110;
99
border-color: transparent;
1010
color: $tc-white;
1111
}

src/shared/components/tags/event/data-science.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
@import "../default";
66

77
.button {
8-
color: $tc-orange;
8+
color: $tc-orange-110;
99
background-color: $tc-orange-10;
1010

1111
&:active,
1212
&:focus,
1313
&:hover {
1414
color: $tc-orange;
15-
background-color: $tc-orange-10;
15+
background-color: $tc-orange-30;
1616
}
1717

1818
&:visited {

src/shared/components/tags/event/design.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
@import "../default";
66

77
.button {
8-
color: $tc-light-blue;
8+
color: $tc-dark-blue-110;
99
background-color: $tc-light-blue-10;
1010

1111
&:active,
1212
&:focus,
1313
&:hover {
1414
color: $tc-light-blue;
15-
background-color: $tc-light-blue-10;
15+
background-color: $tc-light-blue-30;
1616
}
1717

1818
&:visited {

src/shared/components/tags/event/development.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
@import "../default";
66

77
.button {
8-
color: $tc-green;
8+
color: $tc-green-110;
99
background-color: $tc-green-10;
1010

1111
&:active,
1212
&:focus,
1313
&:hover {
1414
color: $tc-green;
15-
background-color: $tc-green-10;
15+
background-color: $tc-green-30;
1616
}
1717

1818
&:visited {

src/shared/components/tags/primary/data-science.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@import "../default";
66

77
.button {
8-
background-color: $tc-orange;
8+
background-color: $tc-orange-110;
99
color: $tc-white;
1010

1111
&:active,

src/shared/components/tags/primary/design.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@import "../default";
66

77
.button {
8-
background-color: $tc-light-blue;
8+
background-color: $tc-light-blue-110;
99
color: $tc-white;
1010

1111
&:active,

0 commit comments

Comments
 (0)