Skip to content

Commit

Permalink
Merge pull request #197 from MeasureAuthoringTool/508-contrast-fix
Browse files Browse the repository at this point in the history
MAT-6431: 508 contrast fix
  • Loading branch information
mcmcphillips authored Nov 28, 2023
2 parents 0561d51 + 2f05448 commit a3036b2
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 62 deletions.
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module.exports = {
"^.+\\.(j|t)sx?$": "babel-jest",
},
moduleNameMapper: {
"^axios$": require.resolve("axios"),
"\\.(css)$": "identity-obj-proxy",
"single-spa-react/parcel": "single-spa-react/lib/cjs/parcel.cjs",
},
Expand Down
150 changes: 91 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@
"dependencies": {
"@madie/cql-antlr-parser": "^1.0.1",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-ace": "^10.0.0",
"react-dom": "^17.0.2",
"single-spa": "^5.9.3",
"single-spa-react": "^4.6.1",
"axios": "^0.26.0"
"single-spa-react": "^4.6.1"
},
"types": "dist/madie-madie-editor.d.ts",
"browserslist": [
Expand Down
13 changes: 12 additions & 1 deletion src/AceEditor/madie-custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,16 @@
}

.ace_gutter-cell {
color: #b0b0b0;
color: #9c9c9c;
}

.ace_comment {
color: #9c9c9c !important;
}

.ace-monokai .ace_entity.ace_name.ace_tag,
.ace-monokai .ace_keyword,
.ace-monokai .ace_meta.ace_tag,
.ace-monokai .ace_storage {
color: #fb4b8c !important;
}

0 comments on commit a3036b2

Please sign in to comment.