Skip to content

Github Actions Log width by baszoetekouw

Details

Authorbaszoetekouw

LicenseNo License

Categorygithub

Created

Updated

Size823 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

xx

Notes

xx

Source code

/* ==UserStyle==
@name           GithubActionsLogWidth
@namespace      github.com
@version        1.0.0
@description    No line wrap in github action logs
@author         Me
==/UserStyle== */

@-moz-document domain("github.com") {
  /* expand Github Action logs to fit entire content without wrapping 
   ie scroll instead of wrapping long lines*/

CheckStep-line .CheckStep-line-content {
    white-space: pre-wrap;
    white-space: pre;
}

.js-checks-log-display-container {
    width: max-content;
}


check-step {
    width: fit-content;
}
check-steps {
    width: fit-content;
}

.js-full-logs-container {
    width: fit-content;
}

.js-check-steps {
    width: fit-content;
    min-width: 100%;
}

.js-checks-log-display {
    overflow: scroll;   
    width: fit-content;
}
}

Reviews

No reviews yet.