From eeec3b1b5e4575da85700746d17b1c5d221cf0fc Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Fri, 16 Feb 2018 20:15:47 +0100 Subject: [PATCH] fix(themer): adds varible for focused --- packages/core/scripts/theme-builder/src/theme-variables.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/core/scripts/theme-builder/src/theme-variables.ts b/packages/core/scripts/theme-builder/src/theme-variables.ts index 2d81d14ca3..7a5e4c11aa 100644 --- a/packages/core/scripts/theme-builder/src/theme-variables.ts +++ b/packages/core/scripts/theme-builder/src/theme-variables.ts @@ -1,9 +1,9 @@ import { Color } from './components/Color'; export interface ThemeVariable { property: string; - quickPick?: {text: string}, + quickPick?: {text: string}; value?: Color | number | string; - computed?: {type: ComputedType, params: any} + computed?: {type: ComputedType, params: any}; } export enum ComputedType { @@ -528,6 +528,9 @@ export const THEME_VARIABLES: ThemeVariable[] = [ { property: '--ion-tabbar-background-color' }, + { + property: '--tabbar-background-color-focused' + }, { property: '--ion-tabbar-border-color' },