The google cloud log viewer collapses consecutive whitespace. This makes aligned tables in the log output completely unreadable.
This small userstyle fixes this issue.
Authorolejorgenb
LicenseNo License
Categorycloud.google.com
Created
Updated
Size531 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
The google cloud log viewer collapses consecutive whitespace. This makes aligned tables in the log output completely unreadable.
This small userstyle fixes this issue.
/* ==UserStyle==
@name GCP non-collapsed whitespace in log view
@version 20210915.13.08
@namespace userstyles.world/user/olejorgenb
@description The google cloud log viewer collapses consecutive whitespace. This makes aligned tables in the log output completely unreadable.
This small userstyle fixes this issue.
@author olejorgenb
@license No License
==/UserStyle== */
@-moz-document domain("console.cloud.google.com") {
.log-entry-view .summary.short-summary {
white-space: pre !important;
}
}