From 158f5adbc9ae6bd54f93936bcbab5061480e5c1a Mon Sep 17 00:00:00 2001 From: stefanorigano Date: Wed, 14 Oct 2015 15:57:03 +0200 Subject: [PATCH] [IMP] links:hover, replace color --- _extensions/odoo/static/style.css | 10 +++++++--- _extensions/odoo/static/typography.less | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/_extensions/odoo/static/style.css b/_extensions/odoo/static/style.css index 564468d94..6c2e3579a 100644 --- a/_extensions/odoo/static/style.css +++ b/_extensions/odoo/static/style.css @@ -290,7 +290,7 @@ a { } a:hover, a:focus { - color: #393f4f; + color: #9e588b; text-decoration: underline; } a:focus { @@ -2513,7 +2513,7 @@ fieldset[disabled] .btn-link { } .btn-link:hover, .btn-link:focus { - color: #393f4f; + color: #9e588b; text-decoration: underline; background-color: transparent; } @@ -3821,7 +3821,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { - color: #393f4f; + color: #9e588b; background-color: #eeeeee; border-color: #dddddd; } @@ -8611,6 +8611,10 @@ main.has_code_col article.doc-body section { min-height: 420px; } } +article.doc-toc .toctree-wrapper > ul > li > span { + display: block; + font-size: 28px; +} .code-fields { display: table; width: 100%; diff --git a/_extensions/odoo/static/typography.less b/_extensions/odoo/static/typography.less index f63be6ff8..330513526 100644 --- a/_extensions/odoo/static/typography.less +++ b/_extensions/odoo/static/typography.less @@ -13,7 +13,7 @@ //** Global textual link color. a {.transition(color 0.1s linear); } @link-color: darken(@doc_accent,10%); -@link-hover-color: @doc_heading; +@link-hover-color: @doc_violet; @link-hover-decoration: underline;