Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Sep 13, 2024
1 parent eaa67b9 commit fe1996c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/YouPHPFlix2/view/row.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ class="tile__img <?php echo $cssClass; ?> thumbsJPG img img-responsive carousel-
<?php if (!empty($imgGif)) { ?>
<img style="position: absolute; top: 0; display: none;" src="<?php echo ImagesPlaceHolders::getImageLandscape(ImagesPlaceHolders::$RETURN_URL); ?>" alt="<?php echo $value['title']; ?>" id="tile__img thumbsGIF<?php echo $value['id']; ?>" class="thumbsGIF img-responsive img carousel-cell-image" data-flickity-lazyload="<?php echo $imgGif; ?>" />
<?php } ?>
<div style="position: absolute; right: 5px; top: 0;">
<?php echo Video::generatePlaylistButtons($value['id'], 'btn btn-dark btn-xs', 'background-color: #11111199;'); ?>
<div style="position: absolute; right: 5px; top: 0;" class="highlitedOnOver">
<?php echo Video::generatePlaylistButtons($value['id'], 'btn btn-dark btn-xs', 'background-color: #111111AA;'); ?>
</div>
<?php
if ($advancedCustom->paidOnlyShowLabels && $obj->paidOnlyLabelOverPoster) {
Expand Down
11 changes: 11 additions & 0 deletions view/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2002,6 +2002,17 @@ button.btn-sm.hamburger svg {
display: block;
}

.carousel-cell .highlitedOnOver{
opacity: 0.7;
filter: alpha(opacity=70);
}

.carousel-cell:hover .highlitedOnOver{
opacity: 1;
filter: alpha(opacity=100);
}


body.ypt-is-compressed #videoCol {
width: 100%;
overflow-x: hidden;
Expand Down

0 comments on commit fe1996c

Please sign in to comment.