K8S Doc with word wrap
K8S Doc with word wrap by tsangh
Details
Authortsangh
LicenseNo License
Categoryhttps://kubernetes.io/docs/
Created
Updated
Size539 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 K8S Doc with word wrap
@namespace github.com/openstyles/stylus
@version 1.0.0
@description K8S Doc with word wrap
@author Eric Tsang
==/UserStyle== */
@-moz-document regexp("^https://kubernetes\\.io/docs/.*") {
.highlight, pre, code {
overflow-wrap: break-word !important;; /* Enable word wrapping */
word-wrap: break-word !important;; /* Legacy support */
white-space: normal !important;; /* Ensure text wraps normally */
}
}