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.

75 lines
4.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2018 MuK IT GmbH
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as
  6. published by the Free Software Foundation, either version 3 of the
  7. License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <odoo>
  16. <template id="_assets_utils" name="Mixins" inherit_id="web._assets_utils" priority="10">
  17. <xpath expr="//link[last()]" position="after">
  18. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/mixins.scss"/>
  19. </xpath>
  20. </template>
  21. <template id="_assets_primary_variables" name="Colors" inherit_id="web._assets_primary_variables" priority="10">
  22. <xpath expr="//link[last()]" position="after">
  23. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/colors.scss"/>
  24. </xpath>
  25. </template>
  26. <template id="_assets_backend_helpers" name="Variables" inherit_id="web._assets_backend_helpers" priority="10">
  27. <xpath expr="//link[@href='/web/static/src/scss/bootstrap_overridden.scss']" position="after">
  28. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/variables.scss"/>
  29. </xpath>
  30. </template>
  31. <template id="assets_common" name="Common Assets" inherit_id="web_editor.assets_common">
  32. <xpath expr="//link[last()]" position="after">
  33. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/mixins.scss"/>
  34. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/fonts.scss"/>
  35. </xpath>
  36. </template>
  37. <template id="assets_backend" name="Backend Assets" inherit_id="web.assets_backend">
  38. <xpath expr="//link[last()]" position="after">
  39. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/libs/simplebar/simplebar.css" />
  40. </xpath>
  41. <xpath expr="//script[last()]" position="after">
  42. <script type="text/javascript" src="/muk_web_theme/static/libs/simplebar/simplebar.js" />
  43. </xpath>
  44. <xpath expr="//link[last()]" position="after">
  45. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/layout.scss"/>
  46. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/navbar.scss"/>
  47. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/apps.scss"/>
  48. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/appsbar.scss"/>
  49. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/control_panel.scss"/>
  50. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/list_view.scss"/>
  51. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/form_view.scss"/>
  52. <link rel="stylesheet" type="text/scss" href="/muk_web_theme/static/src/scss/fields.scss"/>
  53. </xpath>
  54. <xpath expr="//script[last()]" position="after">
  55. <script type="text/javascript" src="/muk_web_theme/static/src/js/chrome/menu.js" />
  56. <script type="text/javascript" src="/muk_web_theme/static/src/js/chrome/apps.js" />
  57. <script type="text/javascript" src="/muk_web_theme/static/src/js/chrome/appsbar.js" />
  58. <script type="text/javascript" src="/muk_web_theme/static/src/js/chrome/sidebar.js" />
  59. <script type="text/javascript" src="/muk_web_theme/static/src/js/fields/status.js" />
  60. <script type="text/javascript" src="/muk_web_theme/static/src/js/views/search_view.js" />
  61. <script type="text/javascript" src="/muk_web_theme/static/src/js/views/form_renderer.js" />
  62. </xpath>
  63. </template>
  64. </odoo>