Blame view

src/styles/common/iconfont/_ionicons-font.less 776 Bytes
7fa943eb   梁灏   init
1
2
3
4
5
  // Ionicons Font Path
  // --------------------------
  
  @font-face {
   font-family: @ionicons-font-family;
509014fb   梁灏   update Icons
6
7
8
9
      src:
    url("@{ionicons-font-path}/Ionicons.ttf?v=@{ionicons-version}") format("truetype"),
    url("@{ionicons-font-path}/Ionicons.woff?v=@{ionicons-version}") format("woff"),
    url("@{ionicons-font-path}/Ionicons.svg?v=@{ionicons-version}#Ionicons") format("svg");
7fa943eb   梁灏   init
10
11
12
13
   font-weight: normal;
   font-style: normal;
  }
  
e355dd49   梁灏   add Select Component
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  .ivu-icon() {
      display: inline-block;
      font-family: @ionicons-font-family;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      text-rendering: auto;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  
7fa943eb   梁灏   init
28
  .ivu-icon {
e355dd49   梁灏   add Select Component
29
      .ivu-icon();
7fa943eb   梁灏   init
30
  }