diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/web/static/src/scss/layout_clean.scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/web/static/src/scss/layout_clean.scss')
| -rw-r--r-- | addons/web/static/src/scss/layout_clean.scss | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/addons/web/static/src/scss/layout_clean.scss b/addons/web/static/src/scss/layout_clean.scss new file mode 100644 index 00000000..5d559726 --- /dev/null +++ b/addons/web/static/src/scss/layout_clean.scss @@ -0,0 +1,88 @@ +.o_clean_footer, .o_clean_header, .o_report_layout_clean { + color: #000; +} +.o_clean_header img { + max-height: 90px; + max-width: 300px; +} +.o_clean_footer { + margin: 0 3px; + margin-top: 200px; + border-top: 3px solid $o-default-report-secondary-color; + h4 { + color: $o-default-report-secondary-color; + font-weight: bolder; + } + .pagenumber { + border: 3px solid $o-default-report-primary-color; + background-color: $o-default-report-secondary-color; + color: white; + padding: 4px 8px; + text-align: center; + } +} +.o_report_layout_clean { + h1, h2, h3 { + color: $o-default-report-primary-color; + font-weight: bolder; + } + strong { + color: $o-default-report-secondary-color; + } + table { + &.o_main_table { + margin-bottom: 0; + } + + thead { + color: $o-default-report-secondary-color; + tr th { + border-top: 3px solid $o-default-report-secondary-color !important; + text-transform: uppercase; + } + tr th:first-child { + width: 48%; + } + } + tbody { + color: #000; + tr:first-child td { + border-top: none; + } + tr:last-child td { + border-bottom: 3px solid $o-default-report-secondary-color; + } + tr { + td { + padding: 15px 5px; + } + td:last-child { + } + } + } + } + #total { + strong { + color: $o-default-report-secondary-color; + } + } + /*Total table*/ + /* compat 12.0 */ + .row:not(#total) > div:has(table) { + top: -16px; + } + /* row col rule compat 12.0 */ + .row > div > table, + div#total table { + tr { + &:first-child td, + &.o_subtotal { + border-top: none !important; + } + &:last-child td, + &.o_total { + border-top: 1px solid gray('200') !important; + } + } + } +} |
