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.

105 lines
2.3 KiB

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