diff --git a/content/developer/howtos.rst b/content/developer/howtos.rst index 203807a7f..5c6f825c6 100644 --- a/content/developer/howtos.rst +++ b/content/developer/howtos.rst @@ -1,4 +1,5 @@ -:nosearch: +:show-content: +:hide-page-toc: ========= Tutorials @@ -14,3 +15,91 @@ Tutorials howtos/company howtos/accounting_localization howtos/translations + +.. raw:: html + + +
+ + +
+
+

Getting started

+

+ Learn how to develop your own module with the Odoo framework. This + step-by-step tutorial is crafted for newcomers and any other individual + curious about Odoo development. +

+
+ +
+
+ + + +
+
+

Building a website

+

+ Build your first website modules with Odoo. +

+
+ +
+
+ + +
+
+

Web services

+

+ Learn more about Odoo's web services. +

+
+ +
+
+ + +
+
+

Multi-company guidelines

+

+ Learn how to manage multiple companies and deal with the records-related + specificities of a multi-company environment. +

+
+ +
+
+ + +
+
+

Accounting localization

+

+ Learn how to build a localization module, create bank operation models and + dynamic reports. +

+
+ +
+
+ + +
+
+

Translating modules

+

+ Learn how to provide translation abilities to your module. +

+
+ +
+
+ +
diff --git a/extensions/odoo_theme/static/scss/bootstrap_overridden.scss b/extensions/odoo_theme/static/scss/bootstrap_overridden.scss index c7fc2d232..a4e53a708 100644 --- a/extensions/odoo_theme/static/scss/bootstrap_overridden.scss +++ b/extensions/odoo_theme/static/scss/bootstrap_overridden.scss @@ -103,3 +103,6 @@ $accordion-icon-transform: rotate(0deg) !default; $alert-border-width: 3px; $alert-border-scale: 0; $alert-border-radius: 0 3px 3px 0; + +// Card +$card-cap-bg: transparent; diff --git a/extensions/odoo_theme/static/style.scss b/extensions/odoo_theme/static/style.scss index 5dcbd4377..24fc3f6e2 100644 --- a/extensions/odoo_theme/static/style.scss +++ b/extensions/odoo_theme/static/style.scss @@ -1056,6 +1056,28 @@ header { } } +//------------------------------------------------------------------------------ +// Cards +//------------------------------------------------------------------------------ + +.o_toctree_card { + + &:hover { + text-decoration: none; + cursor: pointer; + + .card { + background-color: rgba($teal-100, 0.2); + } + + } + + .card { + transition: all 200ms; + } + +} + //------------------------------------------------------------------------------ // Content Tabs //------------------------------------------------------------------------------