xform.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #xf-pallete {
  2. float:left;
  3. width: 20%;
  4. }
  5. #xf-form {
  6. float:left;
  7. width: 100%;
  8. }
  9. .xf-button {
  10. width: 80%;
  11. border: 1px dotted gray;
  12. margin: 2px;
  13. text-align: center;
  14. cursor: pointer;
  15. -moz-user-select: none;
  16. }
  17. .xf-pallete {
  18. width: 80%;
  19. border: 1px dotted gray;
  20. margin: 2px;
  21. text-align: center;
  22. cursor: move;
  23. -moz-user-select: none;
  24. }
  25. table.xf-table {
  26. }
  27. td.xf-cell {
  28. -moz-user-select: none;
  29. }
  30. td.xf-cell div {
  31. height: 22px;
  32. }
  33. td.xf-cell-top {
  34. border-top: black 1px solid;
  35. }
  36. td.xf-cell-bottom {
  37. border-bottom: black 1px solid;
  38. }
  39. td.xf-cell-left {
  40. border-left: black 1px solid;
  41. }
  42. td.xf-cell-right {
  43. border-right: black 1px solid;
  44. }
  45. td.xf-cell.active {
  46. background-color: #EEEEEE;
  47. }
  48. td.xf-cell-top.active {
  49. border-top: black 1px dotted;
  50. }
  51. td.xf-cell-bottom.active {
  52. border-bottom: black 1px dotted;
  53. }
  54. td.xf-cell-left.active {
  55. border-left: black 1px dotted;
  56. }
  57. td.xf-cell-right.active {
  58. border-right: black 1px dotted;
  59. }
  60. .xf-handler {
  61. cursor: move;
  62. height: auto;
  63. margin: 5px;
  64. }
  65. .xf-handler .radio,
  66. .xf-handler .checkbox {
  67. padding-left: 5px;
  68. }