attachlist.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .SwenBtn{
  2. float: left;
  3. width:80px;
  4. height: 30px;
  5. overflow:hidden;
  6. white-space:nowrap;
  7. text-overflow:ellipsis;
  8. line-height: 18px;
  9. padding: 7px 0;
  10. margin:0 10px;
  11. text-align:center
  12. }
  13. .SwenBtn:hover{
  14. text-decoration:none;
  15. }
  16. .activeSwen{
  17. color:blue;
  18. border-bottom:2px solid blue
  19. }
  20. .watchItem{
  21. width:100%;
  22. float:left;
  23. padding:5px 10px;
  24. }
  25. @media screen and (max-width: 1920px) {
  26. .cjItem img{
  27. float:left;
  28. width:120px;
  29. height:80px
  30. }
  31. .cjItem div{
  32. margin-top:20px
  33. }
  34. .cjdel{
  35. margin-top:30px
  36. }
  37. }
  38. @media screen and (max-width: 1366px) {
  39. .cjItem img{
  40. float:left;
  41. width:90px;
  42. height:45px
  43. }
  44. .cjItem div{
  45. margin-top:3px
  46. }
  47. .cjdel{
  48. margin-top:10px
  49. }
  50. }
  51. @media screen and (max-width: 1280px) {
  52. .cjItem img{
  53. float:left;
  54. width:80px;
  55. height:45px
  56. }
  57. .cjItem div{
  58. margin-top:3px
  59. }
  60. .cjdel{
  61. margin-top:10px
  62. }
  63. }
  64. .upload {
  65. float: right;
  66. overflow: hidden;
  67. position: relative;
  68. }
  69. .upload-tip {
  70. float: left;
  71. width: 100%;
  72. margin-top: 35px;
  73. padding: 0 10px;
  74. color: #666;
  75. font-size: 13px !important;
  76. border-radius: 5px;
  77. display: none;
  78. text-align: left;
  79. }
  80. .upload-file-single {
  81. position: absolute;
  82. width: 100%;
  83. height: 100%;
  84. left: 0;
  85. top: 0;
  86. opacity: 0;
  87. font-size: 0;
  88. filter: alpha(opacity=0);
  89. }
  90. .upload-loading{
  91. display: inline-block;
  92. width: 100%;
  93. height: 100%;
  94. padding: 3px;
  95. text-align: center;
  96. background: #E8E8E8;
  97. opacity: 0.4;
  98. position: absolute;
  99. left: 0;
  100. top: 0;
  101. z-index: 10
  102. }
  103. .active{
  104. color:#fff;
  105. background:#2db1e4
  106. }
  107. .iframe-item{
  108. min-width:200px;
  109. height:99%;
  110. float:left;
  111. position:relative
  112. }
  113. .iframe-title {
  114. display:block;
  115. padding:2px 0;
  116. line-height:26px;
  117. text-align:center;
  118. position:absolute;
  119. left:50%;
  120. top:0;
  121. transform:translateX(-50%);
  122. z-index:5;
  123. font-size:18px;
  124. color:#333;
  125. overflow:hidden;
  126. white-space: nowrap;
  127. }
  128. .iframe-item-btn{
  129. display:block;
  130. padding:3px 0;
  131. position:absolute;
  132. right:5px;
  133. top:0;
  134. height:30px;
  135. z-index:5
  136. }
  137. .iframe-item>iframe{
  138. height:100%;
  139. position:absolute;
  140. left:10px;
  141. z-index:1
  142. }
  143. .iframe-border-right{
  144. width:10px;
  145. height:100%;
  146. background-color:#c6c6c6;
  147. border-left:3px solid #fff;
  148. border-right:3px solid #fff;
  149. cursor:col-resize;
  150. position:absolute;
  151. left:0;
  152. z-index:10
  153. }