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.

113 lines
2.3 KiB

  1. .act_as_table {
  2. display: table !important;
  3. background-color: white;
  4. }
  5. .act_as_row {
  6. display: table-row !important;
  7. page-break-inside: avoid;
  8. }
  9. .act_as_cell {
  10. display: table-cell !important;
  11. page-break-inside: avoid;
  12. }
  13. .act_as_thead {
  14. display: table-header-group !important;
  15. }
  16. .act_as_tbody {
  17. display: table-row-group !important;
  18. }
  19. .list_table,
  20. .data_table,
  21. .totals_table {
  22. width: 100% !important;
  23. }
  24. .act_as_row.labels {
  25. background-color: #f0f0f0 !important;
  26. }
  27. .list_table,
  28. .data_table,
  29. .totals_table,
  30. .list_table .act_as_row {
  31. border-left: 0px;
  32. border-right: 0px;
  33. text-align: center;
  34. font-size: 10px;
  35. padding-right: 3px;
  36. padding-left: 3px;
  37. padding-top: 2px;
  38. padding-bottom: 2px;
  39. border-collapse: collapse;
  40. }
  41. .totals_table {
  42. font-weight: bold;
  43. text-align: center;
  44. }
  45. .list_table .act_as_row.labels,
  46. .list_table .act_as_row.initial_balance,
  47. .list_table .act_as_row.lines {
  48. border-color: grey !important;
  49. border-bottom: 1px solid lightGrey !important;
  50. }
  51. .data_table .act_as_cell {
  52. border: 1px solid lightGrey;
  53. text-align: center;
  54. }
  55. .data_table .act_as_cell,
  56. .list_table .act_as_cell,
  57. .totals_table .act_as_cell {
  58. word-wrap: break-word;
  59. }
  60. .data_table .act_as_row.labels,
  61. .totals_table .act_as_row.labels {
  62. font-weight: bold;
  63. }
  64. .initial_balance .act_as_cell {
  65. font-style: italic;
  66. }
  67. .account_title {
  68. font-size: 11px;
  69. font-weight: bold;
  70. }
  71. .account_title.labels {
  72. background-color: #f0f0f0 !important;
  73. }
  74. .act_as_cell.amount {
  75. word-wrap: normal;
  76. text-align: right;
  77. }
  78. .act_as_cell.left {
  79. text-align: left;
  80. }
  81. .act_as_cell.right {
  82. text-align: right;
  83. }
  84. /*.list_table .act_as_cell {*/
  85. /* border-right:1px solid lightGrey; uncomment to active column lines */
  86. /*}*/
  87. .list_table .act_as_cell.first_column {
  88. padding-left: 0px;
  89. /* border-left:1px solid lightGrey; uncomment to active column lines */
  90. }
  91. .overflow_ellipsis {
  92. text-overflow: ellipsis;
  93. overflow: hidden;
  94. white-space: nowrap;
  95. }
  96. .custom_footer {
  97. font-size: 7px !important;
  98. }
  99. .page_break {
  100. page-break-inside: avoid;
  101. }
  102. .button_row {
  103. padding-bottom: 10px;
  104. }
  105. .o_account_financial_reports_page {
  106. padding-top: 10px;
  107. width: 90%;
  108. margin-right: auto;
  109. margin-left: auto;
  110. font-family: Helvetica, Arial;
  111. }