fomantic-ui-sass 2.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +5 -0
  5. data/CHANGELOG.md +370 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +177 -0
  9. data/Rakefile +8 -0
  10. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  13. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  14. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.svg +1518 -0
  18. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  19. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  20. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
  23. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  24. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  25. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  26. data/app/assets/images/semantic-ui/flags.png +0 -0
  27. data/app/assets/javascripts/semantic-ui.js +27 -0
  28. data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
  29. data/app/assets/javascripts/semantic-ui/api.js +1167 -0
  30. data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
  32. data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
  33. data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
  34. data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
  35. data/app/assets/javascripts/semantic-ui/embed.js +706 -0
  36. data/app/assets/javascripts/semantic-ui/form.js +1707 -0
  37. data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
  38. data/app/assets/javascripts/semantic-ui/nag.js +507 -0
  39. data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
  40. data/app/assets/javascripts/semantic-ui/progress.js +923 -0
  41. data/app/assets/javascripts/semantic-ui/range.js +278 -0
  42. data/app/assets/javascripts/semantic-ui/rating.js +511 -0
  43. data/app/assets/javascripts/semantic-ui/search.js +1515 -0
  44. data/app/assets/javascripts/semantic-ui/shape.js +921 -0
  45. data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
  46. data/app/assets/javascripts/semantic-ui/site.js +490 -0
  47. data/app/assets/javascripts/semantic-ui/state.js +708 -0
  48. data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
  49. data/app/assets/javascripts/semantic-ui/tab.js +952 -0
  50. data/app/assets/javascripts/semantic-ui/toast.js +592 -0
  51. data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
  52. data/app/assets/javascripts/semantic-ui/video.js +532 -0
  53. data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
  54. data/app/assets/javascripts/semantic-ui/visit.js +525 -0
  55. data/app/assets/stylesheets/semantic-ui.scss +5 -0
  56. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  57. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  58. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
  59. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
  60. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
  61. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
  62. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
  65. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
  66. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
  67. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
  68. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
  69. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
  70. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
  71. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
  72. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
  73. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
  74. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
  75. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
  76. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  77. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
  78. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
  79. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
  80. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  81. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
  82. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
  83. data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
  84. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
  85. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
  86. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
  87. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
  88. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
  90. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
  91. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
  92. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
  93. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
  94. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
  95. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
  96. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
  97. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
  98. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
  99. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
  100. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  101. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
  102. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
  103. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
  104. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  105. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
  106. data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  107. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
  108. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
  109. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
  110. data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
  111. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  112. data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
  113. data/app/helpers/semantic_flash_helper.rb +22 -0
  114. data/app/helpers/semantic_icon_helper.rb +8 -0
  115. data/app/views/semantic/_breadcrumbs.html.erb +12 -0
  116. data/fomantic-ui-sass.gemspec +31 -0
  117. data/lib/fomantic-ui-sass.rb +62 -0
  118. data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
  119. data/lib/fomantic/ui/sass/engine.rb +23 -0
  120. data/lib/fomantic/ui/sass/version.rb +8 -0
  121. data/spec/dummy/README.rdoc +28 -0
  122. data/spec/dummy/Rakefile +6 -0
  123. data/spec/dummy/app/assets/images/.keep +0 -0
  124. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  125. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  126. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  127. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  128. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  129. data/spec/dummy/app/mailers/.keep +0 -0
  130. data/spec/dummy/app/models/.keep +0 -0
  131. data/spec/dummy/app/models/concerns/.keep +0 -0
  132. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  133. data/spec/dummy/bin/bundle +3 -0
  134. data/spec/dummy/bin/rails +4 -0
  135. data/spec/dummy/bin/rake +4 -0
  136. data/spec/dummy/config.ru +4 -0
  137. data/spec/dummy/config/application.rb +28 -0
  138. data/spec/dummy/config/boot.rb +5 -0
  139. data/spec/dummy/config/environment.rb +5 -0
  140. data/spec/dummy/config/environments/development.rb +29 -0
  141. data/spec/dummy/config/environments/production.rb +80 -0
  142. data/spec/dummy/config/environments/test.rb +36 -0
  143. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  144. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  145. data/spec/dummy/config/initializers/inflections.rb +16 -0
  146. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  147. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  148. data/spec/dummy/config/initializers/session_store.rb +3 -0
  149. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  150. data/spec/dummy/config/locales/en.yml +23 -0
  151. data/spec/dummy/config/routes.rb +2 -0
  152. data/spec/dummy/lib/assets/.keep +0 -0
  153. data/spec/dummy/log/.keep +0 -0
  154. data/spec/dummy/public/404.html +58 -0
  155. data/spec/dummy/public/422.html +58 -0
  156. data/spec/dummy/public/500.html +57 -0
  157. data/spec/dummy/public/favicon.ico +0 -0
  158. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
  159. data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
  160. data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
  161. data/spec/spec_helper.rb +17 -0
  162. data/tasks/converter.rb +216 -0
  163. data/templates/project/manifest.rb +29 -0
  164. data/templates/project/styles.scss +1 -0
  165. metadata +390 -0
