Skip to content

github.com - clean by sonho

Details

Authorsonho

LicenseNo License

Categorygithub.com

Created

Updated

Size480 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Github clean / mobile

Mainly intended on fixing the truncation on files in releases making it impossible to read the file.

Notes

Userstyle doesn't have notes.

Source code

/* ==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;
}
}

Reviews

No reviews yet.