From a323aa127bb6a887906c3a9a79cf409863580b88 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 23 Feb 2016 17:46:40 -0500 Subject: [PATCH] feat(windows): add modal file references #5565 --- ionic/components.wp.scss | 1 + ionic/components/modal/modal.wp.scss | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 ionic/components/modal/modal.wp.scss diff --git a/ionic/components.wp.scss b/ionic/components.wp.scss index ce03f4c050..b66da1859c 100644 --- a/ionic/components.wp.scss +++ b/ionic/components.wp.scss @@ -13,6 +13,7 @@ "components/checkbox/checkbox.wp", "components/chip/chip.wp", "components/content/content.wp", + "components/modal/modal.wp", "components/radio/radio.wp", "components/segment/segment.wp", "components/toggle/toggle.wp", diff --git a/ionic/components/modal/modal.wp.scss b/ionic/components/modal/modal.wp.scss new file mode 100644 index 0000000000..8efb3cb9f2 --- /dev/null +++ b/ionic/components/modal/modal.wp.scss @@ -0,0 +1,11 @@ +@import "../../globals.wp"; + +// Windows Modals +// -------------------------------------------------- + +$modal-wp-background-color: $background-wp-color !default; + + +ion-page.modal { + background-color: $modal-wp-background-color; +}