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
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
.uls-trigger {
|
||||
background: url('../images/icon-language.png') no-repeat left center;
|
||||
background: url( ../images/language.png ) no-repeat left center;
|
||||
/* @embed */
|
||||
background-image: linear-gradient(transparent, transparent), url('../images/icon-language.svg');
|
||||
padding-left: 30px;
|
||||
background-image: linear-gradient( transparent, transparent ), url( ../images/language.svg );
|
||||
padding-left: 24px;
|
||||
}
|
||||
|
||||
.uls-menu {
|
||||
@@ -12,10 +12,10 @@
|
||||
margin-top: 1px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ccc;
|
||||
border-color: rgba(0, 0, 0, 0.2);
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba( 0, 0, 0, 0.2 );
|
||||
-webkit-box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.2 );
|
||||
-moz-box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.2 );
|
||||
box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.2 );
|
||||
-webkit-background-clip: padding-box;
|
||||
-moz-background-clip: padding;
|
||||
background-clip: padding-box;
|
||||
@@ -65,9 +65,9 @@
|
||||
}
|
||||
|
||||
.uls-search-label {
|
||||
background: url('../images/search.png') no-repeat center center;
|
||||
background: url( ../images/search.png ) no-repeat center center;
|
||||
/* @embed */
|
||||
background-image: linear-gradient(transparent, transparent), url('../images/search.svg');
|
||||
background-image: linear-gradient( transparent, transparent ), url( ../images/search.svg );
|
||||
background-size: 20px;
|
||||
height: 32px;
|
||||
width: 44px;
|
||||
@@ -88,7 +88,7 @@
|
||||
width: 100%;
|
||||
/* For the custom clear (X) icon */
|
||||
padding: 6px 25px 6px 0;
|
||||
outline: none;
|
||||
outline: 0;
|
||||
border: 0;
|
||||
display: block;
|
||||
position: absolute;
|
||||
@@ -110,9 +110,9 @@
|
||||
}
|
||||
|
||||
.uls-languagefilter-clear {
|
||||
background: url('../images/clear.png') no-repeat left center;
|
||||
background: url( ../images/clear.png ) no-repeat left center;
|
||||
/* @embed */
|
||||
background-image: linear-gradient(transparent, transparent), url('../images/clear.svg');
|
||||
background-image: linear-gradient( transparent, transparent ), url( ../images/clear.svg );
|
||||
background-size: 15px;
|
||||
cursor: pointer;
|
||||
height: 15px;
|
||||
|
||||
Reference in New Issue
Block a user