Sidebar width is too narrow in GitHub Diff Previewer. So I wrote this to expand.
Display full filenames in GitHub Diff Previewer by eggplants
Details
Authoreggplants
LicenseMIT
Categorygithub
Created
Updated
Size420 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Display full filenames in GitHub Diff Previewer
@version 20240402.20.20
@namespace userstyles.world/user/eggplants
@description Sidebar width is too narrow in GitHub Diff Previewer. So I wrote this to expand.
@author eggplants
@license MIT
==/UserStyle== */
@-moz-document domain("github.com") {
div.Layout-sidebar {
width: inherit !important;
}
}