Skip to content
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

Style tables in admonitions #311

Merged
merged 2 commits into from
Mar 27, 2025
Merged
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
50 changes: 49 additions & 1 deletion preview-src/admonitions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,52 @@ Icons that are not part of an admonition block should have no color filter appli
| `LOCAL DATETIME` | {check-mark} | {check-mark} |
| `ZONED DATETIME` | {check-mark} | {check-mark} | {check-mark}
| `DURATION` | `-` | `-` | `-`
|===
|===

== Admonition that contains a code block

[source, shell]
----
docker container exec -u neo4j -it <containerName> /bin/bash
----


[TIP]
====
If working with a Neo4j Docker container, ensure you connect to it with the user `neo4j` before issuing import commands, or you will get permission issues after the import.

[source, shell]
----
docker container exec -u neo4j -it <containerName> /bin/bash
----
====


== Admonition that contains a table?


[TIP]
====
This is an admonition that contains a table.

[options="header", cols="^,^,^,^"]
|===
| Type | Date support | Time support | Time zone support
| `DATE` | {check-mark} | |
| `LOCAL TIME` | | {check-mark} |
| `ZONED TIME` | | {check-mark} | {check-mark}
| `LOCAL DATETIME` | {check-mark} | {check-mark} |
| `ZONED DATETIME` | {check-mark} | {check-mark} | {check-mark}
| `DURATION` | `-` | `-` | `-`
|===

====

== Admonition with a title

.note with title
[NOTE]
====
This is a note with a title.
====

12 changes: 10 additions & 2 deletions src/css/doc.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ body {
}

/* style the icons in admonition blocks only */
.doc .admonitionblock i.fa::before {
.doc .admonitionblock td.icon i.fa::before {
width: 24px;
height: inherit;
background-size: 20px;
Expand Down Expand Up @@ -448,7 +448,6 @@ body {
}

.doc .admonitionblock td .content {
word-wrap: anywhere;
padding: 1rem 1rem 0.75rem;
width: 100%;
}
Expand Down Expand Up @@ -1181,6 +1180,15 @@ body {
border: 0 solid var(--table-border-color);
}

.doc .admonitionblock .tableblock thead {
background: none;
}

.doc .admonitionblock table.tableblock,
.doc .admonitionblock table.tableblock > * > tr > * {
border-color: var(--admonition-table-border-color);
}

.doc table.grid-all > * > tr > * {
border-width: 1px;
}
Expand Down
2 changes: 2 additions & 0 deletions src/css/vars.css
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,8 @@
--warning-border-color: rgba(var(--theme-light-palette-danger-bg-strong));
--warning-background-color: rgba(var(--theme-light-palette-danger-bg-weak));
--mark-background: rgba(var(--theme-light-palette-primary-bg-weak));
--admonition-table-border-color: rgba(var(--colors-neutral-70));
--admonition-table-header-color: rgba(var(--colors-neutral-20));

/* success */
--success-color: rgba(var(--theme-light-palette-success-bg-strong));
Expand Down