mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Revert chaning mixin name
git-diff seems to use `.octicon-font()`
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
// Octicon font
|
||||
// --------------------------------------------------
|
||||
|
||||
@font-face { .octicon-font('octicons-2.1.2.woff'); } // keep for backwards compatibility
|
||||
@font-face { .octicon-font('octicons.woff'); }
|
||||
@font-face { .octicon-font-legacy(); } // keep for backwards compatibility
|
||||
@font-face { .octicon-font(); }
|
||||
|
||||
|
||||
//
|
||||
|
||||
@@ -32,9 +32,17 @@
|
||||
}
|
||||
}
|
||||
|
||||
.octicon-font(@file) {
|
||||
// keep for backwards compatibility
|
||||
.octicon-font-legacy() {
|
||||
font-family: 'Octicons Regular';
|
||||
src: url(@file) format("woff");
|
||||
src: url("octicons-2.1.2.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.octicon-font() {
|
||||
font-family: 'Octicons Regular';
|
||||
src: url("octicons.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user