semantic-ui-sass 0.19.3.1 → 1.7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -6
  4. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  6. data/app/assets/fonts/semantic-ui/icons.svg +472 -367
  7. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  9. data/app/assets/images/semantic-ui/flags.png +0 -0
  10. data/app/assets/javascripts/semantic-ui.js +9 -5
  11. data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
  12. data/app/assets/javascripts/semantic-ui/api.js +840 -0
  13. data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
  14. data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
  15. data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
  16. data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
  17. data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
  18. data/app/assets/javascripts/semantic-ui/modal.js +294 -219
  19. data/app/assets/javascripts/semantic-ui/nag.js +120 -186
  20. data/app/assets/javascripts/semantic-ui/popup.js +491 -223
  21. data/app/assets/javascripts/semantic-ui/progress.js +779 -0
  22. data/app/assets/javascripts/semantic-ui/rating.js +66 -22
  23. data/app/assets/javascripts/semantic-ui/search.js +219 -99
  24. data/app/assets/javascripts/semantic-ui/shape.js +72 -29
  25. data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
  26. data/app/assets/javascripts/semantic-ui/site.js +487 -0
  27. data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
  28. data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
  29. data/app/assets/javascripts/semantic-ui/tab.js +680 -603
  30. data/app/assets/javascripts/semantic-ui/transition.js +269 -158
  31. data/app/assets/javascripts/semantic-ui/video.js +113 -32
  32. data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
  33. data/app/assets/javascripts/semantic-ui/visit.js +513 -0
  34. data/app/assets/stylesheets/semantic-ui.scss +2 -0
  35. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
  36. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
  37. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
  38. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
  39. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
  40. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
  41. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
  43. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
  44. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
  45. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
  46. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
  47. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
  48. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
  49. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
  50. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
  51. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
  52. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
  54. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
  55. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
  56. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
  57. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
  58. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
  59. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
  60. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
  62. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
  63. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
  64. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
  65. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
  66. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
  67. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
  69. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
  70. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
  71. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
  74. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
  75. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
  77. data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
  78. data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
  79. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
  80. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
  81. data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
  82. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
  83. data/lib/semantic/ui/sass/version.rb +2 -2
  84. data/tasks/converter.rb +99 -216
  85. metadata +22 -27
  86. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  87. data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
  88. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  89. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  90. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  91. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  92. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  93. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  94. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  95. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  96. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  97. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  98. data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
  99. data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
  100. data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
  101. data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
  102. data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
  103. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
  104. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
  105. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
  106. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
  107. data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,7 +1,7 @@
1
- /*
2
- * # Semantic - Reveal
3
- * http://github.com/jlukic/semantic-ui/
4
- *
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
5
  *
6
6
  * Copyright 2014 Contributors
7
7
  * Released under the MIT license
@@ -9,6 +9,8 @@
9
9
  *
10
10
  */
11
11
 
12
+
13
+
12
14
  /*******************************
13
15
  Reveal
14
16
  *******************************/
@@ -16,240 +18,174 @@
16
18
  .ui.reveal {
17
19
  display: inline-block;
18
20
  position: relative !important;
19
- z-index: 2 !important;
20
21
  font-size: 0em !important;
21
22
  }
22
-
23
- .ui.reveal > .content {
24
- font-size: 1rem !important;
25
- }
26
-
27
- .ui.reveal > .visible.content {
28
- -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
29
- transition: all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
30
- }
31
-
32
23
  .ui.reveal > .visible.content {
33
24
  position: absolute !important;
34
25
  top: 0em !important;
35
26
  left: 0em !important;
36
- z-index: 4 !important;
37
- -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
38
- transition: all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
27
+ z-index: 3 !important;
28
+ -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1) 0.15s;
29
+ transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1) 0.15s;
39
30
  }
40
-
41
31
  .ui.reveal > .hidden.content {
42
32
  position: relative !important;
43
- z-index: 3 !important;
33
+ z-index: 2 !important;
44
34
  }
