blob: 8f0a129335574b4ae4c2e00b68eb6f364fd3f55e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Not included automatically, only if $v-font-family specifies them
@import "open-sans/open-sans";
@import "source-sans-pro/source-sans-pro";
@import "roboto/roboto";
@import "lato/lato";
@import "lora/lora";
$fontawesome-pathPrefix: null;
@if $v-relative-paths == true {
$fontawesome-pathPrefix: "../../../";
}
@mixin valo-fonts {
// Font Awesome icons from the Base theme
@include v-font(FontAwesome, "#{$fontawesome-pathPrefix}../base/fonts/fontawesome-webfont");
}
@mixin v-font($font-family, $file-name) {
@include font-face($font-family, $file-name);
.#{$font-family} {
font-family: #{$font-family};
font-style: normal;
font-weight: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
text-align: center;
}
}
@mixin font($font-family, $file-name) {
@warn "The 'font' mixin is DEPRECATED. You should use the corresponding 'v-font' mixin instead.";
@include v-font($font-family, $file-name);
}
// Include directly to avoid trapping inside a parent selector
// TODO move inside the theme main mixin once we can use Sass 3.3 (@at-root)
@include valo-fonts;
|