Remove @embed where it needlesslay delays the page load
>>! Performance Inspector
> Source: ext.uls.common
> Used selectors: 0.00% (0 of 10)
> Used embeds: 0.00% (0 of 1)
> ----
> .uls-icon-back {
> background-image: .., url("data:image/svg+xml..
It seems the entire module isn't used, but that can be fixed
separately. The icon is used by ext.uls.inputsettings and
ext.uls.displaysettings as part of a click-triggered dialog,
which means it can never appear on a page directly.
Bug: T121730
Change-Id: I36831beeb764e6893c331b20b90102a5ceb0d21a
This commit is contained in:
@@ -38,7 +38,6 @@
|
|||||||
.uls-icon-back {
|
.uls-icon-back {
|
||||||
background: transparent url( ../images/back-grey-ltr.png ) no-repeat scroll center center;
|
background: transparent url( ../images/back-grey-ltr.png ) no-repeat scroll center center;
|
||||||
background-image: -webkit-linear-gradient( transparent, transparent ), url( ../images/back-grey-ltr.svg );
|
background-image: -webkit-linear-gradient( transparent, transparent ), url( ../images/back-grey-ltr.svg );
|
||||||
/* @embed */
|
|
||||||
background-image: linear-gradient( transparent, transparent ), url( ../images/back-grey-ltr.svg );
|
background-image: linear-gradient( transparent, transparent ), url( ../images/back-grey-ltr.svg );
|
||||||
background-size: 28px;
|
background-size: 28px;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
|
|||||||
Reference in New Issue
Block a user