attachments.styl 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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: auto
  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-details-menu
  39. padding-top: 10px
  40. .attachment-image-preview
  41. max-width: 100px
  42. display: block
  43. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  44. .preview-clipboard-image
  45. width: 280px
  46. max-width: 100%;
  47. height: 200px
  48. display: block
  49. border: 1px solid black
  50. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  51. @media screen and (max-width: 800px)
  52. .attachments-galery
  53. flex-direction
  54. row
  55. .attachment-item
  56. width: 50% - 2%
  57. .attachment-thumbnail
  58. height: 130px
  59. .attachment-details
  60. font-size: 1.1em
  61. @media screen and (max-width: 360px)
  62. .attachments-galery
  63. .attachment-item
  64. width: 100%
  65. .attachment-thumbnail
  66. height: 200px