OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 @font-face { | |
michaelpg
2015/05/19 03:21:57
nit: newline above declaration block
tsergeant
2015/05/19 03:35:59
Done.
| |
5 font-family: 'Roboto'; | |
6 font-style: normal; | |
7 font-weight: 400; | |
8 src: local('Roboto'), local('Roboto-Regular'), | |
9 url(chrome://resources/roboto/roboto-regular-latin.woff2) format('woff2'); | |
10 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, | |
michaelpg
2015/05/19 03:21:57
this is a very different set than the other CSS fi
tsergeant
2015/05/19 03:35:59
The unicode-range from the old files was actually
michaelpg
2015/05/19 07:21:27
Great, thanks for explaining. Glad to have this al
| |
11 U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000; | |
12 } | |
13 @font-face { | |
michaelpg
2015/05/19 03:21:57
same nit
tsergeant
2015/05/19 03:35:59
Done.
| |
14 font-family: 'Roboto'; | |
15 font-style: normal; | |
16 font-weight: 500; | |
17 src: local('Roboto Medium'), local('Roboto-Medium'), | |
18 url(chrome://resources/roboto/roboto-medium-latin.woff2) format('woff2'); | |
19 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, | |
20 U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000; | |
21 } | |
OLD | NEW |