Files
mediawiki-extensions-Univer…/resources/css/ext.uls.pt.less
Santhosh Thottingal fd7b9ec652 Update jquery.uls to d122f37
* Do not group search results by region
* Replace ULS trigger icon with monochromatic one
* Custom no-results message support
* Upgrade jquery in the example to 3.2.1
* Use .siblings to locate the suggestions, clear elements for efficiency
* Removing assigned ids to elements that are not guaranteed to be unique
* Use eslint and stylelint, fix all errors

Update the language icon in ext.uls.pt module with new monochromatic one
Also use custom style for monobook skin.

Bug: T182539
Bug: T175769
Change-Id: I7341064cd0de367d933048c4800f951568747d11
2018-01-30 15:10:01 +05:30

45 lines
1.3 KiB
Plaintext

@import 'mediawiki.mixins';
/* stylelint-disable selector-max-id */
/*
* The trigger can be placed in the personal toolbar near the username
* or near the interlanguage links.
*/
/*
* A hack to load the icon before the rest of the module is lazy-loaded.
* Copied from jquery.uls.css with the path changed.
*/
.uls-trigger {
background: transparent no-repeat scroll left center;
.background-image-svg( '../../lib/jquery.uls/images/language.svg', '../../lib/jquery.uls/images/language.png' );
// Let the SVG image fit without cropping or stretch
background-size: contain;
padding-left: 24px;
}
#pt-uls a.uls-trigger {
padding-left: 24px;
// Let the SVG image fit without cropping or stretch
background-size: contain;
/* Fix alignment in vector: https://phabricator.wikimedia.org/T61239 */
line-height: 1;
}
/* Opera for some inexplicable reason confuses right and left padding with */
/* RTL text direction here (bug T47142). x:-o-prefocus won't match anything, */
/* but will make other browsers ignore this rule. */
/* stylelint-disable selector-type-no-unknown */
x:-o-prefocus,
body.rtl li#pt-uls {
/* @noflip */
direction: ltr;
}
/* stylelint-enable selector-type-no-unknown */
/* Don't show it to users who disabled JS */
.client-nojs #pt-uls {
display: none;
}