@gogocat/data-bind 1.11.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (274) hide show
  1. package/.editorconfig +14 -14
  2. package/.vscode/launch.json +12 -12
  3. package/CONFIGURATION.md +294 -0
  4. package/REACTIVE_MODE.md +553 -0
  5. package/README.md +266 -829
  6. package/babel.config.json +30 -0
  7. package/dist/js/_escape.d.ts +14 -0
  8. package/dist/js/_escape.d.ts.map +1 -0
  9. package/dist/js/applyBinding.d.ts +11 -0
  10. package/dist/js/applyBinding.d.ts.map +1 -0
  11. package/dist/js/attrBinding.d.ts +12 -0
  12. package/dist/js/attrBinding.d.ts.map +1 -0
  13. package/dist/js/binder.d.ts +67 -0
  14. package/dist/js/binder.d.ts.map +1 -0
  15. package/dist/js/changeBinding.d.ts +19 -0
  16. package/dist/js/changeBinding.d.ts.map +1 -0
  17. package/dist/js/commentWrapper.d.ts +39 -0
  18. package/dist/js/commentWrapper.d.ts.map +1 -0
  19. package/dist/js/config.d.ts +55 -0
  20. package/dist/js/config.d.ts.map +1 -0
  21. package/dist/js/createBindingOption.d.ts +32 -0
  22. package/dist/js/createBindingOption.d.ts.map +1 -0
  23. package/dist/js/createEventBinding.d.ts +10 -0
  24. package/dist/js/createEventBinding.d.ts.map +1 -0
  25. package/dist/js/cssBinding.d.ts +15 -0
  26. package/dist/js/cssBinding.d.ts.map +1 -0
  27. package/dist/js/dataBind.js +2772 -2519
  28. package/dist/js/dataBind.min.js +8 -1
  29. package/dist/js/dataBind.min.js.map +1 -1
  30. package/dist/js/domWalker.d.ts +9 -0
  31. package/dist/js/domWalker.d.ts.map +1 -0
  32. package/dist/js/forOfBinding.d.ts +12 -0
  33. package/dist/js/forOfBinding.d.ts.map +1 -0
  34. package/dist/js/hoverBinding.d.ts +13 -0
  35. package/dist/js/hoverBinding.d.ts.map +1 -0
  36. package/dist/js/ifBinding.d.ts +12 -0
  37. package/dist/js/ifBinding.d.ts.map +1 -0
  38. package/dist/js/index.d.ts +10 -0
  39. package/dist/js/index.d.ts.map +1 -0
  40. package/dist/js/modelBinding.d.ts +12 -0
  41. package/dist/js/modelBinding.d.ts.map +1 -0
  42. package/dist/js/postProcess.d.ts +3 -0
  43. package/dist/js/postProcess.d.ts.map +1 -0
  44. package/dist/js/pubSub.d.ts +11 -0
  45. package/dist/js/pubSub.d.ts.map +1 -0
  46. package/dist/js/reactiveProxy.d.ts +28 -0
  47. package/dist/js/reactiveProxy.d.ts.map +1 -0
  48. package/dist/js/renderForOfBinding.d.ts +8 -0
  49. package/dist/js/renderForOfBinding.d.ts.map +1 -0
  50. package/dist/js/renderIfBinding.d.ts +22 -0
  51. package/dist/js/renderIfBinding.d.ts.map +1 -0
  52. package/dist/js/renderIteration.d.ts +16 -0
  53. package/dist/js/renderIteration.d.ts.map +1 -0
  54. package/dist/js/renderTemplate.d.ts +14 -0
  55. package/dist/js/renderTemplate.d.ts.map +1 -0
  56. package/dist/js/renderTemplatesBinding.d.ts +19 -0
  57. package/dist/js/renderTemplatesBinding.d.ts.map +1 -0
  58. package/dist/js/showBinding.d.ts +13 -0
  59. package/dist/js/showBinding.d.ts.map +1 -0
  60. package/dist/js/switchBinding.d.ts +13 -0
  61. package/dist/js/switchBinding.d.ts.map +1 -0
  62. package/dist/js/textBinding.d.ts +13 -0
  63. package/dist/js/textBinding.d.ts.map +1 -0
  64. package/dist/js/types/_escape.d.ts +14 -0
  65. package/dist/js/types/_escape.d.ts.map +1 -0
  66. package/dist/js/types/applyBinding.d.ts +11 -0
  67. package/dist/js/types/applyBinding.d.ts.map +1 -0
  68. package/dist/js/types/attrBinding.d.ts +12 -0
  69. package/dist/js/types/attrBinding.d.ts.map +1 -0
  70. package/dist/js/types/binder.d.ts +67 -0
  71. package/dist/js/types/binder.d.ts.map +1 -0
  72. package/dist/js/types/changeBinding.d.ts +19 -0
  73. package/dist/js/types/changeBinding.d.ts.map +1 -0
  74. package/dist/js/types/commentWrapper.d.ts +39 -0
  75. package/dist/js/types/commentWrapper.d.ts.map +1 -0
  76. package/dist/js/types/config.d.ts +55 -0
  77. package/dist/js/types/config.d.ts.map +1 -0
  78. package/dist/js/types/createBindingOption.d.ts +32 -0
  79. package/dist/js/types/createBindingOption.d.ts.map +1 -0
  80. package/dist/js/types/createEventBinding.d.ts +10 -0
  81. package/dist/js/types/createEventBinding.d.ts.map +1 -0
  82. package/dist/js/types/cssBinding.d.ts +15 -0
  83. package/dist/js/types/cssBinding.d.ts.map +1 -0
  84. package/dist/js/types/domWalker.d.ts +9 -0
  85. package/dist/js/types/domWalker.d.ts.map +1 -0
  86. package/dist/js/types/forOfBinding.d.ts +12 -0
  87. package/dist/js/types/forOfBinding.d.ts.map +1 -0
  88. package/dist/js/types/hoverBinding.d.ts +13 -0
  89. package/dist/js/types/hoverBinding.d.ts.map +1 -0
  90. package/dist/js/types/ifBinding.d.ts +12 -0
  91. package/dist/js/types/ifBinding.d.ts.map +1 -0
  92. package/dist/js/types/index.d.ts +10 -0
  93. package/dist/js/types/index.d.ts.map +1 -0
  94. package/dist/js/types/modelBinding.d.ts +12 -0
  95. package/dist/js/types/modelBinding.d.ts.map +1 -0
  96. package/dist/js/types/postProcess.d.ts +3 -0
  97. package/dist/js/types/postProcess.d.ts.map +1 -0
  98. package/dist/js/types/pubSub.d.ts +11 -0
  99. package/dist/js/types/pubSub.d.ts.map +1 -0
  100. package/dist/js/types/reactiveProxy.d.ts +28 -0
  101. package/dist/js/types/reactiveProxy.d.ts.map +1 -0
  102. package/dist/js/types/renderForOfBinding.d.ts +8 -0
  103. package/dist/js/types/renderForOfBinding.d.ts.map +1 -0
  104. package/dist/js/types/renderIfBinding.d.ts +22 -0
  105. package/dist/js/types/renderIfBinding.d.ts.map +1 -0
  106. package/dist/js/types/renderIteration.d.ts +16 -0
  107. package/dist/js/types/renderIteration.d.ts.map +1 -0
  108. package/dist/js/types/renderTemplate.d.ts +14 -0
  109. package/dist/js/types/renderTemplate.d.ts.map +1 -0
  110. package/dist/js/types/renderTemplatesBinding.d.ts +19 -0
  111. package/dist/js/types/renderTemplatesBinding.d.ts.map +1 -0
  112. package/dist/js/types/showBinding.d.ts +13 -0
  113. package/dist/js/types/showBinding.d.ts.map +1 -0
  114. package/dist/js/types/switchBinding.d.ts +13 -0
  115. package/dist/js/types/switchBinding.d.ts.map +1 -0
  116. package/dist/js/types/textBinding.d.ts +13 -0
  117. package/dist/js/types/textBinding.d.ts.map +1 -0
  118. package/dist/js/types/types.d.ts +111 -0
  119. package/dist/js/types/types.d.ts.map +1 -0
  120. package/dist/js/types/util.d.ts +119 -0
  121. package/dist/js/types/util.d.ts.map +1 -0
  122. package/dist/js/types.d.ts +111 -0
  123. package/dist/js/types.d.ts.map +1 -0
  124. package/dist/js/util.d.ts +119 -0
  125. package/dist/js/util.d.ts.map +1 -0
  126. package/eslint.config.js +124 -0
  127. package/examples/DBMONSTER_COMPARISON.md +123 -0
  128. package/examples/afterRenderDemo.html +119 -0
  129. package/examples/bootstrap/css/animate.css +1579 -1579
  130. package/examples/bootstrap/css/bootstrap.min.css +6 -6
  131. package/examples/bootstrap/css/homeservices.css +378 -390
  132. package/examples/bootstrap/css/open-iconic.css +511 -511
  133. package/examples/bootstrap/fonts/open-iconic.svg +543 -543
  134. package/examples/bootstrap/js/compMessageDialog.js +20 -19
  135. package/examples/bootstrap/js/compSearchBar.js +12 -19
  136. package/examples/bootstrap/js/compSearchResults.js +50 -46
  137. package/examples/bootstrap/js/featureAdsResult.json +65 -65
  138. package/examples/bootstrap/js/searchResult.json +57 -57
  139. package/examples/bootstrap.html +343 -332
  140. package/examples/css/baseTodo.css +141 -141
  141. package/examples/css/dbMonsterStyles.css +27 -27
  142. package/examples/css/indexTodo.css +374 -374
  143. package/examples/dbmonsterForOfReactive.html +40 -0
  144. package/examples/dbmonsterReact.html +19 -0
  145. package/examples/forOfBindingSimpleDebug.html +45 -0
  146. package/examples/form.html +20 -4
  147. package/examples/globalConfig.html +131 -0
  148. package/examples/js/afterRenderDemo.js +190 -0
  149. package/examples/js/appTodo.js +46 -46
  150. package/examples/js/attrBindingDemo.js +2 -2
  151. package/examples/js/dbMonApp.js +24 -26
  152. package/examples/js/dbMonAppReact.jsx +79 -0
  153. package/examples/js/dbMonAppReactive.js +28 -0
  154. package/examples/js/fiberDemo.js +4 -4
  155. package/examples/js/filtersDemo.js +8 -8
  156. package/examples/js/forOfDemo.js +7 -9
  157. package/examples/js/forOfDemoComplex.js +44 -17
  158. package/examples/js/form.js +44 -12
  159. package/examples/js/globalConfig.js +117 -0
  160. package/examples/js/ifBindingDemo.js +16 -16
  161. package/examples/js/reactiveDemo.js +119 -0
  162. package/examples/js/switchBindingDemo.js +8 -8
  163. package/examples/react-dbmonster/dist/bundle.js +43 -0
  164. package/examples/react-dbmonster/package-lock.json +537 -0
  165. package/examples/react-dbmonster/package.json +16 -0
  166. package/examples/react-dbmonster/src/index.jsx +80 -0
  167. package/examples/reactiveDemo.html +127 -0
  168. package/examples/refreshRateTest.html +75 -75
  169. package/index.html +841 -0
  170. package/package.json +31 -34
  171. package/rollup.config.js +79 -36
  172. package/src/{_escape.js → _escape.ts} +19 -17
  173. package/src/applyBinding.ts +179 -0
  174. package/src/{attrBinding.js → attrBinding.ts} +14 -13
  175. package/src/binder.ts +289 -0
  176. package/src/changeBinding.ts +93 -0
  177. package/src/{commentWrapper.js → commentWrapper.ts} +33 -30
  178. package/src/config.ts +107 -0
  179. package/src/createBindingOption.ts +91 -0
  180. package/src/createEventBinding.ts +88 -0
  181. package/src/{cssBinding.js → cssBinding.ts} +13 -11
  182. package/src/{domWalker.js → domWalker.ts} +44 -30
  183. package/src/{forOfBinding.js → forOfBinding.ts} +4 -3
  184. package/src/hoverBinding.ts +84 -0
  185. package/src/{ifBinding.js → ifBinding.ts} +14 -12
  186. package/src/index.ts +53 -0
  187. package/src/{modelBinding.js → modelBinding.ts} +11 -9
  188. package/src/postProcess.ts +22 -0
  189. package/src/{pubSub.js → pubSub.ts} +24 -15
  190. package/src/reactiveProxy.ts +285 -0
  191. package/src/{renderForOfBinding.js → renderForOfBinding.ts} +55 -33
  192. package/src/{renderIfBinding.js → renderIfBinding.ts} +45 -20
  193. package/src/renderIteration.ts +53 -0
  194. package/src/renderTemplate.ts +165 -0
  195. package/src/renderTemplatesBinding.ts +73 -0
  196. package/src/{showBinding.js → showBinding.ts} +4 -3
  197. package/src/{switchBinding.js → switchBinding.ts} +18 -15
  198. package/src/{textBinding.js → textBinding.ts} +5 -4
  199. package/src/types.ts +124 -0
  200. package/src/util.ts +810 -0
  201. package/test/css/reporter.css +9 -9
  202. package/test/fixtures/dataBindBootstrap.html +2 -2
  203. package/test/fixtures/formBindings.html +9 -1
  204. package/test/globals.d.ts +19 -0
  205. package/test/helpers/testHelper.js +46 -11
  206. package/test/mocks/featureAdsResult.json +65 -65
  207. package/test/mocks/searchResult.json +57 -57
  208. package/test/specs/{attrBinding.spec.js → attrBinding.spec.ts} +103 -106
  209. package/test/specs/{binder.spec.js → binder.spec.ts} +29 -27
  210. package/test/specs/blurBinding.spec.ts +60 -0
  211. package/test/specs/chainableUse.spec.ts +125 -0
  212. package/test/specs/clickBinding.spec.ts +194 -0
  213. package/test/specs/{cssBinding.spec.js → cssBinding.spec.ts} +72 -79
  214. package/test/specs/{dataBindBootstrap.spec.js → dataBindBootstrap.spec.ts} +332 -313
  215. package/test/specs/{filter.spec.js → filter.spec.ts} +75 -76
  216. package/test/specs/{forOfBinding.spec.js → forOfBinding.spec.ts} +208 -219
  217. package/test/specs/formBinding.spec.ts +272 -0
  218. package/test/specs/ifBinding.spec.ts +165 -0
  219. package/test/specs/{nestedComponent.spec.js → nestedComponent.spec.ts} +88 -88
  220. package/test/specs/reactiveProxy.spec.ts +465 -0
  221. package/test/specs/{showBinding.spec.js → showBinding.spec.ts} +148 -149
  222. package/test/specs/{switchBinding.spec.js → switchBinding.spec.ts} +172 -173
  223. package/test/specs/templateBinding.spec.ts +273 -0
  224. package/test/specs/{textBinding.spec.js → textBinding.spec.ts} +47 -48
  225. package/test/tsconfig.json +31 -0
  226. package/test-output.txt +200 -0
  227. package/test-reactive.html +224 -0
  228. package/tsconfig.json +28 -0
  229. package/vendors/lodash.custom.js +4577 -4577
  230. package/vendors/lodash.custom.min.js +45 -45
  231. package/vitest.config.js +27 -0
  232. package/.eslintrc.js +0 -1
  233. package/.grunt/grunt-contrib-jasmine/boot.js +0 -161
  234. package/.grunt/grunt-contrib-jasmine/dist/js/dataBind.js +0 -9
  235. package/.grunt/grunt-contrib-jasmine/grunt-template-jasmine-istanbul/reporter.js +0 -23
  236. package/.grunt/grunt-contrib-jasmine/jasmine-html.js +0 -853
  237. package/.grunt/grunt-contrib-jasmine/jasmine.css +0 -271
  238. package/.grunt/grunt-contrib-jasmine/jasmine.js +0 -9761
  239. package/.grunt/grunt-contrib-jasmine/jasmine_favicon.png +0 -0
  240. package/.grunt/grunt-contrib-jasmine/json2.js +0 -489
  241. package/.grunt/grunt-contrib-jasmine/reporter.js +0 -107
  242. package/coverage/coverage.json +0 -1
  243. package/coverage/lcov/lcov-report/base.css +0 -213
  244. package/coverage/lcov/lcov-report/index.html +0 -93
  245. package/coverage/lcov/lcov-report/js/dataBind.js.html +0 -6596
  246. package/coverage/lcov/lcov-report/js/index.html +0 -93
  247. package/coverage/lcov/lcov-report/prettify.css +0 -1
  248. package/coverage/lcov/lcov-report/prettify.js +0 -1
  249. package/coverage/lcov/lcov-report/sort-arrow-sprite.png +0 -0
  250. package/coverage/lcov/lcov-report/sorter.js +0 -158
  251. package/coverage/lcov/lcov.info +0 -1991
  252. package/eslintrc.json +0 -40
  253. package/examples/bootstrap/js/bootstrap.min.js +0 -6
  254. package/examples/bootstrap/js/popper.min.js +0 -5
  255. package/examples/bootstrap/js/searchSuggestion.js +0 -58
  256. package/examples/bootstrap/js/typeahead.jquery.js +0 -1538
  257. package/gruntfile.js +0 -92
  258. package/gulpfile.js +0 -32
  259. package/src/binder.js +0 -422
  260. package/src/changeBinding.js +0 -57
  261. package/src/config.js +0 -65
  262. package/src/createBindingOption.js +0 -66
  263. package/src/createEventBinding.js +0 -46
  264. package/src/eventSystem.js +0 -46
  265. package/src/hoverBinding.js +0 -57
  266. package/src/index.js +0 -26
  267. package/src/renderTemplate.js +0 -128
  268. package/src/util.js +0 -648
  269. package/test/specs/blurBinding.spec.js +0 -57
  270. package/test/specs/formBinding.spec.js +0 -292
  271. package/test/specs/ifBinding.spec.js +0 -169
  272. package/test/specs/templateBinding.spec.js +0 -117
  273. package/vendors/jasmine-jquery.js +0 -841
  274. package/vendors/jquery-3.2.1.min.js +0 -4
