semantic-ui-sass 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +51 -0
  6. data/Rakefile +5 -0
  7. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  8. data/app/assets/fonts/semantic-ui/basic.icons.svg +450 -0
  9. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  10. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  11. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.svg +399 -0
  14. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  16. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  17. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  18. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  19. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  20. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  21. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  22. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  23. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  24. data/app/assets/javascripts/semantic-ui.js +20 -0
  25. data/app/assets/javascripts/semantic-ui/accordion.js +419 -0
  26. data/app/assets/javascripts/semantic-ui/behavior/api.js +638 -0
  27. data/app/assets/javascripts/semantic-ui/behavior/colorize.js +270 -0
  28. data/app/assets/javascripts/semantic-ui/behavior/form.js +702 -0
  29. data/app/assets/javascripts/semantic-ui/behavior/state.js +725 -0
  30. data/app/assets/javascripts/semantic-ui/chatroom.js +769 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +344 -0
  32. data/app/assets/javascripts/semantic-ui/dimmer.js +564 -0
  33. data/app/assets/javascripts/semantic-ui/dropdown.js +724 -0
  34. data/app/assets/javascripts/semantic-ui/modal.js +553 -0
  35. data/app/assets/javascripts/semantic-ui/nag.js +545 -0
  36. data/app/assets/javascripts/semantic-ui/popup.js +727 -0
  37. data/app/assets/javascripts/semantic-ui/rating.js +403 -0
  38. data/app/assets/javascripts/semantic-ui/search.js +772 -0
  39. data/app/assets/javascripts/semantic-ui/shape.js +778 -0
  40. data/app/assets/javascripts/semantic-ui/sidebar.js +490 -0
  41. data/app/assets/javascripts/semantic-ui/tab.js +689 -0
  42. data/app/assets/javascripts/semantic-ui/transition.js +654 -0
  43. data/app/assets/javascripts/semantic-ui/video.js +457 -0
  44. data/app/assets/stylesheets/semantic-ui.scss +4 -0
  45. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  46. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +77 -0
  47. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +569 -0
  48. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +643 -0
  49. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +1767 -0
  50. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +347 -0
  51. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +524 -0
  52. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +12 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +479 -0
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1187 -0
  55. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +199 -0
  56. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +342 -0
  57. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +772 -0
  58. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +181 -0
  59. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +338 -0
  60. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +827 -0
  61. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +185 -0
  62. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +352 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +464 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +293 -0
  65. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +199 -0
  66. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +16 -0
  67. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +281 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +481 -0
  69. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +236 -0
  70. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +548 -0
  71. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +217 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +173 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +255 -0
  74. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +179 -0
  75. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +365 -0
  76. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +273 -0
  77. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +113 -0
  78. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +150 -0
  79. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +63 -0
  80. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1096 -0
  81. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +98 -0
  82. data/app/assets/stylesheets/semantic-ui/views/_all.scss +5 -0
  83. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +221 -0
  84. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +152 -0
  85. data/app/assets/stylesheets/semantic-ui/views/_item.scss +651 -0
  86. data/app/assets/stylesheets/semantic-ui/views/_list.scss +555 -0
  87. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +27 -0
  88. data/lib/semantic/ui/sass.rb +10 -0
  89. data/lib/semantic/ui/sass/engine.rb +13 -0
  90. data/lib/semantic/ui/sass/version.rb +8 -0
  91. data/semantic-ui-sass.gemspec +24 -0
  92. data/tasks/converter.rb +237 -0
  93. metadata +177 -0
