Expands product names in search results to stop truncating them at three lines.
I'll likely expand this to other pages in the future.
Authorgeorgedorn
LicenseNo License
Categoryuserstyles
Created
Updated
Size490 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Expands product names in search results to stop truncating them at three lines.
I'll likely expand this to other pages in the future.
/* ==UserStyle==
@name Stop truncating product names
@version 20220421.22.31
@namespace userstyles.world/user/georgedorn
@description Expands product names in search results to stop truncating them at three lines.
I'll likely expand this to other pages in the future.
@author georgedorn
@license No License
==/UserStyle== */
@-moz-document domain("amazon.com") {
h2.a-size-mini {
overflow: visible;
max-height: none;
-webkit-line-clamp: none;
}
}