PageRenderTime 58ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

/Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.css

http://ajaxcontroltoolkit.codeplex.com
CSS | 175 lines | 148 code | 25 blank | 2 comment | 0 complexity | 4103745789e61151f4f2f9ee5facdf4b MD5 | raw file
Possible License(s): BSD-3-Clause
  1. .ajax__fileupload {
  2. padding: 4px;
  3. border: #D3D3D3 1px solid;
  4. overflow: auto;
  5. }
  6. .ajax__fileupload_selectFileContainer {
  7. height: 24px;
  8. line-height: 24px;
  9. }
  10. .ajax__fileupload_selectFileButton {
  11. display:block;
  12. height: 24px;
  13. line-height: 24px;
  14. width: 80px;
  15. text-align: center;
  16. background-color: #212121;
  17. color: #D0D0D0;
  18. cursor: pointer;
  19. margin-right: 4px;
  20. font-size: 13px;
  21. }
  22. .ajax__fileupload_selectFileButton:hover {
  23. background-color: #000000;
  24. color: #ffffff;
  25. }
  26. .ajax__fileupload_topFileStatus {
  27. color: rgb(127, 126, 126);
  28. }
  29. .ajax__fileupload_ProgressBarHolder
  30. {
  31. margin-right: 70px;
  32. _margin-right: 0;
  33. }
  34. .ajax__fileupload_uploadbutton {
  35. width: 60px;
  36. text-align: center;
  37. cursor: pointer;
  38. color: white;
  39. font-weight: bold;
  40. background-color: #000099;
  41. }
  42. .ajax_fileupload_cancelbutton {
  43. width: 60px;
  44. text-align: center;
  45. cursor: pointer;
  46. color: white;
  47. font-weight: bold;
  48. background-color: #990033;
  49. }
  50. .ajax__fileupload_dropzone {
  51. border-style: dotted;
  52. border-width: 1px;
  53. line-height: 50px;
  54. text-align:center;
  55. _text-align:left; /* IE Only */
  56. margin-bottom:2px;
  57. }
  58. .ajax__fileupload_queueContainer
  59. {
  60. border: #A9A9A9 1px solid;
  61. border-width: 1px;
  62. margin-top:2px;
  63. padding:4px;
  64. clear: both;
  65. }
  66. .ajax__fileupload_progressBar {
  67. padding-left:4px;
  68. background-color: #CCFFCC;
  69. }
  70. .ajax__fileupload_footer {
  71. margin-top: 2px;
  72. line-height: 20px;
  73. height: 20px;
  74. }
  75. .ajax__fileupload_fileItemInfo {
  76. line-height: 20px;
  77. height: 20px;
  78. margin-bottom: 2px;
  79. overflow: hidden;
  80. }
  81. .ajax__fileupload_fileItemInfo .filename {
  82. font-weight: bold;
  83. }
  84. .ajax__fileupload_fileItemInfo .uploadstatus {
  85. font-style: italic;
  86. }
  87. .ajax__fileupload_fileItemInfo .removeButton {
  88. cursor: pointer;
  89. background-color: #900;
  90. color: white;
  91. width: 55px;
  92. height: 20px;
  93. line-height: 20px;
  94. text-align: center;
  95. display: block;
  96. float: left;
  97. }
  98. .ajax__fileupload_fileItemInfo .uploadedState {
  99. color: #060;
  100. background-color: #fff;
  101. }
  102. .ajax__fileupload_fileItemInfo .uploadingState {
  103. color: #FF9900;
  104. background-color: #fff;
  105. }
  106. .ajax__fileupload_fileItemInfo .pendingState {
  107. color: #009;
  108. background-color: #fff;
  109. }
  110. .ajax__fileupload_fileItemInfo .errorState {
  111. color: #ffffff;
  112. background-color: #ff0000;
  113. }
  114. .ajax__fileupload_fileItemInfo .cancelledState {
  115. color: #900;
  116. background-color: #fff;
  117. }
  118. /*Check*/
  119. .ajax__fileupload_selectFileContainer {
  120. display: inline-block;
  121. overflow: hidden;
  122. position: relative;
  123. width: 80px;
  124. /*float: left;*/
  125. }
  126. .ajax__fileupload_selectFileContainer input {
  127. border: medium none;
  128. cursor: pointer;
  129. height: 40px;
  130. margin: 0;
  131. opacity: 0;
  132. position: absolute;
  133. right: 0;
  134. top: 0;
  135. }
  136. .ajax__fileupload_fileItemInfo
  137. {
  138. position: relative;
  139. z-index: 0;
  140. }
  141. .ajax__fileupload_fileItemInfo div
  142. {
  143. display: inline-block;
  144. }
  145. .ajax__fileupload_fileItemInfo div.removeButton
  146. {
  147. position: absolute;
  148. top: 0;
  149. right: 0;
  150. }