Merge "Switch to @colorGray5 for wikitable borders"

This commit is contained in:
jenkins-bot 2017-08-28 21:00:17 +00:00 committed by Gerrit Code Review
commit adcdbef9f0
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;
}