You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
1.8 KiB

  1. .qq-uploader {
  2. position: relative;
  3. width: 100%;
  4. }
  5. .qq-uploader .error {
  6. color: #f00;
  7. background-color: #fff;
  8. }
  9. /* select file button */
  10. .qq-upload-button {
  11. display: inline-block;
  12. border: 1px solid __border__;
  13. color: __text__;
  14. background: __background__ url(images/buttonshadow.png) repeat-x bottom;
  15. text-decoration: none;
  16. font-size: 100%;
  17. cursor: pointer;
  18. margin: 1px 1px 5px;
  19. padding: 0.125em 0.4em;
  20. }
  21. * html .qq-upload-button,
  22. *+html .qq-upload-button {
  23. display: inline;
  24. }
  25. .qq-upload-button-focus {
  26. outline: 1px dotted;
  27. }
  28. /* drop area */
  29. .qq-upload-drop-area {
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. width: 100%;
  34. height: 100%;
  35. min-height: 70px;
  36. z-index: 2;
  37. background: __background_neu__;
  38. color: __text__;
  39. text-align: center;
  40. }
  41. .qq-upload-drop-area span {
  42. display: block;
  43. position: absolute;
  44. top: 50%;
  45. width: 100%;
  46. margin-top: -8px;
  47. font-size: 120%;
  48. }
  49. .qq-upload-drop-area-active {
  50. background: __background_alt__;
  51. }
  52. /* list of files to upload */
  53. div.qq-uploader ul {
  54. margin: 0;
  55. padding: 0;
  56. list-style: none;
  57. }
  58. .qq-uploader li {
  59. margin: 0 0 5px;
  60. color: __text__;
  61. }
  62. .qq-uploader li span,
  63. .qq-uploader li input,
  64. .qq-uploader li a {
  65. margin-right: 5px;
  66. }
  67. .qq-upload-file {
  68. display: block;
  69. font-weight: bold;
  70. }
  71. .qq-upload-spinner {
  72. display: inline-block;
  73. background: url("../../images/throbber.gif");
  74. width: 15px;
  75. height: 15px;
  76. vertical-align: text-bottom;
  77. }
  78. .qq-upload-size,
  79. .qq-upload-cancel {
  80. font-size: 85%;
  81. }
  82. .qq-upload-failed-text {
  83. display: none;
  84. }
  85. .qq-upload-fail .qq-upload-failed-text {
  86. display: inline;
  87. }
  88. .qq-action-container * {
  89. vertical-align: middle;
  90. }
  91. .qq-overwrite-check input {
  92. margin-left: 10px;
  93. }