attachment-index.css 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*------------------------------------*\
  2. #左侧附件列表
  3. \*------------------------------------*/
  4. #attachment-list .item {
  5. position: relative;
  6. }
  7. #attachment-list .item a {
  8. display: inline-block;
  9. }
  10. #attachment-list .item a img {
  11. opacity: .8;
  12. border: 4px solid #bbb;
  13. height:125px;
  14. width:100%;
  15. }
  16. #attachment-list .item a img:hover {
  17. opacity: 1;
  18. }
  19. #attachment-list .item .checked {
  20. display: none;
  21. position: absolute;
  22. top: 8px;
  23. right: 32px;
  24. font-size: 3em;
  25. color: #605ca8;
  26. }
  27. #attachment-list .item.active a {
  28. outline: 8px solid #605ca8 !important;
  29. outline-offset: -8px;
  30. }
  31. #attachment-list .item.active img {
  32. opacity: 1;
  33. }
  34. #attachment-list .item.active .checked {
  35. display: inline-block;
  36. }
  37. /*------------------------------------*\
  38. #AJAX图标
  39. \*------------------------------------*/
  40. #attachment-info .loading {
  41. padding:8em 0;
  42. text-align: center;
  43. color: #605ca8;
  44. }