~ubuntu-branches/ubuntu/vivid/horizon/vivid-updates

« back to all changes in this revision

Viewing changes to pkg/font_awesome/data/scss/_core.scss

  • Committer: Package Import Robot
  • Author(s): Corey Bryant
  • Date: 2015-04-30 15:46:00 UTC
  • mto: (87.1.1 vivid-proposed) (0.15.1)
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: package-import@ubuntu.com-20150430154600-1zms8pm8yccw8n1h
Tags: upstream-2015.1.0/xstatic
Import upstream version 2015.1.0, component xstatic

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Base Class Definition
 
2
// -------------------------
 
3
 
 
4
.#{$fa-css-prefix} {
 
5
  display: inline-block;
 
6
  font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
 
7
  font-size: inherit; // can't have font-size inherit on line above, so need to override
 
8
  text-rendering: auto; // optimizelegibility throws things off #1094
 
9
  -webkit-font-smoothing: antialiased;
 
10
  -moz-osx-font-smoothing: grayscale;
 
11
  transform: translate(0, 0); // ensures no half-pixel rendering in firefox
 
12
 
 
13
}