Makes the Terraform Cloud "Variables" view not wrap the variable name column.
terraform-cloud-vars by r35krag0th
Details
Authorr35krag0th
LicenseNo License
Categoryterraform
Created
Updated
Size519 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 terraform-cloud-vars
@version 20220112.18.06
@namespace userstyles.world/user/r35krag0th
@description Makes the Terraform Cloud "Variables" view not wrap the variable name column.
@author r35krag0th
@license No License
==/UserStyle== */
@-moz-document regexp("https://app.terraform.io/app/[A-Za-z]+/workspaces/.*/variables") {
/* Fix Terraform Cloud's "Variables" view to not overly wrap the first table column */
.editable-table thead th {
min-width: 200px;
}
}