X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Fvideo-miniature.component.scss;h=3658ee3c006608852a77bbf014370b15db5062db;hb=dc8902634864841be7ca483b8e1c0f5afa609c32;hp=80d6c4fdaa9ba366f584805ff336597b350492d3;hpb=0f4905e120e66c5227ca3c57074e3e8554424621;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/video/video-miniature.component.scss b/client/src/app/shared/video/video-miniature.component.scss index 80d6c4fda..3658ee3c0 100644 --- a/client/src/app/shared/video/video-miniature.component.scss +++ b/client/src/app/shared/video/video-miniature.component.scss @@ -2,11 +2,14 @@ @import '_mixins'; @import '_miniature'; +$more-button-width: 41px; +$more-margin-right: 10px; + .video-miniature { width: $video-miniature-width; display: inline-flex; flex-direction: column; - margin-bottom: 30px; + margin-bottom: $video-miniature-margin-bottom; height: 195px; vertical-align: top; @@ -14,7 +17,7 @@ display: flex; .video-miniature-information { - width: 200px; + width: $video-miniature-width - $more-button-width - $more-margin-right; line-height: normal; .video-miniature-name { @@ -61,19 +64,21 @@ .video-actions { margin-top: 3px; - margin-right: 10px; + margin-right: $more-margin-right; + width: $more-button-width; + height: 30px; - /deep/ .dropdown-root:not(.show) { - display: none; + ::ng-deep .dropdown-root:not(.show) { + opacity: 0; } - /deep/ .playlist-dropdown.show + my-action-dropdown .dropdown-root { - display: block; + ::ng-deep .playlist-dropdown.show + my-action-dropdown .dropdown-root { + opacity: 1; } } - &:hover .video-actions /deep/ .dropdown-root { - display: block; + &:hover .video-actions ::ng-deep .dropdown-root { + opacity: 1; } @media screen and (max-width: $small-view) { @@ -85,8 +90,8 @@ margin: 0; top: -3px; - /deep/ .dropdown-root { - display: block !important; + ::ng-deep .dropdown-root { + opacity: 1 !important; } } }