Skip to content

docs: create table update syntax (part 1) #32413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: docs-prep-source-versioning
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions doc/user/assets/sass/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -749,9 +749,7 @@ p+p {
padding: 0;
border-bottom: 1px solid #9c86e0;
display: flex;
overflow-x: scroll;

padding-bottom: var(--xx-small);
overflow-x: auto;
Copy link
Contributor Author

@kay-kim kay-kim May 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some housecleaning for tabs. Can ignore.


@media(max-width: 850px) {}

Expand All @@ -760,13 +758,15 @@ p+p {
margin: 0 rem(0.1);
padding: 0;
position: relative;
bottom: -1px;

background: var(--gray-lightest);
border-radius: 8px 8px 0 0;


a {
color: var(--body);
display: block;
padding: rem(0.8) rem(1.6);
padding: rem(0.8) rem(1.5);
font-size: rem(1.4);
text-decoration: none;
font-weight: 500;
Expand All @@ -787,7 +787,6 @@ p+p {

&.active {
background: var(--bg);
border-radius: 2px 2px 0 0;
border: 1px solid #9c86e0;
border-bottom-color: var(--bg);

Expand Down
12 changes: 12 additions & 0 deletions doc/user/assets/sass/_highlight.scss
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,15 @@
.chroma .cpf {
color: #633820;
}

body.dark .content .chroma code.language-hc {
.n,
.o,
.p {
color: var(--orange);
}
}

body.dark .content .chroma .hl {
background-color: #292925;
}
5 changes: 5 additions & 0 deletions doc/user/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ weight = 30
# allow <a name="link-target">, the old syntax no longer works
unsafe = true

[markup]
[markup.highlight]
noClasses = false
style = "monokai"

[[deployment.targets]]
name = "production"
url = "s3://materialize-website?region=us-east-1"
Expand Down
Loading