From 4cba11a7d466019382565e432d7a6e98964e62f3 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 11 Mar 2015 14:46:50 +0100 Subject: [PATCH] [FIX] ws doc: table border colors in right column Table borders remained the same color as in the "light" half, an overly bright gray (#ddd) on a very dark background rather than a very light gray on a white background. Convert to a shade of dark gray lighter than the background, but nowhere near as light as the text itself. --- doc/_themes/odoodoc/static/style.css | 6 ++++++ doc/_themes/odoodoc/static/style.less | 3 +++ 2 files changed, 9 insertions(+) diff --git a/doc/_themes/odoodoc/static/style.css b/doc/_themes/odoodoc/static/style.css index 7ca2b0264f8..079d7a3b4b1 100644 --- a/doc/_themes/odoodoc/static/style.css +++ b/doc/_themes/odoodoc/static/style.css @@ -6864,6 +6864,12 @@ td.field-body > ul { border-bottom-color: #777777; border-right-color: #777777; } + .stripe .section:not(.force-right) > .force-right .table th, + .stripe .section:not(.force-right) > [class*=highlight-] .table th, + .stripe .section:not(.force-right) > .force-right .table td, + .stripe .section:not(.force-right) > [class*=highlight-] .table td { + border-color: #777777; + } .stripe .section:not(.force-right) > .force-right .highlight, .stripe .section:not(.force-right) > [class*=highlight-] .highlight { border-color: #555555; diff --git a/doc/_themes/odoodoc/static/style.less b/doc/_themes/odoodoc/static/style.less index d0c24c6f6f0..376b422006a 100644 --- a/doc/_themes/odoodoc/static/style.less +++ b/doc/_themes/odoodoc/static/style.less @@ -655,6 +655,9 @@ td.field-body { border-bottom-color: @separator-right; border-right-color: @separator-right; } + .table th, .table td { + border-color: @gray-light; + } .highlight { border-color: @gray; border-style: solid;