Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Ferris committed Apr 1, 2020
2 parents 929a0cc + c6e4ab3 commit 2922df0
Show file tree
Hide file tree
Showing 22 changed files with 978 additions and 23 deletions.
15 changes: 8 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@
"babel/semi": 2,
"import/prefer-default-export": 0,
"jsx-a11y/anchor-is-valid": 1,
"jsx-a11y/label-has-associated-control": [ 2, {
"assert": "either",
"controlComponents": [],
"depth": 25,
"labelAttributes": ["label"],
"labelComponents": []
}],
"jsx-a11y/label-has-for": 0,
"no-alert": 0,
"react/destructuring-assignment": 0,
Expand Down Expand Up @@ -118,6 +111,13 @@
"function-paren-newline": ["error", "consistent"],
"func-names": ["error", "never"],
"implicit-arrow-linebreak": 0,
"jsx-a11y/label-has-associated-control": [ 2, {
"assert": "either",
"controlComponents": ["AsyncSelect", "SingleSelect"],
"depth": 25,
"labelAttributes": ["label"],
"labelComponents": []
}],
"linebreak-style": 0,
"no-case-declarations": "warn",
"no-confusing-arrow": 0,
Expand All @@ -131,6 +131,7 @@
"prefer-destructuring": "warn",
"quotes": ["error", "single", { "allowTemplateLiterals" : true }],
"radix": 0,
"react/jsx-fragments": 0,
"symbol-description": 0,
"template-curly-spacing": "off",
"indent": "off"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"react-transition-group": "^4.3.0",
"react-copy-to-clipboard": "^5.0.2",
"react-popper": "^1.3.7",
"react-select": "^3.0.8",
"react-tracking": "^7.3.0",
"uuid": "^7.0.2"
},
Expand Down
2 changes: 1 addition & 1 deletion scss/buttons.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import './palette';
@import './colors';

.btn-link--neutral {
color: $ux-gray-500;
Expand Down
2 changes: 2 additions & 0 deletions scss/colors.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import './colors/inputs';
@import './colors/palette';
4 changes: 4 additions & 0 deletions scss/colors/inputs.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@import './palette';

$input-border-color: $ux-gray-400; // Override bootstrap default
$input-disabled-bg: $ux-gray-300; // Override bootstrap default
2 changes: 1 addition & 1 deletion scss/palette.scss → scss/colors/palette.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// When updating this file, please consider the values in src/Styles/palette.js

$ux-black: #000000;
$ux-blue: #337ab7;
$ux-blue: #337AB7;
$ux-gray: #A1A1A1;
$ux-green: #6DBD63;
$ux-light-blue: #7CCBF2;
Expand Down
2 changes: 1 addition & 1 deletion scss/theme.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import './box_shadow';
@import './buttons';
@import './colors';
@import './lists';
@import './navbar';
@import './palette';
@import './typography';
@import './z_stack';
Loading

0 comments on commit 2922df0

Please sign in to comment.