-
Notifications
You must be signed in to change notification settings - Fork 839
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding a helper `globals` file with just the invisibles * Update Consuming wiki
- Loading branch information
Showing
8 changed files
with
52 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Helper file for supplying EUI Amsterdam globals (invisibles only) | ||
// Must be imported AFTER a colors modifier file | ||
|
||
// Functions need to be first, since we use them in our variables and mixin definitions | ||
@import 'global_styling/functions/index'; | ||
|
||
// Variables come next, and are used in some mixins | ||
@import 'global_styling/variables/index'; | ||
|
||
// Mixins provide generic code expansion through helpers | ||
@import 'global_styling/mixins/index'; |
3 changes: 3 additions & 0 deletions
3
src/themes/eui-amsterdam/global_styling/functions/_index.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
// Import base theme first, then override | ||
@import '../../../../global_styling/functions/index'; | ||
|
||
@import './shadows'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// Import base theme first, then override | ||
@import '../../../../global_styling/mixins/index'; | ||
|
||
@import 'button'; | ||
@import 'panel'; | ||
@import 'shadow'; | ||
@import 'shadow'; |
3 changes: 3 additions & 0 deletions
3
src/themes/eui-amsterdam/global_styling/variables/_index.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Helper file for supplying EUI globals (invisibles only) | ||
// Must be imported AFTER a colors modifier file | ||
|
||
// Functions need to be first, since we use them in our variables and mixin definitions | ||
@import '../../global_styling/functions/index'; | ||
|
||
// Variables come next, and are used in some mixins | ||
@import '../../global_styling/variables/index'; | ||
|
||
// Mixins provide generic code expansion through helpers | ||
@import '../../global_styling/mixins/index'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters