Skip to content

Commit

Permalink
VADC-1482: Updated buttons' colors in Eurler diagram according to 508 (
Browse files Browse the repository at this point in the history
…#1626)

* fix(cardDescriptionParsing): initial commit (#1612)

* fix(cardDescriptionParsing): initial commit

* fix(cardDescriptionParsing): ranner linter and fixed error

* Bugfix/combo box labels (#1611)

* bugfix(comboBoxLabels): Began dev of new select box component, need to resolve issues with setting selectedValue

* bugfix(comboBoxLabels): made select box a controllable component, moved IsEnterOrSpace into accessibilityUtils folder

* bugfix(comboBoxLabels): removed console.log statements

* bugfix(comboBoxLabels): ran linter

* bugfix(comboBoxLabels): removed commented code

* bugfix(comboBoxLabels): ran linter

* bugfix(comboBoxLabels): Added Teams Dropdown test

* bugfix(comboBoxLabels): updated  Teams Dropdown test

* bugfix(comboBoxLabels): removed unneeded div element from TeamDropdown

* fix(comboBoxLabels): Updated label text

* fix(comboBoxLabels): Updated unit test

* VADC-1420: Fixed modal button color to ensure accessibility (#1615)

* fix(vadc-1420): Fixed modal button color to ensure accessibility

* Updated background/border/hover colors for modal window

* (VADC-1430): fix(vaLogoAltText)

* VADC-1479: Updated Previous/Next buttons' colors for VA GWAS according to 508 (#1618)

* fix(vadc-1479): Updated colors for the GWAS next/previous buttons

* fix(vadc-1479): Undo automatic discovery style changes

* fix(vadc-1479): Updated class in CSS for Previous/Next buttons

* Use updated colors only for active button (#1620)

* VADC-1516: Updated colors for the buttons in the GWAS modal according to 508 (#1621)

* fix(vadc-1516): Updated colors for the buttons in the GWAS modal

* fix(vadc-1516): Unify style order

* fix(vadc-1516): Refactor CSS

* fix(vadc-1516): Added comment

* fix(vadc-1516): Updated text color for the dropdown in the Team's modal

* fix(vadc-1516): formatting

* fix(vadc-1516): formatting

* fix(vadc-1516): formatting

* fix(vadc-1516): formatting

* fix(vadc-1482):  Updated button colors in Eurler diagram

* fix(vadc-1482): Updated focus color for the Eurler diagram

---------

Co-authored-by: Jarvis <[email protected]>
  • Loading branch information
vzpgb and jarvisraymond-uchicago authored Nov 6, 2024
1 parent 54a2b0a commit ee3db4b
Showing 1 changed file with 33 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,53 @@
border-color: #194C90;
}

.GWASUI-navBtn:not([disabled]):hover,
.GWASUI-navBtn:not([disabled]):focus {
background: #2466AC;
border-color: #2466AC;
.gwas-modal .ant-btn-primary:not([disabled]) {
background: #194C90;
border-color: #194C90;
}

.gwas-modal .ant-btn-primary:not([disabled]) {
.gwas-modal .ant-btn-default {
color: #194C90;
border-color: #194C90;
}

.euler-diagram-controls .ant-btn-primary:not([disabled]),
.euler-diagram-controls .ant-btn-primary:not([disabled]):focus {
background: #194C90;
border-color: #194C90;
}

.gwas-modal .ant-btn-primary:not([disabled]):hover,
.gwas-modal .ant-btn-primary:not([disabled]):focus {
.euler-diagram-controls .ant-btn-secondary {
color: #194C90;
border-color: #194C90;
}

.GWASUI-navBtn:not([disabled]):hover,
.GWASUI-navBtn:not([disabled]):focus {
background: #2466AC;
border-color: #2466AC;
}

.gwas-modal .ant-btn-default {
color: #194C90;
border-color: #194C90;
.gwas-modal .ant-btn-primary:not([disabled]):hover,
.gwas-modal .ant-btn-primary:not([disabled]):focus {
background: #2466AC;
border-color: #2466AC;
}

.gwas-modal .ant-btn-default:hover,
.gwas-modal .ant-btn-default:focus {
color: #2466AC;
border-color: #2466AC;
}

.euler-diagram-controls .ant-btn-primary:not([disabled]):hover {
background: #2466AC;
border-color: #2466AC;
}

.euler-diagram-controls .ant-btn-secondary:hover,
.euler-diagram-controls .ant-btn-secondary:focus {

color: #2466AC;
border-color: #2466AC;
}

0 comments on commit ee3db4b

Please sign in to comment.