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,296 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Comment
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
+ Standard
14
+ *******************************/
15
+
16
+
17
+ /*--------------
18
+ Comments
19
+ ---------------*/
20
+
21
+ .ui.comments {
22
+ margin: 1.5em 0em;
23
+ max-width: 650px;
24
+ }
25
+ .ui.comments:first-child {
26
+ margin-top: 0em;
27
+ }
28
+ .ui.comments:last-child {
29
+ margin-bottom: 0em;
30
+ }
31
+
32
+ /*--------------
33
+ Comment
34
+ ---------------*/
35
+
36
+ .ui.comments .comment {
37
+ position: relative;
38
+ background: none;
39
+ margin: 0.5em 0em 0em;
40
+ padding: 0.5em 0em 0em;
41
+ border: none;
42
+ border-top: none;
43
+ line-height: 1.2;
44
+ }
45
+ .ui.comments .comment:first-child {
46
+ margin-top: 0em;
47
+ padding-top: 0em;
48
+ }
49
+
50
+ /*--------------------
51
+ Nested Comments
52
+ ---------------------*/
53
+
54
+ .ui.comments .comment > .comments {
55
+ margin: 0em 0em 0.5em 0.5em;
56
+ padding: 1em 0em 1em 1em;
57
+ }
58
+ .ui.comments .comment > .comments:before {
59
+ position: absolute;
60
+ top: 0px;
61
+ left: 0px;
62
+ }
63
+ .ui.comments .comment > .comments .comment {
64
+ border: none;
65
+ border-top: none;
66
+ background: none;
67
+ }
68
+
69
+ /*--------------
70
+ Avatar
71
+ ---------------*/
72
+
73
+ .ui.comments .comment .avatar {
74
+ display: block;
75
+ width: 2.5em;
76
+ height: auto;
77
+ float: left;
78
+ margin: 0.2em 0em 0em;
79
+ }
80
+ .ui.comments .comment img.avatar,
81
+ .ui.comments .comment .avatar img {
82
+ display: block;
83
+ margin: 0em auto;
84
+ width: 100%;
85
+ height: 100%;
86
+ border-radius: 0.25rem;
87
+ }
88
+
89
+ /*--------------
90
+ Content
91
+ ---------------*/
92
+
93
+ .ui.comments .comment > .content {
94
+ display: block;
95
+ }
96
+
97
+ /* If there is an avatar move content over */
98
+ .ui.comments .comment > .avatar ~ .content {
99
+ margin-left: 3.5em;
100
+ }
101
+
102
+ /*--------------
103
+ Author
104
+ ---------------*/
105
+
106
+ .ui.comments .comment .author {
107
+ font-size: 1em;
108
+ color: rgba(0, 0, 0, 0.87);
109
+ font-weight: bold;
110
+ }
111
+ .ui.comments .comment a.author {
112
+ cursor: pointer;
113
+ }
114
+ .ui.comments .comment a.author:hover {
115
+ color: #1e70bf;
116
+ }
117
+
118
+ /*--------------
119
+ Metadata
120
+ ---------------*/
121
+
122
+ .ui.comments .comment .metadata {
123
+ display: inline-block;
124
+ margin-left: 0.5em;
125
+ color: rgba(0, 0, 0, 0.4);
126
+ font-size: 0.875em;
127
+ }
128
+ .ui.comments .comment .metadata > * {
129
+ display: inline-block;
130
+ margin: 0em 0.5em 0em 0em;
131
+ }
132
+ .ui.comments .comment .metadata > :last-child {
133
+ margin-right: 0em;
134
+ }
135
+
136
+ /*--------------------
137
+ Comment Text
138
+ ---------------------*/
139
+
140
+ .ui.comments .comment .text {
141
+ margin: 0.25em 0em 0.5em;
142
+ font-size: 1em;
143
+ word-wrap: break-word;
144
+ color: rgba(0, 0, 0, 0.87);
145
+ line-height: 1.3;
146
+ }
147
+
148
+ /*--------------------
149
+ User Actions
150
+ ---------------------*/
151
+
152
+ .ui.comments .comment .actions {
153
+ font-size: 0.875em;
154
+ }
155
+ .ui.comments .comment .actions a {
156
+ cursor: pointer;
157
+ display: inline-block;
158
+ margin: 0em 0.75em 0em 0em;
159
+ color: rgba(0, 0, 0, 0.4);
160
+ }
161
+ .ui.comments .comment .actions a:last-child {
162
+ margin-right: 0em;
163
+ }
164
+ .ui.comments .comment .actions a.active,
165
+ .ui.comments .comment .actions a:hover {
166
+ color: rgba(0, 0, 0, 0.8);
167
+ }
168
+
169
+ /*--------------------
170
+ Reply Form
171
+ ---------------------*/
172
+
173
+ .ui.comments > .reply.form {
174
+ margin-top: 1em;
175
+ }
176
+ .ui.comments .comment .reply.form {
177
+ width: 100%;
178
+ margin-top: 1em;
179
+ }
180
+ .ui.comments .reply.form textarea {
181
+ font-size: 1em;
182
+ height: 12em;
183
+ }
184
+
185
+
186
+ /*******************************
187
+ State
188
+ *******************************/
189
+
190
+ .ui.collapsed.comments,
191
+ .ui.comments .collapsed.comments,
192
+ .ui.comments .collapsed.comment {
193
+ display: none;
194
+ }
195
+
196
+
197
+ /*******************************
198
+ Variations
199
+ *******************************/
200
+
201
+
202
+ /*--------------------
203
+ Threaded
204
+ ---------------------*/
205
+
206
+ .ui.threaded.comments .comment > .comments {
207
+ margin: -1.5em 0 -1em 1.25em;
208
+ padding: 3em 0em 2em 2.25em;
209
+ -webkit-box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15);
210
+ box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15);
211
+ }
212
+
213
+ /*--------------------
214
+ Minimal
215
+ ---------------------*/
216
+
217
+ .ui.minimal.comments .comment .actions {
218
+ opacity: 0;
219
+ position: absolute;
220
+ top: 0px;
221
+ right: 0px;
222
+ left: auto;
223
+ -webkit-transition: opacity 0.2s ease;
224
+ transition: opacity 0.2s ease;
225
+ -webkit-transition-delay: 0.1s;
226
+ transition-delay: 0.1s;
227
+ }
228
+ .ui.minimal.comments .comment > .content:hover > .actions {
229
+ opacity: 1;
230
+ }
231
+
232
+ /*-------------------
233
+ Sizes
234
+ --------------------*/
235
+
236
+ .ui.mini.comments {
237
+ font-size: 0.78571429rem;
238
+ }
239
+ .ui.tiny.comments {
240
+ font-size: 0.85714286rem;
241
+ }
242
+ .ui.small.comments {
243
+ font-size: 0.92857143rem;
244
+ }
245
+ .ui.comments {
246
+ font-size: 1rem;
247
+ }
248
+ .ui.large.comments {
249
+ font-size: 1.14285714rem;
250
+ }
251
+ .ui.big.comments {
252
+ font-size: 1.28571429rem;
253
+ }
254
+ .ui.huge.comments {
255
+ font-size: 1.42857143rem;
256
+ }
257
+ .ui.massive.comments {
258
+ font-size: 1.71428571rem;
259
+ }
260
+
261
+ /*-------------------
262
+ Inverted
263
+ --------------------*/
264
+
265
+ .ui.inverted.comments .comment {
266
+ background-color: #1B1C1D;
267
+ }
268
+ .ui.inverted.comments .comment .author,
269
+ .ui.inverted.comments .comment .text {
270
+ color: rgba(255, 255, 255, 0.9);
271
+ }
272
+ .ui.inverted.comments .comment .metadata,
273
+ .ui.inverted.comments .comment .actions a {
274
+ color: rgba(255, 255, 255, 0.7);
275
+ }
276
+ .ui.inverted.comments .comment a.author:hover,
277
+ .ui.inverted.comments .comment .actions a.active,
278
+ .ui.inverted.comments .comment .actions a:hover {
279
+ color: #ffffff;
280
+ }
281
+ .ui.inverted.threaded.comments .comment > .comments {
282
+ -webkit-box-shadow: -1px 0px 0px #555555;
283
+ box-shadow: -1px 0px 0px #555555;
284
+ }
285
+
286
+
287
+ /*******************************
288
+ Theme Overrides
289
+ *******************************/
290
+
291
+
292
+
293
+ /*******************************
294
+ User Variable Overrides
295
+ *******************************/
296
+
@@ -0,0 +1,314 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Feed
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
+ Activity Feed
14
+ *******************************/
15
+
16
+ .ui.feed {
17
+ margin: 1em 0em;
18
+ }
19
+ .ui.feed:first-child {
20
+ margin-top: 0em;
21
+ }
22
+ .ui.feed:last-child {
23
+ margin-bottom: 0em;
24
+ }
25
+
26
+
27
+ /*******************************
28
+ Content
29
+ *******************************/
30
+
31
+
32
+ /* Event */
33
+ .ui.feed > .event {
34
+ display: -webkit-box;
35
+ display: -ms-flexbox;
36
+ display: flex;
37
+ -webkit-box-orient: horizontal;
38
+ -webkit-box-direction: normal;
39
+ -ms-flex-direction: row;
40
+ flex-direction: row;
41
+ width: 100%;
42
+ padding: 0.21428571rem 0em;
43
+ margin: 0em;
44
+ background: none;
45
+ border-top: none;
46
+ }
47
+ .ui.feed > .event:first-child {
48
+ border-top: 0px;
49
+ padding-top: 0em;
50
+ }
51
+ .ui.feed > .event:last-child {
52
+ padding-bottom: 0em;
53
+ }
54
+
55
+ /* Event Label */
56
+ .ui.feed > .event > .label {
57
+ display: block;
58
+ -webkit-box-flex: 0;
59
+ -ms-flex: 0 0 auto;
60
+ flex: 0 0 auto;
61
+ width: 2.5em;
62
+ height: auto;
63
+ -ms-flex-item-align: stretch;
64
+ align-self: stretch;
65
+ text-align: left;
66
+ }
67
+ .ui.feed > .event > .label .icon {
68
+ opacity: 1;
69
+ font-size: 1.5em;
70
+ width: 100%;
71
+ padding: 0.25em;
72
+ background: none;
73
+ border: none;
74
+ border-radius: none;
75
+ color: rgba(0, 0, 0, 0.6);
76
+ }
77
+ .ui.feed > .event > .label img {
78
+ width: 100%;
79
+ height: auto;
80
+ border-radius: 500rem;
81
+ }
82
+ .ui.feed > .event > .label + .content {
83
+ margin: 0.5em 0em 0.35714286em 1.14285714em;
84
+ }
85
+
86
+ /*--------------
87
+ Content
88
+ ---------------*/
89
+
90
+
91
+ /* Content */
92
+ .ui.feed > .event > .content {
93
+ display: block;
94
+ -webkit-box-flex: 1;
95
+ -ms-flex: 1 1 auto;
96
+ flex: 1 1 auto;
97
+ -ms-flex-item-align: stretch;
98
+ align-self: stretch;
99
+ text-align: left;
100
+ word-wrap: break-word;
101
+ }
102
+ .ui.feed > .event:last-child > .content {
103
+ padding-bottom: 0em;
104
+ }
105
+
106
+ /* Link */
107
+ .ui.feed > .event > .content a {
108
+ cursor: pointer;
109
+ }
110
+
111
+ /*--------------
112
+ Date
113
+ ---------------*/
114
+
115
+ .ui.feed > .event > .content .date {
116
+ margin: -0.5rem 0em 0em;
117
+ padding: 0em;
118
+ color: rgba(0, 0, 0, 0.4);
119
+ font-weight: normal;
120
+ font-size: 1em;
121
+ font-style: normal;
122
+ }
123
+
124
+ /*--------------
125
+ Summary
126
+ ---------------*/
127
+
128
+ .ui.feed > .event > .content .summary {
129
+ margin: 0em;
130
+ font-size: 1em;
131
+ font-weight: bold;
132
+ color: rgba(0, 0, 0, 0.87);
133
+ }
134
+
135
+ /* Summary Image */
136
+ .ui.feed > .event > .content .summary img {
137
+ display: inline-block;
138
+ width: auto;
139
+ height: 10em;
140
+ margin: -0.25em 0.25em 0em 0em;
141
+ border-radius: 0.25em;
142
+ vertical-align: middle;
143
+ }
144
+
145
+ /*--------------
146
+ User
147
+ ---------------*/
148
+
149
+ .ui.feed > .event > .content .user {
150
+ display: inline-block;
151
+ font-weight: bold;
152
+ margin-right: 0em;
153
+ vertical-align: baseline;
154
+ }
155
+ .ui.feed > .event > .content .user img {
156
+ margin: -0.25em 0.25em 0em 0em;
157
+ width: auto;
158
+ height: 10em;
159
+ vertical-align: middle;
160
+ }
161
+
162
+ /*--------------
163
+ Inline Date
164
+ ---------------*/
165
+
166
+
167
+ /* Date inside Summary */
168
+ .ui.feed > .event > .content .summary > .date {
169
+ display: inline-block;
170
+ float: none;
171
+ font-weight: normal;
172
+ font-size: 0.85714286em;
173
+ font-style: normal;
174
+ margin: 0em 0em 0em 0.5em;
175
+ padding: 0em;
176
+ color: rgba(0, 0, 0, 0.4);
177
+ }
178
+
179
+ /*--------------
180
+ Extra Summary
181
+ ---------------*/
182
+
183
+ .ui.feed > .event > .content .extra {
184
+ margin: 0.5em 0em 0em;
185
+ background: none;
186
+ padding: 0em;
187
+ color: rgba(0, 0, 0, 0.87);
188
+ }
189
+
190
+ /* Images */
191
+ .ui.feed > .event > .content .extra.images img {
192
+ display: inline-block;
193
+ margin: 0em 0.25em 0em 0em;
194
+ width: 6em;
195
+ }
196
+
197
+ /* Text */
198
+ .ui.feed > .event > .content .extra.text {
199
+ padding: 0em;
200
+ border-left: none;
201
+ font-size: 1em;
202
+ max-width: 500px;
203
+ line-height: 1.4285em;
204
+ }
205
+
206
+ /*--------------
207
+ Meta
208
+ ---------------*/
209
+
210
+ .ui.feed > .event > .content .meta {
211
+ display: inline-block;
212
+ font-size: 0.85714286em;
213
+ margin: 0.5em 0em 0em;
214
+ background: none;
215
+ border: none;
216
+ border-radius: 0;
217
+ -webkit-box-shadow: none;
218
+ box-shadow: none;
219
+ padding: 0em;
220
+ color: rgba(0, 0, 0, 0.6);
221
+ }
222
+ .ui.feed > .event > .content .meta > * {
223
+ position: relative;
224
+ margin-left: 0.75em;
225
+ }
226
+ .ui.feed > .event > .content .meta > *:after {
227
+ content: '';
228
+ color: rgba(0, 0, 0, 0.2);
229
+ top: 0em;
230
+ left: -1em;
231
+ opacity: 1;
232
+ position: absolute;
233
+ vertical-align: top;
234
+ }
235
+ .ui.feed > .event > .content .meta .like {
236
+ color: '';
237
+ -webkit-transition: 0.2s color ease;
238
+ transition: 0.2s color ease;
239
+ }
240
+ .ui.feed > .event > .content .meta .like:hover .icon {
241
+ color: #FF2733;
242
+ }
243
+ .ui.feed > .event > .content .meta .active.like .icon {
244
+ color: #EF404A;
245
+ }
246
+
247
+ /* First element */
248
+ .ui.feed > .event > .content .meta > :first-child {
249
+ margin-left: 0em;
250
+ }
251
+ .ui.feed > .event > .content .meta > :first-child::after {
252
+ display: none;
253
+ }
254
+
255
+ /* Action */
256
+ .ui.feed > .event > .content .meta a,
257
+ .ui.feed > .event > .content .meta > .icon {
258
+ cursor: pointer;
259
+ opacity: 1;
260
+ color: rgba(0, 0, 0, 0.5);
261
+ -webkit-transition: color 0.1s ease;
262
+ transition: color 0.1s ease;
263
+ }
264
+ .ui.feed > .event > .content .meta a:hover,
265
+ .ui.feed > .event > .content .meta a:hover .icon,
266
+ .ui.feed > .event > .content .meta > .icon:hover {
267
+ color: rgba(0, 0, 0, 0.95);
268
+ }
269
+
270
+
271
+ /*******************************
272
+ Variations
273
+ *******************************/
274
+
275
+ .ui.small.feed {
276
+ font-size: 0.92857143rem;
277
+ }
278
+ .ui.feed {
279
+ font-size: 1rem;
280
+ }
281
+ .ui.large.feed {
282
+ font-size: 1.14285714rem;
283
+ }
284
+
285
+ /*------------------
286
+ Inverted
287
+ -------------------*/
288
+
289
+ .ui.inverted.feed > .event {
290
+ background: #1B1C1D;
291
+ }
292
+ .ui.inverted.feed > .event > .content .date,
293
+ .ui.inverted.feed > .event > .content .meta .like {
294
+ color: rgba(255, 255, 255, 0.7);
295
+ }
296
+ .ui.inverted.feed > .event > .content .summary,
297
+ .ui.inverted.feed > .event > .content .extra.text {
298
+ color: rgba(255, 255, 255, 0.9);
299
+ }
300
+ .ui.inverted.feed > .event > .content .meta .like:hover {
301
+ color: #ffffff;
302
+ }
303
+
304
+
305
+ /*******************************
306
+ Theme Overrides
307
+ *******************************/
308
+
309
+
310
+
311
+ /*******************************
312
+ User Variable Overrides
313
+ *******************************/
314
+