Skip to content

Commit

Permalink
fix: helm_values table style (HumanSignal#2028)
Browse files Browse the repository at this point in the history
* fix: helm_values table style

* Remove !important
  • Loading branch information
makseq authored Feb 15, 2022
1 parent 20a68ff commit 08db49e
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions docs/source/guide/helm_values.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,28 @@ meta_title: Available Helm values for Label Studio Enterprise Kubernetes deploym
meta_description: For cases when you want to customize your Label Studio Enterprise Kubernetes deployment, review these available Helm values that you can set in your Helm chart.
---

<!-- fix first column for long helm values in tables -->
<!-- Fix for long values in table cells -->
<style>
td:first-child {
max-width: 350px;
}
td:first-child code {
white-space: normal;
word-break: break-word;
margin-left: 0;
padding-left: 3px;
}
td:nth-child(3) {
white-space: normal;
word-break: break-word;
max-width: 130px;
}
td:last-child {
max-width: 150px;
}
td:first-child code {
td:last-child code {
white-space: normal;
word-wrap: break-word;
max-width: 200px;
word-break: break-all;
}
</style>

Expand Down Expand Up @@ -197,7 +210,7 @@ Parameters specific to the `rqworkers` service of your Label Studio Enterprise d

## Deprecated parameters

Deprecated paramters no longer in use or supported by Label Studio Enterprise Helm charts.
Deprecated parameters no longer in use or supported by Label Studio Enterprise Helm charts.

| Key | Type | Default Value | Description |
|-----------------------------------|--------|---------------|---------------------------|
Expand Down

0 comments on commit 08db49e

Please sign in to comment.