You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

296 lines
5.5 KiB

10 years ago
8 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 2.2.10 - 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. Activity Feed
  12. *******************************/
  13. .ui.feed {
  14. margin: 1em 0em;
  15. }
  16. .ui.feed:first-child {
  17. margin-top: 0em;
  18. }
  19. .ui.feed:last-child {
  20. margin-bottom: 0em;
  21. }
  22. /*******************************
  23. Content
  24. *******************************/
  25. /* Event */
  26. .ui.feed > .event {
  27. display: -webkit-box;
  28. display: -ms-flexbox;
  29. display: flex;
  30. -webkit-box-orient: horizontal;
  31. -webkit-box-direction: normal;
  32. -ms-flex-direction: row;
  33. flex-direction: row;
  34. width: 100%;
  35. padding: 0.21428571rem 0em;
  36. margin: 0em;
  37. background: none;
  38. border-top: none;
  39. }
  40. .ui.feed > .event:first-child {
  41. border-top: 0px;
  42. padding-top: 0em;
  43. }
  44. .ui.feed > .event:last-child {
  45. padding-bottom: 0em;
  46. }
  47. /* Event Label */
  48. .ui.feed > .event > .label {
  49. display: block;
  50. -webkit-box-flex: 0;
  51. -ms-flex: 0 0 auto;
  52. flex: 0 0 auto;
  53. width: 2.5em;
  54. height: auto;
  55. -ms-flex-item-align: stretch;
  56. -ms-grid-row-align: stretch;
  57. align-self: stretch;
  58. text-align: left;
  59. }
  60. .ui.feed > .event > .label .icon {
  61. opacity: 1;
  62. font-size: 1.5em;
  63. width: 100%;
  64. padding: 0.25em;
  65. background: none;
  66. border: none;
  67. border-radius: none;
  68. color: rgba(0, 0, 0, 0.6);
  69. }
  70. .ui.feed > .event > .label img {
  71. width: 100%;
  72. height: auto;
  73. border-radius: 500rem;
  74. }
  75. .ui.feed > .event > .label + .content {
  76. margin: 0.5em 0em 0.35714286em 1.14285714em;
  77. }
  78. /*--------------
  79. Content
  80. ---------------*/
  81. /* Content */
  82. .ui.feed > .event > .content {
  83. display: block;
  84. -webkit-box-flex: 1;
  85. -ms-flex: 1 1 auto;
  86. flex: 1 1 auto;
  87. -ms-flex-item-align: stretch;
  88. -ms-grid-row-align: stretch;
  89. align-self: stretch;
  90. text-align: left;
  91. word-wrap: break-word;
  92. }
  93. .ui.feed > .event:last-child > .content {
  94. padding-bottom: 0em;
  95. }
  96. /* Link */
  97. .ui.feed > .event > .content a {
  98. cursor: pointer;
  99. }
  100. /*--------------
  101. Date
  102. ---------------*/
  103. .ui.feed > .event > .content .date {
  104. margin: -0.5rem 0em 0em;
  105. padding: 0em;
  106. font-weight: normal;
  107. font-size: 1em;
  108. font-style: normal;
  109. color: rgba(0, 0, 0, 0.4);
  110. }
  111. /*--------------
  112. Summary
  113. ---------------*/
  114. .ui.feed > .event > .content .summary {
  115. margin: 0em;
  116. font-size: 1em;
  117. font-weight: bold;
  118. color: rgba(0, 0, 0, 0.87);
  119. }
  120. /* Summary Image */
  121. .ui.feed > .event > .content .summary img {
  122. display: inline-block;
  123. width: auto;
  124. height: 10em;
  125. margin: -0.25em 0.25em 0em 0em;
  126. border-radius: 0.25em;
  127. vertical-align: middle;
  128. }
  129. /*--------------
  130. User
  131. ---------------*/
  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: 10em;
  142. vertical-align: middle;
  143. }
  144. /*--------------
  145. Inline Date
  146. ---------------*/
  147. /* Date inside Summary */
  148. .ui.feed > .event > .content .summary > .date {
  149. display: inline-block;
  150. float: none;
  151. font-weight: normal;
  152. font-size: 0.85714286em;
  153. font-style: normal;
  154. margin: 0em 0em 0em 0.5em;
  155. padding: 0em;
  156. color: rgba(0, 0, 0, 0.4);
  157. }
  158. /*--------------
  159. Extra Summary
  160. ---------------*/
  161. .ui.feed > .event > .content .extra {
  162. margin: 0.5em 0em 0em;
  163. background: none;
  164. padding: 0em;
  165. color: rgba(0, 0, 0, 0.87);
  166. }
  167. /* Images */
  168. .ui.feed > .event > .content .extra.images img {
  169. display: inline-block;
  170. margin: 0em 0.25em 0em 0em;
  171. width: 6em;
  172. }
  173. /* Text */
  174. .ui.feed > .event > .content .extra.text {
  175. padding: 0em;
  176. border-left: none;
  177. font-size: 1em;
  178. max-width: 500px;
  179. line-height: 1.4285em;
  180. }
  181. /*--------------
  182. Meta
  183. ---------------*/
  184. .ui.feed > .event > .content .meta {
  185. display: inline-block;
  186. font-size: 0.85714286em;
  187. margin: 0.5em 0em 0em;
  188. background: none;
  189. border: none;
  190. border-radius: 0;
  191. box-shadow: none;
  192. padding: 0em;
  193. color: rgba(0, 0, 0, 0.6);
  194. }
  195. .ui.feed > .event > .content .meta > * {
  196. position: relative;
  197. margin-left: 0.75em;
  198. }
  199. .ui.feed > .event > .content .meta > *:after {
  200. content: '';
  201. color: rgba(0, 0, 0, 0.2);
  202. top: 0em;
  203. left: -1em;
  204. opacity: 1;
  205. position: absolute;
  206. vertical-align: top;
  207. }
  208. .ui.feed > .event > .content .meta .like {
  209. color: '';
  210. -webkit-transition: 0.2s color ease;
  211. transition: 0.2s color ease;
  212. }
  213. .ui.feed > .event > .content .meta .like:hover .icon {
  214. color: #FF2733;
  215. }
  216. .ui.feed > .event > .content .meta .active.like .icon {
  217. color: #EF404A;
  218. }
  219. /* First element */
  220. .ui.feed > .event > .content .meta > :first-child {
  221. margin-left: 0em;
  222. }
  223. .ui.feed > .event > .content .meta > :first-child::after {
  224. display: none;
  225. }
  226. /* Action */
  227. .ui.feed > .event > .content .meta a,
  228. .ui.feed > .event > .content .meta > .icon {
  229. cursor: pointer;
  230. opacity: 1;
  231. color: rgba(0, 0, 0, 0.5);
  232. -webkit-transition: color 0.1s ease;
  233. transition: color 0.1s ease;
  234. }
  235. .ui.feed > .event > .content .meta a:hover,
  236. .ui.feed > .event > .content .meta a:hover .icon,
  237. .ui.feed > .event > .content .meta > .icon:hover {
  238. color: rgba(0, 0, 0, 0.95);
  239. }
  240. /*******************************
  241. Variations
  242. *******************************/
  243. .ui.small.feed {
  244. font-size: 0.92857143rem;
  245. }
  246. .ui.feed {
  247. font-size: 1rem;
  248. }
  249. .ui.large.feed {
  250. font-size: 1.14285714rem;
  251. }
  252. /*******************************
  253. Theme Overrides
  254. *******************************/
  255. /*******************************
  256. User Variable Overrides
  257. *******************************/