Code coverage report for styles/base_styles/buttons.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (3 / 3)      Ignored: none     

All files » styles/base_styles/ » buttons.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27          1                                 1       1
/*
 * Base button styles that are used and extended across
 * various elements.
 */
 
var browserReset = {
  background: 'none repeat scroll 0 0 transparent',
  border: 'none',
  color: 'inherit',
  font: 'inherit',
  fontWeight: 'normal',
  overflow: 'visible',
  textTransform: 'none',
  verticalAlign: 'middle',
  margin: '0',
  padding: '0',
  WebkitFontSmoothing: 'antialiased',
  textAlign: 'left',
  whiteSpace: 'nowrap',
  cursor: 'pointer'
};
 
var ButtonBaseStyles = {
  base: browserReset
};
 
module.exports = ButtonBaseStyles;