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.

82 lines
4.4 KiB

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