Merge "Fade table border color"

This commit is contained in:
jenkins-bot 2017-08-28 14:50:45 +00:00 committed by Gerrit Code Review
commit 1207f53428

View File

@ -23,6 +23,8 @@
// Compare with mediawiki.legacy/shared.css // Compare with mediawiki.legacy/shared.css
&.wikitable { &.wikitable {
border: 1px solid @grayLight; border: 1px solid @grayLight;
// Note older browsers will fall back to @grayLight
border-color: fade( @grayLight, 20 );
// We only style cells that are direct children of the wikitable table since // 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. // table tags may be used for non-table purposes within the cells.
@ -31,6 +33,8 @@
> * > tr > th, > * > tr > th,
> * > tr > td { > * > tr > td {
border: 1px solid @grayLight; border: 1px solid @grayLight;
// Note older browsers will fall back to @grayLight
border-color: fade( @grayLight, 20 );
padding: 0.2em; padding: 0.2em;
} }