Removes the play button from thumbnails, and makes the whole thumbnail clickable.
this should work with other styles
Authorfoopoa
LicenseNo License
Categorypointercrate.com
Created
Updated
Code size734 B
Code checksumf70737fe
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Removes the play button from thumbnails, and makes the whole thumbnail clickable.
this should work with other styles
/* ==UserStyle==
@name Pointercrate Clean Thumbnails
@version 0.1
@namespace pointercratecleanthumbnails
@description Removes the play button from thumbnails, and makes the whole thumbnail clickable.
@author foopoa
@license No License
==/UserStyle== */
@-moz-document domain("pointercrate.com") {
/*Clean Thumbnails*/
/* This removes the play button on the thumbnails and instead makes thumbnails themselves clickable, thats it */
.play {
border-radius: 0;
opacity: 0;
height: 100%;
width: 100%;
}
.play::before {
background: none;
border-radius: 0;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.play::after {
border-style: none;
}
}