GitHub Code Wrap by stylishthemes
Imported from https://raw.githubusercontent.com/StylishThemes/GitHub-code-wrap/master/github-code-wrap.user.css
Details
Authorstylishthemes
LicenseCC-BY-SA-4.0
Created atApril 3, 2021 00:40
Updated atApril 3, 2021 00:40
Applies togithub
Statistics
Learn how we calculate statistics in the FAQ.
Total views347
Total installs482
Weekly installs12
Description
Userstyle to wrap long code lines on GitHub
Notes
Userstyle doesn't have notes.History
Daily snapshots of style statistics.
Source code
/* ==UserStyle==
@name GitHub Code Wrap
@version 1.0.10
@description Userstyle to wrap long code lines on GitHub
@namespace StylishThemes
@author StylishThemes
@homepageURL https://github.com/StylishThemes/GitHub-code-wrap
@supportURL https://github.com/StylishThemes/GitHub-code-wrap/issues
@updateURL https://raw.githubusercontent.com/StylishThemes/GitHub-code-wrap/master/github-code-wrap.user.css
@license CC-BY-SA-4.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain("github.com"), domain("gist.github.com") {
.blob-code-inner, .markdown-body pre > code, .markdown-body .highlight > pre {
white-space: pre-wrap !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
}
/* GitHub Bug: Enable wrapping of long code lines */
body:not(.nowrap) .blob-code-inner,
body:not(.nowrap) .markdown-body pre > code,
body:not(.nowrap) .markdown-body .highlight > pre {
white-space: pre-wrap !important;
word-break: break-all !important;
overflow-wrap: break-word !important;
display: block !important;
}
body:not(.nowrap) td.blob-code-inner {
display: table-cell !important;
}
}