Skip to content

Commit

Permalink
Updated in fast-components as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Heston committed Jun 11, 2020
1 parent 4589944 commit 5a32511
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { css } from "@microsoft/fast-element";
import { display, forcedColorsStylesheetBehavior } from "@microsoft/fast-foundation";
import { SystemColors } from "@microsoft/fast-web-utilities";
import {
accentFillRestBehavior,
accentForegroundRestBehavior,
heightNumber,
neutralFillRestBehavior,
neutralForegroundHintBehavior,
Expand All @@ -29,7 +29,7 @@ export const ProgressRingStyles = css`
}
.determinate {
stroke: ${accentFillRestBehavior.var};
stroke: ${accentForegroundRestBehavior.var};
fill: none;
stroke-width: 2px;
stroke-linecap: round;
Expand All @@ -39,7 +39,7 @@ export const ProgressRingStyles = css`
}
.indeterminate-indicator-1 {
stroke: ${accentFillRestBehavior.var};
stroke: ${accentForegroundRestBehavior.var};
fill: none;
stroke-width: 2px;
stroke-linecap: round;
Expand Down Expand Up @@ -73,7 +73,7 @@ export const ProgressRingStyles = css`
}
}
`.withBehaviors(
accentFillRestBehavior,
accentForegroundRestBehavior,
neutralFillRestBehavior,
neutralForegroundHintBehavior,
forcedColorsStylesheetBehavior(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { css } from "@microsoft/fast-element";
import { display, forcedColorsStylesheetBehavior } from "@microsoft/fast-foundation";
import { SystemColors } from "@microsoft/fast-web-utilities";
import {
accentFillRestBehavior,
accentForegroundRestBehavior,
neutralFillRestBehavior,
neutralForegroundHintBehavior,
} from "../../styles/index";
Expand All @@ -26,7 +26,7 @@ export const ProgressStyles = css`
}
.determinate {
background-color: ${accentFillRestBehavior.var};
background-color: ${accentForegroundRestBehavior.var};
border-radius: calc(var(--design-unit) * 1px);
height: 100%;
transition: all 0.2s ease-in-out;
Expand All @@ -46,7 +46,7 @@ export const ProgressStyles = css`
position: absolute;
opacity: 0;
height: 100%;
background-color: ${accentFillRestBehavior.var};
background-color: ${accentForegroundRestBehavior.var};
border-radius: calc(var(--design-unit) * 1px);
animation-timing-function: cubic-bezier(0.4, 0.0, 0.6, 1.0);
width: 40%;
Expand All @@ -57,7 +57,7 @@ export const ProgressStyles = css`
position: absolute;
opacity: 0;
height: 100%;
background-color: ${accentFillRestBehavior.var};
background-color: ${accentForegroundRestBehavior.var};
border-radius: calc(var(--design-unit) * 1px);
animation-timing-function: cubic-bezier(0.4, 0.0, 0.6, 1.0);
width: 60%;
Expand Down Expand Up @@ -109,7 +109,7 @@ export const ProgressStyles = css`
},
},
`.withBehaviors(
accentFillRestBehavior,
accentForegroundRestBehavior,
neutralFillRestBehavior,
neutralForegroundHintBehavior,
forcedColorsStylesheetBehavior(
Expand Down

0 comments on commit 5a32511

Please sign in to comment.