[Common] dimension picker didn't render correctly

This commit is contained in:
Maxim Kadushkin 2017-08-01 15:17:01 +03:00
parent 8513705b1e
commit 75626ea68b
2 changed files with 6 additions and 6 deletions

View file

@ -130,9 +130,9 @@
/**/ /**/
.background-ximage(@image, @image2x, @w: auto, @h: auto) { .background-ximage(@image, @image2x, @w: auto, @h: auto, @repeat: no-repeat) {
background-image: data-uri(%("%s",@image)); background-image: data-uri(%("%s",@image));
background-repeat: no-repeat; background-repeat: @repeat;
@media @media
only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2),

View file

@ -20,13 +20,13 @@
} }
.dimension-picker-unhighlighted { .dimension-picker-unhighlighted {
background: transparent repeat scroll 0 0; //background: transparent repeat scroll 0 0;
.background-ximage('@{app-image-path}/controls/dimension-picker/dimension-unhighlighted.png', '@{app-image-path}/controls/dimension-picker/dimension-unhighlighted@2x.png', 18px); .background-ximage('@{app-image-path}/controls/dimension-picker/dimension-unhighlighted.png', '@{app-image-path}/controls/dimension-picker/dimension-unhighlighted@2x.png', 18px, auto, repeat);
} }
.dimension-picker div.dimension-picker-highlighted { .dimension-picker div.dimension-picker-highlighted {
background: transparent repeat scroll 0 0; //background: transparent repeat scroll 0 0;
.background-ximage('@{app-image-path}/controls/dimension-picker/dimension-highlighted.png', '@{app-image-path}/controls/dimension-picker/dimension-highlighted@2x.png', 18px); .background-ximage('@{app-image-path}/controls/dimension-picker/dimension-highlighted.png', '@{app-image-path}/controls/dimension-picker/dimension-highlighted@2x.png', 18px, auto, repeat);
} }
.dimension-picker-status { .dimension-picker-status {