@@ -0,0 +1,445 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Search
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Search
14
+ *******************************/
15
+
16
+ .ui.search {
17
+ position: relative;
18
+ }
19
+ .ui.search > .prompt {
20
+ margin: 0em;
21
+ outline: none;
22
+ -webkit-appearance: none;
23
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
24
+ text-shadow: none;
25
+ font-style: normal;
26
+ font-weight: normal;
27
+ line-height: 1.21428571em;
28
+ padding: 0.67857143em 1em;
29
+ font-size: 1em;
30
+ background: #FFFFFF;
31
+ border: 1px solid rgba(34, 36, 38, 0.15);
32
+ color: rgba(0, 0, 0, 0.87);
33
+ -webkit-box-shadow: 0em 0em 0em 0em transparent inset;
34
+ box-shadow: 0em 0em 0em 0em transparent inset;
35
+ -webkit-transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
36
+ transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
37
+ transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
38
+ transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
39
+ }
40
+ .ui.search .prompt {
41
+ border-radius: 500rem;
42
+ }
43
+
44
+ /*--------------
45
+ Icon
46
+ ---------------*/
47
+
48
+ .ui.search .prompt ~ .search.icon {
49
+ cursor: pointer;
50
+ }
51
+
52
+ /*--------------
53
+ Results
54
+ ---------------*/
55
+
56
+ .ui.search > .results {
57
+ display: none;
58
+ position: absolute;
59
+ top: 100%;
60
+ left: 0%;
61
+ -webkit-transform-origin: center top;
62
+ transform-origin: center top;
63
+ white-space: normal;
64
+ text-align: left;
65
+ text-transform: none;
66
+ background: #FFFFFF;
67
+ margin-top: 0.5em;
68
+ width: 18em;
69
+ border-radius: 0.28571429rem;
70
+ -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
71
+ box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
72
+ border: 1px solid #D4D4D5;
73
+ z-index: 998;
74
+ }
75
+ .ui.search > .results > :first-child {
76
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
77
+ }
78
+ .ui.search > .results > :last-child {
79
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
80
+ }
81
+
82
+ /*--------------
83
+ Result
84
+ ---------------*/
85
+
86
+ .ui.search > .results .result {
87
+ cursor: pointer;
88
+ display: block;
89
+ overflow: hidden;
90
+ font-size: 1em;
91
+ padding: 0.85714286em 1.14285714em;
92
+ color: rgba(0, 0, 0, 0.87);
93
+ line-height: 1.33;
94
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
95
+ }
96
+ .ui.search > .results .result:last-child {
97
+ border-bottom: none !important;
98
+ }
99
+
100
+ /* Image */
101
+ .ui.search > .results .result .image {
102
+ float: right;
103
+ overflow: hidden;
104
+ background: none;
105
+ width: 5em;
106
+ height: 3em;
107
+ border-radius: 0.25em;
108
+ }
109
+ .ui.search > .results .result .image img {
110
+ display: block;
111
+ width: auto;
112
+ height: 100%;
113
+ }
114
+
115
+ /*--------------
116
+ Info
117
+ ---------------*/
118
+
119
+ .ui.search > .results .result .image + .content {
120
+ margin: 0em 6em 0em 0em;
121
+ }
122
+ .ui.search > .results .result .title {
123
+ margin: -0.14285714em 0em 0em;
124
+ font-family: $font-family;
125
+ font-weight: bold;
126
+ font-size: 1em;
127
+ color: rgba(0, 0, 0, 0.85);
128
+ }
129
+ .ui.search > .results .result .description {
130
+ margin-top: 0;
131
+ font-size: 0.92857143em;
132
+ color: rgba(0, 0, 0, 0.4);
133
+ }
134
+ .ui.search > .results .result .price {
135
+ float: right;
136
+ color: #21BA45;
137
+ }
138
+
139
+ /*--------------
140
+ Message
141
+ ---------------*/
142
+
143
+ .ui.search > .results > .message {
144
+ padding: 1em 1em;
145
+ }
146
+ .ui.search > .results > .message .header {
147
+ font-family: $font-family;
148
+ font-size: 1rem;
149
+ font-weight: bold;
150
+ color: rgba(0, 0, 0, 0.87);
151
+ }
152
+ .ui.search > .results > .message .description {
153
+ margin-top: 0.25rem;
154
+ font-size: 1em;
155
+ color: rgba(0, 0, 0, 0.87);
156
+ }
157
+
158
+ /* View All Results */
159
+ .ui.search > .results > .action {
160
+ display: block;
161
+ border-top: none;
162
+ background: #F3F4F5;
163
+ padding: 0.92857143em 1em;
164
+ color: rgba(0, 0, 0, 0.87);
165
+ font-weight: bold;
166
+ text-align: center;
167
+ }
168
+
169
+
170
+ /*******************************
171
+ States
172
+ *******************************/
173
+
174
+
175
+ /*--------------------
176
+ Focus
177
+ ---------------------*/
178
+
179
+ .ui.search > .prompt:focus {
180
+ border-color: rgba(34, 36, 38, 0.35);
181
+ background: #FFFFFF;
182
+ color: rgba(0, 0, 0, 0.95);
183
+ }
184
+
185
+ /*--------------------
186
+ Loading
187
+ ---------------------*/
188
+
189
+ .ui.loading.search .input > i.icon:before {
190
+ position: absolute;
191
+ content: '';
192
+ top: 50%;
193
+ left: 50%;
194
+ margin: -0.64285714em 0em 0em -0.64285714em;
195
+ width: 1.28571429em;
196
+ height: 1.28571429em;
197
+ border-radius: 500rem;
198
+ border: 0.2em solid rgba(0, 0, 0, 0.1);
199
+ }
200
+ .ui.loading.search .input > i.icon:after {
201
+ position: absolute;
202
+ content: '';
203
+ top: 50%;
204
+ left: 50%;
205
+ margin: -0.64285714em 0em 0em -0.64285714em;
206
+ width: 1.28571429em;
207
+ height: 1.28571429em;
208
+ -webkit-animation: button-spin 0.6s linear;
209
+ animation: button-spin 0.6s linear;
210
+ -webkit-animation-iteration-count: infinite;
211
+ animation-iteration-count: infinite;
212
+ border-radius: 500rem;
213
+ border-color: #767676 transparent transparent;
214
+ border-style: solid;
215
+ border-width: 0.2em;
216
+ -webkit-box-shadow: 0px 0px 0px 1px transparent;
217
+ box-shadow: 0px 0px 0px 1px transparent;
218
+ }
219
+
220
+ /*--------------
221
+ Hover
222
+ ---------------*/
223
+
224
+ .ui.search > .results .result:hover,
225
+ .ui.category.search > .results .category .result:hover {
226
+ background: #F9FAFB;
227
+ }
228
+ .ui.search .action:hover:not(div) {
229
+ background: #E0E0E0;
230
+ }
231
+
232
+ /*--------------
233
+ Active
234
+ ---------------*/
235
+
236
+ .ui.category.search > .results .category.active {
237
+ background: #F3F4F5;
238
+ }
239
+ .ui.category.search > .results .category.active > .name {
240
+ color: rgba(0, 0, 0, 0.87);
241
+ }
242
+ .ui.search > .results .result.active,
243
+ .ui.category.search > .results .category .result.active {
244
+ position: relative;
245
+ border-left-color: rgba(34, 36, 38, 0.1);
246
+ background: #F3F4F5;
247
+ -webkit-box-shadow: none;
248
+ box-shadow: none;
249
+ }
250
+ .ui.search > .results .result.active .title {
251
+ color: rgba(0, 0, 0, 0.85);
252
+ }
253
+ .ui.search > .results .result.active .description {
254
+ color: rgba(0, 0, 0, 0.85);
255
+ }
256
+
257
+ /*--------------------
258
+ Disabled
259
+ ----------------------*/
260
+
261
+
262
+ /* Disabled */
263
+ .ui.disabled.search {
264
+ cursor: default;
265
+ pointer-events: none;
266
+ opacity: 0.45;
267
+ }
268
+
269
+
270
+ /*******************************
271
+ Types
272
+ *******************************/
273
+
274
+
275
+ /*--------------
276
+ Selection
277
+ ---------------*/
278
+
279
+ .ui.search.selection .prompt {
280
+ border-radius: 0.28571429rem;
281
+ }
282
+
283
+ /* Remove input */
284
+ .ui.search.selection > .icon.input > .remove.icon {
285
+ pointer-events: none;
286
+ position: absolute;
287
+ left: auto;
288
+ opacity: 0;
289
+ color: '';
290
+ top: 0em;
291
+ right: 0em;
292
+ -webkit-transition: color 0.1s ease, opacity 0.1s ease;
293
+ transition: color 0.1s ease, opacity 0.1s ease;
294
+ }
295
+ .ui.search.selection > .icon.input > .active.remove.icon {
296
+ cursor: pointer;
297
+ opacity: 0.8;
298
+ pointer-events: auto;
299
+ }
300
+ .ui.search.selection > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon {
301
+ right: 1.85714em;
302
+ }
303
+ .ui.search.selection > .icon.input > .remove.icon:hover {
304
+ opacity: 1;
305
+ color: #DB2828;
306
+ }
307
+
308
+ /*--------------
309
+ Category
310
+ ---------------*/
311
+
312
+ .ui.category.search .results {
313
+ width: 28em;
314
+ }
315
+ .ui.category.search .results.animating,
316
+ .ui.category.search .results.visible {
317
+ display: table;
318
+ }
319
+
320
+ /* Category */
321
+ .ui.category.search > .results .category {
322
+ display: table-row;
323
+ background: #F3F4F5;
324
+ -webkit-box-shadow: none;
325
+ box-shadow: none;
326
+ -webkit-transition: background 0.1s ease, border-color 0.1s ease;
327
+ transition: background 0.1s ease, border-color 0.1s ease;
328
+ }
329
+
330
+ /* Last Category */
331
+ .ui.category.search > .results .category:last-child {
332
+ border-bottom: none;
333
+ }
334
+
335
+ /* First / Last */
336
+ .ui.category.search > .results .category:first-child .name + .result {
337
+ border-radius: 0em 0.28571429rem 0em 0em;
338
+ }
339
+ .ui.category.search > .results .category:last-child .result:last-child {
340
+ border-radius: 0em 0em 0.28571429rem 0em;
341
+ }
342
+
343
+ /* Category Result Name */
344
+ .ui.category.search > .results .category > .name {
345
+ display: table-cell;
346
+ text-overflow: ellipsis;
347
+ width: 100px;
348
+ white-space: nowrap;
349
+ background: transparent;
350
+ font-family: $font-family;
351
+ font-size: 1em;
352
+ padding: 0.4em 1em;
353
+ font-weight: bold;
354
+ color: rgba(0, 0, 0, 0.4);
355
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
356
+ }
357
+
358
+ /* Category Result */
359
+ .ui.category.search > .results .category .results {
360
+ display: table-cell;
361
+ background: #FFFFFF;
362
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
363
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
364
+ }
365
+ .ui.category.search > .results .category .result {
366
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
367
+ -webkit-transition: background 0.1s ease, border-color 0.1s ease;
368
+ transition: background 0.1s ease, border-color 0.1s ease;
369
+ padding: 0.85714286em 1.14285714em;
370
+ }
371
+
372
+
373
+ /*******************************
374
+ Variations
375
+ *******************************/
376
+
377
+
378
+ /*-------------------
379
+ Left / Right
380
+ --------------------*/
381
+
382
+ .ui[class*="left aligned"].search > .results {
383
+ right: auto;
384
+ left: 0%;
385
+ }
386
+ .ui[class*="right aligned"].search > .results {
387
+ right: 0%;
388
+ left: auto;
389
+ }
390
+
391
+ /*--------------
392
+ Fluid
393
+ ---------------*/
394
+
395
+ .ui.fluid.search .results {
396
+ width: 100%;
397
+ }
398
+
399
+ /*--------------
400
+ Sizes
401
+ ---------------*/
402
+
403
+ .ui.mini.search {
404
+ font-size: 0.78571429em;
405
+ }
406
+ .ui.small.search {
407
+ font-size: 0.92857143em;
408
+ }
409
+ .ui.search {
410
+ font-size: 1em;
411
+ }
412
+ .ui.large.search {
413
+ font-size: 1.14285714em;
414
+ }
415
+ .ui.big.search {
416
+ font-size: 1.28571429em;
417
+ }
418
+ .ui.huge.search {
419
+ font-size: 1.42857143em;
420
+ }
421
+ .ui.massive.search {
422
+ font-size: 1.71428571em;
423
+ }
424
+
425
+ /*--------------
426
+ Mobile
427
+ ---------------*/
428
+
429
+ @media only screen and (max-width: 767px) {
430
+ .ui.search .results {
431
+ max-width: calc(100vw - 2rem);
432
+ }
433
+ }
434
+
435
+
436
+ /*******************************
437
+ Theme Overrides
438
+ *******************************/
439
+
440
+
441
+
442
+ /*******************************
443
+ Site Overrides
444
+ *******************************/
445
+
@@ -0,0 +1,154 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Shape
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Shape
14
+ *******************************/
15
+
16
+ .ui.shape {
17
+ position: relative;
18
+ vertical-align: top;
19
+ display: inline-block;
20
+ -webkit-perspective: 2000px;
21
+ perspective: 2000px;
22
+ -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
23
+ transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
24
+ transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
25
+ transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
26
+ }
27
+ .ui.shape .sides {
28
+ -webkit-transform-style: preserve-3d;
29
+ transform-style: preserve-3d;
30
+ }
31
+ .ui.shape .side {
32
+ display: none;
33
+ opacity: 1;
34
+ width: 100%;
35
+ margin: 0em !important;
36
+ -webkit-backface-visibility: hidden;
37
+ backface-visibility: hidden;
38
+ }
39
+ .ui.shape .side * {
40
+ -webkit-backface-visibility: visible !important;
41
+ backface-visibility: visible !important;
42
+ }
43
+
44
+
45
+ /*******************************
46
+ Types
47
+ *******************************/
48
+
49
+ .ui.cube.shape .side {
50
+ min-width: 15em;
51
+ height: 15em;
52
+ padding: 2em;
53
+ background-color: #E6E6E6;
54
+ color: rgba(0, 0, 0, 0.87);
55
+ -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
56
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
57
+ }
58
+ .ui.cube.shape .side > .content {
59
+ width: 100%;
60
+ height: 100%;
61
+ display: table;
62
+ text-align: center;
63
+ -webkit-user-select: text;
64
+ -moz-user-select: text;
65
+ -ms-user-select: text;
66
+ user-select: text;
67
+ }
68
+ .ui.cube.shape .side > .content > div {
69
+ display: table-cell;
70
+ vertical-align: middle;
71
+ font-size: 2em;
72
+ }
73
+
74
+
75
+ /*******************************
76
+ Variations
77
+ *******************************/
78
+
79
+ .ui.text.shape.animating .sides {
80
+ position: static;
81
+ }
82
+ .ui.text.shape .side {
83
+ white-space: nowrap;
84
+ }
85
+ .ui.text.shape .side > * {
86
+ white-space: normal;
87
+ }
88
+
89
+
90
+ /*******************************
91
+ States
92
+ *******************************/
93
+
94
+
95
+ /*--------------
96
+ Loading
97
+ ---------------*/
98
+
99
+ .ui.loading.shape {
100
+ position: absolute;
101
+ top: -9999px;
102
+ left: -9999px;
103
+ }
104
+
105
+ /*--------------
106
+ Animating
107
+ ---------------*/
108
+
109
+ .ui.shape .animating.side {
110
+ position: absolute;
111
+ top: 0px;
112
+ left: 0px;
113
+ display: block;
114
+ z-index: 100;
115
+ }
116
+ .ui.shape .hidden.side {
117
+ opacity: 0.6;
118
+ }
119
+
120
+ /*--------------
121
+ CSS
122
+ ---------------*/
123
+
124
+ .ui.shape.animating .sides {
125
+ position: absolute;
126
+ -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
127
+ transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
128
+ transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
129
+ transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
130
+ }
131
+ .ui.shape.animating .side {
132
+ -webkit-transition: opacity 0.6s ease-in-out;
133
+ transition: opacity 0.6s ease-in-out;
134
+ }
135
+
136
+ /*--------------
137
+ Active
138
+ ---------------*/
139
+
140
+ .ui.shape .active.side {
141
+ display: block;
142
+ }
143
+
144
+
145
+ /*******************************
146
+ Theme Overrides
147
+ *******************************/
148
+
149
+
150
+
151
+ /*******************************
152
+ User Overrides
153
+ *******************************/
154
+