From 7dc76f5f315e7d7d0e744e23f0be4df7b0e9972e Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Mon, 31 Aug 2015 14:14:02 -0500 Subject: [PATCH] action menu updates --- ionic/components/action-menu/action-menu.ts | 13 ++++++++----- ionic/components/action-menu/modes/material.scss | 1 + 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ionic/components/action-menu/action-menu.ts b/ionic/components/action-menu/action-menu.ts index 09ad0c9e49..1f5db7279e 100644 --- a/ionic/components/action-menu/action-menu.ts +++ b/ionic/components/action-menu/action-menu.ts @@ -6,9 +6,10 @@ * The ActionMenu is a modal menu with options to select based on an action. */ -import {View, Injectable, NgFor, NgIf, NgClass} from 'angular2/angular2'; +import {View, Injectable, NgFor, NgIf} from 'angular2/angular2'; import {TapClick} from '../button/button'; +import {Icon} from '../icon/icon'; import {Overlay} from '../overlay/overlay'; import {Animation} from '../../animations/animation'; import * as util from 'ionic/util'; @@ -22,19 +23,21 @@ import * as util from 'ionic/util'; '
' + '
{{titleText}}
' + '' + '' + '
' + '
' + - '' + + '' + '
' + '' + '', - directives: [NgFor, NgIf, NgClass, TapClick] + directives: [NgFor, NgIf, TapClick, Icon] }) class ActionMenuDirective { diff --git a/ionic/components/action-menu/modes/material.scss b/ionic/components/action-menu/modes/material.scss index c5d9372bab..5916999601 100644 --- a/ionic/components/action-menu/modes/material.scss +++ b/ionic/components/action-menu/modes/material.scss @@ -59,6 +59,7 @@ ion-action-menu[mode=md] { &.activated { background: $action-menu-md-background-active; border-radius: 0; + box-shadow: none; } }