10 Commits

Author SHA1 Message Date
8f08de187d fix(sass): move the @at-root font import to the components file
the user will need to include this import themselves if they include
components individually

fixes #5931
2016-04-11 13:24:58 -04:00
9efa3ea3e6 feat(sass): add support for contrast color in MD mode colors map
BREAKING CHANGE:

Can now pass contrast to the colors map:

```
$colors-md: (

  primary: (
    base: #327eff,
    contrast: yellow
  ),
  secondary: (
    base: #32db64,
    contrast: hotpink
  ),
  danger: #d91e18,
  light: #f4f4f4,
  dark: #222
) !default;
```

references #5445
2016-03-22 17:53:08 -04:00
f7b52eeee1 chore(sass): update sass to match linter config
references #5797
2016-03-10 22:42:38 -05:00
fe256c785c refactor(sass): rename bg to background in all sass variables
BREAKING CHANGE:

`$item-ios-divider-bg` is now `$item-ios-divider-background`
`$item-ios-sliding-content-bg` is now
`$item-ios-sliding-content-background`

`$item-md-divider-bg` is now `$item-md-divider-background`
`$item-md-sliding-content-bg` is now
`$item-md-sliding-content-background`

`$item-wp-divider-bg` is now `$item-wp-divider-background`
`$item-wp-sliding-content-bg` is now
`$item-wp-sliding-content-background`

references #5651
2016-03-10 13:56:03 -05:00
7eb7952849 feat(Theme): md toolbar dark theme
Changing text default color on toolbar for Material Design dark theme
2016-02-11 19:21:31 -03:00
3dbd9a992e feat(Themes): md cards dark theme
Creating dark theme for Material Design cards
2016-02-11 19:17:07 -03:00
bcaa4841c4 feat(Themes): md outer content dark theme
Overriding background color of outer content for material design dark theme
2016-02-11 19:16:22 -03:00
eb8e778473 feat(Themes): md dark theme item-divider
Overriding color of item-divider for material design dark theme
2016-02-11 19:15:12 -03:00
569beabbf1 feat(Themes): md toggle dark theme
This commit overrides the toggle handle background color for MD dark theme
2016-02-11 18:37:23 -03:00
c2cf3b0636 refactor(themes): adjusted scss structure for additional themes
Related #4967
2016-02-02 10:02:31 -06:00