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,27 +1,34 @@
1
- /*
2
- * # Semantic Comment View
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
8
8
  * http://opensource.org/licenses/MIT
9
9
  *
10
- * Released: April 17 2014
11
10
  */
12
11
 
12
+
13
+
13
14
  /*******************************
14
15
  Standard
15
16
  *******************************/
16
17
 
18
+
17
19
  /*--------------
18
20
  Comments
19
21
  ---------------*/
20
22
 
21
-
22
-
23
- .ui.comments a {
24
- cursor: pointer;
23
+ .ui.comments {
24
+ margin: 1.5em 0em;
25
+ max-width: 650px;
26
+ }
27
+ .ui.comments:first-child {
28
+ margin-top: 0em;
29
+ }
30
+ .ui.comments:last-child {
31
+ margin-bottom: 0em;
25
32
  }
26
33
 
27
34
  /*--------------
@@ -30,62 +37,102 @@
30
37
 
31
38
  .ui.comments .comment {
32
39
  position: relative;
33
- margin-top: 0.5em;
34
- padding-top: 0.5em;
40
+ background: none;
41
+ margin: 0.5em 0em 0em;
42
+ padding: 0.5em 0em 0em;
43
+ border: none;
44
+ border-top: none;
45
+ line-height: 1.2;
35
46
  }
36
-
37
47
  .ui.comments .comment:first-child {
38
48
  margin-top: 0em;
39
49
  padding-top: 0em;
40
50
  }
41
51
 
42
52
  /*--------------------
43
- Avatar (Optional)
53
+ Nested Comments
44
54
  ---------------------*/
45
55
 
56
+ .ui.comments .comment .comments {
57
+ margin: 0em 0em 0.5em 0.5em;
58
+ padding: 1em 0em 1em 1em;
59
+ }
60
+ .ui.comments .comment .comments:before {
61
+ position: absolute;
62
+ top: 0px;
63
+ left: 0px;
64
+ }
65
+ .ui.comments .comment .comments .comment {
66
+ border: none;
67
+ border-top: none;
68
+ background: none;
69
+ }
70
+
71
+ /*--------------
72
+ Avatar
73
+ ---------------*/
74
+
46
75
  .ui.comments .comment .avatar {
47
76
  display: block;
77
+ width: 2.5em;
78
+ height: auto;
48
79
  float: left;
49
- width: 4em;
80
+ margin: 0.2em 0em 0em;
50
81
  }
51
-
82
+ .ui.comments .comment img.avatar,
52
83
  .ui.comments .comment .avatar img {
53
84
  display: block;
54
85
  margin: 0em auto;
55
- width: 3em;
56
- height: 3em;
57
- border-radius: 500px;
86
+ width: 100%;
87
+ height: 100%;
88
+ border-radius: 0.25rem;
58
89
  }
59
90
 
60
91
  /*--------------
61
92
  Content
62
93
  ---------------*/
63
94
 
64
- .ui.comments .comment > .content,
65
- .ui.comments .comment > .avatar {
95
+ .ui.comments .comment > .content {
66
96
  display: block;
67
97
  }
68
98
 
69
- .ui.comments .comment .avatar ~ .content {
70
- padding: 0em 1em;
71
- }
72
-
73
99
  /* If there is an avatar move content over */
74
-
75
100
  .ui.comments .comment > .avatar ~ .content {
76
- padding-top: 0.25em;
77
101
  margin-left: 3.5em;
78
102
  }
79
103
 
104
+ /*--------------
105
+ Author
106
+ ---------------*/
107
+
108
+ .ui.comments .comment .author {
109
+ font-size: 1em;
110
+ color: rgba(0, 0, 0, 0.8);
111
+ font-weight: bold;
112
+ }
113
+ .ui.comments .comment a.author {
114
+ cursor: pointer;
115
+ }
116
+ .ui.comments .comment a.author:hover {
117
+ color: #00b2f3;
118
+ }
119
+
120
+ /*--------------
121
+ Metadata
122
+ ---------------*/
123
+
80
124
  .ui.comments .comment .metadata {
81
125
  display: inline-block;
82
- margin-left: 0.3em;
126
+ margin-left: 0.5em;
83
127
  color: rgba(0, 0, 0, 0.4);
128
+ font-size: 0.875em;
84
129
  }
85
-
86
130
  .ui.comments .comment .metadata > * {
87
131
  display: inline-block;
88
- margin: 0em 0.3em 0em 0em;
132
+ margin: 0em 0.5em 0em 0em;
133
+ }
134
+ .ui.comments .comment .metadata > :last-child {
135
+ margin-right: 0em;
89
136
  }
90
137
 
91
138
  /*--------------------
@@ -94,7 +141,10 @@
94
141
 
95
142
  .ui.comments .comment .text {
96
143
  margin: 0.25em 0em 0.5em;
144
+ font-size: 1em;
97
145
  word-wrap: break-word;
146
+ color: rgba(0, 0, 0, 0.8);
147
+ line-height: 1.3;
98
148
  }
99
149
 
100
150
  /*--------------------
@@ -102,96 +152,63 @@
102
152
  ---------------------*/
103
153
 
104
154
  .ui.comments .comment .actions {
105
- font-size: 0.9em;
155
+ font-size: 0.875em;
106
156
  }
107
-
108
157
  .ui.comments .comment .actions a {
158
+ cursor: pointer;
109
159
  display: inline-block;
110
- margin: 0em 0.3em 0em 0em;
111
- color: rgba(0, 0, 0, 0.3);
160
+ margin: 0em 0.75em 0em 0em;
161
+ color: rgba(0, 0, 0, 0.4);
162
+ }
163
+ .ui.comments .comment .actions a:last-child {
164
+ margin-right: 0em;
112
165
  }
113
-
114
166
  .ui.comments .comment .actions a.active,
115
167
  .ui.comments .comment .actions a:hover {
116
- color: rgba(0, 0, 0, 0.6);
168
+ color: rgba(0, 0, 0, 0.8);
117
169
  }
118
170
 
119
171
  /*--------------------
120
172
  Reply Form
121
173
  ---------------------*/
122
174
 
123
- .ui.comments .reply.form {
124
- margin-top: 0.75em;
125
- width: 100%;
126
- max-width: 30em;
175
+ .ui.comments > .reply.form {
176
+ margin-top: 1em;
127
177
  }
128
-
129
178
  .ui.comments .comment .reply.form {
130
- margin-left: 2em;
131
- }
132
-
133
- .ui.comments > .reply.form {
134
- margin-top: 1.5em;
135
- max-width: 40em;
179
+ width: 100%;
180
+ margin-top: 1em;
136
181
  }
137
-
138
182
  .ui.comments .reply.form textarea {
183
+ font-size: 1em;
139
184
  height: 12em;
140
185
  }
141
186
 
142
- /*--------------------
143
- Nested Comments
144
- ---------------------*/
145
-
146
- .ui.comments .comment .comments {
147
- margin-top: 0.5em;
148
- padding-top: 0.5em;
149
- padding-bottom: 1em;
150
- }
151
-
152
- .ui.comments .comment .comments:before {
153
- position: absolute;
154
- top: 0px;
155
- left: 0px;
156
- }
157
-
158
- /* One Deep */
159
-
160
- .ui.comments > .comment .comments {
161
- margin-left: 2em;
162
- }
163
-
164
- /* Two Deep */
165
-
166
- .ui.comments > .comment > .comments > .comment > .comments {
167
- margin-left: 1.75em;
168
- }
169
187
 
170
- /* Three Deep */
188
+ /*******************************
189
+ State
190
+ *******************************/
171
191
 
172
- .ui.comments > .comment > .comments > .comment > .comments > .comment > .comments {
173
- margin-left: 1.5em;
192
+ .ui.collapsed.comments,
193
+ .ui.comments .collapsed.comments,
194
+ .ui.comments .collapsed.comment {
195
+ display: none;
174
196
  }
175
197
 
176
- /* Four Deep or more */
177
-
178
- .ui.comments > .comment > .comments > .comment > .comments > .comment > .comments > .comment .comments {
179
- margin-left: 0.5em;
180
- }
181
198
 
182
199
  /*******************************
183
200
  Variations
184
201
  *******************************/
185
202
 
203
+
186
204
  /*--------------------
187
205
  Threaded
188
206
  ---------------------*/
189
207
 
190
208
  .ui.threaded.comments .comment .comments {
191
- margin-left: 2em !important;
192
- padding-left: 2em !important;
193
- -webkit-box-shadow: -1px 0px 0px rgba(0, 0, 0, 0.05);
194
- box-shadow: -1px 0px 0px rgba(0, 0, 0, 0.05);
209
+ margin: -1.5em 0 -1em 1.25em;
210
+ padding: 3em 0em 2em 2.25em;
211
+ box-shadow: -1px 0px 0px rgba(39, 41, 43, 0.15);
195
212
  }
196
213
 
197
214
  /*--------------------
@@ -200,12 +217,15 @@
200
217
 
201
218
  .ui.minimal.comments .comment .actions {
202
219
  opacity: 0;
203
- -webkit-transition: opacity 0.1s ease-out;
204
- transition: opacity 0.1s ease-out;
220
+ position: absolute;
221
+ top: 0px;
222
+ right: 0px;
223
+ left: auto;
224
+ -webkit-transition: opacity 0.2s ease;
225
+ transition: opacity 0.2s ease;
205
226
  -webkit-transition-delay: 0.1s;
206
- transition-delay: 0.1s;
227
+ transition-delay: 0.1s;
207
228
  }
208
-
209
229
  .ui.minimal.comments .comment > .content:hover > .actions {
210
230
  opacity: 1;
211
231
  }
@@ -215,5 +235,26 @@
215
235
  ---------------------*/
216
236
 
217
237
  .ui.small.comments {
218
- font-size: 0.875em;
219
- }
238
+ font-size: 0.9em;
239
+ }
240
+ .ui.comments {
241
+ font-size: 1em;
242
+ }
243
+ .ui.large.comments {
244
+ font-size: 1.1em;
245
+ }
246
+ .ui.huge.comments {
247
+ font-size: 1.2em;
248
+ }
249
+
250
+
251
+ /*******************************
252
+ Theme Overrides
253
+ *******************************/
254
+
255
+
256
+
257
+ /*******************************
258
+ User Variable Overrides
259
+ *******************************/
260
+
@@ -1,164 +1,277 @@
1
- /*
2
- * # Activity Feed View
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
8
8
  * http://opensource.org/licenses/MIT
9
9
  *
10
- * Released: May 22, 2014
11
10
  */
12
11
 
12
+
13
+
13
14
  /*******************************
14
15
  Activity Feed
15
16
  *******************************/
16
17
 
17
-
18
-
19
- .ui.feed a {
20
- cursor: pointer;
18
+ .ui.feed {
19
+ margin: 1em 0em;
21
20
  }
22
-
23
- .ui.feed,
24
- .ui.feed .event,
25
- .ui.feed .label,
26
- .ui.feed .content,
27
- .ui.feed .extra {
28
- -webkit-box-sizing: border-box;
29
- -moz-box-sizing: border-box;
30
- -ms-box-sizing: border-box;
31
- box-sizing: border-box;
21
+ .ui.feed:first-child {
22
+ margin-top: 0em;
23
+ }
24
+ .ui.feed:last-child {
25
+ margin-top: 0em;
32
26
  }
33
27
 
28
+
34
29
  /*******************************
35
30
  Content
36
31
  *******************************/
37
32
 
38
- /* Event */
39
33
 
40
- .ui.feed .event {
41
- width: 100%;
34
+ /* Event */
35
+ .ui.feed > .event {
42
36
  display: table;
43
- padding: 1em;
37
+ width: 100%;
38
+ padding: 0.5rem 0em;
39
+ margin: 0em;
40
+ background: none;
41
+ border-top: none;
44
42
  }
45
-
46
- .ui.feed .event:first-child {
43
+ .ui.feed > .event:first-child {
47
44
  border-top: 0px;
45
+ padding-top: 0em;
48
46
  }
49
-
50
- .ui.feed .event:last-child {
51
- margin-bottom: 1em;
47
+ .ui.feed > .event:last-child {
48
+ padding-bottom: 0em;
52
49
  }
53
50
 
54
51
  /* Event Label */
55
-
56
- .ui.feed .label {
57
- width: 3em;
52
+ .ui.feed > .event > .label {
58
53
  display: table-cell;
54
+ width: 2.5em;
55
+ height: 2.5em;
59
56
  vertical-align: top;
60
57
  text-align: left;
61
58
  }
62
-
63
- .ui.feed .label .icon {
59
+ .ui.feed > .event > .label .icon {
60
+ opacity: 1;
64
61
  font-size: 1.5em;
65
- padding: 0.5em;
66
- margin: 0em;
62
+ width: 100%;
63
+ padding: 0.25em;
64
+ background: none;
65
+ border: none;
66
+ border-radius: none;
67
+ color: rgba(0, 0, 0, 0.6);
67
68
  }
68
-
69
- .ui.feed .label img {
70
- width: 3em;
71
- margin: 0em;
72
- border-radius: 50em;
69
+ .ui.feed > .event > .label img {
70
+ width: 100%;
71
+ height: auto;
72
+ border-radius: 500rem;
73
73
  }
74
-
75
- .ui.feed .label + .content {
76
- padding: 0.75em 1em 0em;
74
+ .ui.feed > .event > .label + .content {
75
+ padding: 0.5em 0em 0.5em 1.25em;
77
76
  }
78
77
 
79
78
  /* Content */
80
-
81
- .ui.feed .content {
79
+ .ui.feed > .event > .content {
82
80
  display: table-cell;
83
81
  vertical-align: top;
84
82
  text-align: left;
85
83
  word-wrap: break-word;
86
84
  }
85
+ .ui.feed > .event:last-child > .content {
86
+ padding-bottom: 0em;
87
+ }
88
+
89
+ /* Link */
90
+ .ui.feed > .event > .content a {
91
+ cursor: pointer;
92
+ }
87
93
 
88
- /* Date */
94
+ /*--------------
95
+ Date
96
+ ---------------*/
89
97
 
90
- .ui.feed .content .date {
91
- float: right;
92
- padding-left: 1em;
98
+ .ui.feed > .event > .content .date {
99
+ margin: -0.5rem 0em 0em;
100
+ padding: 0em;
101
+ font-weight: normal;
102
+ font-size: 1em;
103
+ font-style: normal;
93
104
  color: rgba(0, 0, 0, 0.4);
94
105
  }
95
106
 
96
- /* Summary */
107
+ /*--------------
108
+ Summary
109
+ ---------------*/
97
110
 
98
- .ui.feed .content .summary {
99
- color: rgba(0, 0, 0, 0.75);
111
+ .ui.feed > .event > .content .summary {
112
+ margin: 0em;
113
+ font-size: 1em;
114
+ font-weight: bold;
115
+ color: rgba(0, 0, 0, 0.8);
100
116
  }
101
117
 
102
- .ui.feed .content .summary img {
118
+ /* Summary Image */
119
+ .ui.feed > .event > .content .summary img {
103
120
  display: inline-block;
104
- margin-right: 0.25em;
105
- width: 4em;
106
- border-radius: 500px;
121
+ width: auto;
122
+ height: 2em;
123
+ margin: -0.25em 0.25em 0em 0em;
124
+ border-radius: 0.25em;
125
+ vertical-align: middle;
107
126
  }
108
127
 
109
- /* Additional Information */
128
+ /*--------------
129
+ User
130
+ ---------------*/
110
131
 
111
- .ui.feed .content .extra {
112
- margin: 1em 0em 0em;
113
- padding: 0.5em 0em 0em;
114
- color: rgba(0, 0, 0, 0.5);
132
+ .ui.feed > .event > .content .user {
133
+ display: inline-block;
134
+ font-weight: bold;
135
+ margin-right: 0em;
136
+ vertical-align: baseline;
137
+ }
138
+ .ui.feed > .event > .content .user img {
139
+ margin: -0.25em 0.25em 0em 0em;
140
+ width: auto;
141
+ height: 2em;
142
+ vertical-align: middle;
143
+ }
144
+
145
+ /*--------------
146
+ Inline Date
147
+ ---------------*/
148
+
149
+
150
+ /* Date inside Summary */
151
+ .ui.feed > .event > .content .summary > .date {
152
+ display: inline-block;
153
+ float: none;
154
+ font-weight: normal;
155
+ font-size: 0.875em;
156
+ font-style: normal;
157
+ margin: 0em 0em 0em 0.5em;
158
+ padding: 0em;
159
+ color: rgba(0, 0, 0, 0.4);
115
160
  }
116
161
 
162
+ /*--------------
163
+ Extra Summary
164
+ ---------------*/
117
165
 
166
+ .ui.feed > .event > .content .extra {
167
+ margin: 0.5em 0em 0em;
168
+ background: none;
169
+ padding: 0em;
170
+ color: rgba(0, 0, 0, 0.8);
171
+ }
118
172
 
119
- .ui.feed .content .extra.images img {
173
+ /* Images */
174
+ .ui.feed > .event > .content .extra.images img {
120
175
  display: inline-block;
121
- margin-right: 0.25em;
176
+ margin: 0em 0.25em 0em 0em;
122
177
  width: 6em;
123
178
  }
124
179
 
125
- .ui.feed .content .extra.text {
180
+ /* Text */
181
+ .ui.feed > .event > .content .extra.text {
126
182
  padding: 0.5em 1em;
127
- border-left: 0.2em solid rgba(0, 0, 0, 0.1);
183
+ border-left: 3px solid rgba(0, 0, 0, 0.2);
184
+ font-size: 1em;
185
+ max-width: 500px;
186
+ line-height: 1.33;
128
187
  }
129
188
 
130
- /*******************************
131
- Variations
132
- *******************************/
189
+ /*--------------
190
+ Meta
191
+ ---------------*/
133
192
 
134
- .ui.small.feed {
193
+ .ui.feed > .event > .content .meta {
194
+ display: inline-block;
135
195
  font-size: 0.875em;
196
+ margin: 0.5em 0em 0em;
197
+ background: none;
198
+ border: none;
199
+ border-radius: 0;
200
+ box-shadow: none;
201
+ padding: 0em;
202
+ color: rgba(0, 0, 0, 0.6);
136
203
  }
137
-
138
- .ui.small.feed .label img {
139
- width: 2.5em;
204
+ .ui.feed > .event > .content .meta > * {
205
+ position: relative;
206
+ margin-left: 0.75em;
140
207
  }
141
-
142
- .ui.small.feed .label .icon {
143
- font-size: 1.25em;
208
+ .ui.feed > .event > .content .meta > *:after {
209
+ content: '';
210
+ color: rgba(0, 0, 0, 0.2);
211
+ top: 0em;
212
+ left: -1em;
213
+ opacity: 1;
214
+ position: absolute;
215
+ vertical-align: top;
144
216
  }
145
-
146
- .ui.feed .event {
147
- padding: 0.75em 0em;
217
+ .ui.feed > .event > .content .meta .like {
218
+ color: '';
219
+ -webkit-transition: 0.2s color ease;
220
+ transition: 0.2s color ease;
221
+ }
222
+ .ui.feed > .event > .content .meta .like:hover .icon {
223
+ color: #ff2733;
224
+ }
225
+ .ui.feed > .event > .content .meta .active.like .icon {
226
+ color: #ef404a;
148
227
  }
149
228
 
150
- .ui.small.feed .label + .content {
151
- padding: 0.5em 0.5em 0;
229
+ /* First element */
230
+ .ui.feed > .event > .content .meta > :first-child {
231
+ margin-left: 0em;
232
+ }
233
+ .ui.feed > .event > .content .meta > :first-child::after {
234
+ display: none;
152
235
  }
153
236
 
154
- .ui.small.feed .content .extra.images img {
155
- width: 5em;
237
+ /* Action */
238
+ .ui.feed > .event > .content .meta a,
239
+ .ui.feed > .event > .content .meta > .icon {
240
+ cursor: pointer;
241
+ opacity: 1;
242
+ color: rgba(0, 0, 0, 0.5);
243
+ -webkit-transition: color 0.2s ease;
244
+ transition: color 0.2s ease;
245
+ }
246
+ .ui.feed > .event > .content .meta a:hover,
247
+ .ui.feed > .event > .content .meta a:hover .icon,
248
+ .ui.feed > .event > .content .meta > .icon:hover {
249
+ color: rgba(0, 0, 0, 0.8);
156
250
  }
157
251
 
158
- .ui.small.feed .content .extra {
159
- margin: 0.5em 0em 0em;
252
+
253
+ /*******************************
254
+ Variations
255
+ *******************************/
256
+
257
+ .ui.small.feed {
258
+ font-size: 0.9em;
259
+ }
260
+ .ui.feed {
261
+ font-size: 1em;
262
+ }
263
+ .ui.large.feed {
264
+ font-size: 1.1em;
160
265
  }
161
266
 
162
- .ui.small.feed .content .extra.text {
163
- padding: 0.25em 0.5em;
164
- }
267
+
268
+ /*******************************
269
+ Theme Overrides
270
+ *******************************/
271
+
272
+
273
+
274
+ /*******************************
275
+ User Variable Overrides
276
+ *******************************/
277
+