Skip to content

Commit

Permalink
Fix more brand color usages (openmrs#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandones committed Jan 21, 2022
1 parent a86569f commit c738db2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@

.changeLocationLink :hover {
color: $field-01;
background-color: $brand-01;
@include brand-01(background-color);
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.logout {
padding-right: 0rem;
background-color: $brand-02;
@include brand-02(background-color);
@extend .productiveHeading01;
width: 16rem;
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
.link > div a:nth-child(1):hover {
background-color: $ui-03;
color: $ui-05;
border-left-color: $brand-01;
@include brand-01(border-left-color);
}

.link > div a:nth-child(1):focus {
background-color: $ui-03;
outline: none;
color: $ui-05;
border-left-color: $brand-01;
@include brand-01(border-left-color);
}

:global(.omrs-breakpoint-gt-tablet) .link > div {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.switcherContainer ul button {
@extend .productiveHeading01;
width: 100%;
background-color: $brand-02;
@include brand-02(background-color);
}

.switcherContainer ul div {
Expand All @@ -28,7 +28,7 @@
}

.switcherContainer ul div button:hover {
background-color: $brand-01;
@include brand-01(background-color);
color: $inverse-link;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}

.externalLinks {
border-top: 1px solid $brand-teal-01;
border-top: 1px solid var(--brand-03);
}

.launchIcon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
.link > div a:nth-child(1):hover {
background-color: $ui-03;
color: $ui-05;
border-left-color: $brand-01;
@include brand-01(border-left-color);
}

.link > div a:nth-child(1):focus {
background-color: $ui-03;
outline: none;
color: $ui-05;
border-left-color: $brand-01;
@include brand-01(border-left-color);
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
.switcherContainer ul button {
@extend .productiveHeading01;
width: 100%;
background-color: $brand-02;
@include brand-02(background-color);
}

.switcherContainer ul button:hover {
color: $field-01;
background-color: $brand-01;
@include brand-01(background-color);
}

.switcherContainer ul div {
Expand All @@ -48,7 +48,7 @@
}

.switcherContainer ul div button:hover {
background-color: $brand-01;
@include brand-01(background-color);
color: $inverse-link;
}

Expand Down

0 comments on commit c738db2

Please sign in to comment.