Fixed thumbnail size for healpix thumbnails

This commit is contained in:
Henrik Norman 2020-11-21 18:05:41 +01:00
Родитель 979ea89cc2
Коммит e64c5b1bf1
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -775,6 +775,12 @@ body.wwt-webclient-wrapper.mobile {
.vtop();
}
.thumbnail-image {
width: 100%;
height: 45px;
object-fit: cover;
}
.explore-thumbs {
margin-top: 6px;
}

Просмотреть файл

@ -16,7 +16,7 @@
ng-if="item.get_backgroundImageset() != null || item.get_studyImageset() != null"></i>
<i class="fa fa-folder-open-o"
ng-if="item.get_isFolder() && item.get_name() != 'Up Level' && (item.thumb && item.thumb.indexOf('wwtweb.blob.core.windows.net') == -1)"></i>
<img ng-src="{{item.thumb || item.get_thumbnailUrl()}}" alt="Thumbnail of {{item.get_name()}}"/>
<img class="thumbnail-image" ng-src="{{item.thumb || item.get_thumbnailUrl()}}" alt="Thumbnail of {{item.get_name()}}"/>
<label>{{item.get_name()}}</label>
</div>
</div>