Skip to content

Commit

Permalink
Merge branch 'current' into dbeatty/docs-issue-5548
Browse files Browse the repository at this point in the history
  • Loading branch information
runleonarun authored Nov 14, 2024
2 parents 2dfa84e + 25c95dd commit f63bd29
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
2 changes: 2 additions & 0 deletions website/docs/docs/deploy/job-notifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ You can receive email alerts about jobs by configuring the dbt Cloud email notif
You can receive Slack alerts about jobs by setting up the Slack integration and then configuring the dbt Cloud Slack notification settings. dbt Cloud integrates with Slack via OAuth to ensure secure authentication.

:::note
Virtual Private Cloud (VPC) admins must [contact support](mailto:support@getdbt.com) to complete the Slack integration.

If there has been a change in user roles or Slack permissions where you no longer have access to edit a configured Slack channel, please [contact support](mailto:support@getdbt.com) for assistance.
:::

Expand Down
8 changes: 4 additions & 4 deletions website/docs/reference/snapshot-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ snapshots:
[enabled](/reference/resource-configs/enabled): true | false
[tags](/reference/resource-configs/tags): <string> | [<string>]
[alias](/reference/resource-configs/alias): <string>
[pre-hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[post-hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[pre_hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[post_hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[persist_docs](/reference/resource-configs/persist_docs): {<dict>}
[grants](/reference/resource-configs/grants): {<dictionary>}
```
Expand All @@ -221,8 +221,8 @@ snapshots:
[enabled](/reference/resource-configs/enabled): true | false
[tags](/reference/resource-configs/tags): <string> | [<string>]
[alias](/reference/resource-configs/alias): <string>
[pre-hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[post-hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[pre_hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[post_hook](/reference/resource-configs/pre-hook-post-hook): <sql-statement> | [<sql-statement>]
[persist_docs](/reference/resource-configs/persist_docs): {<dict>}
[grants](/reference/resource-configs/grants): {<dictionary>}
```
Expand Down
32 changes: 32 additions & 0 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -2112,3 +2112,35 @@ h2.anchor.clicked a.hash-link:before {
flex-direction: column;
}
}

.markdown table th,
.markdown table td {
padding: 8px;
border: 1px solid var(--table-border-color);
word-wrap: break-word;
white-space: normal;
text-align: left;
}

table th {
background-color: #ED7254; /* Table header background color */
}

:root {
--table-border-color: #000000; /* Light mode table border color */
}

/* Dark mode border */
[data-theme="dark"] {
--table-border-color: #ddd; /* Dark mode table border color */
}
table th {
color: #ffffff; /* White text on lighter background */
font-weight: bold;
}

/* Dark mode table header text */
[data-theme='dark'] table th {
color: #000000; /* Black text on darker background */
font-weight: bold;
}

0 comments on commit f63bd29

Please sign in to comment.