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.

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