Github clean / mobile
Mainly intended on fixing the truncation on files in releases making it impossible to read the file.
Authorsonho
LicenseNo License
Categorygithub.com
Created
Updated
Size480 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Github clean / mobile
Mainly intended on fixing the truncation on files in releases making it impossible to read the file.
/* ==UserStyle==
@name github.com - clean
@version 20240726.19.47
@namespace ?
==/UserStyle== */
@-moz-document domain("github.com") {
/* Prevents truncation on small width, makes it impossible to read on mobile */
.Box-row .Truncate-text {
overflow: visible;
white-space: normal;
}
.react-directory-truncate {
overflow: visible;
white-space: normal;
-webkit-line-clamp: 2;
/* number of lines to show */
line-clamp: 2;
-webkit-box-orient: vertical;
}
}