How to use the datax-common.Colors.neutralPrimary function in datax-common

To help you get started, we’ve selected a few datax-common examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / data-accelerator / Website / Packages / datax-home / src / modules / home / components / card.jsx View on Github external
{this.props.linkText}
                
            
        );
    }
}

const rootStyle = {
    marginRight: 30,
    marginTop: 16,
    marginBottom: 14,
    minWidth: 300,
    width: 400,
    maxWidth: 400,
    color: Colors.neutralPrimary,
    backgroundColor: Colors.white,
    border: `1px solid ${Colors.neutralQuaternaryAlt}`,
    boxShadow: `2px 2px 5px 0 rgba(218,218,218,.75)`
};

const imageClickStyle = {
    textDecoration: 'none'
};

const imageContainerStyle = {
    paddingLeft: 10,
    paddingRight: 10,
    paddingTop: 20,
    paddingBottom: 10,
    borderBottom: `1px solid ${Colors.neutralLight}`
};
github microsoft / data-accelerator / Website / Packages / datax-query / src / modules / query / components / sideToolBar.jsx View on Github external
};

const itemStyle = {
    backgroundColor: Colors.customBlueDarker,
    color: Colors.white,
    fontSize: 15,
    paddingTop: 9,
    paddingBottom: 9,
    minWidth: 180,
    textAlign: 'center',
    borderRight: `3px solid ${Colors.neutralTertiaryAlt}`,
    cursor: 'pointer',
    whiteSpace: 'nowrap',
    ':hover': {
        backgroundColor: Colors.customYellow,
        color: Colors.neutralPrimary,
        fontWeight: 600
    }
};
github microsoft / data-accelerator / Website / Packages / datax-home / src / modules / home / components / footerItem.jsx View on Github external
renderLink() {
        return (
            <div>
                
                    {this.props.urlText}
                
            </div>
        );
    }
}

const rootStyle = {
    marginRight: 30,
    marginBottom: 20,
    color: Colors.neutralPrimary,
    backgroundColor: Colors.white,
    display: 'flex',
    flexDirection: 'row'
};

const smallImageContainerStyle = {
    width: 32,
    padding: 4
};

const largeImageContainerStyle = {
    width: 40
};

const imageStyle = {
    width: '100%',