DnD.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .dojoxGridBorderDIV {
  2. width:2px;
  3. background-color: gray;
  4. font-size:0em;
  5. position:absolute;
  6. z-index:9999;
  7. }
  8. .dojoxGridCellBorderDIV {
  9. position:absolute;
  10. background-color: transparent;
  11. border: none;
  12. }
  13. .dojoxGridCellBorderLeftTopDIV {
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. border-style: solid;
  18. border-width: 2px 0 0 2px;
  19. border-color: gray transparent transparent gray;
  20. }
  21. .dojoxGridCellBorderRightBottomDIV {
  22. position: absolute;
  23. right: 0;
  24. bottom: 0;
  25. border-style: solid;
  26. border-width: 0 2px 2px 0;
  27. border-color: transparent gray gray transparent;
  28. }
  29. .dojoxGridDnDItemIcon {
  30. background-image: url("images/sprite_icons.png");
  31. }
  32. .dojoxGridDnDIconRowSingle {
  33. background-position: -256px 5px;
  34. }
  35. .dojoxGridDnDIconRowMulti {
  36. background-position: -256px -16px;
  37. }
  38. .dojoxGridDnDIconColSingle {
  39. background-position: -277px 3px;
  40. }
  41. .dojoxGridDnDIconColMulti {
  42. background-position: -277px -17px;
  43. }
  44. .dojoxGridDnDIconCellSingle {
  45. background-position: -235px 5px;
  46. }
  47. .dojoxGridDnDIconCellMulti {
  48. background-position: -236px -16px;
  49. }
  50. .dojoxGridDndAvatar {
  51. background-color:white;
  52. border: 1px solid #CCCCCC;
  53. padding: 0px;
  54. -moz-box-shadow: 5px 5px 7px #999;
  55. -webkit-box-shadow: 5px 5px 7px #999;
  56. box-shadow: 5px 5px 7px #999;
  57. z-index: 999;
  58. }
  59. .dojoxGridDndAvatar td {
  60. padding: 3px;
  61. }
  62. .dojoxGridDnDIcon,
  63. .dojoxGridDnDItemIcon {
  64. width: 16px;
  65. height: 16px;
  66. }
  67. .dojoDndMove .dojoxGridDnDIcon {
  68. background: url(../../../../dojo/resources/images/dndNoMove.png) no-repeat center center;
  69. }
  70. .dojoDndCopy .dojoxGridDnDIcon {
  71. background: url(../../../../dojo/resources/images/dndNoCopy.png) no-repeat center center;
  72. }
  73. .dojoDndMove .dojoDndAvatarCanDrop .dojoxGridDnDIcon {
  74. background: url(../../../../dojo/resources/images/dndMove.png) no-repeat center center;
  75. }
  76. .dojoDndCopy .dojoDndAvatarCanDrop .dojoxGridDnDIcon {
  77. background: url(../../../../dojo/resources/images/dndCopy.png) no-repeat center center;
  78. }