Browse Source

Fixes font paths, missing comma

pull/636/head
jlukic 11 years ago
parent
commit
a8334073d8
3 changed files with 8 additions and 8 deletions
  1. 10
      src/elements/icon.less
  2. 2
      src/semantic.config
  3. 4
      src/themes/default/global.variables

10
src/elements/icon.less

@ -37,12 +37,12 @@
@font-face {
font-family: 'Icons';
src: url("@{fontPath}@{fontName}.eot");
src: url("@{fontPath}/@{fontName}.eot");
src:
url("@{fontPath}@{fontName}.eot?#iefix") format('embedded-opentype'),
url("@{fontPath}@{fontName}.svg#icons") format('svg')
url("@{fontPath}@{fontName}.woff") format('woff'),
url("@{fontPath}@{fontName}.ttf") format('truetype')
url("@{fontPath}/@{fontName}.eot?#iefix") format('embedded-opentype'),
url("@{fontPath}/@{fontName}.svg#icons") format('svg'),
url("@{fontPath}/@{fontName}.woff") format('woff'),
url("@{fontPath}/@{fontName}.ttf") format('truetype')
;
font-style: normal;

2
src/semantic.config

@ -11,7 +11,7 @@
/* Elements */
@button : 'github';
@icon : 'basic';
@icon : 'default';
@divider : 'default';
@header : 'default';
@image : 'default';

4
src/themes/default/global.variables

@ -6,8 +6,8 @@
Paths
--------------------*/
@imagePath : "../themes/@{theme}/images";
@fontPath : "../themes/@{theme}/fonts";
@imagePath : "../themes/default/images";
@fontPath : "../themes/default/fonts";
/*-------------------
Page

Loading…
Cancel
Save