45
35
 
46
- /*------------------
47
- Loose Coupling
48
- -------------------*/
49
-
50
- .ui.reveal.button {
51
- overflow: hidden;
36
+ /* Make sure hovered element is on top of other reveal */
37
+ .ui.reveal:hover .visible.content {
38
+ z-index: 4 !important;
52
39
  }
53
40
 
41
+
54
42
  /*******************************
55
43
  Types
56
44
  *******************************/
57
45
 
46
+
58
47
  /*--------------
59
48
  Slide
60
49
  ---------------*/
61
50
 
62
51
  .ui.slide.reveal {
63
52
  position: relative !important;
64
- display: block;
65
53
  overflow: hidden !important;
66
54
  white-space: nowrap;
67
55
  }
68
-
69
56
  .ui.slide.reveal > .content {
70
57
  display: block;
71
58
  float: left;
72
- -webkit-box-sizing: border-box;
73
- -moz-box-sizing: border-box;
74
- -ms-box-sizing: border-box;
75
- box-sizing: border-box;
76
59
  margin: 0em;
77
- -webkit-transition: top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
78
- left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
79
- right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
80
- bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
81
- transition: top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
82
- left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
83
- right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
84
- bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
60
+ -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1) 0.15s;
61
+ transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1) 0.15s;
85
62
  }
86
-
87
63
  .ui.slide.reveal > .visible.content {
88
64
  position: relative !important;
89
65
  }
