[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.
This commit is contained in:
Xavier Morel 2015-03-11 14:46:50 +01:00
parent a20545a936
commit 4cba11a7d4
2 changed files with 9 additions and 0 deletions

View File

@ -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;

View File

@ -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;