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.
 
 
 
 
 
 

122 line
1.8 KiB

  1. /* Grid */
  2. /* --- Simple --- */
  3. .grid_wrapper_simple {
  4. width: 100%;
  5. margin-bottom: 8px;
  6. border: 1px solid #AA9;
  7. }
  8. .grid_head_wrapper_simple {
  9. padding: 0px;
  10. border-bottom: 2px solid #AAA;
  11. }
  12. .grid_head_wrapper_simple td {
  13. border-right: 1px solid #AA9;
  14. }
  15. .grid_head_wrapper_simple td div {
  16. padding: 2px;
  17. }
  18. .grid_tab_wrapper_simple {
  19. }
  20. .grid_cell_simple {
  21. padding: 2px;
  22. background-color: #fff;
  23. border-right: 1px solid #AA9;
  24. }
  25. /* --- Normal --- */
  26. .grid_wrapper {
  27. position: relative;
  28. overflow: auto;
  29. border: 1px solid #AAA;
  30. width: 100%;
  31. margin-bottom: 8px;
  32. background-color: #fff;
  33. }
  34. .grid_tab_wrapper {
  35. position: absolute;
  36. top: 30px;
  37. border-bottom: 1px solid #DDD;
  38. }
  39. .grid_table, .grid_head_table {
  40. table-layout: fixed;
  41. border-collapse: collapse;
  42. /*width: 100%;*/
  43. }
  44. .grid_cell {
  45. border-right: 1px solid #ddd;
  46. padding: 0px;
  47. background-color: #fff;
  48. }
  49. .grid_head_wrapper {
  50. position: absolute;
  51. z-index: 1;
  52. height: 30px;
  53. padding: 0px;
  54. overflow: hidden;
  55. /*background-color: #fff;*/
  56. }
  57. .grid_head_table td {
  58. background-color: #EEE;
  59. border-right: 1px solid #AAA;
  60. border-bottom: 1px solid #AAA;
  61. height: 30px;
  62. padding: 0px;
  63. }
  64. .grid_head_table td div {
  65. color: #222;
  66. font-weight: bold;
  67. overflow: hidden;
  68. padding: 2px 0px;
  69. text-align: center;
  70. }
  71. .grid_selector {
  72. padding: 1px;
  73. border-right: 1px solid #DDD;
  74. width: 20px;
  75. background-color: #fff;
  76. }
  77. .grid_cell_div {
  78. padding: 2px;
  79. cursor: pointer;
  80. overflow: hidden;
  81. border: 2px solid #FFF;
  82. }
  83. .grid_cell_div_selected {
  84. border: 2px solid #88f;
  85. }
  86. .grid_cell_div input, .grid_cell_div select, .grid_cell_div div input {
  87. margin: 0px;
  88. border: 0px;
  89. width: 100%;
  90. margin: 0px;
  91. }
  92. .grid_cell_div textarea {
  93. border: 3px solid #abf;
  94. height:200px;
  95. width: 300px;
  96. z-index: 10;
  97. position:absolute;
  98. }
  99. .gridDivSelected option { border: 0px; }