mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
41ea90c686
Summary: This adds in the Glyphicons Halflings Font/Iconset as an option for PHUIIconView along with a standard set of 10 colors. This will be a replacement for the standard action icon set in upcoming diffs, as well as obviously give us more flexibility, less KB, and less design resource time managing images. Test Plan: UIExamples, Diviner Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D8798
23 lines
548 B
CSS
23 lines
548 B
CSS
/**
|
|
* @provides font-source-sans-pro
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Source Sans Pro'),
|
|
local('SourceSansPro-Regular'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro.woff)
|
|
format('woff');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: local('Source Sans Pro Bold'),
|
|
local('SourceSansPro-Bold'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansProBold.woff)
|
|
format('woff');
|
|
}
|