mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-07-07 16:41:39 +02:00
fix(collections): fixed css issues of movie collections
This commit is contained in:
@@ -80,7 +80,7 @@
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
width: ~"calc(100% + 1px)";
|
||||
transition-property: transform, opacity;
|
||||
transition-duration: 1s;
|
||||
transition-timing-function: ease;
|
||||
@@ -96,7 +96,6 @@
|
||||
padding: 20px 10px;
|
||||
background-color: #333;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
border-radius: 8px;
|
||||
.name {
|
||||
margin-bottom: 2px;
|
||||
font-size: 1.6em;
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div ng-repeat="m in vm.pagedItems">
|
||||
<div data-ng-if="$index != 0 && $index % 2 == 0" class="clearfix visible-sm-block"></div>
|
||||
<div data-ng-if="$index != 0 && $index % 3 == 0" class="clearfix visible-md-block visible-lg-block"></div>
|
||||
<div class="col-sm-6 col-md-4">
|
||||
<div class="collection-items">
|
||||
<div class="collection-items">
|
||||
<div ng-repeat="m in vm.pagedItems">
|
||||
<div data-ng-if="$index != 0 && $index % 2 == 0" class="clearfix visible-sm-block"></div>
|
||||
<div data-ng-if="$index != 0 && $index % 3 == 0" class="clearfix visible-md-block visible-lg-block"></div>
|
||||
<div class="col-sm-6 col-md-4">
|
||||
<a ui-sref="collections.view({ collectionId: m._id })">
|
||||
<div class="collection-item">
|
||||
<img ng-src="{{vm.tmdbConfig.backdropImgBaseUrl_780 + m.backdrop_path}}">
|
||||
|
||||
Reference in New Issue
Block a user