From 9333db63284c4a812cf0ec25de3aca50d2b5412f Mon Sep 17 00:00:00 2001 From: Volker E Date: Thu, 7 Sep 2017 19:28:58 -0700 Subject: [PATCH] Align box shadow and colors to WikimediaUI Style Guide Aligning `box-shadow` and `color` values to WikimediaUI Style Guide defaults. Bug: T175295 Change-Id: If5f75e57081112c4ce60b04a1061aeae48c25353 --- resources/css/ext.uls-vector.less | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/resources/css/ext.uls-vector.less b/resources/css/ext.uls-vector.less index 2ea05265..1d2e1937 100644 --- a/resources/css/ext.uls-vector.less +++ b/resources/css/ext.uls-vector.less @@ -1,3 +1,18 @@ -.uls-menu { - font-size: 0.875em; // not inherited from `.mw-body-content`, as we insert at `body` +@import 'mediawiki.mixins'; + +// We need higher specificity due to loading order of LESS files and jQuery.ULS +.skin-vector { + .uls-menu { + border-color: #c8ccd1; + .box-shadow( 0 2px 2px 0 rgba( 0, 0, 0, 0.25 ) ); // Overwrite lib/jquery.uls + font-size: 0.875em; // not inherited from `.mw-body-content`, as we insert at `body` + } + + .uls-search { + border-bottom-color: #c8ccd1; + } + + .uls-filtersuggestion { + color: #72777d; + } }