How to use the datax-common.Colors.neutralQuaternaryAlt 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-pipeline / src / modules / flowDefinition / components / input / inputSettingsContent.jsx View on Github external
const watermarkUnitDropdownStyle = {
    flex: 1,
    paddingBottom: 15
};

const rightSideSettingsStyle = {
    display: 'flex',
    flexDirection: 'row'
};

const toggleStyle = {
    paddingLeft: 5
};

const spinnerContainerStyle = {
    border: `1px solid ${Colors.neutralQuaternaryAlt}`
};
github microsoft / data-accelerator / Website / Packages / datax-home / src / modules / home / components / card.jsx View on Github external
);
    }
}

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}`
};

const imageStyle = {
github microsoft / data-accelerator / Website / Packages / datax-pipeline / src / modules / flowDefinition / components / function / azureFunctionSettings.jsx View on Github external
};

const sectionStyle = {
    paddingBottom: 15
};

const titleStyle = {
    marginTop: 5,
    marginBottom: 2
};

const paramListContainerStyle = {
    display: 'flex',
    flexDirection: 'column',
    backgroundColor: Colors.neutralLighter,
    border: `1px solid ${Colors.neutralQuaternaryAlt}`,
    paddingLeft: 15,
    paddingRight: 0,
    paddingTop: 25,
    paddingBottom: 10,
    marginBottom: 20
};

const paramRowStyle = {
    display: 'flex',
    flexDirection: 'row'
};

const paramNameStyle = {
    flex: 1
};