attachments.styl 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @import 'nib'
  2. .attachments-galery
  3. display: flex
  4. flex-wrap: wrap
  5. .attachment-item
  6. width: 33.33% - 2%
  7. margin: 10px 1% 0
  8. text-align: center
  9. border-radius: 3px
  10. overflow: hidden
  11. background: darken(white, 7%)
  12. min-height: 120px
  13. &:hover
  14. background: darken(white, 12%)
  15. &.add-attachment
  16. display: flex
  17. align-items: center
  18. a
  19. display: block
  20. margin: auto
  21. .attachment-thumbnail
  22. height: 80px
  23. display: flex
  24. align-items: center
  25. justify-content: center
  26. position: relative
  27. .attachment-thumbnail-img
  28. max-height: 100%
  29. max-width: 100%
  30. .attachment-thumbnail-ext
  31. text-transform: uppercase
  32. font-size: 1.6em
  33. .attachment-details
  34. font-size: 0.75em
  35. margin: 3px
  36. .attachment-details-actions a
  37. display: block
  38. .attachment-image-preview
  39. max-width: 100px
  40. display: block
  41. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  42. .preview-large-image
  43. max-width: 1000px
  44. display: block
  45. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  46. .preview-clipboard-image
  47. width: 280px
  48. height: 200px
  49. display: block
  50. border: 1px solid black
  51. box-shadow: 0 1px 2px rgba(0,0,0,.2)