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.

jquery.projectPlugins.css 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /**
  2. * CSS for jquery plugins contained in js/jquery.projectPlugins.js
  3. *
  4. * $Id: jquery.projectPlugins.css 592 2015-04-12 19:53:44Z imoore76 $
  5. *
  6. */
  7. /*
  8. * Medium select plugin CSS
  9. */
  10. div.vboxMediumSelect {
  11. background-color: #fff;
  12. color: #000;
  13. padding: 2px;
  14. height: 16px;
  15. cursor: pointer;
  16. overflow: hidden;
  17. margin: 0px;
  18. width: 100%;
  19. }
  20. div.vboxMediumSelectReadOnly {
  21. padding-left: 20px;
  22. background-position: 2px 2px;
  23. }
  24. div.vboxMediumSelectDiv { border: 1px solid transparent; }
  25. div.vboxMediumSelectHover {
  26. background-color: #f0f8ff;
  27. border: 1px solid #aaaaaa;
  28. }
  29. div.vboxMediumSelectImg {
  30. height: 16px;
  31. padding: 2px;
  32. width: 16px;
  33. background-color: #fff;
  34. margin: 0px;
  35. background-position: 2px 6px;
  36. background-repeat: no-repeat;
  37. }
  38. table.vboxDisabled div.vboxMediumSelect, table.vboxDisabled div.vboxMediumSelectImg {
  39. background-color: #efefef;
  40. border-color: #aaa;
  41. color: #aaa;
  42. background-position: -20px -20px;
  43. cursor: default;
  44. }
  45. table.vboxMediumSelect td.vboxMediumSelectTableLeft {
  46. border: 1px solid #000;
  47. border-right: 0px;
  48. cursor: pointer;
  49. }
  50. table.vboxMediumSelect td.vboxMediumSelectTableRight {
  51. border: 1px solid #000;
  52. border-left: 0px;
  53. cursor: pointer;
  54. }
  55. table.vboxDisabled td.vboxMediumSelectTableLeft, table.vboxDisabled td.vboxMediumSelectTableRight {
  56. border-color: #aaa;
  57. }
  58. ul.vboxMediumSelect {
  59. list-style: none;
  60. position: absolute;
  61. background-color: #fff;
  62. color: #000;
  63. z-index: 9999;
  64. padding-left: 2px;
  65. margin: 0px;
  66. cursor: pointer;
  67. border: 1px solid #000;
  68. border-top: 1px solid #99ccff;
  69. border-left: 1px solid #99ccff;
  70. }
  71. ul.vboxMediumSelect ul { padding: 0px; margin-left: 8px; list-style: none; }
  72. ul.vboxMediumSelect li { padding: 0px 2px 0px 0px; margin: 0px; white-space: nowrap; }
  73. ul.vboxMediumSelect div { height: 16px; white-space: nowrap; padding: 1px 2px 1px 4px; }
  74. ul.vboxMediumSelect li.vboxMediumReadOnly { background-image: none; }
  75. ul.vboxMediumSelect li.vboxMediumReadOnly ul { padding: 0px 0px 0px 14px; background-image: none; }
  76. ul.vboxMediumSelect div.vboxMediumReadOnly { padding-left: 18px; background-position: 0px 0px; }
  77. /**
  78. * Context menu plugin CSS
  79. */
  80. .contextMenu {
  81. position: absolute;
  82. z-index: 9999999;
  83. border: 1px solid #CCC;
  84. padding: 0px;
  85. margin: 0px;
  86. display: none;
  87. background-color: #e9e9e9;
  88. background-repeat: no-repeat;
  89. }
  90. .contextMenu span.vboxMenuItemChecked {
  91. display: none;
  92. background: #ccc;
  93. border: 1px solid #999;
  94. border-radius: 6px;
  95. -moz-border-radius: 6px;
  96. -webkit-border-radius: 6px;
  97. width: 20px;
  98. height: 18px;
  99. margin: 0px;
  100. padding: 0px;
  101. position: relative;
  102. top: 1px;
  103. left: 3px;
  104. }
  105. ul.contextMenu {
  106. /* From #ffffff to #d9d9d9 */
  107. background-color: #e9e9e9;
  108. background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#d9d9d9)); /* for webkit browsers */
  109. background: -moz-linear-gradient(left, #ffffff, #d9d9d9); /* for firefox 3.6+ */
  110. background: -o-linear-gradient(left, #ffffff, #d9d9d9);
  111. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#ffffff', endColorstr='#d9d9d9'); /* for IE */
  112. }
  113. ul.contextMenu li {
  114. list-style: none;
  115. padding: 0px;
  116. margin: 0px;
  117. white-space: nowrap;
  118. border: 1px solid transparent;
  119. position: relative;
  120. }
  121. ul.contextMenu li a.vboxCheckMark {
  122. padding-left: 12px;
  123. }
  124. ul.contextMenu li a.vboxCheckMark > span.vboxCheckMark {
  125. display: inline-block;
  126. position: relative;
  127. left: -6px;
  128. padding: 0px;
  129. margin: 0px;
  130. width: 16px;
  131. text-align: center;
  132. }
  133. ul.contextMenu li.vboxMenuItemChecked > span.vboxMenuItemChecked {
  134. display: inline-block;
  135. }
  136. ul.contextMenu li.vboxMenuItemChecked > a {
  137. position: absolute;
  138. top: 0px;
  139. }
  140. .contextMenu LI input {
  141. padding-left: 2px;
  142. }
  143. .contextMenu a, .contextMenu SPAN {
  144. color: #333;
  145. text-decoration: none;
  146. display: block;
  147. line-height: 20px;
  148. height: 20px;
  149. background-position: 6px center;
  150. background-repeat: no-repeat;
  151. outline: none;
  152. padding: 1px 5px;
  153. padding-left: 28px;
  154. border: 0px solid transparent;
  155. cursor: pointer;
  156. white-space: nowrap;
  157. }
  158. ul.contextMenuNoBG li {
  159. cursor: pointer;
  160. border: 1px solid transparent;
  161. }
  162. ul.contextMenuNoBG li.disabled {
  163. cursor: default;
  164. }
  165. ul.contextMenuNoBG SPAN {
  166. display: inline;
  167. padding-left: 2px;
  168. }
  169. ul.contextMenuNoBG A {
  170. padding-left: 2px;
  171. }
  172. ul.contextMenu LI.vboxHover {
  173. background-color: #f0f8ff;
  174. border: 1px solid #aaaaaa;
  175. }
  176. .contextMenu LI.disabled img {
  177. display: none;
  178. }
  179. .contextMenu LI.vboxHover.disabled, .contextMenu LI.disabled A, .contextMenu LI.disabled SPAN {
  180. color: #AAA;
  181. cursor: default;
  182. }
  183. .contextMenu LI.vboxHover.disabled, .contextMenu LI.vboxHover.disabled A {
  184. background-color: transparent;
  185. }
  186. .contextMenu LI.separator {
  187. border-top: 1px solid #CCC;
  188. }
  189. .contextMenu LI:first {
  190. border-top: 1px solid transparent;
  191. }
  192. /**
  193. * Filetree plugin css
  194. */
  195. ul.jqueryFileTree {
  196. font-family: Verdana, sans-serif;
  197. font-size: 11px;
  198. line-height: 18px;
  199. padding: 0px;
  200. margin: 0px;
  201. display: block;
  202. }
  203. UL.jqueryFileTree LI {
  204. list-style: none;
  205. padding: 0px;
  206. padding-left: 20px;
  207. margin: 0px;
  208. white-space: nowrap;
  209. display: block;
  210. }
  211. UL.jqueryFileTree A {
  212. text-decoration: none;
  213. display: block;
  214. padding: 0px 2px;
  215. }
  216. /* Core Styles */
  217. .jqueryFileTree LI.folder { background: url(../images/jqueryFileTree/directory.png) left top no-repeat; }
  218. .jqueryFileTree LI.expanded { background: url(../images/jqueryFileTree/folder_open.png) left top no-repeat; }
  219. .jqueryFileTree LI.file { background: url(../images/jqueryFileTree/file.png) left top no-repeat; }
  220. .jqueryFileTree LI.wait { background: url(../images/jqueryFileTree/spinner.gif) left top no-repeat; }
  221. .jqueryFileTree LI.file_vmdk { background: url(../images/vbox/virtualbox-vmdk.png) 0px 1px no-repeat; }
  222. .jqueryFileTree LI.file_vdi { background: url(../images/vbox/virtualbox-vdi.png) 0px 1px no-repeat; }
  223. .jqueryFileTree LI.file_vhd { background: url(../images/vbox/virtualbox-vhd.png) 0px 1px no-repeat; }
  224. .jqueryFileTree LI.file_hdd { background: url(../images/vbox/virtualbox-hdd.png) 0px 1px no-repeat; }
  225. .jqueryFileTree LI.file_ovf { background: url(../images/vbox/virtualbox-ovf.png) 0px 1px no-repeat; }
  226. .jqueryFileTree LI.file_ova { background: url(../images/vbox/virtualbox-ova.png) 0px 1px no-repeat; }
  227. .jqueryFileTree LI.file_iso, .jqueryFileTree LI.file_cdr, .jqueryFileTree LI.file_dmg { background: url(../images/vbox/cd_16px.png) 0px 1px no-repeat; }
  228. .jqueryFileTree LI.file_img, .jqueryFileTree LI.file_ima, .jqueryFileTree LI.file_dsk, .jqueryFileTree LI.file_vfd { background: url(../images/vbox/fd_16px.png) 0px 1px no-repeat; }
  229. .jqueryFileTree LI.file_vbox, .jqueryFileTree LI.file_xml { background: url(../images/vbox/virtualbox-vbox.png) 0px 1px no-repeat; }