90
-
91
66
  .ui.slide.reveal > .hidden.content {
92
67
  position: absolute !important;
93
- left: 100% !important;
94
- width: 100% !important;
95
- }
96
-
97
- .ui.slide.reveal:hover > .visible.content,
98
- .ui.slide.reveal:focus > .visible.content,
99
- {
100
- left: -100% !important;
101
- }
102
-
103
- .ui.slide.reveal:hover > .hidden.content,
104
- .ui.slide.reveal:focus > .hidden.content {
105
- left: 0% !important;
106
- }
107
-
108
- .ui.right.slide.reveal > .visible.content {
109
- left: 0%;
110
- }
111
-
112
- .ui.right.slide.reveal > .hidden.content {
113
- left: auto !important;
114
- right: 100% !important;
115
- }
116
-
117
- .ui.right.slide.reveal:hover > .visible.content,
118
- .ui.right.slide.reveal:focus > .visible.content {
119
- left: 100% !important;
120
- right: auto !important;
121
- }
122
-
123
- .ui.right.slide.reveal:hover > .hidden.content,
124
- .ui.right.slide.reveal:focus > .hidden.content {
125
- left: auto !important;
126
- right: 0% !important;
127
- }
128
-
129
- .ui.up.slide.reveal > .visible.content {
130
- top: 0% !important;
131
- left: 0% !important;
132
- right: auto !important;
133
- bottom: auto !important;
134
- }
135
-
136
- .ui.up.slide.reveal > .hidden.content {
137
- top: 100% !important;
138
- left: 0% !important;
139
- right: auto !important;
140
- bottom: auto !important;
141
- }
142
-
143
- .ui.slide.up.reveal:hover > .visible.content,
144
- .ui.slide.up.reveal:focus > .visible.content {
145
- top: -100% !important;
146
68
  left: 0% !important;
147
- }
148
-
149
- .ui.slide.up.reveal:hover > .hidden.content,
150
- .ui.slide.up.reveal:focus > .hidden.content {
151
- top: 0% !important;
152
- left: 0% !important;
153
- }
154
-
155
- .ui.down.slide.reveal > .visible.content {
156
- top: auto !important;
157
- right: auto !important;
158
- bottom: auto !important;
159
- bottom: 0% !important;
160
- }
161
-
162
- .ui.down.slide.reveal > .hidden.content {
163
- top: auto !important;
164
- right: auto !important;
165
- bottom: 100% !important;
166
- left: 0% !important;
167
- }
168
-
169
- .ui.slide.down.reveal:hover > .visible.content,
170
- .ui.slide.down.reveal:focus > .visible.content {
171
- left: 0% !important;
172
- bottom: -100% !important;
173
- }
174
-
175
- .ui.slide.down.reveal:hover > .hidden.content,
176
- .ui.slide.down.reveal:focus > .hidden.content {
177
- left: 0% !important;
178
- bottom: 0% !important;
69
+ width: 100% !important;
70
+ -webkit-transform: translateX(100%) !important;
71
+ -ms-transform: translateX(100%) !important;
72
+ transform: translateX(100%) !important;
73
+ }
74
+ .ui.slide.reveal:hover > .visible.content {
75
+ -webkit-transform: translateX(-100%) !important;
76
+ -ms-transform: translateX(-100%) !important;
77
+ transform: translateX(-100%) !important;
78
+ }
79
+ .ui.slide.reveal:hover > .hidden.content {
80
+ -webkit-transform: translateX(0%) !important;
81
+ -ms-transform: translateX(0%) !important;
82
+ transform: translateX(0%) !important;
83
+ }
84
+ .ui.slide.right.reveal > .visible.content {
85
+ -webkit-transform: translateX(0%) !important;
86
+ -ms-transform: translateX(0%) !important;
87
+ transform: translateX(0%) !important;
88
+ }
89
+ .ui.slide.right.reveal > .hidden.content {
90
+ -webkit-transform: translateX(-100%) !important;
91
+ -ms-transform: translateX(-100%) !important;
92
+ transform: translateX(-100%) !important;
93
+ }
94
+ .ui.slide.right.reveal:hover > .visible.content {
95
+ -webkit-transform: translateX(100%) !important;
96
+ -ms-transform: translateX(100%) !important;
97
+ transform: translateX(100%) !important;
98
+ }
99
+ .ui.slide.right.reveal:hover > .hidden.content {
100
+ -webkit-transform: translateX(0%) !important;
101
+ -ms-transform: translateX(0%) !important;
102
+ transform: translateX(0%) !important;
103
+ }
104
+ .ui.slide.up.reveal > .hidden.content {
105
+ -webkit-transform: translateY(100%) !important;
106
+ -ms-transform: translateY(100%) !important;
107
+ transform: translateY(100%) !important;
108
+ }
109
+ .ui.slide.up.reveal:hover > .visible.content {
110
+ -webkit-transform: translateY(-100%) !important;
111
+ -ms-transform: translateY(-100%) !important;
112
+ transform: translateY(-100%) !important;
113
+ }
114
+ .ui.slide.up.reveal:hover > .hidden.content {
115
+ -webkit-transform: translateY(0%) !important;
116
+ -ms-transform: translateY(0%) !important;
117
+ transform: translateY(0%) !important;
118
+ }
119
+ .ui.slide.down.reveal > .hidden.content {
120
+ -webkit-transform: translateY(-100%) !important;
121
+ -ms-transform: translateY(-100%) !important;
122
+ transform: translateY(-100%) !important;
123
+ }
124
+ .ui.slide.down.reveal:hover > .visible.content {
125
+ -webkit-transform: translateY(100%) !important;
126
+ -ms-transform: translateY(100%) !important;
127
+ transform: translateY(100%) !important;
128
+ }
129
+ .ui.slide.down.reveal:hover > .hidden.content {
130
+ -webkit-transform: translateY(0%) !important;
131
+ -ms-transform: translateY(0%) !important;
132
+ transform: translateY(0%) !important;
179
133
  }
180
134
 
181
135
  /*--------------
182
136
  Fade
183
137
  ---------------*/
184
138
 
