Files
ionic-framework/src/themes/default.wp.scss
Brandy Carney 11d5488fdc style(item): remove the mixin for detail push from the themes
added the sass variable for the color directly to the svg instead. This
will help with future themes since the mixin was just being copied over.

references #5993
2016-06-08 13:27:18 -04:00

65 lines
2.1 KiB
SCSS

@import "./default";
// Windows Default Theme
// ----------------------------------
$colors-wp: copy-colors($colors) !default;
$text-wp-color: $text-color !default;
$paragraph-wp-color: $paragraph-color !default;
$link-wp-color: color($colors-wp, primary) !default;
$background-wp-color: $background-color !default;
$subdued-text-wp-color: $subdued-text-color !default;
$font-family-wp-base: "Segoe UI", "Noto Sans", sans-serif !default;
$font-size-wp-base: $font-size-base !default;
// Windows Toolbar
// --------------------------------------------------
$toolbar-wp-background: $toolbar-background !default;
$toolbar-wp-border-color: $toolbar-border-color !default;
$toolbar-wp-text-color: $toolbar-text-color !default;
$toolbar-wp-active-color: $toolbar-active-color !default;
$toolbar-wp-inactive-color: $toolbar-inactive-color !default;
// Windows List
// --------------------------------------------------
$list-wp-text-color: $list-text-color !default;
$list-wp-border-color: transparent !default;
$list-wp-background-color: $list-background-color !default;
$list-wp-activated-background-color: #aaa !default;
// Windows Item
// --------------------------------------------------
$item-wp-padding-top: 13px !default;
$item-wp-padding-right: 16px !default;
$item-wp-padding-bottom: 13px !default;
$item-wp-padding-left: 16px !default;
$item-wp-padding-media-top: 9px !default;
$item-wp-padding-media-bottom: 9px !default;
$item-wp-padding-icon-top: 11px !default;
$item-wp-padding-icon-bottom: 10px !default;
// Windows Input
// --------------------------------------------------
$input-wp-border-color: rgba(0, 0, 0, .5) !default;
// Windows Body
// --------------------------------------------------
@mixin wp-body() {
font-family: $font-family-wp-base;
font-size: $font-size-wp-base;
background-color: $background-wp-color;
}