mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
refactor(sass): moved all mode files to the top level component directory and renamed to include the directory name
references #689
This commit is contained in:
@ -5,22 +5,22 @@
|
|||||||
|
|
||||||
// iOS Components
|
// iOS Components
|
||||||
@import
|
@import
|
||||||
"components/app/modes/ios",
|
"components/app/app.ios",
|
||||||
"components/action-sheet/modes/ios",
|
"components/action-sheet/action-sheet.ios",
|
||||||
"components/badge/modes/ios",
|
"components/badge/badge.ios",
|
||||||
"components/button/modes/ios",
|
"components/button/button.ios",
|
||||||
"components/card/modes/ios",
|
"components/card/card.ios",
|
||||||
"components/checkbox/modes/ios",
|
"components/checkbox/checkbox.ios",
|
||||||
"components/content/modes/ios",
|
"components/content/content.ios",
|
||||||
"components/item/modes/ios",
|
"components/item/item.ios",
|
||||||
"components/list/modes/ios",
|
"components/list/list.ios",
|
||||||
"components/menu/modes/ios",
|
"components/menu/menu.ios",
|
||||||
"components/modal/modes/ios",
|
"components/modal/modal.ios",
|
||||||
"components/popup/modes/ios",
|
"components/popup/popup.ios",
|
||||||
"components/radio/modes/ios",
|
"components/radio/radio.ios",
|
||||||
"components/searchbar/modes/ios",
|
"components/searchbar/searchbar.ios",
|
||||||
"components/segment/modes/ios",
|
"components/segment/segment.ios",
|
||||||
"components/switch/modes/ios",
|
"components/switch/switch.ios",
|
||||||
"components/tabs/modes/ios",
|
"components/tabs/tabs.ios",
|
||||||
"components/text-input/modes/ios",
|
"components/text-input/text-input.ios",
|
||||||
"components/toolbar/modes/ios";
|
"components/toolbar/toolbar.ios";
|
||||||
|
@ -5,23 +5,23 @@
|
|||||||
|
|
||||||
// Material Design Components
|
// Material Design Components
|
||||||
@import
|
@import
|
||||||
"components/app/modes/md",
|
"components/app/app.md",
|
||||||
"components/action-sheet/modes/md",
|
"components/action-sheet/action-sheet.md",
|
||||||
"components/badge/modes/md",
|
"components/badge/badge.md",
|
||||||
"components/button/modes/md",
|
"components/button/button.md",
|
||||||
"components/card/modes/md",
|
"components/card/card.md",
|
||||||
"components/checkbox/modes/md",
|
"components/checkbox/checkbox.md",
|
||||||
"components/content/modes/md",
|
"components/content/content.md",
|
||||||
"components/item/modes/md",
|
"components/item/item.md",
|
||||||
"components/list/modes/md",
|
"components/list/list.md",
|
||||||
"components/menu/modes/md",
|
"components/menu/menu.md",
|
||||||
"components/modal/modes/md",
|
"components/modal/modal.md",
|
||||||
"components/popup/modes/md",
|
"components/popup/popup.md",
|
||||||
"components/radio/modes/md",
|
"components/radio/radio.md",
|
||||||
"components/tap-click/ripple",
|
"components/tap-click/ripple",
|
||||||
"components/searchbar/modes/md",
|
"components/searchbar/searchbar.md",
|
||||||
"components/segment/modes/md",
|
"components/segment/segment.md",
|
||||||
"components/switch/modes/md",
|
"components/switch/switch.md",
|
||||||
"components/tabs/modes/md",
|
"components/tabs/tabs.md",
|
||||||
"components/text-input/modes/md",
|
"components/text-input/text-input.md",
|
||||||
"components/toolbar/modes/md";
|
"components/toolbar/toolbar.md";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../action-sheet";
|
@import "./action-sheet";
|
||||||
|
|
||||||
// iOS Action Sheet
|
// iOS Action Sheet
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../action-sheet";
|
@import "./action-sheet";
|
||||||
|
|
||||||
// Material Design Action Sheet
|
// Material Design Action Sheet
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS App
|
// iOS App
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design App
|
// Material Design App
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../badge";
|
@import "./badge";
|
||||||
|
|
||||||
// iOS Badge
|
// iOS Badge
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../badge";
|
@import "./badge";
|
||||||
|
|
||||||
// Material Design Badge
|
// Material Design Badge
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../button";
|
@import "./button";
|
||||||
|
|
||||||
// iOS Button
|
// iOS Button
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
@ -216,5 +216,5 @@ $button-ios-small-icon-font-size: 1.3em !default;
|
|||||||
// Core Button Overrides
|
// Core Button Overrides
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
@import "../button-fab";
|
@import "./button-fab";
|
||||||
@import "../button-icon";
|
@import "./button-icon";
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../button";
|
@import "./button";
|
||||||
|
|
||||||
// Material Design Button
|
// Material Design Button
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
@ -258,5 +258,5 @@ $button-md-small-icon-font-size: 1.4em !default;
|
|||||||
// Core Button Overrides
|
// Core Button Overrides
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
@import "../button-fab";
|
@import "./button-fab";
|
||||||
@import "../button-icon";
|
@import "./button-icon";
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../card";
|
@import "./card";
|
||||||
|
|
||||||
// iOS Card
|
// iOS Card
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../card";
|
@import "./card";
|
||||||
|
|
||||||
// Material Design Card
|
// Material Design Card
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS Checkbox Structure
|
// iOS Checkbox Structure
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design Checkbox
|
// Material Design Checkbox
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS Content
|
// iOS Content
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design Content Padding
|
// Material Design Content Padding
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../item";
|
@import "./item";
|
||||||
|
|
||||||
// iOS Item
|
// iOS Item
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../item";
|
@import "./item";
|
||||||
|
|
||||||
// Material Design Item
|
// Material Design Item
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../list";
|
@import "./list";
|
||||||
|
|
||||||
// iOS List
|
// iOS List
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../list";
|
@import "./list";
|
||||||
|
|
||||||
// Material Design List
|
// Material Design List
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS Menu
|
// iOS Menu
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design Menu
|
// Material Design Menu
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS Modals
|
// iOS Modals
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design Modals
|
// Material Design Modals
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../popup";
|
@import "./popup";
|
||||||
|
|
||||||
// iOS Popups
|
// iOS Popups
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../popup";
|
@import "./popup";
|
||||||
|
|
||||||
// Material Design Popups
|
// Material Design Popups
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS Radio
|
// iOS Radio
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design Radio
|
// Material Design Radio
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../searchbar";
|
@import "./searchbar";
|
||||||
|
|
||||||
// iOS Searchbar
|
// iOS Searchbar
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../searchbar";
|
@import "./searchbar";
|
||||||
|
|
||||||
// Material Design Searchbar
|
// Material Design Searchbar
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../segment";
|
@import "./segment";
|
||||||
|
|
||||||
// iOS Segment
|
// iOS Segment
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../segment";
|
@import "./segment";
|
||||||
|
|
||||||
// Material Design Segment
|
// Material Design Segment
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
|
|
||||||
// iOS Switch
|
// iOS Switch
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
|
|
||||||
// Material Design Switch
|
// Material Design Switch
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../tabs";
|
@import "./tabs";
|
||||||
|
|
||||||
// iOS Tabs
|
// iOS Tabs
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,5 +1,5 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../tabs";
|
@import "./tabs";
|
||||||
|
|
||||||
// Material Design Tabs
|
// Material Design Tabs
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../label";
|
@import "./label";
|
||||||
@import "../text-input";
|
@import "./text-input";
|
||||||
|
|
||||||
// iOS Text Input
|
// iOS Text Input
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../label";
|
@import "./label";
|
||||||
@import "../text-input";
|
@import "./text-input";
|
||||||
|
|
||||||
// Material Design Text Input
|
// Material Design Text Input
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../../globals.ios";
|
@import "../../globals.ios";
|
||||||
@import "../toolbar";
|
@import "./toolbar";
|
||||||
@import "../toolbar-button";
|
@import "./toolbar-button";
|
||||||
|
|
||||||
// iOS Toolbar
|
// iOS Toolbar
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
@ -1,6 +1,6 @@
|
|||||||
@import "../../../globals.md";
|
@import "../../globals.md";
|
||||||
@import "../toolbar";
|
@import "./toolbar";
|
||||||
@import "../toolbar-button";
|
@import "./toolbar-button";
|
||||||
|
|
||||||
// Material Design Toolbar
|
// Material Design Toolbar
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
Reference in New Issue
Block a user