From de86a1fdd8ef7d7de8c0a8e30e9aba93a6a4b72e Mon Sep 17 00:00:00 2001 From: jdlrobson Date: Mon, 28 Aug 2017 15:35:53 -0500 Subject: [PATCH] Switch to @colorGray5 for wikitable borders Bug: T168029 Change-Id: I4507aae9f44538ec024ecc4c5d6219efc10be51e --- resources/skins.minerva.content.styles/tables.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/skins.minerva.content.styles/tables.less b/resources/skins.minerva.content.styles/tables.less index be4f454..7ebea51 100644 --- a/resources/skins.minerva.content.styles/tables.less +++ b/resources/skins.minerva.content.styles/tables.less @@ -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; }