@@ -0,0 +1,179 @@
1
+ /*
2
+ * # Semantic - Rating
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ /*******************************
13
+ Rating
14
+ *******************************/
15
+
16
+ .ui.rating {
17
+ display: inline-block;
18
+
19
+ font-size: 0em;
20
+ vertical-align: baseline;
21
+ margin: 0em 0.5em 0em 0em;
22
+ }
23
+ .ui.rating:last-child {
24
+ margin-right: 0em;
25
+ }
26
+
27
+ .ui.rating:before {
28
+ display: block;
29
+ content: '';
30
+ visibility: hidden;
31
+ clear: both;
32
+ height: 0;
33
+ }
34
+
35
+ /* Icon */
36
+ .ui.rating .icon {
37
+ cursor: default;
38
+
39
+ margin: 0em;
40
+
41
+ width: 1em;
42
+ height: auto;
43
+ padding: 0em;
44
+
45
+ color: rgba(0, 0, 0, 0.15);
46
+ font-weight: normal;
47
+ font-style: normal;
48
+ }
49
+ .ui.rating .icon:before {
50
+ content: "\2605";
51
+
52
+ -webkit-transition:
53
+ color 0.3s ease,
54
+ opacity 0.3s ease
55
+ ;
56
+ -moz-transition:
57
+ color 0.3s ease,
58
+ opacity 0.3s ease
59
+ ;
60
+ -ms-transition:
61
+ color 0.3s ease,
62
+ opacity 0.3s ease
63
+ ;
64
+ -o-transition:
65
+ color 0.3s ease,
66
+ opacity 0.3s ease
67
+ ;
68
+ transition:
69
+ color 0.3s ease,
70
+ opacity 0.3s ease
71
+ ;
72
+ }
73
+
74
+ /*******************************
75
+ Types
76
+ *******************************/
77
+
78
+ /*-------------------
79
+ Star
80
+ --------------------*/
81
+
82
+ .ui.star.rating .icon {
83
+ width: 1.2em;
84
+ }
85
+
86
+ /* Star */
87
+ .ui.star.rating .icon:before {
88
+ content: '\f006';
89
+ font-family: 'Icons';
90
+ }
91
+
92
+ /* Active Star */
93
+ .ui.star.rating .active.icon:before {
94
+ content: '\f005';
95
+ font-family: 'Icons';
96
+ }
97
+
98
+
99
+ /*-------------------
100
+ Heart
101
+ --------------------*/
102
+
103
+ .ui.heart.rating .icon {
104
+ width: 1.2em;
105
+ }
106
+ .ui.heart.rating .icon:before {
107
+ content: '\f08a';
108
+ font-family: 'Icons';
109
+ }
110
+
111
+ /* Active */
112
+ .ui.heart.rating .active.icon:before {
113
+ content: '\f004';
114
+ font-family: 'Icons';
115
+ }
116
+ .ui.heart.rating .active.icon {
117
+ color: !important;
118
+ }
119
+
120
+ /* Hovered */
121
+ .ui.heart.rating .hover.icon,
122
+ .ui.heart.rating .active.hover.icon {
123
+ color: !important;
124
+ }
125
+
126
+ /*******************************
127
+ States
128
+ *******************************/
129
+
130
+ /*-------------------
131
+ Active
132
+ --------------------*/
133
+
134
+ /* active rating */
135
+ .ui.active.rating .icon {
136
+ cursor: pointer;
137
+ }
138
+
139
+ /* active icons */
140
+ .ui.rating .active.icon {
141
+ color: #FFCB08 !important;
142
+ }
143
+
144
+
145
+ /*-------------------
146
+ Hover
147
+ --------------------*/
148
+
149
+ /* rating */
150
+ .ui.rating.hover .active.icon {
151
+ opacity: 0.5;
152
+ }
153
+
154
+ /* icon */
155
+ .ui.rating .icon.hover,
156
+ .ui.rating .icon.hover.active {
157
+ opacity: 1;
158
+ color: #FFB70A !important;
159
+ }
160
+
161
+
162
+ /*******************************
163
+ Variations
164
+ *******************************/
165
+
166
+ .ui.small.rating .icon {
167
+ font-size: 0.75rem;
168
+ }
169
+ .ui.rating .icon {
170
+ font-size: 1rem;
171
+ }
172
+ .ui.large.rating .icon {
173
+ font-size: 1.5rem;
174
+ vertical-align: middle;
175
+ }
176
+ .ui.huge.rating .icon {
177
+ font-size: 2rem;
178
+ vertical-align: middle;
179
+ }
@@ -0,0 +1,365 @@
1
+ /*
2
+ * # Semantic - Reveal
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ /*******************************
13
+ Reveal
14
+ *******************************/
15
+
16
+ .ui.reveal {
17
+ display: inline-block;
18
+ position: relative !important;
19
+ z-index: 2 !important;
20
+ font-size: 0em !important;
21
+ }
22
+
23
+ .ui.reveal > .content {
24
+ font-size: 1em !important;
25
+ }
26
+
27
+ .ui.reveal > .visible.content {
28
+ -webkit-transition:
29
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
30
+ ;
31
+ -moz-transition:
32
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
33
+ ;
34
+ -ms-transition:
35
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
36
+ ;
37
+ transition:
38
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
39
+ ;
40
+ }
41
+
42
+ .ui.reveal > .visible.content {
43
+ position: absolute !important;
44
+ top: 0em !important;
45
+ left: 0em !important;
46
+ z-index: 4 !important;
47
+ -webkit-transition:
48
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
49
+ ;
50
+ -moz-transition:
51
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
52
+ ;
53
+ -ms-transition:
54
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
55
+ ;
56
+ transition:
57
+ all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
58
+ ;
59
+ }
60
+ .ui.reveal > .hidden.content {
61
+ position: relative !important;
62
+ z-index: 3 !important;
63
+ }
64
+
65
+ /*------------------
66
+ Loose Coupling
67
+ -------------------*/
68
+
69
+ .ui.reveal.button {
70
+ overflow: hidden;
71
+ }
72
+
73
+
74
+
75
+ /*******************************
76
+ Types
77
+ *******************************/
78
+
79
+
80
+ /*--------------
81
+ Slide
82
+ ---------------*/
83
+
84
+ .ui.slide.reveal {
85
+ position: relative !important;
86
+ display: block;
87
+ overflow: hidden !important;
88
+
89
+ white-space: nowrap;
90
+ }
91
+
92
+ .ui.slide.reveal > .content {
93
+ display: block;
94
+ float: left;
95
+
96
+ -webkit-box-sizing: border-box;
97
+ -moz-box-sizing: border-box;
98
+ -ms-box-sizing: border-box;
99
+ box-sizing: border-box;
100
+
101
+ margin: 0em;
102
+ -webkit-transition:
103
+ top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
104
+ left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
105
+ right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
106
+ bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
107
+ ;
108
+ -moz-transition:
109
+ top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
110
+ left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
111
+ right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
112
+ bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
113
+ ;
114
+ -ms-transition:
115
+ top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
116
+ left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
117
+ right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
118
+ bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
119
+ ;
120
+ transition:
121
+ top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
122
+ left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
123
+ right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
124
+ bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
125
+ ;
126
+ }
127
+ .ui.slide.reveal > .visible.content {
128
+ position: relative !important;
129
+ }
130
+ .ui.slide.reveal > .hidden.content {
131
+ position: absolute !important;
132
+ left: 100% !important;
133
+ width: 100% !important;
134
+ }
135
+ .ui.slide.reveal:hover > .visible.content {
136
+ left: -100% !important;
137
+ }
138
+ .ui.slide.reveal:hover > .hidden.content {
139
+ left: 0% !important;
140
+ }
141
+
142
+ .ui.right.slide.reveal > .visible.content {
143
+ left: 0%;
144
+ }
145
+ .ui.right.slide.reveal > .hidden.content {
146
+ left: auto !important;
147
+ right: 100% !important;
148
+ }
149
+ .ui.right.slide.reveal:hover > .visible.content {
150
+ left: 100% !important;
151
+ right: auto !important;
152
+ }
153
+ .ui.right.slide.reveal:hover > .hidden.content {
154
+ left: auto !important;
155
+ right: 0% !important;
156
+ }
157
+
158
+ .ui.up.slide.reveal > .visible.content {
159
+ top: 0% !important;
160
+ left: 0% !important;
161
+ right: auto !important;
162
+ bottom: auto !important;
163
+ }
164
+ .ui.up.slide.reveal > .hidden.content {
165
+ top: 100% !important;
166
+ left: 0% !important;
167
+ right: auto !important;
168
+ bottom: auto !important;
169
+ }
170
+ .ui.slide.up.reveal:hover > .visible.content {
171
+ top: -100% !important;
172
+ left: 0% !important;
173
+ }
174
+ .ui.slide.up.reveal:hover > .hidden.content {
175
+ top: 0% !important;
176
+ left: 0% !important;
177
+ }
178
+
179
+ .ui.down.slide.reveal > .visible.content {
180
+ top: auto !important;
181
+ right: auto !important;
182
+ bottom: auto !important;
183
+ bottom: 0% !important;
184
+ }
185
+ .ui.down.slide.reveal > .hidden.content {
186
+ top: auto !important;
187
+ right: auto !important;
188
+ bottom: 100% !important;
189
+ left: 0% !important;
190
+ }
191
+ .ui.slide.down.reveal:hover > .visible.content {
192
+ left: 0% !important;
193
+ bottom: -100% !important;
194
+ }
195
+ .ui.slide.down.reveal:hover > .hidden.content {
196
+ left: 0% !important;
197
+ bottom: 0% !important;
198
+ }
199
+
200
+
201
+
202
+ /*--------------
203
+ Fade
204
+ ---------------*/
205
+
206
+ .ui.fade.reveal > .visible.content {
207
+ opacity: 1;
208
+ }
209
+ .ui.fade.reveal:hover > .visible.content {
210
+ opacity: 0;
211
+ }
212
+
213
+
214
+ /*--------------
215
+ Move
216
+ ---------------*/
217
+
218
+ .ui.move.reveal > .visible.content,
219
+ .ui.move.left.reveal > .visible.content {
220
+ left: auto !important;
221
+ top: auto !important;
222
+ bottom: auto !important;
223
+ right: 0% !important;
224
+ }
225
+ .ui.move.reveal:hover > .visible.content,
226
+ .ui.move.left.reveal:hover > .visible.content {
227
+ right: 100% !important;
228
+ }
229
+
230
+ .ui.move.right.reveal > .visible.content {
231
+ right: auto !important;
232
+ top: auto !important;
233
+ bottom: auto !important;
234
+ left: 0% !important;
235
+ }
236
+ .ui.move.right.reveal:hover > .visible.content {
237
+ left: 100% !important;
238
+ }
239
+
240
+ .ui.move.up.reveal > .visible.content {
241
+ right: auto !important;
242
+ left: auto !important;
243
+ top: auto !important;
244
+
245
+ bottom: 0% !important;
246
+ }
247
+ .ui.move.up.reveal:hover > .visible.content {
248
+ bottom: 100% !important;
249
+ }
250
+
251
+ .ui.move.down.reveal > .visible.content {
252
+ right: auto !important;
253
+ left: auto !important;
254
+ bottom: auto !important;
255
+
256
+ top: 0% !important;
257
+ bottom: auto !important;
258
+ }
259
+ .ui.move.down.reveal:hover > .visible.content {
260
+ top: 100% !important;
261
+ }
262
+
263
+
264
+ /*--------------
265
+ Rotate
266
+ ---------------*/
267
+
268
+ .ui.rotate.reveal > .visible.content {
269
+ -webkit-transition-duration: 0.8s;
270
+ -moz-transition-duration: 0.8s;
271
+ -o-transition-duration: 0.8s;
272
+ -ms-transition-duration: 0.8s;
273
+ transition-duration: 0.8s;
274
+
275
+ -webkit-transform: rotate(0deg);
276
+ -moz-transform: rotate(0deg);
277
+ -o-transform: rotate(0deg);
278
+ -ms-transform: rotate(0deg);
279
+ transform: rotate(0deg);
280
+ }
281
+
282
+ .ui.rotate.reveal > .visible.content,
283
+ .ui.rotate.right.reveal > .visible.content {
284
+ -webkit-transform-origin: bottom right;
285
+ -moz-transform-origin: bottom right;
286
+ -o-transform-origin: bottom right;
287
+ -ms-transform-origin: bottom right;
288
+ transform-origin: bottom right;
289
+ }
290
+ .ui.rotate.reveal:hover > .visible.content,
291
+ .ui.rotate.right.reveal:hover > .visible.content {
292
+ -webkit-transform: rotate(110deg);
293
+ -moz-transform: rotate(110deg);
294
+ -o-transform: rotate(110deg);
295
+ -ms-transform: rotate(110deg);
296
+ transform: rotate(110deg);
297
+ }
298
+
299
+ .ui.rotate.left.reveal > .visible.content {
300
+ -webkit-transform-origin: bottom left;
301
+ -moz-transform-origin: bottom left;
302
+ -o-transform-origin: bottom left;
303
+ -ms-transform-origin: bottom left;
304
+ transform-origin: bottom left;
305
+ }
306
+ .ui.rotate.left.reveal:hover > .visible.content {
307
+ -webkit-transform: rotate(-110deg);
308
+ -moz-transform: rotate(-110deg);
309
+ -o-transform: rotate(-110deg);
310
+ -ms-transform: rotate(-110deg);
311
+ transform: rotate(-110deg);
312
+ }
313
+
314
+ /*******************************
315
+ States
316
+ *******************************/
317
+
318
+ .ui.disabled.reveal {
319
+ opacity: 1 !important;
320
+ }
321
+ .ui.disabled.reveal > .content {
322
+ -webkit-transition: none !important;
323
+ -moz-transition: none !important;
324
+ -o-transition: none !important;
325
+ -ms-transition: none !important;
326
+ transition: none !important;
327
+ }
328
+ .ui.disabled.reveal:hover > .visible.content {
329
+ position: static !important;
330
+ display: block !important;
331
+ opacity: 1 !important;
332
+ top: 0 !important;
333
+ left: 0 !important;
334
+ right: auto !important;
335
+ bottom: auto !important;
336
+ transform: none !important;
337
+ }
338
+ .ui.disabled.reveal:hover > .hidden.content {
339
+ display: none !important;
340
+ }
341
+
342
+
343
+ /*******************************
344
+ Variations
345
+ *******************************/
346
+
347
+ /*--------------
348
+ Masked
349
+ ---------------*/
350
+
351
+ .ui.masked.reveal {
352
+ overflow: hidden;
353
+ }
354
+
355
+ /*--------------
356
+ Instant
357
+ ---------------*/
358
+
359
+ .ui.instant.reveal > .content {
360
+ -webkit-transition-delay: 0s !important;
361
+ -moz-transition-delay: 0s !important;
362
+ -o-transition-delay: 0s !important;
363
+ -ms-transition-delay: 0s !important;
364
+ transition-delay: 0s !important;
365
+ }