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.

33 lines
1.2 KiB

  1. <?xml version="1.0"?>
  2. <!--
  3. Copyright 2019
  4. @author Alexandre Díaz <dev@redneboa.es>
  5. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  6. -->
  7. <odoo>
  8. <record id="view_company_form" model="ir.ui.view">
  9. <field name="model">res.company</field>
  10. <field name="inherit_id" ref="base.view_company_form" />
  11. <field name="arch" type="xml">
  12. <notebook position="inside">
  13. <page string="Company Styles" name="company_styles"
  14. groups="base.group_system">
  15. <group string="Navbar Colors" name="navbar_colors">
  16. <field name="color_navbar_bg" widget="color" />
  17. <field name="color_navbar_bg_hover" widget="color" />
  18. <field name="color_navbar_text" widget="color" />
  19. </group>
  20. <div class="alert alert-info info_icon" role="alert">
  21. <span class="fa fa-info fa-2x" />
  22. In order for the changes to take effect, please refresh
  23. the page.
  24. </div>
  25. </page>
  26. </notebook>
  27. </field>
  28. </record>
  29. </odoo>