Limit height to 100 px with scroll
IndieGala Freebies - Limit Comments Size by kissaki
Details
Authorkissaki
LicenseAGPL-3.0-or-later
Categoryindiegala.com
Created
Updated
Size418 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Comments can be excessively big. Limit the height and use scroll on overflow to retain an overview.
Source code
/* ==UserStyle==
@name IndieGala Freebies - Limit Developer Comments Size
@description Limit height to 100 px with scroll
@version 1.0
@namespace kcode.de
@author Jan Klass
@license AGPL-3.0-or-later
==/UserStyle== */
@-moz-document domain("freebies.indiegala.com") {
.developer-comments {
resize: both;
height: 100px;
overflow: scroll;
}
}