Skip to content

Commit

Permalink
[tools][objects] renamed ekzo-font() mixin to ekzo-font-face()
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmorDarks committed Feb 29, 2016
1 parent b361259 commit f878624
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
- `$ekzo-bg` now expects everything normal for `background` property, except color, wich from now injected into `html` directly from `$ekzo-theme(base: ( bg-color: _value_ ) )`
- Updated `normalize.scss`, dropped some older normalizations. Currently it's based on v3.0.3 (head commit: https://github.com/necolas/normalize.css/commit/f41ef9b4918759dabc35599e014aaf3cfae3d8a1)
- `reset.scss` is now part of `normalize.scss`
- [BREAKING] renamed `ekzo-font()` mixin to `ekzo-font-face()`
- [BREAKING] Renamed `_framework.scss` to `_index.scss` for better clarity
- [BREAKING] All classes by default namespaced by its type. For example: `o-grid` instead of `grid`
- [BREAKING] Renamed function `map-get-deep()` to `ekzo-get()`
Expand Down
2 changes: 1 addition & 1 deletion objects/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Requires extension in stylesheet.
*/

@include ekzo-font(
@include ekzo-font-face(
$font: $ekzo-icon-font,
$version: $ekzo-icon-font-version,
$svg-id: $ekzo-icon-font-svg-id
Expand Down
4 changes: 2 additions & 2 deletions tools/_mixins.typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@
//
// @example
//
// @include ekzo-font(Helvetica LT Condensed, 1, HelveticaLTCondensed, bold, helvId );
// @include ekzo-font-face(Helvetica LT Condensed, 1, HelveticaLTCondensed, bold, helvId );
//
@mixin ekzo-font($font, $version:1, $file-name:$font, $weight:normal, $style:normal, $svg: $ekzo-use-svg-fonts, $svg-id:$file-name) {
@mixin ekzo-font-face($font, $version:1, $file-name:$font, $weight:normal, $style:normal, $svg: $ekzo-use-svg-fonts, $svg-id:$file-name) {
@if $version { $version: '?#' + $version; } @else { $version: ''; }
Expand Down

0 comments on commit f878624

Please sign in to comment.