/hippo/src/main/webapp/yui/datatable/assets/datatable-core.css

http://hdbc.googlecode.com/ · CSS · 93 lines · 62 code · 11 blank · 20 comment · 0 complexity · a8ae33ac6500f7b295491501eb362ea2 MD5 · raw file

  1. /*
  2. Copyright (c) 2009, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.net/yui/license.txt
  5. version: 2.7.0
  6. */
  7. /* foundational CSS */
  8. /* mask */
  9. .yui-skin-sam .yui-dt-mask {
  10. position:absolute;
  11. z-index:9500;
  12. }
  13. /* scrollable */
  14. .yui-dt-tmp {
  15. position:absolute;
  16. left:-9000px;
  17. }
  18. .yui-dt-scrollable .yui-dt-bd {
  19. overflow:auto;
  20. }
  21. .yui-dt-scrollable .yui-dt-hd {
  22. overflow:hidden;
  23. position:relative; /* for ie overflow bug http://rowanw.com/bugs/overflow_relative.htm */
  24. }
  25. .yui-dt-scrollable .yui-dt-bd thead tr,
  26. .yui-dt-scrollable .yui-dt-bd thead th {
  27. position:absolute;
  28. left:-1500px;
  29. }
  30. .yui-dt-scrollable tbody {
  31. -moz-outline:none;
  32. }
  33. /* sortable columns */
  34. .yui-skin-sam thead .yui-dt-sortable {
  35. cursor:pointer;
  36. }
  37. /* draggable columns */
  38. .yui-skin-sam thead .yui-dt-draggable {
  39. cursor: move;
  40. }
  41. .yui-dt-coltarget {
  42. position: absolute;
  43. z-index: 999;
  44. }
  45. /* resizeable columns */
  46. .yui-dt-hd {
  47. zoom:1;
  48. }
  49. th.yui-dt-resizeable .yui-dt-resizerliner {
  50. position:relative;
  51. }
  52. .yui-dt-resizer {
  53. position:absolute;
  54. right:0;
  55. bottom:0;
  56. height:100%;
  57. cursor:e-resize;
  58. cursor:col-resize;
  59. background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
  60. }
  61. .yui-dt-resizerproxy {
  62. visibility:hidden;
  63. position:absolute;
  64. z-index:9000;
  65. background-color:#CCC;opacity:0;filter: alpha(opacity=0); /* Bug 1952811: IE transparency z-index */
  66. }
  67. /* hidden columns */
  68. th.yui-dt-hidden .yui-dt-liner,
  69. td.yui-dt-hidden .yui-dt-liner,
  70. th.yui-dt-hidden .yui-dt-resizer {
  71. /*TODO: document change from 2.5.2 to 2.6
  72. margin:0;
  73. padding:0;
  74. white-space:nowrap;
  75. width:1px;
  76. overflow:hidden;*/
  77. display:none;
  78. }
  79. /* editing */
  80. .yui-dt-editor {
  81. position:absolute;z-index:9000;
  82. }