aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/timed_progress_bar.tsx
diff options
context:
space:
mode:
authorSteve Klebanoff <steve@0xproject.com>2018-11-30 06:34:14 +0800
committerGitHub <noreply@github.com>2018-11-30 06:34:14 +0800
commitd4c439b27703b6855a6f7da60cf5a249d82b6b81 (patch)
tree874eef17e239e99d2585141ab86a5dcac02cb8c5 /packages/instant/src/components/timed_progress_bar.tsx
parenta864328ecf20e1dcbe1c8699d08317e075abc5e2 (diff)
parent105dcd73e473bf347a3db0143f7730d46fa44d84 (diff)
downloaddexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.tar
dexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.tar.gz
dexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.tar.bz2
dexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.tar.lz
dexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.tar.xz
dexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.tar.zst
dexon-sol-tools-d4c439b27703b6855a6f7da60cf5a249d82b6b81.zip
Merge pull request #1345 from 0xProject/fix/instant/progress-bar-bg
[instant] Progress bar background
Diffstat (limited to 'packages/instant/src/components/timed_progress_bar.tsx')
-rw-r--r--packages/instant/src/components/timed_progress_bar.tsx17
1 files changed, 13 insertions, 4 deletions
diff --git a/packages/instant/src/components/timed_progress_bar.tsx b/packages/instant/src/components/timed_progress_bar.tsx
index 8465b9cd0..fb3927088 100644
--- a/packages/instant/src/components/timed_progress_bar.tsx
+++ b/packages/instant/src/components/timed_progress_bar.tsx
@@ -1,8 +1,9 @@
import * as _ from 'lodash';
+import { transparentize } from 'polished';
import * as React from 'react';
import { PROGRESS_FINISH_ANIMATION_TIME_MS, PROGRESS_STALL_AT_WIDTH } from '../constants';
-import { ColorOption, css, keyframes, styled } from '../style/theme';
+import { ColorOption, css, keyframes, styled, ThemeConsumer } from '../style/theme';
import { Container } from './ui/container';
@@ -93,8 +94,16 @@ export interface ProgressBarProps extends ProgressProps {}
export const ProgressBar: React.ComponentType<ProgressBarProps & React.ClassAttributes<{}>> = React.forwardRef(
(props, ref) => (
- <Container width="100%" backgroundColor={ColorOption.lightGrey} borderRadius="6px">
- <Progress {...props} ref={ref as any} />
- </Container>
+ <ThemeConsumer>
+ {theme => (
+ <Container
+ width="100%"
+ borderRadius="6px"
+ rawBackgroundColor={transparentize(0.5, theme[ColorOption.primaryColor])}
+ >
+ <Progress {...props} ref={ref as any} />
+ </Container>
+ )}
+ </ThemeConsumer>
),
);