AttachmentList.module.scss 484 B

1234567891011121314151617181920212223242526272829
  1. @keyframes attachement-refs-fadeIn {
  2. 0% {opacity: .2}
  3. 100% {opacity: .9}
  4. }
  5. .attachment-refs :global {
  6. .attachement-refs-blink {
  7. animation: attachement-refs-fadeIn 1s ease 0s infinite alternate;
  8. }
  9. li.attachment {
  10. list-style: none;
  11. }
  12. .attachment-userpicture {
  13. line-height: 1.7em;
  14. vertical-align: bottom;
  15. }
  16. .page-meta {
  17. font-size: 0.95em;
  18. }
  19. .attachment-filetype {
  20. padding: 1px 5px;
  21. margin: 0 0 0 4px;
  22. font-weight: normal;
  23. }
  24. }