previewer.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*S pictureViewer*/
  2. #pictureViewer {
  3. position: absolute;
  4. left: 50%;
  5. top: 55px;
  6. width: 700px;
  7. margin: 0 0 0 -350px;
  8. z-index: 900000;
  9. background: #fff;
  10. }
  11. #pictureViewerWrap {
  12. height: 400px;
  13. position: relative;
  14. }
  15. /*E pictureViewer*/
  16. /*S videoViewer*/
  17. #videoViewer {
  18. position: absolute;
  19. left: 50%;
  20. top: 55px;
  21. width: 700px;
  22. margin: 0 0 0 -350px;
  23. }
  24. #videoViewerWrap {
  25. height: 300px;
  26. position: relative;
  27. background: #000000;
  28. }
  29. /*E videoViewer*/
  30. /*S audioViewer*/
  31. #audioViewer {
  32. position: absolute;
  33. left: 50%;
  34. top: 55px;
  35. width: 700px;
  36. margin: 0 0 0 -350px;
  37. }
  38. #audioViewerWrap {
  39. height: 30px;
  40. position: relative;
  41. background: #000000;
  42. }
  43. /*E audioViewer*/
  44. /*S questionnaireViewer*/
  45. #questionnaireViewer {
  46. position: absolute;
  47. left: 50%;
  48. top: 55px;
  49. width: 700px;
  50. margin: 0 0 0 -350px;
  51. }
  52. #questionnaireViewerWrap {
  53. height: 30px;
  54. position: relative;
  55. background: #FFFFFF;
  56. height: 500px;
  57. overflow: hidden;
  58. overflow-y: auto;
  59. }
  60. #questionnaireViewerWrap table {
  61. margin-bottom: 1px;
  62. }
  63. #questionnaireViewerWrap table tr:hover {
  64. background: #ffffff;
  65. }
  66. #questionnaireViewerWrap th {
  67. width: 30%;
  68. padding: 4px;
  69. line-height: 20px;
  70. vertical-align: middle;
  71. text-align: center;
  72. }
  73. #questionnaireViewerWrap td {
  74. line-height: 20px;
  75. padding: 4px;
  76. color: green;
  77. }
  78. #questionnaireViewerWrap td:hover {
  79. background: #ffffff;
  80. }
  81. /*E questionnaireViewer*/
  82. #pictureViewer .header {
  83. background: rgba(34, 59, 73, 0.86);
  84. color: #ffffff;
  85. height: 40px;
  86. border: none;
  87. padding: 10px 20px;
  88. position: relative;
  89. font-size: 20px;
  90. line-height: 40px;
  91. }
  92. #pictureViewer .body {}
  93. #pictureViewer .body .cell {
  94. margin-top: 0;
  95. margin-bottom: 0;
  96. }
  97. #pictureViewer .footer {
  98. background: #ffffff;
  99. border: none;
  100. border-top: 1px solid #ededed;
  101. padding: 10px 20px;
  102. display: grid;
  103. }
  104. #btnPictureViewerCance {
  105. float: right;
  106. margin: 0 0 0 5px;
  107. padding: 6px 12px;
  108. font-size: 13px;
  109. cursor: pointer;
  110. border: 1px solid #eee;
  111. }
  112. #btnPictureViewerCance:hover {
  113. background-color: rgba(34, 59, 73, 0.86);
  114. border: 1px solid rgba(34, 59, 73, 0.86);
  115. color: #FFFFFF;
  116. }