From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/account/static/src/css/account.css | 38 ++++++++++++++++++++++ .../static/src/css/account_bank_and_cash.css | 31 ++++++++++++++++++ addons/account/static/src/css/tax_group.css | 25 ++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 addons/account/static/src/css/account.css create mode 100644 addons/account/static/src/css/account_bank_and_cash.css create mode 100644 addons/account/static/src/css/tax_group.css (limited to 'addons/account/static/src/css') diff --git a/addons/account/static/src/css/account.css b/addons/account/static/src/css/account.css new file mode 100644 index 00000000..c3817370 --- /dev/null +++ b/addons/account/static/src/css/account.css @@ -0,0 +1,38 @@ +.openerp div.oe_account_help { + background : #D6EBFF; + width: 100%; + padding: 10px; + border: 3px solid #C1D4E6; +} + +.openerp p.oe_account_font_help{ + text-align: left; + font-weight: bold; + margin: 0px; + font-size: 14px; +} + +.openerp p.oe_account_font_content{ + margin-left: 30px; + font-size: 14px; +} + +.openerp p.oe_account_font_title{ + margin-top: 7px; + font-size: 15px; + font-style: italic; + color: grey; +} + +.oe_invoice_outstanding_credits_debits { + clear: both; + float: right; + min-width: 350px; +} + +@media (max-width: 767.98px) { + .oe_invoice_outstanding_credits_debits { + min-width: initial; + width: 100%; + } +} diff --git a/addons/account/static/src/css/account_bank_and_cash.css b/addons/account/static/src/css/account_bank_and_cash.css new file mode 100644 index 00000000..1d2a4fba --- /dev/null +++ b/addons/account/static/src/css/account_bank_and_cash.css @@ -0,0 +1,31 @@ +.openerp .oe_force_bold { + font-weight: bold !important; +} +.openerp label.oe_open_balance{ + margin-right: -18px; +} +.openerp label.oe_subtotal_footer_separator{ + float:right; + width: 184px !important; +} +.openerp label.oe_mini_subtotal_footer_separator{ + margin-right: -14px; +} +.openerp .oe_account_total, .openerp .oe_pos_total { + margin-left: -2px; +} +.openerp label.oe_real_closing_balance{ + min-width: 184px !important; +} +.openerp label.oe_difference, .openerp label.oe_pos_difference { + margin-right: -10px; + padding-left: 10px !important; + min-width: 195px !important; +} +.openerp .oe_opening_total{ + margin-right: 4px; +} + +.o_payment_label{ + padding-right: 20px; +} \ No newline at end of file diff --git a/addons/account/static/src/css/tax_group.css b/addons/account/static/src/css/tax_group.css new file mode 100644 index 00000000..0b617056 --- /dev/null +++ b/addons/account/static/src/css/tax_group.css @@ -0,0 +1,25 @@ +.oe_tax_group_editable { + width: 100%; +} + +.tax_group_edit { + white-space: nowrap; +} + +.tax_group_edit:hover { + color: #00A09D; + cursor: pointer; +} + +.oe_tax_group_name { + font-weight: bold; + min-width: 150px; + text-align: right; + padding-right: 20px; +} + +.oe_tax_group_editable .oe_tax_group_amount_value input { + width: 65%; + float: right; + text-align: right; +} -- cgit v1.2.3