sheet.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. .fullScreen {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. html,body {
  6. width: 100%;
  7. height: 100%;
  8. overflow: hidden;
  9. padding: 0px 0px 0px 0px;
  10. margin: 0px 0px 0px 0px;
  11. }
  12. .sheetGrid{
  13. border-color: lightgrey;
  14. /*border-bottom-width:0px;*/
  15. border-collapse:collapse;
  16. border-style:solid;
  17. width:0px;
  18. background-color:White;
  19. color:black;
  20. font-family:Arial;
  21. font-size:10pt;
  22. font-style:normal;
  23. font-weight:normal;
  24. text-decoration:none;
  25. vertical-align:bottom;
  26. empty-cells: :show;
  27. table-layout: fixed;
  28. }
  29. .sheetGrid TD{
  30. margin:0;
  31. overflow:hidden;
  32. white-space:nowrap;
  33. line-height: 100%;
  34. }
  35. TR.lastRow{
  36. height:0px;
  37. }
  38. .lastRow TD{
  39. border-bottom-width:0px;
  40. }
  41. tr.headRow{
  42. height:0px;
  43. }
  44. .headRow td{
  45. border-top-width:0px;
  46. }
  47. .leftSheetPanel{
  48. overflow: hidden;
  49. vertical-align: top;
  50. }
  51. .leftSheetGrid{
  52. border-right-width:0px;
  53. }
  54. .topSheetPanel{
  55. overflow: hidden;
  56. position: relative;
  57. z-index: 3;
  58. }
  59. .topRightSheetPanel{
  60. overflow: hidden;
  61. text-align: left;
  62. }
  63. .topLeftSheetPanel{
  64. overflow: hidden;
  65. }
  66. .topLeftSheetGrid{
  67. border-right-width:0px;
  68. border-bottom-width:0px;
  69. }
  70. .unselectable {
  71. -webkit-user-select: none;
  72. -khtml-user-select: none;
  73. -moz-user-select: none;
  74. -o-user-select: none;
  75. user-select: none;
  76. }
  77. .inlineLayout
  78. {
  79. display:-moz-inline-box;
  80. display:inline-block;
  81. #zoom: 1;
  82. #display:inline;
  83. }
  84. .scrollingPanel
  85. {
  86. overflow: auto;
  87. z-index: 1;
  88. position: absolute;
  89. right:0px;
  90. bottom:0px;
  91. }
  92. .leftScrollingPanel{
  93. overflow-x: auto;
  94. z-index: 1;
  95. position: absolute;
  96. left:0px;
  97. bottom:0px;
  98. }
  99. .topScrollingPanel{
  100. overflow-y: auto;
  101. z-index: 1;
  102. position: absolute;
  103. right:0px;
  104. top:0px;
  105. }
  106. .webSheetPanel{
  107. z-index:0;
  108. position: relative;
  109. overflow:hidden;
  110. }
  111. .bottomScrollablePanel{
  112. position:absolute;
  113. }
  114. .bottomSheetPanel{
  115. z-index:3;
  116. overflow: hidden;
  117. position: relative;
  118. }
  119. .mainSheetPanel{
  120. overflow-x:hidden;
  121. vertical-align: top;
  122. }
  123. .mainSheetDataPanel{
  124. position: relative;
  125. top:0px;
  126. }
  127. .topRightSheetDataPanel{
  128. position: relative;
  129. top:0px;
  130. }
  131. .topLeftSheetDataPanel{
  132. position: relative;
  133. }
  134. .leftSheetDataPanel{
  135. position: relative;
  136. }
  137. .verticalLine{
  138. position:absolute;
  139. height:100%;
  140. top:0px;
  141. width:1px;
  142. background-color: black;
  143. z-index:10;
  144. }
  145. .horizontalLine{
  146. position:absolute;
  147. left:0px;
  148. width:100%;
  149. height:1px;
  150. background-color: black;
  151. z-index:10;
  152. font-size:0px;
  153. line-height:0;
  154. overflow: hidden;
  155. }
  156. .horizontalBorder{
  157. position: absolute;
  158. background-color: #EEEEEE;
  159. bottom: 0px;
  160. left: 0px;
  161. font-size:0px;
  162. line-height:0px;
  163. width:100%;
  164. }
  165. .verticalBorder{
  166. position: absolute;
  167. background: #EEEEEE;
  168. top: 0px;
  169. right: 0px;
  170. height:100%;
  171. }
  172. .cellDiv{
  173. position:relative;
  174. }
  175. .sheetControlContainer{
  176. position:absolute;
  177. overflow: hidden;
  178. }
  179. .sheetControl{
  180. position:absolute;
  181. }
  182. .subNameIcon{
  183. background-image: url("../../images/websheet/dim_subset_handle1.gif");
  184. background-position: right top;
  185. background-repeat: no-repeat;
  186. }
  187. .webSheetContentPane{
  188. padding: 0px 0px 0px 0px !important;
  189. }
  190. .control{
  191. position: absolute;
  192. }