wt_ie.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* additional style rules for IE */
  2. .Wt-dialogcover {
  3. filter: alpha(opacity=50);
  4. }
  5. /*
  6. * WItemDelegate
  7. */
  8. .Wt-delegate-edit input {
  9. font-size: 9pt;
  10. padding-top: 0px;
  11. padding-bottom: 0px;
  12. }
  13. /*
  14. * WSuggestionPopup
  15. */
  16. .Wt-suggest .content {
  17. overflow-x: hidden;
  18. }
  19. /*
  20. * WAbstractItemView
  21. */
  22. .Wt-itemview .Wt-header .Wt-label {
  23. zoom: 1;
  24. }
  25. /*
  26. * WTableView
  27. */
  28. .Wt-tableview div {
  29. white-space: nowrap
  30. }
  31. /*
  32. * WTree
  33. */
  34. .Wt-tree div, .Wt-tree span {
  35. white-space: nowrap;
  36. }
  37. .Wt-tree .Wt-item {
  38. zoom: 1;
  39. }
  40. /*
  41. * WTreeView
  42. */
  43. /* IE ignores white-space on a table or td */
  44. .Wt-treeview div, .Wt-treeview span {
  45. white-space: nowrap;
  46. }
  47. body.Wt-ltr .Wt-treeview .Wt-header .Wt-tv-c {
  48. margin: 0px;
  49. padding: 0px 0px 0px 7px;
  50. }
  51. body.Wt-rtl .Wt-treeview .Wt-header .Wt-tv-c {
  52. margin: 0px;
  53. padding: 0px 7px 0px 0px;
  54. }
  55. .Wt-treeview .Wt-item {
  56. zoom: 1;
  57. }
  58. .Wt-treeview .Wt-scroll {
  59. position: absolute;
  60. overflow-x: auto;
  61. overflow-y: hidden;
  62. }
  63. .Wt-hrh {
  64. line-height: 0px;
  65. }