185
- .ui.fade.reveal > .hidden.content {
186
- -webkit-transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
187
- transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
139
+ .ui.fade.reveal > .visible.content {
140
+ opacity: 1;
188
141
  }
189
-
190
- .ui.fade.reveal > .hidden.content {
191
- z-index: 5 !important;
142
+ .ui.fade.reveal:hover > .visible.content {
192
143
  opacity: 0;
193
144
  }
194
145
 
195
- .ui.fade.reveal:hover > .hidden.content {
196
- opacity: 1;
197
- }
198
-
199
146
  /*--------------
200
147
  Move
201
148
  ---------------*/
202
149
 
203
- .ui.move.reveal > .visible.content,
204
- .ui.move.left.reveal > .visible.content {
205
- left: auto !important;
206
- top: auto !important;
207
- bottom: auto !important;
208
- right: 0% !important;
150
+ .ui.move.reveal {
151
+ position: relative !important;
152
+ overflow: hidden !important;
153
+ white-space: nowrap;
209
154
  }
210
-
211
- .ui.move.reveal:hover > .visible.content,
212
- .ui.move.left.reveal:hover > .visible.content,
213
- .ui.move.reveal:focus > .visible.content,
214
- .ui.move.left.reveal:focus > .visible.content {
215
- right: 100% !important;
155
+ .ui.move.reveal > .content {
156
+ display: block;
157
+ float: left;
158
+ margin: 0em;
159
+ -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1) 0.15s;
160
+ transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1) 0.15s;
216
161
  }
217
-
218
- .ui.move.right.reveal > .visible.content {
219
- right: auto !important;
220
- top: auto !important;
221
- bottom: auto !important;
222
- left: 0% !important;
162
+ .ui.move.reveal > .visible.content {
163
+ position: relative !important;
223
164
  }
224
-
225
- .ui.move.right.reveal:hover > .visible.content,
226
- .ui.move.right.reveal:focus > .visible.content {
227
- left: 100% !important;
165
+ .ui.move.reveal > .hidden.content {
166
+ position: absolute !important;
167
+ left: 0% !important;
168
+ width: 100% !important;
228
169
  }
229
-
230
- .ui.move.up.reveal > .visible.content {
231
- right: auto !important;
232
- left: auto !important;
233
- top: auto !important;
234
- bottom: 0% !important;
170
+ .ui.move.reveal:hover > .visible.content {
171
+ -webkit-transform: translateX(-100%) !important;
172
+ -ms-transform: translateX(-100%) !important;
173
+ transform: translateX(-100%) !important;
235
174
  }
236
-
237
- .ui.move.up.reveal:hover > .visible.content,
238
- .ui.move.up.reveal:focus > .visible.content {
239
- bottom: 100% !important;
175
+ .ui.move.right.reveal:hover > .visible.content {
176
+ -webkit-transform: translateX(100%) !important;
177
+ -ms-transform: translateX(100%) !important;
178
+ transform: translateX(100%) !important;
240
179
  }
241
-
242
- .ui.move.down.reveal > .visible.content {
243
- right: auto !important;
244
- left: auto !important;
245
- bottom: auto !important;
246
- top: 0% !important;
247
- bottom: auto !important;
180
+ .ui.move.up.reveal:hover > .visible.content {
181
+ -webkit-transform: translateY(-100%) !important;
182
+ -ms-transform: translateY(-100%) !important;
183
+ transform: translateY(-100%) !important;
248
184
  }
249
-
250
- .ui.move.down.reveal:hover > .visible.content,
251
- .ui.move.down.reveal:focus > .visible.content {
252
- top: 100% !important;
185
+ .ui.move.down.reveal:hover > .visible.content {
186
+ -webkit-transform: translateY(100%) !important;
187
+ -ms-transform: translateY(100%) !important;
188
+ transform: translateY(100%) !important;
253
189
  }
254
190
 
255
191
  /*--------------
@@ -258,41 +194,35 @@
258
194
 
259
195
  .ui.rotate.reveal > .visible.content {
260
196
  -webkit-transition-duration: 0.8s;
261
- transition-duration: 0.8s;
197
+ transition-duration: 0.8s;
262
198
  -webkit-transform: rotate(0deg);
263
- -ms-transform: rotate(0deg);
264
- transform: rotate(0deg);
199
+ -ms-transform: rotate(0deg);
200
+ transform: rotate(0deg);
265
201
  }
266
-
267
202
  .ui.rotate.reveal > .visible.content,
268
203
  .ui.rotate.right.reveal > .visible.content {
269
204
  -webkit-transform-origin: bottom right;
270
- -ms-transform-origin: bottom right;
271
- transform-origin: bottom right;
205
+ -ms-transform-origin: bottom right;
206
+ transform-origin: bottom right;
272
207
  }
273
-
274
208
  .ui.rotate.reveal:hover > .visible.content,
275
- .ui.rotate.right.reveal:hover > .visible.content,
276
- .ui.rotate.reveal:focus > .visible.content,
277
- .ui.rotate.right.reveal:focus > .visible.content {
209
+ .ui.rotate.right.reveal:hover > .visible.content {
278
210
  -webkit-transform: rotate(110deg);
279
- -ms-transform: rotate(110deg);
280
- transform: rotate(110deg);
211
+ -ms-transform: rotate(110deg);
212
+ transform: rotate(110deg);
281
213
  }
282
-
283
214
  .ui.rotate.left.reveal > .visible.content {
284
215
  -webkit-transform-origin: bottom left;
285
- -ms-transform-origin: bottom left;
286
- transform-origin: bottom left;
216
+ -ms-transform-origin: bottom left;
217
+ transform-origin: bottom left;
287
218
  }
288
-
289
- .ui.rotate.left.reveal:hover > .visible.content,
290
- .ui.rotate.left.reveal:focus > .visible.content {
219
+ .ui.rotate.left.reveal:hover > .visible.content {
291
220
  -webkit-transform: rotate(-110deg);
292
- -ms-transform: rotate(-110deg);
293
- transform: rotate(-110deg);
221
+ -ms-transform: rotate(-110deg);
222
+ transform: rotate(-110deg);
294
223
  }
295
224
 
225
+
296
226
  /*******************************
297
227
  States
298
228
  *******************************/
@@ -300,14 +230,11 @@
300
230
  .ui.disabled.reveal {
301
231
  opacity: 1 !important;
302
232
  }
303
-
304
233
  .ui.disabled.reveal > .content {
305
234
  -webkit-transition: none !important;
306
- transition: none !important;
235
+ transition: none !important;
307
236
  }
308
-
309
- .ui.disabled.reveal:hover > .visible.content,
310
- .ui.disabled.reveal:focus > .visible.content {
237
+ .ui.disabled.reveal:hover > .visible.content {
311
238
  position: static !important;
312
239
  display: block !important;
313
240
  opacity: 1 !important;
@@ -316,19 +243,19 @@
316
243
  right: auto !important;
317
244
  bottom: auto !important;
318
245
  -webkit-transform: none !important;
319
- -ms-transform: none !important;
320
- transform: none !important;
246
+ -ms-transform: none !important;
247
+ transform: none !important;
321
248
  }
322
-
323
- .ui.disabled.reveal:hover > .hidden.content,
324
- .ui.disabled.reveal:focus > .hidden.content {
249
+ .ui.disabled.reveal:hover > .hidden.content {
325
250
  display: none !important;
326
251
  }
327
252
 
253
+
328
254
  /*******************************
329
255
  Variations
330
256
  *******************************/
331
257
 
258
+
332
259
  /*--------------
333
260
  Masked
334
261
  ---------------*/
@@ -343,5 +270,13 @@
343
270
 
344
271
  .ui.instant.reveal > .content {
345
272
  -webkit-transition-delay: 0s !important;
346
- transition-delay: 0s !important;
347
- }
273
+ transition-delay: 0s !important;
274
+ }
275
+
276
+ /*--------------
277
+ Sizing
278
+ ---------------*/
279
+
280
+ .ui.reveal > .content {
281
+ font-size: 1rem !important;
282
+ }