@@ -1,511 +1,511 @@
1
-
2
- @font-face {
3
- font-family: 'Icons';
4
- src: url('../fonts/open-iconic.eot');
5
- src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg');
6
- font-weight: normal;
7
- font-style: normal;
8
- }
9
-
10
- .oi[data-glyph].oi-text-replace {
11
- font-size: 0;
12
- line-height: 0;
13
- }
14
-
15
- .oi[data-glyph].oi-text-replace:before {
16
- width: 1em;
17
- text-align: center;
18
- }
19
-
20
- .oi[data-glyph]:before {
21
- font-family: 'Icons';
22
- display: inline-block;
23
- speak: none;
24
- line-height: 1;
25
- vertical-align: baseline;
26
- font-weight: normal;
27
- font-style: normal;
28
- -webkit-font-smoothing: antialiased;
29
- -moz-osx-font-smoothing: grayscale;
30
- }
31
-
32
- .oi[data-glyph]:empty:before {
33
- width: 1em;
34
- text-align: center;
35
- box-sizing: content-box;
36
- }
37
-
38
- .oi[data-glyph].oi-align-left:before {
39
- text-align: left;
40
- }
41
-
42
- .oi[data-glyph].oi-align-right:before {
43
- text-align: right;
44
- }
45
-
46
- .oi[data-glyph].oi-align-center:before {
47
- text-align: center;
48
- }
49
-
50
- .oi[data-glyph].oi-flip-horizontal:before {
51
- -webkit-transform: scale(-1, 1);
52
- -ms-transform: scale(-1, 1);
53
- transform: scale(-1, 1);
54
- }
55
- .oi[data-glyph].oi-flip-vertical:before {
56
- -webkit-transform: scale(1, -1);
57
- -ms-transform: scale(-1, 1);
58
- transform: scale(1, -1);
59
- }
60
- .oi[data-glyph].oi-flip-horizontal-vertical:before {
61
- -webkit-transform: scale(-1, -1);
62
- -ms-transform: scale(-1, 1);
63
- transform: scale(-1, -1);
64
- }
65
-
66
-
67
- .oi[data-glyph=account-login]:before { content:'\e000'; }
68
-
69
- .oi[data-glyph=account-logout]:before { content:'\e001'; }
70
-
71
- .oi[data-glyph=action-redo]:before { content:'\e002'; }
72
-
73
- .oi[data-glyph=action-undo]:before { content:'\e003'; }
74
-
75
- .oi[data-glyph=align-center]:before { content:'\e004'; }
76
-
77
- .oi[data-glyph=align-left]:before { content:'\e005'; }
78
-
79
- .oi[data-glyph=align-right]:before { content:'\e006'; }
80
-
81
- .oi[data-glyph=aperture]:before { content:'\e007'; }
82
-
83
- .oi[data-glyph=arrow-bottom]:before { content:'\e008'; }
84
-
85
- .oi[data-glyph=arrow-circle-bottom]:before { content:'\e009'; }
86
-
87
- .oi[data-glyph=arrow-circle-left]:before { content:'\e00a'; }
88
-
89
- .oi[data-glyph=arrow-circle-right]:before { content:'\e00b'; }
90
-
91
- .oi[data-glyph=arrow-circle-top]:before { content:'\e00c'; }
92
-
93
- .oi[data-glyph=arrow-left]:before { content:'\e00d'; }
94
-
95
- .oi[data-glyph=arrow-right]:before { content:'\e00e'; }
96
-
97
- .oi[data-glyph=arrow-thick-bottom]:before { content:'\e00f'; }
98
-
99
- .oi[data-glyph=arrow-thick-left]:before { content:'\e010'; }
100
-
101
- .oi[data-glyph=arrow-thick-right]:before { content:'\e011'; }
102
-
103
- .oi[data-glyph=arrow-thick-top]:before { content:'\e012'; }
104
-
105
- .oi[data-glyph=arrow-top]:before { content:'\e013'; }
106
-
107
- .oi[data-glyph=audio-spectrum]:before { content:'\e014'; }
108
-
109
- .oi[data-glyph=audio]:before { content:'\e015'; }
110
-
111
- .oi[data-glyph=badge]:before { content:'\e016'; }
112
-
113
- .oi[data-glyph=ban]:before { content:'\e017'; }
114
-
115
- .oi[data-glyph=bar-chart]:before { content:'\e018'; }
116
-
117
- .oi[data-glyph=basket]:before { content:'\e019'; }
118
-
119
- .oi[data-glyph=battery-empty]:before { content:'\e01a'; }
120
-
121
- .oi[data-glyph=battery-full]:before { content:'\e01b'; }
122
-
123
- .oi[data-glyph=beaker]:before { content:'\e01c'; }
124
-
125
- .oi[data-glyph=bell]:before { content:'\e01d'; }
126
-
127
- .oi[data-glyph=bluetooth]:before { content:'\e01e'; }
128
-
129
- .oi[data-glyph=bold]:before { content:'\e01f'; }
130
-
131
- .oi[data-glyph=bolt]:before { content:'\e020'; }
132
-
133
- .oi[data-glyph=book]:before { content:'\e021'; }
134
-
135
- .oi[data-glyph=bookmark]:before { content:'\e022'; }
136
-
137
- .oi[data-glyph=box]:before { content:'\e023'; }
138
-
139
- .oi[data-glyph=briefcase]:before { content:'\e024'; }
140
-
141
- .oi[data-glyph=british-pound]:before { content:'\e025'; }
142
-
143
- .oi[data-glyph=browser]:before { content:'\e026'; }
144
-
145
- .oi[data-glyph=brush]:before { content:'\e027'; }
146
-
147
- .oi[data-glyph=bug]:before { content:'\e028'; }
148
-
149
- .oi[data-glyph=bullhorn]:before { content:'\e029'; }
150
-
151
- .oi[data-glyph=calculator]:before { content:'\e02a'; }
152
-
153
- .oi[data-glyph=calendar]:before { content:'\e02b'; }
154
-
155
- .oi[data-glyph=camera-slr]:before { content:'\e02c'; }
156
-
157
- .oi[data-glyph=caret-bottom]:before { content:'\e02d'; }
158
-
159
- .oi[data-glyph=caret-left]:before { content:'\e02e'; }
160
-
161
- .oi[data-glyph=caret-right]:before { content:'\e02f'; }
162
-
163
- .oi[data-glyph=caret-top]:before { content:'\e030'; }
164
-
165
- .oi[data-glyph=cart]:before { content:'\e031'; }
166
-
167
- .oi[data-glyph=chat]:before { content:'\e032'; }
168
-
169
- .oi[data-glyph=check]:before { content:'\e033'; }
170
-
171
- .oi[data-glyph=chevron-bottom]:before { content:'\e034'; }
172
-
173
- .oi[data-glyph=chevron-left]:before { content:'\e035'; }
174
-
175
- .oi[data-glyph=chevron-right]:before { content:'\e036'; }
176
-
177
- .oi[data-glyph=chevron-top]:before { content:'\e037'; }
178
-
179
- .oi[data-glyph=circle-check]:before { content:'\e038'; }
180
-
181
- .oi[data-glyph=circle-x]:before { content:'\e039'; }
182
-
183
- .oi[data-glyph=clipboard]:before { content:'\e03a'; }
184
-
185
- .oi[data-glyph=clock]:before { content:'\e03b'; }
186
-
187
- .oi[data-glyph=cloud-download]:before { content:'\e03c'; }
188
-
189
- .oi[data-glyph=cloud-upload]:before { content:'\e03d'; }
190
-
191
- .oi[data-glyph=cloud]:before { content:'\e03e'; }
192
-
193
- .oi[data-glyph=cloudy]:before { content:'\e03f'; }
194
-
195
- .oi[data-glyph=code]:before { content:'\e040'; }
196
-
197
- .oi[data-glyph=cog]:before { content:'\e041'; }
198
-
199
- .oi[data-glyph=collapse-down]:before { content:'\e042'; }
200
-
201
- .oi[data-glyph=collapse-left]:before { content:'\e043'; }
202
-
203
- .oi[data-glyph=collapse-right]:before { content:'\e044'; }
204
-
205
- .oi[data-glyph=collapse-up]:before { content:'\e045'; }
206
-
207
- .oi[data-glyph=command]:before { content:'\e046'; }
208
-
209
- .oi[data-glyph=comment-square]:before { content:'\e047'; }
210
-
211
- .oi[data-glyph=compass]:before { content:'\e048'; }
212
-
213
- .oi[data-glyph=contrast]:before { content:'\e049'; }
214
-
215
- .oi[data-glyph=copywriting]:before { content:'\e04a'; }
216
-
217
- .oi[data-glyph=credit-card]:before { content:'\e04b'; }
218
-
219
- .oi[data-glyph=crop]:before { content:'\e04c'; }
220
-
221
- .oi[data-glyph=dashboard]:before { content:'\e04d'; }
222
-
223
- .oi[data-glyph=data-transfer-download]:before { content:'\e04e'; }
224
-
225
- .oi[data-glyph=data-transfer-upload]:before { content:'\e04f'; }
226
-
227
- .oi[data-glyph=delete]:before { content:'\e050'; }
228
-
229
- .oi[data-glyph=dial]:before { content:'\e051'; }
230
-
231
- .oi[data-glyph=document]:before { content:'\e052'; }
232
-
233
- .oi[data-glyph=dollar]:before { content:'\e053'; }
234
-
235
- .oi[data-glyph=double-quote-sans-left]:before { content:'\e054'; }
236
-
237
- .oi[data-glyph=double-quote-sans-right]:before { content:'\e055'; }
238
-
239
- .oi[data-glyph=double-quote-serif-left]:before { content:'\e056'; }
240
-
241
- .oi[data-glyph=double-quote-serif-right]:before { content:'\e057'; }
242
-
243
- .oi[data-glyph=droplet]:before { content:'\e058'; }
244
-
245
- .oi[data-glyph=eject]:before { content:'\e059'; }
246
-
247
- .oi[data-glyph=elevator]:before { content:'\e05a'; }
248
-
249
- .oi[data-glyph=ellipses]:before { content:'\e05b'; }
250
-
251
- .oi[data-glyph=envelope-closed]:before { content:'\e05c'; }
252
-
253
- .oi[data-glyph=envelope-open]:before { content:'\e05d'; }
254
-
255
- .oi[data-glyph=euro]:before { content:'\e05e'; }
256
-
257
- .oi[data-glyph=excerpt]:before { content:'\e05f'; }
258
-
259
- .oi[data-glyph=expand-down]:before { content:'\e060'; }
260
-
261
- .oi[data-glyph=expand-left]:before { content:'\e061'; }
262
-
263
- .oi[data-glyph=expand-right]:before { content:'\e062'; }
264
-
265
- .oi[data-glyph=expand-up]:before { content:'\e063'; }
266
-
267
- .oi[data-glyph=external-link]:before { content:'\e064'; }
268
-
269
- .oi[data-glyph=eye]:before { content:'\e065'; }
270
-
271
- .oi[data-glyph=eyedropper]:before { content:'\e066'; }
272
-
273
- .oi[data-glyph=file]:before { content:'\e067'; }
274
-
275
- .oi[data-glyph=fire]:before { content:'\e068'; }
276
-
277
- .oi[data-glyph=flag]:before { content:'\e069'; }
278
-
279
- .oi[data-glyph=flash]:before { content:'\e06a'; }
280
-
281
- .oi[data-glyph=folder]:before { content:'\e06b'; }
282
-
283
- .oi[data-glyph=fork]:before { content:'\e06c'; }
284
-
285
- .oi[data-glyph=fullscreen-enter]:before { content:'\e06d'; }
286
-
287
- .oi[data-glyph=fullscreen-exit]:before { content:'\e06e'; }
288
-
289
- .oi[data-glyph=globe]:before { content:'\e06f'; }
290
-
291
- .oi[data-glyph=graph]:before { content:'\e070'; }
292
-
293
- .oi[data-glyph=grid-four-up]:before { content:'\e071'; }
294
-
295
- .oi[data-glyph=grid-three-up]:before { content:'\e072'; }
296
-
297
- .oi[data-glyph=grid-two-up]:before { content:'\e073'; }
298
-
299
- .oi[data-glyph=hard-drive]:before { content:'\e074'; }
300
-
301
- .oi[data-glyph=header]:before { content:'\e075'; }
302
-
303
- .oi[data-glyph=headphones]:before { content:'\e076'; }
304
-
305
- .oi[data-glyph=heart]:before { content:'\e077'; }
306
-
307
- .oi[data-glyph=home]:before { content:'\e078'; }
308
-
309
- .oi[data-glyph=image]:before { content:'\e079'; }
310
-
311
- .oi[data-glyph=inbox]:before { content:'\e07a'; }
312
-
313
- .oi[data-glyph=infinity]:before { content:'\e07b'; }
314
-
315
- .oi[data-glyph=info]:before { content:'\e07c'; }
316
-
317
- .oi[data-glyph=italic]:before { content:'\e07d'; }
318
-
319
- .oi[data-glyph=justify-center]:before { content:'\e07e'; }
320
-
321
- .oi[data-glyph=justify-left]:before { content:'\e07f'; }
322
-
323
- .oi[data-glyph=justify-right]:before { content:'\e080'; }
324
-
325
- .oi[data-glyph=key]:before { content:'\e081'; }
326
-
327
- .oi[data-glyph=laptop]:before { content:'\e082'; }
328
-
329
- .oi[data-glyph=layers]:before { content:'\e083'; }
330
-
331
- .oi[data-glyph=lightbulb]:before { content:'\e084'; }
332
-
333
- .oi[data-glyph=link-broken]:before { content:'\e085'; }
334
-
335
- .oi[data-glyph=link-intact]:before { content:'\e086'; }
336
-
337
- .oi[data-glyph=list-rich]:before { content:'\e087'; }
338
-
339
- .oi[data-glyph=list]:before { content:'\e088'; }
340
-
341
- .oi[data-glyph=location]:before { content:'\e089'; }
342
-
343
- .oi[data-glyph=lock-locked]:before { content:'\e08a'; }
344
-
345
- .oi[data-glyph=lock-unlocked]:before { content:'\e08b'; }
346
-
347
- .oi[data-glyph=loop-circular]:before { content:'\e08c'; }
348
-
349
- .oi[data-glyph=loop-square]:before { content:'\e08d'; }
350
-
351
- .oi[data-glyph=loop]:before { content:'\e08e'; }
352
-
353
- .oi[data-glyph=magnifying-glass]:before { content:'\e08f'; }
354
-
355
- .oi[data-glyph=map-marker]:before { content:'\e090'; }
356
-
357
- .oi[data-glyph=map]:before { content:'\e091'; }
358
-
359
- .oi[data-glyph=media-pause]:before { content:'\e092'; }
360
-
361
- .oi[data-glyph=media-play]:before { content:'\e093'; }
362
-
363
- .oi[data-glyph=media-record]:before { content:'\e094'; }
364
-
365
- .oi[data-glyph=media-skip-backward]:before { content:'\e095'; }
366
-
367
- .oi[data-glyph=media-skip-forward]:before { content:'\e096'; }
368
-
369
- .oi[data-glyph=media-step-backward]:before { content:'\e097'; }
370
-
371
- .oi[data-glyph=media-step-forward]:before { content:'\e098'; }
372
-
373
- .oi[data-glyph=media-stop]:before { content:'\e099'; }
374
-
375
- .oi[data-glyph=medical-cross]:before { content:'\e09a'; }
376
-
377
- .oi[data-glyph=menu]:before { content:'\e09b'; }
378
-
379
- .oi[data-glyph=microphone]:before { content:'\e09c'; }
380
-
381
- .oi[data-glyph=minus]:before { content:'\e09d'; }
382
-
383
- .oi[data-glyph=monitor]:before { content:'\e09e'; }
384
-
385
- .oi[data-glyph=moon]:before { content:'\e09f'; }
386
-
387
- .oi[data-glyph=move]:before { content:'\e0a0'; }
388
-
389
- .oi[data-glyph=musical-note]:before { content:'\e0a1'; }
390
-
391
- .oi[data-glyph=paperclip]:before { content:'\e0a2'; }
392
-
393
- .oi[data-glyph=pencil]:before { content:'\e0a3'; }
394
-
395
- .oi[data-glyph=people]:before { content:'\e0a4'; }
396
-
397
- .oi[data-glyph=person]:before { content:'\e0a5'; }
398
-
399
- .oi[data-glyph=phone]:before { content:'\e0a6'; }
400
-
401
- .oi[data-glyph=pie-chart]:before { content:'\e0a7'; }
402
-
403
- .oi[data-glyph=pin]:before { content:'\e0a8'; }
404
-
405
- .oi[data-glyph=play-circle]:before { content:'\e0a9'; }
406
-
407
- .oi[data-glyph=plus]:before { content:'\e0aa'; }
408
-
409
- .oi[data-glyph=power-standby]:before { content:'\e0ab'; }
410
-
411
- .oi[data-glyph=print]:before { content:'\e0ac'; }
412
-
413
- .oi[data-glyph=project]:before { content:'\e0ad'; }
414
-
415
- .oi[data-glyph=pulse]:before { content:'\e0ae'; }
416
-
417
- .oi[data-glyph=puzzle-piece]:before { content:'\e0af'; }
418
-
419
- .oi[data-glyph=question-mark]:before { content:'\e0b0'; }
420
-
421
- .oi[data-glyph=rain]:before { content:'\e0b1'; }
422
-
423
- .oi[data-glyph=random]:before { content:'\e0b2'; }
424
-
425
- .oi[data-glyph=reload]:before { content:'\e0b3'; }
426
-
427
- .oi[data-glyph=resize-both]:before { content:'\e0b4'; }
428
-
429
- .oi[data-glyph=resize-height]:before { content:'\e0b5'; }
430
-
431
- .oi[data-glyph=resize-width]:before { content:'\e0b6'; }
432
-
433
- .oi[data-glyph=rss-alt]:before { content:'\e0b7'; }
434
-
435
- .oi[data-glyph=rss]:before { content:'\e0b8'; }
436
-
437
- .oi[data-glyph=script]:before { content:'\e0b9'; }
438
-
439
- .oi[data-glyph=share-boxed]:before { content:'\e0ba'; }
440
-
441
- .oi[data-glyph=share]:before { content:'\e0bb'; }
442
-
443
- .oi[data-glyph=shield]:before { content:'\e0bc'; }
444
-
445
- .oi[data-glyph=signal]:before { content:'\e0bd'; }
446
-
447
- .oi[data-glyph=signpost]:before { content:'\e0be'; }
448
-
449
- .oi[data-glyph=sort-ascending]:before { content:'\e0bf'; }
450
-
451
- .oi[data-glyph=sort-descending]:before { content:'\e0c0'; }
452
-
453
- .oi[data-glyph=spreadsheet]:before { content:'\e0c1'; }
454
-
455
- .oi[data-glyph=star]:before { content:'\e0c2'; }
456
-
457
- .oi[data-glyph=sun]:before { content:'\e0c3'; }
458
-
459
- .oi[data-glyph=tablet]:before { content:'\e0c4'; }
460
-
461
- .oi[data-glyph=tag]:before { content:'\e0c5'; }
462
-
463
- .oi[data-glyph=tags]:before { content:'\e0c6'; }
464
-
465
- .oi[data-glyph=target]:before { content:'\e0c7'; }
466
-
467
- .oi[data-glyph=task]:before { content:'\e0c8'; }
468
-
469
- .oi[data-glyph=terminal]:before { content:'\e0c9'; }
470
-
471
- .oi[data-glyph=text]:before { content:'\e0ca'; }
472
-
473
- .oi[data-glyph=thumb-down]:before { content:'\e0cb'; }
474
-
475
- .oi[data-glyph=thumb-up]:before { content:'\e0cc'; }
476
-
477
- .oi[data-glyph=timer]:before { content:'\e0cd'; }
478
-
479
- .oi[data-glyph=transfer]:before { content:'\e0ce'; }
480
-
481
- .oi[data-glyph=trash]:before { content:'\e0cf'; }
482
-
483
- .oi[data-glyph=underline]:before { content:'\e0d0'; }
484
-
485
- .oi[data-glyph=vertical-align-bottom]:before { content:'\e0d1'; }
486
-
487
- .oi[data-glyph=vertical-align-center]:before { content:'\e0d2'; }
488
-
489
- .oi[data-glyph=vertical-align-top]:before { content:'\e0d3'; }
490
-
491
- .oi[data-glyph=video]:before { content:'\e0d4'; }
492
-
493
- .oi[data-glyph=volume-high]:before { content:'\e0d5'; }
494
-
495
- .oi[data-glyph=volume-low]:before { content:'\e0d6'; }
496
-
497
- .oi[data-glyph=volume-off]:before { content:'\e0d7'; }
498
-
499
- .oi[data-glyph=warning]:before { content:'\e0d8'; }
500
-
501
- .oi[data-glyph=wifi]:before { content:'\e0d9'; }
502
-
503
- .oi[data-glyph=wrench]:before { content:'\e0da'; }
504
-
505
- .oi[data-glyph=x]:before { content:'\e0db'; }
506
-
507
- .oi[data-glyph=yen]:before { content:'\e0dc'; }
508
-
509
- .oi[data-glyph=zoom-in]:before { content:'\e0dd'; }
510
-
511
- .oi[data-glyph=zoom-out]:before { content:'\e0de'; }
1
+
2
+ @font-face {
3
+ font-family: 'Icons';
4
+ src: url('../fonts/open-iconic.eot');
5
+ src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg');
6
+ font-weight: normal;
7
+ font-style: normal;
8
+ }
9
+
10
+ .oi[data-glyph].oi-text-replace {
11
+ font-size: 0;
12
+ line-height: 0;
13
+ }
14
+
15
+ .oi[data-glyph].oi-text-replace:before {
16
+ width: 1em;
17
+ text-align: center;
18
+ }
19
+
20
+ .oi[data-glyph]:before {
21
+ font-family: 'Icons';
22
+ display: inline-block;
23
+ speak: none;
24
+ line-height: 1;
25
+ vertical-align: baseline;
26
+ font-weight: normal;
27
+ font-style: normal;
28
+ -webkit-font-smoothing: antialiased;
29
+ -moz-osx-font-smoothing: grayscale;
30
+ }
31
+
32
+ .oi[data-glyph]:empty:before {
33
+ width: 1em;
34
+ text-align: center;
35
+ box-sizing: content-box;
36
+ }
37
+
38
+ .oi[data-glyph].oi-align-left:before {
39
+ text-align: left;
40
+ }
41
+
42
+ .oi[data-glyph].oi-align-right:before {
43
+ text-align: right;
44
+ }
45
+
46
+ .oi[data-glyph].oi-align-center:before {
47
+ text-align: center;
48
+ }
49
+
50
+ .oi[data-glyph].oi-flip-horizontal:before {
51
+ -webkit-transform: scale(-1, 1);
52
+ -ms-transform: scale(-1, 1);
53
+ transform: scale(-1, 1);
54
+ }
55
+ .oi[data-glyph].oi-flip-vertical:before {
56
+ -webkit-transform: scale(1, -1);
57
+ -ms-transform: scale(-1, 1);
58
+ transform: scale(1, -1);
59
+ }
60
+ .oi[data-glyph].oi-flip-horizontal-vertical:before {
61
+ -webkit-transform: scale(-1, -1);
62
+ -ms-transform: scale(-1, 1);
63
+ transform: scale(-1, -1);
64
+ }
65
+
66
+
67
+ .oi[data-glyph=account-login]:before { content:'\e000'; }
68
+
69
+ .oi[data-glyph=account-logout]:before { content:'\e001'; }
70
+
71
+ .oi[data-glyph=action-redo]:before { content:'\e002'; }
72
+
73
+ .oi[data-glyph=action-undo]:before { content:'\e003'; }
74
+
75
+ .oi[data-glyph=align-center]:before { content:'\e004'; }
76
+
77
+ .oi[data-glyph=align-left]:before { content:'\e005'; }
78
+
79
+ .oi[data-glyph=align-right]:before { content:'\e006'; }
80
+
81
+ .oi[data-glyph=aperture]:before { content:'\e007'; }
82
+
83
+ .oi[data-glyph=arrow-bottom]:before { content:'\e008'; }
84
+
85
+ .oi[data-glyph=arrow-circle-bottom]:before { content:'\e009'; }
86
+
87
+ .oi[data-glyph=arrow-circle-left]:before { content:'\e00a'; }
88
+
89
+ .oi[data-glyph=arrow-circle-right]:before { content:'\e00b'; }
90
+
91
+ .oi[data-glyph=arrow-circle-top]:before { content:'\e00c'; }
92
+
93
+ .oi[data-glyph=arrow-left]:before { content:'\e00d'; }
94
+
95
+ .oi[data-glyph=arrow-right]:before { content:'\e00e'; }
96
+
97
+ .oi[data-glyph=arrow-thick-bottom]:before { content:'\e00f'; }
98
+
99
+ .oi[data-glyph=arrow-thick-left]:before { content:'\e010'; }
100
+
101
+ .oi[data-glyph=arrow-thick-right]:before { content:'\e011'; }
102
+
103
+ .oi[data-glyph=arrow-thick-top]:before { content:'\e012'; }
104
+
105
+ .oi[data-glyph=arrow-top]:before { content:'\e013'; }
106
+
107
+ .oi[data-glyph=audio-spectrum]:before { content:'\e014'; }
108
+
109
+ .oi[data-glyph=audio]:before { content:'\e015'; }
110
+
111
+ .oi[data-glyph=badge]:before { content:'\e016'; }
112
+
113
+ .oi[data-glyph=ban]:before { content:'\e017'; }
114
+
115
+ .oi[data-glyph=bar-chart]:before { content:'\e018'; }
116
+
117
+ .oi[data-glyph=basket]:before { content:'\e019'; }
118
+
119
+ .oi[data-glyph=battery-empty]:before { content:'\e01a'; }
120
+
121
+ .oi[data-glyph=battery-full]:before { content:'\e01b'; }
122
+
123
+ .oi[data-glyph=beaker]:before { content:'\e01c'; }
124
+
125
+ .oi[data-glyph=bell]:before { content:'\e01d'; }
126
+
127
+ .oi[data-glyph=bluetooth]:before { content:'\e01e'; }
128
+
129
+ .oi[data-glyph=bold]:before { content:'\e01f'; }
130
+
131
+ .oi[data-glyph=bolt]:before { content:'\e020'; }
132
+
133
+ .oi[data-glyph=book]:before { content:'\e021'; }
134
+
135
+ .oi[data-glyph=bookmark]:before { content:'\e022'; }
136
+
137
+ .oi[data-glyph=box]:before { content:'\e023'; }
138
+
139
+ .oi[data-glyph=briefcase]:before { content:'\e024'; }
140
+
141
+ .oi[data-glyph=british-pound]:before { content:'\e025'; }
142
+
143
+ .oi[data-glyph=browser]:before { content:'\e026'; }
144
+
145
+ .oi[data-glyph=brush]:before { content:'\e027'; }
146
+
147
+ .oi[data-glyph=bug]:before { content:'\e028'; }
148
+
149
+ .oi[data-glyph=bullhorn]:before { content:'\e029'; }
150
+
151
+ .oi[data-glyph=calculator]:before { content:'\e02a'; }
152
+
153
+ .oi[data-glyph=calendar]:before { content:'\e02b'; }
154
+
155
+ .oi[data-glyph=camera-slr]:before { content:'\e02c'; }
156
+
157
+ .oi[data-glyph=caret-bottom]:before { content:'\e02d'; }
158
+
159
+ .oi[data-glyph=caret-left]:before { content:'\e02e'; }
160
+
161
+ .oi[data-glyph=caret-right]:before { content:'\e02f'; }
162
+
163
+ .oi[data-glyph=caret-top]:before { content:'\e030'; }
164
+
165
+ .oi[data-glyph=cart]:before { content:'\e031'; }
166
+
167
+ .oi[data-glyph=chat]:before { content:'\e032'; }
168
+
169
+ .oi[data-glyph=check]:before { content:'\e033'; }
170
+
171
+ .oi[data-glyph=chevron-bottom]:before { content:'\e034'; }
172
+
173
+ .oi[data-glyph=chevron-left]:before { content:'\e035'; }
174
+
175
+ .oi[data-glyph=chevron-right]:before { content:'\e036'; }
176
+
177
+ .oi[data-glyph=chevron-top]:before { content:'\e037'; }
178
+
179
+ .oi[data-glyph=circle-check]:before { content:'\e038'; }
180
+
181
+ .oi[data-glyph=circle-x]:before { content:'\e039'; }
182
+
183
+ .oi[data-glyph=clipboard]:before { content:'\e03a'; }
184
+
185
+ .oi[data-glyph=clock]:before { content:'\e03b'; }
186
+
187
+ .oi[data-glyph=cloud-download]:before { content:'\e03c'; }
188
+
189
+ .oi[data-glyph=cloud-upload]:before { content:'\e03d'; }
190
+
191
+ .oi[data-glyph=cloud]:before { content:'\e03e'; }
192
+
193
+ .oi[data-glyph=cloudy]:before { content:'\e03f'; }
194
+
195
+ .oi[data-glyph=code]:before { content:'\e040'; }
196
+
197
+ .oi[data-glyph=cog]:before { content:'\e041'; }
198
+
199
+ .oi[data-glyph=collapse-down]:before { content:'\e042'; }
200
+
201
+ .oi[data-glyph=collapse-left]:before { content:'\e043'; }
202
+
203
+ .oi[data-glyph=collapse-right]:before { content:'\e044'; }
204
+
205
+ .oi[data-glyph=collapse-up]:before { content:'\e045'; }
206
+
207
+ .oi[data-glyph=command]:before { content:'\e046'; }
208
+
209
+ .oi[data-glyph=comment-square]:before { content:'\e047'; }
210
+
211
+ .oi[data-glyph=compass]:before { content:'\e048'; }
212
+
213
+ .oi[data-glyph=contrast]:before { content:'\e049'; }
214
+
215
+ .oi[data-glyph=copywriting]:before { content:'\e04a'; }
216
+
217
+ .oi[data-glyph=credit-card]:before { content:'\e04b'; }
218
+
219
+ .oi[data-glyph=crop]:before { content:'\e04c'; }
220
+
221
+ .oi[data-glyph=dashboard]:before { content:'\e04d'; }
222
+
223
+ .oi[data-glyph=data-transfer-download]:before { content:'\e04e'; }
224
+
225
+ .oi[data-glyph=data-transfer-upload]:before { content:'\e04f'; }
226
+
227
+ .oi[data-glyph=delete]:before { content:'\e050'; }
228
+
229
+ .oi[data-glyph=dial]:before { content:'\e051'; }
230
+
231
+ .oi[data-glyph=document]:before { content:'\e052'; }
232
+
233
+ .oi[data-glyph=dollar]:before { content:'\e053'; }
234
+
235
+ .oi[data-glyph=double-quote-sans-left]:before { content:'\e054'; }
236
+
237
+ .oi[data-glyph=double-quote-sans-right]:before { content:'\e055'; }
238
+
239
+ .oi[data-glyph=double-quote-serif-left]:before { content:'\e056'; }
240
+
241
+ .oi[data-glyph=double-quote-serif-right]:before { content:'\e057'; }
242
+
243
+ .oi[data-glyph=droplet]:before { content:'\e058'; }
244
+
245
+ .oi[data-glyph=eject]:before { content:'\e059'; }
246
+
247
+ .oi[data-glyph=elevator]:before { content:'\e05a'; }
248
+
249
+ .oi[data-glyph=ellipses]:before { content:'\e05b'; }
250
+
251
+ .oi[data-glyph=envelope-closed]:before { content:'\e05c'; }
252
+
253
+ .oi[data-glyph=envelope-open]:before { content:'\e05d'; }
254
+
255
+ .oi[data-glyph=euro]:before { content:'\e05e'; }
256
+
257
+ .oi[data-glyph=excerpt]:before { content:'\e05f'; }
258
+
259
+ .oi[data-glyph=expand-down]:before { content:'\e060'; }
260
+
261
+ .oi[data-glyph=expand-left]:before { content:'\e061'; }
262
+
263
+ .oi[data-glyph=expand-right]:before { content:'\e062'; }
264
+
265
+ .oi[data-glyph=expand-up]:before { content:'\e063'; }
266
+
267
+ .oi[data-glyph=external-link]:before { content:'\e064'; }
268
+
269
+ .oi[data-glyph=eye]:before { content:'\e065'; }
270
+
271
+ .oi[data-glyph=eyedropper]:before { content:'\e066'; }
272
+
273
+ .oi[data-glyph=file]:before { content:'\e067'; }
274
+
275
+ .oi[data-glyph=fire]:before { content:'\e068'; }
276
+
277
+ .oi[data-glyph=flag]:before { content:'\e069'; }
278
+
279
+ .oi[data-glyph=flash]:before { content:'\e06a'; }
280
+
281
+ .oi[data-glyph=folder]:before { content:'\e06b'; }
282
+
283
+ .oi[data-glyph=fork]:before { content:'\e06c'; }
284
+
285
+ .oi[data-glyph=fullscreen-enter]:before { content:'\e06d'; }
286
+
287
+ .oi[data-glyph=fullscreen-exit]:before { content:'\e06e'; }
288
+
289
+ .oi[data-glyph=globe]:before { content:'\e06f'; }
290
+
291
+ .oi[data-glyph=graph]:before { content:'\e070'; }
292
+
293
+ .oi[data-glyph=grid-four-up]:before { content:'\e071'; }
294
+
295
+ .oi[data-glyph=grid-three-up]:before { content:'\e072'; }
296
+
297
+ .oi[data-glyph=grid-two-up]:before { content:'\e073'; }
298
+
299
+ .oi[data-glyph=hard-drive]:before { content:'\e074'; }
300
+
301
+ .oi[data-glyph=header]:before { content:'\e075'; }
302
+
303
+ .oi[data-glyph=headphones]:before { content:'\e076'; }
304
+
305
+ .oi[data-glyph=heart]:before { content:'\e077'; }
306
+
307
+ .oi[data-glyph=home]:before { content:'\e078'; }
308
+
309
+ .oi[data-glyph=image]:before { content:'\e079'; }
310
+
311
+ .oi[data-glyph=inbox]:before { content:'\e07a'; }
312
+
313
+ .oi[data-glyph=infinity]:before { content:'\e07b'; }
314
+
315
+ .oi[data-glyph=info]:before { content:'\e07c'; }
316
+
317
+ .oi[data-glyph=italic]:before { content:'\e07d'; }
318
+
319
+ .oi[data-glyph=justify-center]:before { content:'\e07e'; }
320
+
321
+ .oi[data-glyph=justify-left]:before { content:'\e07f'; }
322
+
323
+ .oi[data-glyph=justify-right]:before { content:'\e080'; }
324
+
325
+ .oi[data-glyph=key]:before { content:'\e081'; }
326
+
327
+ .oi[data-glyph=laptop]:before { content:'\e082'; }
328
+
329
+ .oi[data-glyph=layers]:before { content:'\e083'; }
330
+
331
+ .oi[data-glyph=lightbulb]:before { content:'\e084'; }
332
+
333
+ .oi[data-glyph=link-broken]:before { content:'\e085'; }
334
+
335
+ .oi[data-glyph=link-intact]:before { content:'\e086'; }
336
+
337
+ .oi[data-glyph=list-rich]:before { content:'\e087'; }
338
+
339
+ .oi[data-glyph=list]:before { content:'\e088'; }
340
+
341
+ .oi[data-glyph=location]:before { content:'\e089'; }
342
+
343
+ .oi[data-glyph=lock-locked]:before { content:'\e08a'; }
344
+
345
+ .oi[data-glyph=lock-unlocked]:before { content:'\e08b'; }
346
+
347
+ .oi[data-glyph=loop-circular]:before { content:'\e08c'; }
348
+
349
+ .oi[data-glyph=loop-square]:before { content:'\e08d'; }
350
+
351
+ .oi[data-glyph=loop]:before { content:'\e08e'; }
352
+
353
+ .oi[data-glyph=magnifying-glass]:before { content:'\e08f'; }
354
+
355
+ .oi[data-glyph=map-marker]:before { content:'\e090'; }
356
+
357
+ .oi[data-glyph=map]:before { content:'\e091'; }
358
+
359
+ .oi[data-glyph=media-pause]:before { content:'\e092'; }
360
+
361
+ .oi[data-glyph=media-play]:before { content:'\e093'; }
362
+
363
+ .oi[data-glyph=media-record]:before { content:'\e094'; }
364
+
365
+ .oi[data-glyph=media-skip-backward]:before { content:'\e095'; }
366
+
367
+ .oi[data-glyph=media-skip-forward]:before { content:'\e096'; }
368
+
369
+ .oi[data-glyph=media-step-backward]:before { content:'\e097'; }
370
+
371
+ .oi[data-glyph=media-step-forward]:before { content:'\e098'; }
372
+
373
+ .oi[data-glyph=media-stop]:before { content:'\e099'; }
374
+
375
+ .oi[data-glyph=medical-cross]:before { content:'\e09a'; }
376
+
377
+ .oi[data-glyph=menu]:before { content:'\e09b'; }
378
+
379
+ .oi[data-glyph=microphone]:before { content:'\e09c'; }
380
+
381
+ .oi[data-glyph=minus]:before { content:'\e09d'; }
382
+
383
+ .oi[data-glyph=monitor]:before { content:'\e09e'; }
384
+
385
+ .oi[data-glyph=moon]:before { content:'\e09f'; }
386
+
387
+ .oi[data-glyph=move]:before { content:'\e0a0'; }
388
+
389
+ .oi[data-glyph=musical-note]:before { content:'\e0a1'; }
390
+
391
+ .oi[data-glyph=paperclip]:before { content:'\e0a2'; }
392
+
393
+ .oi[data-glyph=pencil]:before { content:'\e0a3'; }
394
+
395
+ .oi[data-glyph=people]:before { content:'\e0a4'; }
396
+
397
+ .oi[data-glyph=person]:before { content:'\e0a5'; }
398
+
399
+ .oi[data-glyph=phone]:before { content:'\e0a6'; }
400
+
401
+ .oi[data-glyph=pie-chart]:before { content:'\e0a7'; }
402
+
403
+ .oi[data-glyph=pin]:before { content:'\e0a8'; }
404
+
405
+ .oi[data-glyph=play-circle]:before { content:'\e0a9'; }
406
+
407
+ .oi[data-glyph=plus]:before { content:'\e0aa'; }
408
+
409
+ .oi[data-glyph=power-standby]:before { content:'\e0ab'; }
410
+
411
+ .oi[data-glyph=print]:before { content:'\e0ac'; }
412
+
413
+ .oi[data-glyph=project]:before { content:'\e0ad'; }
414
+
415
+ .oi[data-glyph=pulse]:before { content:'\e0ae'; }
416
+
417
+ .oi[data-glyph=puzzle-piece]:before { content:'\e0af'; }
418
+
419
+ .oi[data-glyph=question-mark]:before { content:'\e0b0'; }
420
+
421
+ .oi[data-glyph=rain]:before { content:'\e0b1'; }
422
+
423
+ .oi[data-glyph=random]:before { content:'\e0b2'; }
424
+
425
+ .oi[data-glyph=reload]:before { content:'\e0b3'; }
426
+
427
+ .oi[data-glyph=resize-both]:before { content:'\e0b4'; }
428
+
429
+ .oi[data-glyph=resize-height]:before { content:'\e0b5'; }
430
+
431
+ .oi[data-glyph=resize-width]:before { content:'\e0b6'; }
432
+
433
+ .oi[data-glyph=rss-alt]:before { content:'\e0b7'; }
434
+
435
+ .oi[data-glyph=rss]:before { content:'\e0b8'; }
436
+
437
+ .oi[data-glyph=script]:before { content:'\e0b9'; }
438
+
439
+ .oi[data-glyph=share-boxed]:before { content:'\e0ba'; }
440
+
441
+ .oi[data-glyph=share]:before { content:'\e0bb'; }
442
+
443
+ .oi[data-glyph=shield]:before { content:'\e0bc'; }
444
+
445
+ .oi[data-glyph=signal]:before { content:'\e0bd'; }
446
+
447
+ .oi[data-glyph=signpost]:before { content:'\e0be'; }
448
+
449
+ .oi[data-glyph=sort-ascending]:before { content:'\e0bf'; }
450
+
451
+ .oi[data-glyph=sort-descending]:before { content:'\e0c0'; }
452
+
453
+ .oi[data-glyph=spreadsheet]:before { content:'\e0c1'; }
454
+
455
+ .oi[data-glyph=star]:before { content:'\e0c2'; }
456
+
457
+ .oi[data-glyph=sun]:before { content:'\e0c3'; }
458
+
459
+ .oi[data-glyph=tablet]:before { content:'\e0c4'; }
460
+
461
+ .oi[data-glyph=tag]:before { content:'\e0c5'; }
462
+
463
+ .oi[data-glyph=tags]:before { content:'\e0c6'; }
464
+
465
+ .oi[data-glyph=target]:before { content:'\e0c7'; }
466
+
467
+ .oi[data-glyph=task]:before { content:'\e0c8'; }
468
+
469
+ .oi[data-glyph=terminal]:before { content:'\e0c9'; }
470
+
471
+ .oi[data-glyph=text]:before { content:'\e0ca'; }
472
+
473
+ .oi[data-glyph=thumb-down]:before { content:'\e0cb'; }
474
+
475
+ .oi[data-glyph=thumb-up]:before { content:'\e0cc'; }
476
+
477
+ .oi[data-glyph=timer]:before { content:'\e0cd'; }
478
+
479
+ .oi[data-glyph=transfer]:before { content:'\e0ce'; }
480
+
481
+ .oi[data-glyph=trash]:before { content:'\e0cf'; }
482
+
483
+ .oi[data-glyph=underline]:before { content:'\e0d0'; }
484
+
485
+ .oi[data-glyph=vertical-align-bottom]:before { content:'\e0d1'; }
486
+
487
+ .oi[data-glyph=vertical-align-center]:before { content:'\e0d2'; }
488
+
489
+ .oi[data-glyph=vertical-align-top]:before { content:'\e0d3'; }
490
+
491
+ .oi[data-glyph=video]:before { content:'\e0d4'; }
492
+
493
+ .oi[data-glyph=volume-high]:before { content:'\e0d5'; }
494
+
495
+ .oi[data-glyph=volume-low]:before { content:'\e0d6'; }
496
+
497
+ .oi[data-glyph=volume-off]:before { content:'\e0d7'; }
498
+
499
+ .oi[data-glyph=warning]:before { content:'\e0d8'; }
500
+
501
+ .oi[data-glyph=wifi]:before { content:'\e0d9'; }
502
+
503
+ .oi[data-glyph=wrench]:before { content:'\e0da'; }
504
+
505
+ .oi[data-glyph=x]:before { content:'\e0db'; }
506
+
507
+ .oi[data-glyph=yen]:before { content:'\e0dc'; }
508
+
509
+ .oi[data-glyph=zoom-in]:before { content:'\e0dd'; }
510
+
511
+ .oi[data-glyph=zoom-out]:before { content:'\e0de'; }