Switch to @colorGray5 for wikitable borders

Bug: T168029
Change-Id: I4507aae9f44538ec024ecc4c5d6219efc10be51e
This commit is contained in:
jdlrobson 2017-08-28 15:35:53 -05:00
parent d2a022e07b
commit de86a1fdd8
1 changed files with 4 additions and 4 deletions

View File

@ -22,9 +22,9 @@
// For skinning normal data tables
// Compare with mediawiki.legacy/shared.css
&.wikitable {
border: 1px solid @grayLight;
border: 1px solid @colorGray5;
// Note older browsers will fall back to @grayLight
border-color: fade( @grayLight, 20 );
border-color: fade( @colorGray5, 30 );
// We only style cells that are direct children of the wikitable table since
// table tags may be used for non-table purposes within the cells.
@ -32,9 +32,9 @@
> tr > td,
> * > tr > th,
> * > tr > td {
border: 1px solid @grayLight;
border: 1px solid @colorGray5;
// Note older browsers will fall back to @grayLight
border-color: fade( @grayLight, 20 );
border-color: fade( @colorGray5, 30 );
padding: 0.2em;
}