veritrans 2.1.3 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (240) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -1
  3. data/.travis.yml +3 -5
  4. data/CHANGELOG.md +20 -0
  5. data/Gemfile +1 -1
  6. data/Gemfile.lock +89 -94
  7. data/Procfile +1 -1
  8. data/README.md +62 -13
  9. data/api_reference.md +10 -10
  10. data/example/rails/cable/Gemfile +48 -0
  11. data/example/rails/cable/Gemfile.lock +184 -0
  12. data/example/rails/cable/README.md +29 -0
  13. data/example/rails/cable/Rakefile +6 -0
  14. data/example/rails/cable/app/assets/config/manifest.js +3 -0
  15. data/example/rails/cable/app/assets/images/.keep +0 -0
  16. data/example/rails/cable/app/assets/javascripts/application.js +15 -0
  17. data/example/rails/cable/app/assets/javascripts/cable.js +13 -0
  18. data/example/rails/cable/app/assets/javascripts/channels/.keep +0 -0
  19. data/example/rails/cable/app/assets/javascripts/chats.js +39 -0
  20. data/example/rails/cable/app/assets/javascripts/rooms.js +55 -0
  21. data/example/rails/cable/app/assets/stylesheets/application.css +16 -0
  22. data/example/rails/cable/app/assets/stylesheets/chatbox.scss +31 -0
  23. data/example/rails/cable/app/assets/stylesheets/peoplebox.scss +6 -0
  24. data/example/rails/cable/app/channels/application_cable/channel.rb +4 -0
  25. data/example/rails/cable/app/channels/application_cable/connection.rb +4 -0
  26. data/example/rails/cable/app/channels/rooms_texting_channel.rb +13 -0
  27. data/example/rails/cable/app/controllers/application_controller.rb +3 -0
  28. data/example/rails/cable/app/controllers/chats_controller.rb +18 -0
  29. data/example/rails/cable/app/controllers/concerns/.keep +0 -0
  30. data/example/rails/cable/app/controllers/pays_controller.rb +28 -0
  31. data/example/rails/cable/app/controllers/rooms_controller.rb +4 -0
  32. data/example/rails/cable/app/helpers/application_helper.rb +2 -0
  33. data/example/rails/cable/app/helpers/chats_helper.rb +2 -0
  34. data/example/rails/cable/app/helpers/rooms_helper.rb +5 -0
  35. data/example/rails/cable/app/jobs/application_job.rb +2 -0
  36. data/example/rails/cable/app/jobs/chat_broadcaster_job.rb +15 -0
  37. data/example/rails/cable/app/mailers/application_mailer.rb +4 -0
  38. data/example/rails/cable/app/models/application_record.rb +3 -0
  39. data/example/rails/cable/app/models/chat.rb +41 -0
  40. data/example/rails/cable/app/models/concerns/.keep +0 -0
  41. data/example/rails/cable/app/models/order.rb +2 -0
  42. data/example/rails/cable/app/models/user.rb +2 -0
  43. data/example/rails/cable/app/views/chats/_chat.html.erb +18 -0
  44. data/example/rails/cable/app/views/layouts/application.html.erb +19 -0
  45. data/example/rails/cable/app/views/layouts/mailer.html.erb +13 -0
  46. data/example/rails/cable/app/views/layouts/mailer.text.erb +1 -0
  47. data/example/rails/cable/app/views/rooms/_chatbox.html.erb +13 -0
  48. data/example/rails/cable/app/views/rooms/_online_people.html.erb +53 -0
  49. data/example/rails/cable/app/views/rooms/index.html.erb +9 -0
  50. data/example/rails/cable/bin/bundle +3 -0
  51. data/example/rails/cable/bin/rails +9 -0
  52. data/example/rails/cable/bin/rake +9 -0
  53. data/example/rails/cable/bin/setup +34 -0
  54. data/example/rails/cable/bin/spring +16 -0
  55. data/example/rails/cable/bin/update +29 -0
  56. data/example/rails/cable/config.ru +5 -0
  57. data/example/rails/cable/config/application.rb +16 -0
  58. data/example/rails/cable/config/boot.rb +3 -0
  59. data/example/rails/cable/config/cable.yml +9 -0
  60. data/example/rails/cable/config/database.yml +20 -0
  61. data/example/rails/cable/config/environment.rb +5 -0
  62. data/example/rails/cable/config/environments/development.rb +57 -0
  63. data/example/rails/cable/config/environments/production.rb +86 -0
  64. data/example/rails/cable/config/environments/test.rb +42 -0
  65. data/example/rails/cable/config/initializers/application_controller_renderer.rb +6 -0
  66. data/example/rails/cable/config/initializers/assets.rb +11 -0
  67. data/example/rails/cable/config/initializers/backtrace_silencers.rb +7 -0
  68. data/example/rails/cable/config/initializers/cookies_serializer.rb +5 -0
  69. data/example/rails/cable/config/initializers/filter_parameter_logging.rb +4 -0
  70. data/example/rails/cable/config/initializers/inflections.rb +16 -0
  71. data/example/rails/cable/config/initializers/mime_types.rb +4 -0
  72. data/example/rails/cable/config/initializers/new_framework_defaults.rb +24 -0
  73. data/example/rails/cable/config/initializers/session_store.rb +3 -0
  74. data/example/rails/cable/config/initializers/sidekiq.rb +2 -0
  75. data/example/rails/cable/config/initializers/veritrans.rb +46 -0
  76. data/example/rails/cable/config/initializers/wrap_parameters.rb +14 -0
  77. data/example/rails/cable/config/locales/en.yml +23 -0
  78. data/example/rails/cable/config/puma.rb +47 -0
  79. data/example/rails/cable/config/routes.rb +18 -0
  80. data/example/rails/cable/config/secrets.yml +22 -0
  81. data/example/rails/cable/config/spring.rb +6 -0
  82. data/example/rails/cable/config/veritrans.yml +13 -0
  83. data/example/rails/cable/db/development.sqlite3 +0 -0
  84. data/example/rails/cable/db/migrate/20161215070044_create_chats.rb +10 -0
  85. data/example/rails/cable/db/migrate/20161215072021_create_users.rb +10 -0
  86. data/example/rails/cable/db/migrate/20161219110219_create_orders.rb +11 -0
  87. data/example/rails/cable/db/schema.rb +37 -0
  88. data/example/rails/cable/db/seeds.rb +41 -0
  89. data/example/rails/cable/db/test.sqlite3 +0 -0
  90. data/example/rails/cable/lib/assets/.keep +0 -0
  91. data/example/rails/cable/lib/tasks/.keep +0 -0
  92. data/example/rails/cable/public/404.html +67 -0
  93. data/example/rails/cable/public/422.html +67 -0
  94. data/example/rails/cable/public/500.html +66 -0
  95. data/example/rails/cable/public/apple-touch-icon-precomposed.png +0 -0
  96. data/example/rails/cable/public/apple-touch-icon.png +0 -0
  97. data/example/rails/cable/public/favicon.ico +0 -0
  98. data/example/rails/cable/public/images/avatar1.jpg +0 -0
  99. data/example/rails/cable/public/images/avatar2.jpg +0 -0
  100. data/example/rails/cable/public/images/avatar3.jpg +0 -0
  101. data/example/rails/cable/public/images/avatar4.jpg +0 -0
  102. data/example/rails/cable/public/images/avatar5.jpg +0 -0
  103. data/example/rails/cable/public/images/avatar6.jpg +0 -0
  104. data/example/rails/cable/public/robots.txt +5 -0
  105. data/example/rails/cable/vendor/assets/javascripts/.keep +0 -0
  106. data/example/rails/cable/vendor/assets/stylesheets/.keep +0 -0
  107. data/example/rails/cable/vendor/assets/stylesheets/photon.css +2333 -0
  108. data/example/rails/simplepay/Gemfile +54 -0
  109. data/example/rails/simplepay/Gemfile.lock +178 -0
  110. data/example/rails/simplepay/README.md +30 -0
  111. data/example/rails/simplepay/Rakefile +6 -0
  112. data/example/rails/simplepay/app/assets/config/manifest.js +3 -0
  113. data/example/rails/simplepay/app/assets/images/.keep +0 -0
  114. data/example/rails/simplepay/app/assets/javascripts/application.js +16 -0
  115. data/example/rails/simplepay/app/assets/javascripts/cable.js +13 -0
  116. data/example/rails/simplepay/app/assets/javascripts/channels/.keep +0 -0
  117. data/example/rails/simplepay/app/assets/javascripts/pay.js +18 -0
  118. data/example/rails/simplepay/app/assets/stylesheets/application.css +15 -0
  119. data/example/rails/simplepay/app/assets/stylesheets/style.css +254 -0
  120. data/example/rails/simplepay/app/channels/application_cable/channel.rb +4 -0
  121. data/example/rails/simplepay/app/channels/application_cable/connection.rb +4 -0
  122. data/example/rails/simplepay/app/controllers/application_controller.rb +3 -0
  123. data/example/rails/simplepay/app/controllers/concerns/.keep +0 -0
  124. data/example/rails/simplepay/app/controllers/home_controller.rb +16 -0
  125. data/example/rails/simplepay/app/controllers/pay_controller.rb +10 -0
  126. data/example/rails/simplepay/app/helpers/application_helper.rb +2 -0
  127. data/example/rails/simplepay/app/helpers/pay_helper.rb +2 -0
  128. data/example/rails/simplepay/app/jobs/application_job.rb +2 -0
  129. data/example/rails/simplepay/app/mailers/application_mailer.rb +4 -0
  130. data/example/rails/simplepay/app/models/application_record.rb +3 -0
  131. data/example/rails/simplepay/app/models/concerns/.keep +0 -0
  132. data/example/rails/simplepay/app/models/order.rb +2 -0
  133. data/example/rails/simplepay/app/views/home/index.html.erb +19 -0
  134. data/example/rails/simplepay/app/views/layouts/application.html.erb +15 -0
  135. data/example/rails/simplepay/app/views/layouts/mailer.html.erb +13 -0
  136. data/example/rails/simplepay/app/views/layouts/mailer.text.erb +1 -0
  137. data/example/rails/simplepay/app/views/pay/notify.html.erb +2 -0
  138. data/example/rails/simplepay/bin/bundle +3 -0
  139. data/example/rails/simplepay/bin/rails +9 -0
  140. data/example/rails/simplepay/bin/rake +9 -0
  141. data/example/rails/simplepay/bin/setup +34 -0
  142. data/example/rails/simplepay/bin/spring +16 -0
  143. data/example/rails/simplepay/bin/update +29 -0
  144. data/example/rails/simplepay/config.ru +5 -0
  145. data/example/rails/simplepay/config/application.rb +15 -0
  146. data/example/rails/simplepay/config/boot.rb +3 -0
  147. data/example/rails/simplepay/config/cable.yml +9 -0
  148. data/example/rails/simplepay/config/database.yml +25 -0
  149. data/example/rails/simplepay/config/environment.rb +5 -0
  150. data/example/rails/simplepay/config/environments/development.rb +57 -0
  151. data/example/rails/simplepay/config/environments/production.rb +86 -0
  152. data/example/rails/simplepay/config/environments/test.rb +42 -0
  153. data/example/rails/simplepay/config/initializers/application_controller_renderer.rb +6 -0
  154. data/example/rails/simplepay/config/initializers/assets.rb +11 -0
  155. data/example/rails/simplepay/config/initializers/backtrace_silencers.rb +7 -0
  156. data/example/rails/simplepay/config/initializers/cookies_serializer.rb +5 -0
  157. data/example/rails/simplepay/config/initializers/filter_parameter_logging.rb +4 -0
  158. data/example/rails/simplepay/config/initializers/inflections.rb +16 -0
  159. data/example/rails/simplepay/config/initializers/mime_types.rb +4 -0
  160. data/example/rails/simplepay/config/initializers/new_framework_defaults.rb +24 -0
  161. data/example/rails/simplepay/config/initializers/session_store.rb +3 -0
  162. data/example/rails/simplepay/config/initializers/veritrans.rb +46 -0
  163. data/example/rails/simplepay/config/initializers/wrap_parameters.rb +14 -0
  164. data/example/rails/simplepay/config/locales/en.yml +23 -0
  165. data/example/rails/simplepay/config/puma.rb +47 -0
  166. data/example/rails/simplepay/config/routes.rb +5 -0
  167. data/example/rails/simplepay/config/secrets.yml +22 -0
  168. data/example/rails/simplepay/config/spring.rb +6 -0
  169. data/example/rails/simplepay/config/veritrans.yml +18 -0
  170. data/example/rails/simplepay/db/development.sqlite3 +0 -0
  171. data/example/rails/simplepay/db/migrate/20161221090855_create_orders.rb +10 -0
  172. data/example/rails/simplepay/db/schema.rb +22 -0
  173. data/example/rails/simplepay/db/seeds.rb +7 -0
  174. data/example/rails/simplepay/db/test.sqlite3 +0 -0
  175. data/example/rails/simplepay/lib/assets/.keep +0 -0
  176. data/example/rails/simplepay/lib/tasks/.keep +0 -0
  177. data/example/rails/simplepay/public/404.html +67 -0
  178. data/example/rails/simplepay/public/422.html +67 -0
  179. data/example/rails/simplepay/public/500.html +66 -0
  180. data/example/rails/simplepay/public/apple-touch-icon-precomposed.png +0 -0
  181. data/example/rails/simplepay/public/apple-touch-icon.png +0 -0
  182. data/example/rails/simplepay/public/favicon.ico +0 -0
  183. data/example/rails/simplepay/public/robots.txt +5 -0
  184. data/example/rails/simplepay/vendor/assets/javascripts/.keep +0 -0
  185. data/example/rails/simplepay/vendor/assets/stylesheets/.keep +0 -0
  186. data/example/{README.md → sinatra/README.md} +0 -0
  187. data/example/{config.ru → sinatra/config.ru} +3 -0
  188. data/example/{index.erb → sinatra/index.erb} +7 -6
  189. data/example/{localization.erb → sinatra/localization.erb} +6 -5
  190. data/example/{points.erb → sinatra/points.erb} +6 -5
  191. data/example/{recurring.erb → sinatra/recurring.erb} +6 -6
  192. data/example/{response.erb → sinatra/response.erb} +4 -1
  193. data/example/{sinatra.rb → sinatra/sinatra.rb} +9 -3
  194. data/example/{style.css → sinatra/style.css} +11 -0
  195. data/example/{veritrans.yml → sinatra/veritrans.yml} +2 -2
  196. data/example/{widget.erb → sinatra/widget.erb} +18 -6
  197. data/lib/generators/templates/assets/credit_card_form.js +6 -0
  198. data/lib/generators/templates/payments_controller.rb +4 -4
  199. data/lib/generators/templates/veritrans.yml +5 -5
  200. data/lib/generators/templates/views/_credit_card_form.erb +2 -2
  201. data/lib/generators/templates/views/_veritrans_include.erb +1 -1
  202. data/lib/generators/veritrans/install_generator.rb +1 -1
  203. data/lib/generators/veritrans/payment_form_generator.rb +1 -1
  204. data/lib/veritrans.rb +106 -5
  205. data/lib/veritrans/api.rb +7 -7
  206. data/lib/veritrans/cli.rb +11 -5
  207. data/lib/veritrans/client.rb +7 -4
  208. data/lib/veritrans/config.rb +5 -3
  209. data/lib/veritrans/events.rb +46 -35
  210. data/lib/veritrans/result.rb +58 -2
  211. data/lib/veritrans/testing.rb +156 -0
  212. data/lib/veritrans/version.rb +1 -1
  213. data/spec/cli_spec.rb +2 -2
  214. data/spec/fixtures/approve_failed.yml +1 -1
  215. data/spec/fixtures/cancel_failed.yml +1 -1
  216. data/spec/fixtures/cancel_success.yml +2 -2
  217. data/spec/fixtures/capture_failed.yml +1 -1
  218. data/spec/fixtures/charge.yml +2 -2
  219. data/spec/fixtures/charge_direct.yml +1 -1
  220. data/spec/fixtures/charge_vtweb.yml +2 -2
  221. data/spec/fixtures/cli_test_1111-not-exists.yml +1 -1
  222. data/spec/fixtures/cli_test_not_exists.yml +1 -1
  223. data/spec/fixtures/cli_test_real_txn.yml +1 -1
  224. data/spec/fixtures/cli_test_unauthorized.yml +1 -1
  225. data/spec/fixtures/events_test_real_txn.yml +1 -1
  226. data/spec/fixtures/expire_failed.yml +1 -1
  227. data/spec/fixtures/expire_success.yml +1 -1
  228. data/spec/fixtures/midtrans_status.yml +2 -2
  229. data/spec/fixtures/status_fail.yml +1 -1
  230. data/spec/fixtures/status_success.yml +2 -2
  231. data/spec/rails_plugin_spec.rb +37 -20
  232. data/spec/spec_helper.rb +0 -1
  233. data/spec/veritrans_client_spec.rb +1 -1
  234. data/spec/veritrans_config_spec.rb +1 -1
  235. data/spec/veritrans_events_spec.rb +6 -6
  236. data/spec/veritrans_testing_spec.rb +184 -0
  237. data/testing_webhooks.md +2 -2
  238. data/veritrans.gemspec +1 -1
  239. metadata +195 -16
  240. data/lib/veritrans/core_extensions.rb +0 -32
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -0,0 +1,2333 @@
1
+ /*!
2
+ * =====================================================
3
+ * Photon v0.1.1
4
+ * Copyright 2015 Connor Sears
5
+ * Licensed under MIT (https://github.com/connors/proton/blob/master/LICENSE)
6
+ *
7
+ * v0.1.1 designed by @connors.
8
+ * =====================================================
9
+ */
10
+
11
+ @charset "UTF-8";
12
+ audio,
13
+ canvas,
14
+ progress,
15
+ video {
16
+ vertical-align: baseline;
17
+ }
18
+
19
+ audio:not([controls]) {
20
+ display: none;
21
+ }
22
+
23
+ a:active,
24
+ a:hover {
25
+ outline: 0;
26
+ }
27
+
28
+ abbr[title] {
29
+ border-bottom: 1px dotted;
30
+ }
31
+
32
+ b,
33
+ strong {
34
+ font-weight: bold;
35
+ }
36
+
37
+ dfn {
38
+ font-style: italic;
39
+ }
40
+
41
+ h1 {
42
+ font-size: 2em;
43
+ margin: 0.67em 0;
44
+ }
45
+
46
+ small {
47
+ font-size: 80%;
48
+ }
49
+
50
+ sub,
51
+ sup {
52
+ font-size: 75%;
53
+ line-height: 0;
54
+ position: relative;
55
+ vertical-align: baseline;
56
+ }
57
+
58
+ sup {
59
+ top: -0.5em;
60
+ }
61
+
62
+ sub {
63
+ bottom: -0.25em;
64
+ }
65
+
66
+ pre {
67
+ overflow: auto;
68
+ }
69
+
70
+ code,
71
+ kbd,
72
+ pre,
73
+ samp {
74
+ font-family: monospace, monospace;
75
+ font-size: 1em;
76
+ }
77
+
78
+ button,
79
+ input,
80
+ optgroup,
81
+ select,
82
+ textarea {
83
+ color: inherit;
84
+ font: inherit;
85
+ margin: 0;
86
+ }
87
+
88
+ input[type="number"]::-webkit-inner-spin-button,
89
+ input[type="number"]::-webkit-outer-spin-button {
90
+ height: auto;
91
+ }
92
+
93
+ input[type="search"] {
94
+ -webkit-appearance: textfield;
95
+ box-sizing: content-box;
96
+ }
97
+
98
+ input[type="search"]::-webkit-search-cancel-button,
99
+ input[type="search"]::-webkit-search-decoration {
100
+ -webkit-appearance: none;
101
+ }
102
+
103
+ fieldset {
104
+ border: 1px solid #c0c0c0;
105
+ margin: 0 2px;
106
+ padding: 0.35em 0.625em 0.75em;
107
+ }
108
+
109
+ legend {
110
+ border: 0;
111
+ padding: 0;
112
+ }
113
+
114
+ table {
115
+ border-collapse: collapse;
116
+ border-spacing: 0;
117
+ }
118
+
119
+ td,
120
+ th {
121
+ padding: 0;
122
+ }
123
+
124
+ * {
125
+ cursor: default;
126
+ -webkit-user-drag: text;
127
+ -webkit-user-select: none;
128
+ -webkit-box-sizing: border-box;
129
+ box-sizing: border-box;
130
+ }
131
+
132
+ html {
133
+ height: 100%;
134
+ width: 100%;
135
+ overflow: hidden;
136
+ }
137
+
138
+ body {
139
+ height: 100%;
140
+ padding: 0;
141
+ margin: 0;
142
+ font-family: system, -apple-system, ".SFNSDisplay-Regular", "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;
143
+ font-size: 13px;
144
+ line-height: 1.6;
145
+ color: #333;
146
+ background-color: transparent;
147
+ }
148
+
149
+ hr {
150
+ margin: 15px 0;
151
+ overflow: hidden;
152
+ background: transparent;
153
+ border: 0;
154
+ border-bottom: 1px solid #ddd;
155
+ }
156
+
157
+ h1, h2, h3, h4, h5, h6 {
158
+ margin-top: 20px;
159
+ margin-bottom: 10px;
160
+ font-weight: 500;
161
+ white-space: nowrap;
162
+ overflow: hidden;
163
+ text-overflow: ellipsis;
164
+ }
165
+
166
+ h1 {
167
+ font-size: 36px;
168
+ }
169
+
170
+ h2 {
171
+ font-size: 30px;
172
+ }
173
+
174
+ h3 {
175
+ font-size: 24px;
176
+ }
177
+
178
+ h4 {
179
+ font-size: 18px;
180
+ }
181
+
182
+ h5 {
183
+ font-size: 14px;
184
+ }
185
+
186
+ h6 {
187
+ font-size: 12px;
188
+ }
189
+
190
+ .window {
191
+ position: absolute;
192
+ top: 0;
193
+ right: 0;
194
+ bottom: 0;
195
+ left: 0;
196
+ display: flex;
197
+ flex-direction: column;
198
+ background-color: #fff;
199
+ }
200
+
201
+ .window-content {
202
+ position: relative;
203
+ overflow-y: auto;
204
+ display: flex;
205
+ flex: 1;
206
+ }
207
+
208
+ .selectable-text {
209
+ cursor: text;
210
+ -webkit-user-select: text;
211
+ }
212
+
213
+ .text-center {
214
+ text-align: center;
215
+ }
216
+
217
+ .text-right {
218
+ text-align: right;
219
+ }
220
+
221
+ .text-left {
222
+ text-align: left;
223
+ }
224
+
225
+ .pull-left {
226
+ float: left;
227
+ }
228
+
229
+ .pull-right {
230
+ float: right;
231
+ }
232
+
233
+ .padded {
234
+ padding: 10px;
235
+ }
236
+
237
+ .padded-less {
238
+ padding: 5px;
239
+ }
240
+
241
+ .padded-more {
242
+ padding: 20px;
243
+ }
244
+
245
+ .padded-vertically {
246
+ padding-top: 10px;
247
+ padding-bottom: 10px;
248
+ }
249
+
250
+ .padded-vertically-less {
251
+ padding-top: 5px;
252
+ padding-bottom: 5px;
253
+ }
254
+
255
+ .padded-vertically-more {
256
+ padding-top: 20px;
257
+ padding-bottom: 20px;
258
+ }
259
+
260
+ .padded-horizontally {
261
+ padding-right: 10px;
262
+ padding-left: 10px;
263
+ }
264
+
265
+ .padded-horizontally-less {
266
+ padding-right: 5px;
267
+ padding-left: 5px;
268
+ }
269
+
270
+ .padded-horizontally-more {
271
+ padding-right: 20px;
272
+ padding-left: 20px;
273
+ }
274
+
275
+ .padded-top {
276
+ padding-top: 10px;
277
+ }
278
+
279
+ .padded-top-less {
280
+ padding-top: 5px;
281
+ }
282
+
283
+ .padded-top-more {
284
+ padding-top: 20px;
285
+ }
286
+
287
+ .padded-bottom {
288
+ padding-bottom: 10px;
289
+ }
290
+
291
+ .padded-bottom-less {
292
+ padding-bottom: 5px;
293
+ }
294
+
295
+ .padded-bottom-more {
296
+ padding-bottom: 20px;
297
+ }
298
+
299
+ .sidebar {
300
+ background-color: #f5f5f4;
301
+ }
302
+
303
+ .draggable {
304
+ -webkit-app-region: drag;
305
+ }
306
+
307
+ .clearfix:before, .clearfix:after {
308
+ display: table;
309
+ content: " ";
310
+ }
311
+ .clearfix:after {
312
+ clear: both;
313
+ }
314
+
315
+ .btn {
316
+ display: inline-block;
317
+ padding: 3px 8px;
318
+ margin-bottom: 0;
319
+ font-size: 12px;
320
+ line-height: 1.4;
321
+ text-align: center;
322
+ white-space: nowrap;
323
+ vertical-align: middle;
324
+ cursor: default;
325
+ background-image: none;
326
+ border: 1px solid transparent;
327
+ border-radius: 4px;
328
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
329
+ -webkit-app-region: no-drag;
330
+ }
331
+ .btn:focus {
332
+ outline: none;
333
+ box-shadow: none;
334
+ }
335
+
336
+ .btn-mini {
337
+ padding: 2px 6px;
338
+ }
339
+
340
+ .btn-large {
341
+ padding: 6px 12px;
342
+ }
343
+
344
+ .btn-form {
345
+ padding-right: 20px;
346
+ padding-left: 20px;
347
+ }
348
+
349
+ .btn-default {
350
+ color: #333;
351
+ border-top-color: #c2c0c2;
352
+ border-right-color: #c2c0c2;
353
+ border-bottom-color: #a19fa1;
354
+ border-left-color: #c2c0c2;
355
+ background-color: #fcfcfc;
356
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f1f1f1));
357
+ background-image: -webkit-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%);
358
+ background-image: linear-gradient(to bottom, #fcfcfc 0%, #f1f1f1 100%);
359
+ }
360
+ .btn-default:active {
361
+ background-color: #ddd;
362
+ background-image: none;
363
+ }
364
+
365
+ .btn-primary,
366
+ .btn-positive,
367
+ .btn-negative,
368
+ .btn-warning {
369
+ color: #fff;
370
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
371
+ }
372
+
373
+ .btn-primary {
374
+ border-color: #388df8;
375
+ border-bottom-color: #0866dc;
376
+ background-color: #6eb4f7;
377
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6eb4f7), color-stop(100%, #1a82fb));
378
+ background-image: -webkit-linear-gradient(top, #6eb4f7 0%, #1a82fb 100%);
379
+ background-image: linear-gradient(to bottom, #6eb4f7 0%, #1a82fb 100%);
380
+ }
381
+ .btn-primary:active {
382
+ background-color: #3e9bf4;
383
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e9bf4), color-stop(100%, #0469de));
384
+ background-image: -webkit-linear-gradient(top, #3e9bf4 0%, #0469de 100%);
385
+ background-image: linear-gradient(to bottom, #3e9bf4 0%, #0469de 100%);
386
+ }
387
+
388
+ .btn-positive {
389
+ border-color: #29a03b;
390
+ border-bottom-color: #248b34;
391
+ background-color: #5bd46d;
392
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bd46d), color-stop(100%, #29a03b));
393
+ background-image: -webkit-linear-gradient(top, #5bd46d 0%, #29a03b 100%);
394
+ background-image: linear-gradient(to bottom, #5bd46d 0%, #29a03b 100%);
395
+ }
396
+ .btn-positive:active {
397
+ background-color: #34c84a;
398
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #34c84a), color-stop(100%, #248b34));
399
+ background-image: -webkit-linear-gradient(top, #34c84a 0%, #248b34 100%);
400
+ background-image: linear-gradient(to bottom, #34c84a 0%, #248b34 100%);
401
+ }
402
+
403
+ .btn-negative {
404
+ border-color: #fb2f29;
405
+ border-bottom-color: #fb1710;
406
+ background-color: #fd918d;
407
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd918d), color-stop(100%, #fb2f29));
408
+ background-image: -webkit-linear-gradient(top, #fd918d 0%, #fb2f29 100%);
409
+ background-image: linear-gradient(to bottom, #fd918d 0%, #fb2f29 100%);
410
+ }
411
+ .btn-negative:active {
412
+ background-color: #fc605b;
413
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc605b), color-stop(100%, #fb1710));
414
+ background-image: -webkit-linear-gradient(top, #fc605b 0%, #fb1710 100%);
415
+ background-image: linear-gradient(to bottom, #fc605b 0%, #fb1710 100%);
416
+ }
417
+
418
+ .btn-warning {
419
+ border-color: #fcaa0e;
420
+ border-bottom-color: #ee9d02;
421
+ background-color: #fece72;
422
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fece72), color-stop(100%, #fcaa0e));
423
+ background-image: -webkit-linear-gradient(top, #fece72 0%, #fcaa0e 100%);
424
+ background-image: linear-gradient(to bottom, #fece72 0%, #fcaa0e 100%);
425
+ }
426
+ .btn-warning:active {
427
+ background-color: #fdbc40;
428
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdbc40), color-stop(100%, #ee9d02));
429
+ background-image: -webkit-linear-gradient(top, #fdbc40 0%, #ee9d02 100%);
430
+ background-image: linear-gradient(to bottom, #fdbc40 0%, #ee9d02 100%);
431
+ }
432
+
433
+ .btn .icon {
434
+ float: left;
435
+ width: 14px;
436
+ height: 14px;
437
+ margin-top: 1px;
438
+ margin-bottom: 1px;
439
+ color: #737475;
440
+ font-size: 14px;
441
+ line-height: 1;
442
+ }
443
+
444
+ .btn .icon-text {
445
+ margin-right: 5px;
446
+ }
447
+
448
+ .btn-dropdown:after {
449
+ font-family: "photon-entypo";
450
+ margin-left: 5px;
451
+ content: "";
452
+ }
453
+
454
+ .btn-group {
455
+ position: relative;
456
+ display: inline-block;
457
+ vertical-align: middle;
458
+ -webkit-app-region: no-drag;
459
+ }
460
+ .btn-group .btn {
461
+ position: relative;
462
+ float: left;
463
+ }
464
+ .btn-group .btn:focus, .btn-group .btn:active {
465
+ z-index: 2;
466
+ }
467
+ .btn-group .btn.active {
468
+ z-index: 3;
469
+ }
470
+
471
+ .btn-group .btn + .btn,
472
+ .btn-group .btn + .btn-group,
473
+ .btn-group .btn-group + .btn,
474
+ .btn-group .btn-group + .btn-group {
475
+ margin-left: -1px;
476
+ }
477
+ .btn-group > .btn:first-child {
478
+ border-top-right-radius: 0;
479
+ border-bottom-right-radius: 0;
480
+ }
481
+ .btn-group > .btn:last-child {
482
+ border-top-left-radius: 0;
483
+ border-bottom-left-radius: 0;
484
+ }
485
+ .btn-group > .btn:not(:first-child):not(:last-child) {
486
+ border-radius: 0;
487
+ }
488
+ .btn-group .btn + .btn {
489
+ border-left: 1px solid #c2c0c2;
490
+ }
491
+ .btn-group .btn + .btn.active {
492
+ border-left: 0;
493
+ }
494
+ .btn-group .active {
495
+ color: #fff;
496
+ border: 1px solid transparent;
497
+ background-color: #6d6c6d;
498
+ background-image: none;
499
+ }
500
+ .btn-group .active .icon {
501
+ color: #fff;
502
+ }
503
+
504
+ .toolbar {
505
+ min-height: 22px;
506
+ box-shadow: inset 0 1px 0 #f5f4f5;
507
+ background-color: #e8e6e8;
508
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e6e8), color-stop(100%, #d1cfd1));
509
+ background-image: -webkit-linear-gradient(top, #e8e6e8 0%, #d1cfd1 100%);
510
+ background-image: linear-gradient(to bottom, #e8e6e8 0%, #d1cfd1 100%);
511
+ }
512
+ .toolbar:before, .toolbar:after {
513
+ display: table;
514
+ content: " ";
515
+ }
516
+ .toolbar:after {
517
+ clear: both;
518
+ }
519
+
520
+ .toolbar-header {
521
+ border-bottom: 1px solid #c2c0c2;
522
+ }
523
+ .toolbar-header .title {
524
+ margin-top: 1px;
525
+ }
526
+
527
+ .toolbar-footer {
528
+ border-top: 1px solid #c2c0c2;
529
+ -webkit-app-region: drag;
530
+ }
531
+
532
+ .title {
533
+ margin: 0;
534
+ font-size: 12px;
535
+ font-weight: 400;
536
+ text-align: center;
537
+ color: #555;
538
+ cursor: default;
539
+ }
540
+
541
+ .toolbar-borderless {
542
+ border-top: 0;
543
+ border-bottom: 0;
544
+ }
545
+
546
+ .toolbar-actions {
547
+ margin-top: 4px;
548
+ margin-bottom: 3px;
549
+ padding-right: 3px;
550
+ padding-left: 3px;
551
+ padding-bottom: 3px;
552
+ -webkit-app-region: drag;
553
+ }
554
+ .toolbar-actions:before, .toolbar-actions:after {
555
+ display: table;
556
+ content: " ";
557
+ }
558
+ .toolbar-actions:after {
559
+ clear: both;
560
+ }
561
+ .toolbar-actions > .btn,
562
+ .toolbar-actions > .btn-group {
563
+ margin-left: 4px;
564
+ margin-right: 4px;
565
+ }
566
+
567
+ label {
568
+ display: inline-block;
569
+ font-size: 13px;
570
+ margin-bottom: 5px;
571
+ white-space: nowrap;
572
+ overflow: hidden;
573
+ text-overflow: ellipsis;
574
+ }
575
+
576
+ input[type="search"] {
577
+ box-sizing: border-box;
578
+ }
579
+
580
+ input[type="radio"],
581
+ input[type="checkbox"] {
582
+ margin: 4px 0 0;
583
+ line-height: normal;
584
+ }
585
+
586
+ .form-control {
587
+ display: inline-block;
588
+ width: 100%;
589
+ min-height: 25px;
590
+ padding: 5px 10px;
591
+ font-size: 13px;
592
+ line-height: 1.6;
593
+ background-color: #fff;
594
+ border: 1px solid #ddd;
595
+ border-radius: 4px;
596
+ outline: none;
597
+ }
598
+ .form-control:focus {
599
+ border-color: #6db3fd;
600
+ box-shadow: 3px 3px 0 #6db3fd, -3px -3px 0 #6db3fd, -3px 3px 0 #6db3fd, 3px -3px 0 #6db3fd;
601
+ }
602
+
603
+ textarea {
604
+ height: auto;
605
+ }
606
+
607
+ .form-group {
608
+ margin-bottom: 10px;
609
+ }
610
+
611
+ .radio,
612
+ .checkbox {
613
+ position: relative;
614
+ display: block;
615
+ margin-top: 10px;
616
+ margin-bottom: 10px;
617
+ }
618
+ .radio label,
619
+ .checkbox label {
620
+ padding-left: 20px;
621
+ margin-bottom: 0;
622
+ font-weight: normal;
623
+ }
624
+
625
+ .radio input[type="radio"],
626
+ .radio-inline input[type="radio"],
627
+ .checkbox input[type="checkbox"],
628
+ .checkbox-inline input[type="checkbox"] {
629
+ position: absolute;
630
+ margin-left: -20px;
631
+ margin-top: 4px;
632
+ }
633
+
634
+ .form-actions .btn {
635
+ margin-right: 10px;
636
+ }
637
+ .form-actions .btn:last-child {
638
+ margin-right: 0;
639
+ }
640
+
641
+ .pane-group {
642
+ position: absolute;
643
+ top: 0;
644
+ right: 0;
645
+ bottom: 0;
646
+ left: 0;
647
+ display: flex;
648
+ }
649
+
650
+ .pane {
651
+ position: relative;
652
+ overflow-y: auto;
653
+ flex: 1;
654
+ border-left: 1px solid #ddd;
655
+ }
656
+ .pane:first-child {
657
+ border-left: 0;
658
+ }
659
+
660
+ .pane-sm {
661
+ max-width: 220px;
662
+ min-width: 150px;
663
+ }
664
+
665
+ .pane-mini {
666
+ width: 80px;
667
+ flex: none;
668
+ }
669
+
670
+ .pane-one-fourth {
671
+ width: 25%;
672
+ flex: none;
673
+ }
674
+
675
+ .pane-one-third {
676
+ width: 33.3%;
677
+ }
678
+
679
+ img {
680
+ -webkit-user-drag: text;
681
+ }
682
+
683
+ .img-circle {
684
+ border-radius: 50%;
685
+ }
686
+
687
+ .img-rounded {
688
+ border-radius: 4px;
689
+ }
690
+
691
+ .list-group {
692
+ width: 100%;
693
+ list-style: none;
694
+ margin: 0;
695
+ padding: 0;
696
+ }
697
+ .list-group * {
698
+ margin: 0;
699
+ white-space: nowrap;
700
+ overflow: hidden;
701
+ text-overflow: ellipsis;
702
+ }
703
+
704
+ .list-group-item {
705
+ padding: 10px;
706
+ font-size: 12px;
707
+ color: #414142;
708
+ border-top: 1px solid #ddd;
709
+ }
710
+ .list-group-item:first-child {
711
+ border-top: 0;
712
+ }
713
+ .list-group-item.active, .list-group-item.selected {
714
+ color: #fff;
715
+ background-color: #116cd6;
716
+ }
717
+
718
+ .list-group-header {
719
+ padding: 10px;
720
+ }
721
+
722
+ .media-object {
723
+ margin-top: 3px;
724
+ }
725
+
726
+ .media-object.pull-left {
727
+ margin-right: 10px;
728
+ }
729
+
730
+ .media-object.pull-right {
731
+ margin-left: 10px;
732
+ }
733
+
734
+ .media-body {
735
+ overflow: hidden;
736
+ }
737
+
738
+ .nav-group {
739
+ font-size: 14px;
740
+ }
741
+
742
+ .nav-group-item {
743
+ padding: 2px 10px 2px 25px;
744
+ display: block;
745
+ color: #333;
746
+ text-decoration: none;
747
+ white-space: nowrap;
748
+ overflow: hidden;
749
+ text-overflow: ellipsis;
750
+ }
751
+ .nav-group-item:active, .nav-group-item.active {
752
+ background-color: #dcdfe1;
753
+ }
754
+ .nav-group-item .icon {
755
+ width: 19px;
756
+ height: 18px;
757
+ float: left;
758
+ color: #737475;
759
+ margin-top: -3px;
760
+ margin-right: 7px;
761
+ font-size: 18px;
762
+ text-align: center;
763
+ }
764
+
765
+ .nav-group-title {
766
+ margin: 0;
767
+ padding: 10px 10px 2px;
768
+ font-size: 12px;
769
+ font-weight: 500;
770
+ color: #666666;
771
+ }
772
+
773
+ @font-face {
774
+ font-family: "photon-entypo";
775
+ src: url("../fonts/photon-entypo.eot");
776
+ src: url("../fonts/photon-entypo.eot?#iefix") format("eot"), url("../fonts/photon-entypo.woff") format("woff"), url("../fonts/photon-entypo.ttf") format("truetype");
777
+ font-weight: normal;
778
+ font-style: normal;
779
+ }
780
+ .icon:before {
781
+ position: relative;
782
+ display: inline-block;
783
+ font-family: "photon-entypo";
784
+ speak: none;
785
+ font-size: 100%;
786
+ font-style: normal;
787
+ font-weight: normal;
788
+ font-variant: normal;
789
+ text-transform: none;
790
+ line-height: 1;
791
+ -webkit-font-smoothing: antialiased;
792
+ -moz-osx-font-smoothing: grayscale;
793
+ }
794
+
795
+ .icon-note:before {
796
+ content: '\e800';
797
+ }
798
+
799
+ /* '' */
800
+ .icon-note-beamed:before {
801
+ content: '\e801';
802
+ }
803
+
804
+ /* '' */
805
+ .icon-music:before {
806
+ content: '\e802';
807
+ }
808
+
809
+ /* '' */
810
+ .icon-search:before {
811
+ content: '\e803';
812
+ }
813
+
814
+ /* '' */
815
+ .icon-flashlight:before {
816
+ content: '\e804';
817
+ }
818
+
819
+ /* '' */
820
+ .icon-mail:before {
821
+ content: '\e805';
822
+ }
823
+
824
+ /* '' */
825
+ .icon-heart:before {
826
+ content: '\e806';
827
+ }
828
+
829
+ /* '' */
830
+ .icon-heart-empty:before {
831
+ content: '\e807';
832
+ }
833
+
834
+ /* '' */
835
+ .icon-star:before {
836
+ content: '\e808';
837
+ }
838
+
839
+ /* '' */
840
+ .icon-star-empty:before {
841
+ content: '\e809';
842
+ }
843
+
844
+ /* '' */
845
+ .icon-user:before {
846
+ content: '\e80a';
847
+ }
848
+
849
+ /* '' */
850
+ .icon-users:before {
851
+ content: '\e80b';
852
+ }
853
+
854
+ /* '' */
855
+ .icon-user-add:before {
856
+ content: '\e80c';
857
+ }
858
+
859
+ /* '' */
860
+ .icon-video:before {
861
+ content: '\e80d';
862
+ }
863
+
864
+ /* '' */
865
+ .icon-picture:before {
866
+ content: '\e80e';
867
+ }
868
+
869
+ /* '' */
870
+ .icon-camera:before {
871
+ content: '\e80f';
872
+ }
873
+
874
+ /* '' */
875
+ .icon-layout:before {
876
+ content: '\e810';
877
+ }
878
+
879
+ /* '' */
880
+ .icon-menu:before {
881
+ content: '\e811';
882
+ }
883
+
884
+ /* '' */
885
+ .icon-check:before {
886
+ content: '\e812';
887
+ }
888
+
889
+ /* '' */
890
+ .icon-cancel:before {
891
+ content: '\e813';
892
+ }
893
+
894
+ /* '' */
895
+ .icon-cancel-circled:before {
896
+ content: '\e814';
897
+ }
898
+
899
+ /* '' */
900
+ .icon-cancel-squared:before {
901
+ content: '\e815';
902
+ }
903
+
904
+ /* '' */
905
+ .icon-plus:before {
906
+ content: '\e816';
907
+ }
908
+
909
+ /* '' */
910
+ .icon-plus-circled:before {
911
+ content: '\e817';
912
+ }
913
+
914
+ /* '' */
915
+ .icon-plus-squared:before {
916
+ content: '\e818';
917
+ }
918
+
919
+ /* '' */
920
+ .icon-minus:before {
921
+ content: '\e819';
922
+ }
923
+
924
+ /* '' */
925
+ .icon-minus-circled:before {
926
+ content: '\e81a';
927
+ }
928
+
929
+ /* '' */
930
+ .icon-minus-squared:before {
931
+ content: '\e81b';
932
+ }
933
+
934
+ /* '' */
935
+ .icon-help:before {
936
+ content: '\e81c';
937
+ }
938
+
939
+ /* '' */
940
+ .icon-help-circled:before {
941
+ content: '\e81d';
942
+ }
943
+
944
+ /* '' */
945
+ .icon-info:before {
946
+ content: '\e81e';
947
+ }
948
+
949
+ /* '' */
950
+ .icon-info-circled:before {
951
+ content: '\e81f';
952
+ }
953
+
954
+ /* '' */
955
+ .icon-back:before {
956
+ content: '\e820';
957
+ }
958
+
959
+ /* '' */
960
+ .icon-home:before {
961
+ content: '\e821';
962
+ }
963
+
964
+ /* '' */
965
+ .icon-link:before {
966
+ content: '\e822';
967
+ }
968
+
969
+ /* '' */
970
+ .icon-attach:before {
971
+ content: '\e823';
972
+ }
973
+
974
+ /* '' */
975
+ .icon-lock:before {
976
+ content: '\e824';
977
+ }
978
+
979
+ /* '' */
980
+ .icon-lock-open:before {
981
+ content: '\e825';
982
+ }
983
+
984
+ /* '' */
985
+ .icon-eye:before {
986
+ content: '\e826';
987
+ }
988
+
989
+ /* '' */
990
+ .icon-tag:before {
991
+ content: '\e827';
992
+ }
993
+
994
+ /* '' */
995
+ .icon-bookmark:before {
996
+ content: '\e828';
997
+ }
998
+
999
+ /* '' */
1000
+ .icon-bookmarks:before {
1001
+ content: '\e829';
1002
+ }
1003
+
1004
+ /* '' */
1005
+ .icon-flag:before {
1006
+ content: '\e82a';
1007
+ }
1008
+
1009
+ /* '' */
1010
+ .icon-thumbs-up:before {
1011
+ content: '\e82b';
1012
+ }
1013
+
1014
+ /* '' */
1015
+ .icon-thumbs-down:before {
1016
+ content: '\e82c';
1017
+ }
1018
+
1019
+ /* '' */
1020
+ .icon-download:before {
1021
+ content: '\e82d';
1022
+ }
1023
+
1024
+ /* '' */
1025
+ .icon-upload:before {
1026
+ content: '\e82e';
1027
+ }
1028
+
1029
+ /* '' */
1030
+ .icon-upload-cloud:before {
1031
+ content: '\e82f';
1032
+ }
1033
+
1034
+ /* '' */
1035
+ .icon-reply:before {
1036
+ content: '\e830';
1037
+ }
1038
+
1039
+ /* '' */
1040
+ .icon-reply-all:before {
1041
+ content: '\e831';
1042
+ }
1043
+
1044
+ /* '' */
1045
+ .icon-forward:before {
1046
+ content: '\e832';
1047
+ }
1048
+
1049
+ /* '' */
1050
+ .icon-quote:before {
1051
+ content: '\e833';
1052
+ }
1053
+
1054
+ /* '' */
1055
+ .icon-code:before {
1056
+ content: '\e834';
1057
+ }
1058
+
1059
+ /* '' */
1060
+ .icon-export:before {
1061
+ content: '\e835';
1062
+ }
1063
+
1064
+ /* '' */
1065
+ .icon-pencil:before {
1066
+ content: '\e836';
1067
+ }
1068
+
1069
+ /* '' */
1070
+ .icon-feather:before {
1071
+ content: '\e837';
1072
+ }
1073
+
1074
+ /* '' */
1075
+ .icon-print:before {
1076
+ content: '\e838';
1077
+ }
1078
+
1079
+ /* '' */
1080
+ .icon-retweet:before {
1081
+ content: '\e839';
1082
+ }
1083
+
1084
+ /* '' */
1085
+ .icon-keyboard:before {
1086
+ content: '\e83a';
1087
+ }
1088
+
1089
+ /* '' */
1090
+ .icon-comment:before {
1091
+ content: '\e83b';
1092
+ }
1093
+
1094
+ /* '' */
1095
+ .icon-chat:before {
1096
+ content: '\e83c';
1097
+ }
1098
+
1099
+ /* '' */
1100
+ .icon-bell:before {
1101
+ content: '\e83d';
1102
+ }
1103
+
1104
+ /* '' */
1105
+ .icon-attention:before {
1106
+ content: '\e83e';
1107
+ }
1108
+
1109
+ /* '' */
1110
+ .icon-alert:before {
1111
+ content: '\e83f';
1112
+ }
1113
+
1114
+ /* '' */
1115
+ .icon-vcard:before {
1116
+ content: '\e840';
1117
+ }
1118
+
1119
+ /* '' */
1120
+ .icon-address:before {
1121
+ content: '\e841';
1122
+ }
1123
+
1124
+ /* '' */
1125
+ .icon-location:before {
1126
+ content: '\e842';
1127
+ }
1128
+
1129
+ /* '' */
1130
+ .icon-map:before {
1131
+ content: '\e843';
1132
+ }
1133
+
1134
+ /* '' */
1135
+ .icon-direction:before {
1136
+ content: '\e844';
1137
+ }
1138
+
1139
+ /* '' */
1140
+ .icon-compass:before {
1141
+ content: '\e845';
1142
+ }
1143
+
1144
+ /* '' */
1145
+ .icon-cup:before {
1146
+ content: '\e846';
1147
+ }
1148
+
1149
+ /* '' */
1150
+ .icon-trash:before {
1151
+ content: '\e847';
1152
+ }
1153
+
1154
+ /* '' */
1155
+ .icon-doc:before {
1156
+ content: '\e848';
1157
+ }
1158
+
1159
+ /* '' */
1160
+ .icon-docs:before {
1161
+ content: '\e849';
1162
+ }
1163
+
1164
+ /* '' */
1165
+ .icon-doc-landscape:before {
1166
+ content: '\e84a';
1167
+ }
1168
+
1169
+ /* '' */
1170
+ .icon-doc-text:before {
1171
+ content: '\e84b';
1172
+ }
1173
+
1174
+ /* '' */
1175
+ .icon-doc-text-inv:before {
1176
+ content: '\e84c';
1177
+ }
1178
+
1179
+ /* '' */
1180
+ .icon-newspaper:before {
1181
+ content: '\e84d';
1182
+ }
1183
+
1184
+ /* '' */
1185
+ .icon-book-open:before {
1186
+ content: '\e84e';
1187
+ }
1188
+
1189
+ /* '' */
1190
+ .icon-book:before {
1191
+ content: '\e84f';
1192
+ }
1193
+
1194
+ /* '' */
1195
+ .icon-folder:before {
1196
+ content: '\e850';
1197
+ }
1198
+
1199
+ /* '' */
1200
+ .icon-archive:before {
1201
+ content: '\e851';
1202
+ }
1203
+
1204
+ /* '' */
1205
+ .icon-box:before {
1206
+ content: '\e852';
1207
+ }
1208
+
1209
+ /* '' */
1210
+ .icon-rss:before {
1211
+ content: '\e853';
1212
+ }
1213
+
1214
+ /* '' */
1215
+ .icon-phone:before {
1216
+ content: '\e854';
1217
+ }
1218
+
1219
+ /* '' */
1220
+ .icon-cog:before {
1221
+ content: '\e855';
1222
+ }
1223
+
1224
+ /* '' */
1225
+ .icon-tools:before {
1226
+ content: '\e856';
1227
+ }
1228
+
1229
+ /* '' */
1230
+ .icon-share:before {
1231
+ content: '\e857';
1232
+ }
1233
+
1234
+ /* '' */
1235
+ .icon-shareable:before {
1236
+ content: '\e858';
1237
+ }
1238
+
1239
+ /* '' */
1240
+ .icon-basket:before {
1241
+ content: '\e859';
1242
+ }
1243
+
1244
+ /* '' */
1245
+ .icon-bag:before {
1246
+ content: '\e85a';
1247
+ }
1248
+
1249
+ /* '' */
1250
+ .icon-calendar:before {
1251
+ content: '\e85b';
1252
+ }
1253
+
1254
+ /* '' */
1255
+ .icon-login:before {
1256
+ content: '\e85c';
1257
+ }
1258
+
1259
+ /* '' */
1260
+ .icon-logout:before {
1261
+ content: '\e85d';
1262
+ }
1263
+
1264
+ /* '' */
1265
+ .icon-mic:before {
1266
+ content: '\e85e';
1267
+ }
1268
+
1269
+ /* '' */
1270
+ .icon-mute:before {
1271
+ content: '\e85f';
1272
+ }
1273
+
1274
+ /* '' */
1275
+ .icon-sound:before {
1276
+ content: '\e860';
1277
+ }
1278
+
1279
+ /* '' */
1280
+ .icon-volume:before {
1281
+ content: '\e861';
1282
+ }
1283
+
1284
+ /* '' */
1285
+ .icon-clock:before {
1286
+ content: '\e862';
1287
+ }
1288
+
1289
+ /* '' */
1290
+ .icon-hourglass:before {
1291
+ content: '\e863';
1292
+ }
1293
+
1294
+ /* '' */
1295
+ .icon-lamp:before {
1296
+ content: '\e864';
1297
+ }
1298
+
1299
+ /* '' */
1300
+ .icon-light-down:before {
1301
+ content: '\e865';
1302
+ }
1303
+
1304
+ /* '' */
1305
+ .icon-light-up:before {
1306
+ content: '\e866';
1307
+ }
1308
+
1309
+ /* '' */
1310
+ .icon-adjust:before {
1311
+ content: '\e867';
1312
+ }
1313
+
1314
+ /* '' */
1315
+ .icon-block:before {
1316
+ content: '\e868';
1317
+ }
1318
+
1319
+ /* '' */
1320
+ .icon-resize-full:before {
1321
+ content: '\e869';
1322
+ }
1323
+
1324
+ /* '' */
1325
+ .icon-resize-small:before {
1326
+ content: '\e86a';
1327
+ }
1328
+
1329
+ /* '' */
1330
+ .icon-popup:before {
1331
+ content: '\e86b';
1332
+ }
1333
+
1334
+ /* '' */
1335
+ .icon-publish:before {
1336
+ content: '\e86c';
1337
+ }
1338
+
1339
+ /* '' */
1340
+ .icon-window:before {
1341
+ content: '\e86d';
1342
+ }
1343
+
1344
+ /* '' */
1345
+ .icon-arrow-combo:before {
1346
+ content: '\e86e';
1347
+ }
1348
+
1349
+ /* '' */
1350
+ .icon-down-circled:before {
1351
+ content: '\e86f';
1352
+ }
1353
+
1354
+ /* '' */
1355
+ .icon-left-circled:before {
1356
+ content: '\e870';
1357
+ }
1358
+
1359
+ /* '' */
1360
+ .icon-right-circled:before {
1361
+ content: '\e871';
1362
+ }
1363
+
1364
+ /* '' */
1365
+ .icon-up-circled:before {
1366
+ content: '\e872';
1367
+ }
1368
+
1369
+ /* '' */
1370
+ .icon-down-open:before {
1371
+ content: '\e873';
1372
+ }
1373
+
1374
+ /* '' */
1375
+ .icon-left-open:before {
1376
+ content: '\e874';
1377
+ }
1378
+
1379
+ /* '' */
1380
+ .icon-right-open:before {
1381
+ content: '\e875';
1382
+ }
1383
+
1384
+ /* '' */
1385
+ .icon-up-open:before {
1386
+ content: '\e876';
1387
+ }
1388
+
1389
+ /* '' */
1390
+ .icon-down-open-mini:before {
1391
+ content: '\e877';
1392
+ }
1393
+
1394
+ /* '' */
1395
+ .icon-left-open-mini:before {
1396
+ content: '\e878';
1397
+ }
1398
+
1399
+ /* '' */
1400
+ .icon-right-open-mini:before {
1401
+ content: '\e879';
1402
+ }
1403
+
1404
+ /* '' */
1405
+ .icon-up-open-mini:before {
1406
+ content: '\e87a';
1407
+ }
1408
+
1409
+ /* '' */
1410
+ .icon-down-open-big:before {
1411
+ content: '\e87b';
1412
+ }
1413
+
1414
+ /* '' */
1415
+ .icon-left-open-big:before {
1416
+ content: '\e87c';
1417
+ }
1418
+
1419
+ /* '' */
1420
+ .icon-right-open-big:before {
1421
+ content: '\e87d';
1422
+ }
1423
+
1424
+ /* '' */
1425
+ .icon-up-open-big:before {
1426
+ content: '\e87e';
1427
+ }
1428
+
1429
+ /* '' */
1430
+ .icon-down:before {
1431
+ content: '\e87f';
1432
+ }
1433
+
1434
+ /* '' */
1435
+ .icon-left:before {
1436
+ content: '\e880';
1437
+ }
1438
+
1439
+ /* '' */
1440
+ .icon-right:before {
1441
+ content: '\e881';
1442
+ }
1443
+
1444
+ /* '' */
1445
+ .icon-up:before {
1446
+ content: '\e882';
1447
+ }
1448
+
1449
+ /* '' */
1450
+ .icon-down-dir:before {
1451
+ content: '\e883';
1452
+ }
1453
+
1454
+ /* '' */
1455
+ .icon-left-dir:before {
1456
+ content: '\e884';
1457
+ }
1458
+
1459
+ /* '' */
1460
+ .icon-right-dir:before {
1461
+ content: '\e885';
1462
+ }
1463
+
1464
+ /* '' */
1465
+ .icon-up-dir:before {
1466
+ content: '\e886';
1467
+ }
1468
+
1469
+ /* '' */
1470
+ .icon-down-bold:before {
1471
+ content: '\e887';
1472
+ }
1473
+
1474
+ /* '' */
1475
+ .icon-left-bold:before {
1476
+ content: '\e888';
1477
+ }
1478
+
1479
+ /* '' */
1480
+ .icon-right-bold:before {
1481
+ content: '\e889';
1482
+ }
1483
+
1484
+ /* '' */
1485
+ .icon-up-bold:before {
1486
+ content: '\e88a';
1487
+ }
1488
+
1489
+ /* '' */
1490
+ .icon-down-thin:before {
1491
+ content: '\e88b';
1492
+ }
1493
+
1494
+ /* '' */
1495
+ .icon-left-thin:before {
1496
+ content: '\e88c';
1497
+ }
1498
+
1499
+ /* '' */
1500
+ .icon-right-thin:before {
1501
+ content: '\e88d';
1502
+ }
1503
+
1504
+ /* '' */
1505
+ .icon-up-thin:before {
1506
+ content: '\e88e';
1507
+ }
1508
+
1509
+ /* '' */
1510
+ .icon-ccw:before {
1511
+ content: '\e88f';
1512
+ }
1513
+
1514
+ /* '' */
1515
+ .icon-cw:before {
1516
+ content: '\e890';
1517
+ }
1518
+
1519
+ /* '' */
1520
+ .icon-arrows-ccw:before {
1521
+ content: '\e891';
1522
+ }
1523
+
1524
+ /* '' */
1525
+ .icon-level-down:before {
1526
+ content: '\e892';
1527
+ }
1528
+
1529
+ /* '' */
1530
+ .icon-level-up:before {
1531
+ content: '\e893';
1532
+ }
1533
+
1534
+ /* '' */
1535
+ .icon-shuffle:before {
1536
+ content: '\e894';
1537
+ }
1538
+
1539
+ /* '' */
1540
+ .icon-loop:before {
1541
+ content: '\e895';
1542
+ }
1543
+
1544
+ /* '' */
1545
+ .icon-switch:before {
1546
+ content: '\e896';
1547
+ }
1548
+
1549
+ /* '' */
1550
+ .icon-play:before {
1551
+ content: '\e897';
1552
+ }
1553
+
1554
+ /* '' */
1555
+ .icon-stop:before {
1556
+ content: '\e898';
1557
+ }
1558
+
1559
+ /* '' */
1560
+ .icon-pause:before {
1561
+ content: '\e899';
1562
+ }
1563
+
1564
+ /* '' */
1565
+ .icon-record:before {
1566
+ content: '\e89a';
1567
+ }
1568
+
1569
+ /* '' */
1570
+ .icon-to-end:before {
1571
+ content: '\e89b';
1572
+ }
1573
+
1574
+ /* '' */
1575
+ .icon-to-start:before {
1576
+ content: '\e89c';
1577
+ }
1578
+
1579
+ /* '' */
1580
+ .icon-fast-forward:before {
1581
+ content: '\e89d';
1582
+ }
1583
+
1584
+ /* '' */
1585
+ .icon-fast-backward:before {
1586
+ content: '\e89e';
1587
+ }
1588
+
1589
+ /* '' */
1590
+ .icon-progress-0:before {
1591
+ content: '\e89f';
1592
+ }
1593
+
1594
+ /* '' */
1595
+ .icon-progress-1:before {
1596
+ content: '\e8a0';
1597
+ }
1598
+
1599
+ /* '' */
1600
+ .icon-progress-2:before {
1601
+ content: '\e8a1';
1602
+ }
1603
+
1604
+ /* '' */
1605
+ .icon-progress-3:before {
1606
+ content: '\e8a2';
1607
+ }
1608
+
1609
+ /* '' */
1610
+ .icon-target:before {
1611
+ content: '\e8a3';
1612
+ }
1613
+
1614
+ /* '' */
1615
+ .icon-palette:before {
1616
+ content: '\e8a4';
1617
+ }
1618
+
1619
+ /* '' */
1620
+ .icon-list:before {
1621
+ content: '\e8a5';
1622
+ }
1623
+
1624
+ /* '' */
1625
+ .icon-list-add:before {
1626
+ content: '\e8a6';
1627
+ }
1628
+
1629
+ /* '' */
1630
+ .icon-signal:before {
1631
+ content: '\e8a7';
1632
+ }
1633
+
1634
+ /* '' */
1635
+ .icon-trophy:before {
1636
+ content: '\e8a8';
1637
+ }
1638
+
1639
+ /* '' */
1640
+ .icon-battery:before {
1641
+ content: '\e8a9';
1642
+ }
1643
+
1644
+ /* '' */
1645
+ .icon-back-in-time:before {
1646
+ content: '\e8aa';
1647
+ }
1648
+
1649
+ /* '' */
1650
+ .icon-monitor:before {
1651
+ content: '\e8ab';
1652
+ }
1653
+
1654
+ /* '' */
1655
+ .icon-mobile:before {
1656
+ content: '\e8ac';
1657
+ }
1658
+
1659
+ /* '' */
1660
+ .icon-network:before {
1661
+ content: '\e8ad';
1662
+ }
1663
+
1664
+ /* '' */
1665
+ .icon-cd:before {
1666
+ content: '\e8ae';
1667
+ }
1668
+
1669
+ /* '' */
1670
+ .icon-inbox:before {
1671
+ content: '\e8af';
1672
+ }
1673
+
1674
+ /* '' */
1675
+ .icon-install:before {
1676
+ content: '\e8b0';
1677
+ }
1678
+
1679
+ /* '' */
1680
+ .icon-globe:before {
1681
+ content: '\e8b1';
1682
+ }
1683
+
1684
+ /* '' */
1685
+ .icon-cloud:before {
1686
+ content: '\e8b2';
1687
+ }
1688
+
1689
+ /* '' */
1690
+ .icon-cloud-thunder:before {
1691
+ content: '\e8b3';
1692
+ }
1693
+
1694
+ /* '' */
1695
+ .icon-flash:before {
1696
+ content: '\e8b4';
1697
+ }
1698
+
1699
+ /* '' */
1700
+ .icon-moon:before {
1701
+ content: '\e8b5';
1702
+ }
1703
+
1704
+ /* '' */
1705
+ .icon-flight:before {
1706
+ content: '\e8b6';
1707
+ }
1708
+
1709
+ /* '' */
1710
+ .icon-paper-plane:before {
1711
+ content: '\e8b7';
1712
+ }
1713
+
1714
+ /* '' */
1715
+ .icon-leaf:before {
1716
+ content: '\e8b8';
1717
+ }
1718
+
1719
+ /* '' */
1720
+ .icon-lifebuoy:before {
1721
+ content: '\e8b9';
1722
+ }
1723
+
1724
+ /* '' */
1725
+ .icon-mouse:before {
1726
+ content: '\e8ba';
1727
+ }
1728
+
1729
+ /* '' */
1730
+ .icon-briefcase:before {
1731
+ content: '\e8bb';
1732
+ }
1733
+
1734
+ /* '' */
1735
+ .icon-suitcase:before {
1736
+ content: '\e8bc';
1737
+ }
1738
+
1739
+ /* '' */
1740
+ .icon-dot:before {
1741
+ content: '\e8bd';
1742
+ }
1743
+
1744
+ /* '' */
1745
+ .icon-dot-2:before {
1746
+ content: '\e8be';
1747
+ }
1748
+
1749
+ /* '' */
1750
+ .icon-dot-3:before {
1751
+ content: '\e8bf';
1752
+ }
1753
+
1754
+ /* '' */
1755
+ .icon-brush:before {
1756
+ content: '\e8c0';
1757
+ }
1758
+
1759
+ /* '' */
1760
+ .icon-magnet:before {
1761
+ content: '\e8c1';
1762
+ }
1763
+
1764
+ /* '' */
1765
+ .icon-infinity:before {
1766
+ content: '\e8c2';
1767
+ }
1768
+
1769
+ /* '' */
1770
+ .icon-erase:before {
1771
+ content: '\e8c3';
1772
+ }
1773
+
1774
+ /* '' */
1775
+ .icon-chart-pie:before {
1776
+ content: '\e8c4';
1777
+ }
1778
+
1779
+ /* '' */
1780
+ .icon-chart-line:before {
1781
+ content: '\e8c5';
1782
+ }
1783
+
1784
+ /* '' */
1785
+ .icon-chart-bar:before {
1786
+ content: '\e8c6';
1787
+ }
1788
+
1789
+ /* '' */
1790
+ .icon-chart-area:before {
1791
+ content: '\e8c7';
1792
+ }
1793
+
1794
+ /* '' */
1795
+ .icon-tape:before {
1796
+ content: '\e8c8';
1797
+ }
1798
+
1799
+ /* '' */
1800
+ .icon-graduation-cap:before {
1801
+ content: '\e8c9';
1802
+ }
1803
+
1804
+ /* '' */
1805
+ .icon-language:before {
1806
+ content: '\e8ca';
1807
+ }
1808
+
1809
+ /* '' */
1810
+ .icon-ticket:before {
1811
+ content: '\e8cb';
1812
+ }
1813
+
1814
+ /* '' */
1815
+ .icon-water:before {
1816
+ content: '\e8cc';
1817
+ }
1818
+
1819
+ /* '' */
1820
+ .icon-droplet:before {
1821
+ content: '\e8cd';
1822
+ }
1823
+
1824
+ /* '' */
1825
+ .icon-air:before {
1826
+ content: '\e8ce';
1827
+ }
1828
+
1829
+ /* '' */
1830
+ .icon-credit-card:before {
1831
+ content: '\e8cf';
1832
+ }
1833
+
1834
+ /* '' */
1835
+ .icon-floppy:before {
1836
+ content: '\e8d0';
1837
+ }
1838
+
1839
+ /* '' */
1840
+ .icon-clipboard:before {
1841
+ content: '\e8d1';
1842
+ }
1843
+
1844
+ /* '' */
1845
+ .icon-megaphone:before {
1846
+ content: '\e8d2';
1847
+ }
1848
+
1849
+ /* '' */
1850
+ .icon-database:before {
1851
+ content: '\e8d3';
1852
+ }
1853
+
1854
+ /* '' */
1855
+ .icon-drive:before {
1856
+ content: '\e8d4';
1857
+ }
1858
+
1859
+ /* '' */
1860
+ .icon-bucket:before {
1861
+ content: '\e8d5';
1862
+ }
1863
+
1864
+ /* '' */
1865
+ .icon-thermometer:before {
1866
+ content: '\e8d6';
1867
+ }
1868
+
1869
+ /* '' */
1870
+ .icon-key:before {
1871
+ content: '\e8d7';
1872
+ }
1873
+
1874
+ /* '' */
1875
+ .icon-flow-cascade:before {
1876
+ content: '\e8d8';
1877
+ }
1878
+
1879
+ /* '' */
1880
+ .icon-flow-branch:before {
1881
+ content: '\e8d9';
1882
+ }
1883
+
1884
+ /* '' */
1885
+ .icon-flow-tree:before {
1886
+ content: '\e8da';
1887
+ }
1888
+
1889
+ /* '' */
1890
+ .icon-flow-line:before {
1891
+ content: '\e8db';
1892
+ }
1893
+
1894
+ /* '' */
1895
+ .icon-flow-parallel:before {
1896
+ content: '\e8dc';
1897
+ }
1898
+
1899
+ /* '' */
1900
+ .icon-rocket:before {
1901
+ content: '\e8dd';
1902
+ }
1903
+
1904
+ /* '' */
1905
+ .icon-gauge:before {
1906
+ content: '\e8de';
1907
+ }
1908
+
1909
+ /* '' */
1910
+ .icon-traffic-cone:before {
1911
+ content: '\e8df';
1912
+ }
1913
+
1914
+ /* '' */
1915
+ .icon-cc:before {
1916
+ content: '\e8e0';
1917
+ }
1918
+
1919
+ /* '' */
1920
+ .icon-cc-by:before {
1921
+ content: '\e8e1';
1922
+ }
1923
+
1924
+ /* '' */
1925
+ .icon-cc-nc:before {
1926
+ content: '\e8e2';
1927
+ }
1928
+
1929
+ /* '' */
1930
+ .icon-cc-nc-eu:before {
1931
+ content: '\e8e3';
1932
+ }
1933
+
1934
+ /* '' */
1935
+ .icon-cc-nc-jp:before {
1936
+ content: '\e8e4';
1937
+ }
1938
+
1939
+ /* '' */
1940
+ .icon-cc-sa:before {
1941
+ content: '\e8e5';
1942
+ }
1943
+
1944
+ /* '' */
1945
+ .icon-cc-nd:before {
1946
+ content: '\e8e6';
1947
+ }
1948
+
1949
+ /* '' */
1950
+ .icon-cc-pd:before {
1951
+ content: '\e8e7';
1952
+ }
1953
+
1954
+ /* '' */
1955
+ .icon-cc-zero:before {
1956
+ content: '\e8e8';
1957
+ }
1958
+
1959
+ /* '' */
1960
+ .icon-cc-share:before {
1961
+ content: '\e8e9';
1962
+ }
1963
+
1964
+ /* '' */
1965
+ .icon-cc-remix:before {
1966
+ content: '\e8ea';
1967
+ }
1968
+
1969
+ /* '' */
1970
+ .icon-github:before {
1971
+ content: '\e8eb';
1972
+ }
1973
+
1974
+ /* '' */
1975
+ .icon-github-circled:before {
1976
+ content: '\e8ec';
1977
+ }
1978
+
1979
+ /* '' */
1980
+ .icon-flickr:before {
1981
+ content: '\e8ed';
1982
+ }
1983
+
1984
+ /* '' */
1985
+ .icon-flickr-circled:before {
1986
+ content: '\e8ee';
1987
+ }
1988
+
1989
+ /* '' */
1990
+ .icon-vimeo:before {
1991
+ content: '\e8ef';
1992
+ }
1993
+
1994
+ /* '' */
1995
+ .icon-vimeo-circled:before {
1996
+ content: '\e8f0';
1997
+ }
1998
+
1999
+ /* '' */
2000
+ .icon-twitter:before {
2001
+ content: '\e8f1';
2002
+ }
2003
+
2004
+ /* '' */
2005
+ .icon-twitter-circled:before {
2006
+ content: '\e8f2';
2007
+ }
2008
+
2009
+ /* '' */
2010
+ .icon-facebook:before {
2011
+ content: '\e8f3';
2012
+ }
2013
+
2014
+ /* '' */
2015
+ .icon-facebook-circled:before {
2016
+ content: '\e8f4';
2017
+ }
2018
+
2019
+ /* '' */
2020
+ .icon-facebook-squared:before {
2021
+ content: '\e8f5';
2022
+ }
2023
+
2024
+ /* '' */
2025
+ .icon-gplus:before {
2026
+ content: '\e8f6';
2027
+ }
2028
+
2029
+ /* '' */
2030
+ .icon-gplus-circled:before {
2031
+ content: '\e8f7';
2032
+ }
2033
+
2034
+ /* '' */
2035
+ .icon-pinterest:before {
2036
+ content: '\e8f8';
2037
+ }
2038
+
2039
+ /* '' */
2040
+ .icon-pinterest-circled:before {
2041
+ content: '\e8f9';
2042
+ }
2043
+
2044
+ /* '' */
2045
+ .icon-tumblr:before {
2046
+ content: '\e8fa';
2047
+ }
2048
+
2049
+ /* '' */
2050
+ .icon-tumblr-circled:before {
2051
+ content: '\e8fb';
2052
+ }
2053
+
2054
+ /* '' */
2055
+ .icon-linkedin:before {
2056
+ content: '\e8fc';
2057
+ }
2058
+
2059
+ /* '' */
2060
+ .icon-linkedin-circled:before {
2061
+ content: '\e8fd';
2062
+ }
2063
+
2064
+ /* '' */
2065
+ .icon-dribbble:before {
2066
+ content: '\e8fe';
2067
+ }
2068
+
2069
+ /* '' */
2070
+ .icon-dribbble-circled:before {
2071
+ content: '\e8ff';
2072
+ }
2073
+
2074
+ /* '' */
2075
+ .icon-stumbleupon:before {
2076
+ content: '\e900';
2077
+ }
2078
+
2079
+ /* '' */
2080
+ .icon-stumbleupon-circled:before {
2081
+ content: '\e901';
2082
+ }
2083
+
2084
+ /* '' */
2085
+ .icon-lastfm:before {
2086
+ content: '\e902';
2087
+ }
2088
+
2089
+ /* '' */
2090
+ .icon-lastfm-circled:before {
2091
+ content: '\e903';
2092
+ }
2093
+
2094
+ /* '' */
2095
+ .icon-rdio:before {
2096
+ content: '\e904';
2097
+ }
2098
+
2099
+ /* '' */
2100
+ .icon-rdio-circled:before {
2101
+ content: '\e905';
2102
+ }
2103
+
2104
+ /* '' */
2105
+ .icon-spotify:before {
2106
+ content: '\e906';
2107
+ }
2108
+
2109
+ /* '' */
2110
+ .icon-spotify-circled:before {
2111
+ content: '\e907';
2112
+ }
2113
+
2114
+ /* '' */
2115
+ .icon-qq:before {
2116
+ content: '\e908';
2117
+ }
2118
+
2119
+ /* '' */
2120
+ .icon-instagram:before {
2121
+ content: '\e909';
2122
+ }
2123
+
2124
+ /* '' */
2125
+ .icon-dropbox:before {
2126
+ content: '\e90a';
2127
+ }
2128
+
2129
+ /* '' */
2130
+ .icon-evernote:before {
2131
+ content: '\e90b';
2132
+ }
2133
+
2134
+ /* '' */
2135
+ .icon-flattr:before {
2136
+ content: '\e90c';
2137
+ }
2138
+
2139
+ /* '' */
2140
+ .icon-skype:before {
2141
+ content: '\e90d';
2142
+ }
2143
+
2144
+ /* '' */
2145
+ .icon-skype-circled:before {
2146
+ content: '\e90e';
2147
+ }
2148
+
2149
+ /* '' */
2150
+ .icon-renren:before {
2151
+ content: '\e90f';
2152
+ }
2153
+
2154
+ /* '' */
2155
+ .icon-sina-weibo:before {
2156
+ content: '\e910';
2157
+ }
2158
+
2159
+ /* '' */
2160
+ .icon-paypal:before {
2161
+ content: '\e911';
2162
+ }
2163
+
2164
+ /* '' */
2165
+ .icon-picasa:before {
2166
+ content: '\e912';
2167
+ }
2168
+
2169
+ /* '' */
2170
+ .icon-soundcloud:before {
2171
+ content: '\e913';
2172
+ }
2173
+
2174
+ /* '' */
2175
+ .icon-mixi:before {
2176
+ content: '\e914';
2177
+ }
2178
+
2179
+ /* '' */
2180
+ .icon-behance:before {
2181
+ content: '\e915';
2182
+ }
2183
+
2184
+ /* '' */
2185
+ .icon-google-circles:before {
2186
+ content: '\e916';
2187
+ }
2188
+
2189
+ /* '' */
2190
+ .icon-vkontakte:before {
2191
+ content: '\e917';
2192
+ }
2193
+
2194
+ /* '' */
2195
+ .icon-smashing:before {
2196
+ content: '\e918';
2197
+ }
2198
+
2199
+ /* '' */
2200
+ .icon-sweden:before {
2201
+ content: '\e919';
2202
+ }
2203
+
2204
+ /* '' */
2205
+ .icon-db-shape:before {
2206
+ content: '\e91a';
2207
+ }
2208
+
2209
+ /* '' */
2210
+ .icon-logo-db:before {
2211
+ content: '\e91b';
2212
+ }
2213
+
2214
+ /* '' */
2215
+ table {
2216
+ width: 100%;
2217
+ border: 0;
2218
+ border-collapse: separate;
2219
+ font-size: 12px;
2220
+ text-align: left;
2221
+ }
2222
+
2223
+ thead {
2224
+ background-color: #f5f5f4;
2225
+ }
2226
+
2227
+ tbody {
2228
+ background-color: #fff;
2229
+ }
2230
+
2231
+ .table-striped tr:nth-child(even) {
2232
+ background-color: #f5f5f4;
2233
+ }
2234
+
2235
+ tr:active,
2236
+ .table-striped tr:active:nth-child(even) {
2237
+ color: #fff;
2238
+ background-color: #116cd6;
2239
+ }
2240
+
2241
+ thead tr:active {
2242
+ color: #333;
2243
+ background-color: #f5f5f4;
2244
+ }
2245
+
2246
+ th {
2247
+ font-weight: normal;
2248
+ border-right: 1px solid #ddd;
2249
+ border-bottom: 1px solid #ddd;
2250
+ }
2251
+
2252
+ th,
2253
+ td {
2254
+ padding: 2px 15px;
2255
+ white-space: nowrap;
2256
+ overflow: hidden;
2257
+ text-overflow: ellipsis;
2258
+ }
2259
+ th:last-child,
2260
+ td:last-child {
2261
+ border-right: 0;
2262
+ }
2263
+
2264
+ .tab-group {
2265
+ margin-top: -1px;
2266
+ display: flex;
2267
+ border-top: 1px solid #989698;
2268
+ border-bottom: 1px solid #989698;
2269
+ }
2270
+
2271
+ .tab-item {
2272
+ position: relative;
2273
+ flex: 1;
2274
+ padding: 3px;
2275
+ font-size: 12px;
2276
+ text-align: center;
2277
+ border-left: 1px solid #989698;
2278
+ background-color: #b8b6b8;
2279
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0));
2280
+ background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%);
2281
+ background-image: linear-gradient(to bottom, #b8b6b8 0%, #b0aeb0 100%);
2282
+ }
2283
+ .tab-item:first-child {
2284
+ border-left: 0;
2285
+ }
2286
+ .tab-item.active {
2287
+ background-color: #d4d2d4;
2288
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d2d4), color-stop(100%, #cccacc));
2289
+ background-image: -webkit-linear-gradient(top, #d4d2d4 0%, #cccacc 100%);
2290
+ background-image: linear-gradient(to bottom, #d4d2d4 0%, #cccacc 100%);
2291
+ }
2292
+ .tab-item .icon-close-tab {
2293
+ position: absolute;
2294
+ top: 50%;
2295
+ left: 5px;
2296
+ width: 15px;
2297
+ height: 15px;
2298
+ font-size: 15px;
2299
+ line-height: 15px;
2300
+ text-align: center;
2301
+ color: #666;
2302
+ opacity: 0;
2303
+ transition: opacity .1s linear, background-color .1s linear;
2304
+ border-radius: 3px;
2305
+ transform: translateY(-50%);
2306
+ z-index: 10;
2307
+ }
2308
+ .tab-item:after {
2309
+ position: absolute;
2310
+ top: 0;
2311
+ right: 0;
2312
+ bottom: 0;
2313
+ left: 0;
2314
+ content: "";
2315
+ background-color: rgba(0, 0, 0, 0.08);
2316
+ opacity: 0;
2317
+ transition: opacity .1s linear;
2318
+ z-index: 1;
2319
+ }
2320
+ .tab-item:hover:not(.active):after {
2321
+ opacity: 1;
2322
+ }
2323
+ .tab-item:hover .icon-close-tab {
2324
+ opacity: 1;
2325
+ }
2326
+ .tab-item .icon-close-tab:hover {
2327
+ background-color: rgba(0, 0, 0, 0.08);
2328
+ }
2329
+
2330
+ .tab-item-fixed {
2331
+ flex: none;
2332
+ padding: 3px 10px;
2333
+ }