blob: 8871648a43a519d5d0c0efc349c2e3fa4b25ab9a (
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
|
// 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";
@mixin valo-fonts {
// Font Awesome icons from the Base theme
@include v-font(FontAwesome, "../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;
@include user-select(none);
}
}
@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;
|