diff --git a/README.md b/README.md index 321855e1..064fe55d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The documentation is built by the static-site-generator [Hugo](https://gohugo.io Clone repository: ```shell -git clone --recurse-submodules git@github.com:cedardb/docs.git +git clone git@github.com:cedardb/docs.git ``` Run a web server: diff --git a/assets/css/custom.css b/assets/css/custom.css index 9497146b..82fa0b41 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -48,22 +48,24 @@ article, } @media (min-width: 48rem) { - .sidebar-container { + .hextra-sidebar-container { background: transparent !important; } } -a { - color: var(--cedar-accent); - text-decoration-thickness: 0.08em; - text-underline-offset: 3px; - text-decoration-color: transparent; - transition: text-decoration-color 0.15s ease; -} +@layer base { + a { + color: var(--cedar-accent); + text-decoration-thickness: 0.08em; + text-underline-offset: 3px; + text-decoration-color: transparent; + transition: text-decoration-color 0.15s ease; + } -a:hover, -a:focus-visible { - text-decoration-color: currentColor; + a:hover, + a:focus-visible { + text-decoration-color: currentColor; + } } h1, @@ -72,7 +74,7 @@ h3, h4, h5, h6, -.nav-container, +.hextra-nav-container, .cedar-home__eyebrow, .cedar-home__index, .cedar-home__button { @@ -91,22 +93,22 @@ kbd, } -.nav-container { +.hextra-nav-container { padding: 0; border-bottom: 1px solid var(--cedar-line); background: rgba(255, 255, 255, 0.96); } -.nav-container-blur { +.hextra-nav-container-blur { background: rgba(255, 255, 255, 0.88); } -.dark .nav-container, -.dark .nav-container-blur { +.dark .hextra-nav-container, +.dark .hextra-nav-container-blur { background: rgba(13, 21, 34, 0.96); } -.nav-container nav { +.hextra-nav-container nav { height: 4rem; max-width: var(--cedar-max); } @@ -120,39 +122,39 @@ kbd, color: var(--cedar-accent); } -.search-wrapper button, -.search-wrapper input { +.hextra-search-wrapper button, +.hextra-search-wrapper input { border-color: var(--cedar-line) !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; } -.sidebar-container, -.toc { +.hextra-sidebar-container, +.hextra-toc { backdrop-filter: none; } -.sidebar-container .hextra-scrollbar, +.hextra-sidebar-container .hextra-scrollbar, .hextra-toc > div, .hextra-toc .sticky, -.sidebar-container [data-toggle-animation="show"] { +.hextra-sidebar-container [data-toggle-animation="show"] { background: transparent !important; box-shadow: none !important; border-top-color: var(--cedar-line) !important; } -.sidebar-container a, -.toc a, +.hextra-sidebar-container a, +.hextra-toc a, .content { color: inherit; } -.sidebar-container a { +.hextra-sidebar-container a { border-radius: 0 !important; } -.sidebar-container { +.hextra-sidebar-container { border-right: 1px solid var(--cedar-line); } @@ -165,18 +167,18 @@ kbd, padding: 8px; } -.sidebar-active-item { +.hextra-sidebar-active-item { border-left: 0; box-shadow: inset 2px 0 0 var(--cedar-accent); background: rgba(251, 119, 62, 0.04) !important; } -.dark .sidebar-active-item { +.dark .hextra-sidebar-active-item { background: rgba(251, 119, 62, 0.08) !important; } -.sidebar-container > div, -.toc > div, +.hextra-sidebar-container > div, +.hextra-toc > div, .content pre, .content blockquote, .hextra-card, @@ -801,7 +803,7 @@ dd { } @media (max-width: 767px) { - .nav-container { + .hextra-nav-container { padding-top: 0; } diff --git a/content/clients/tools/psql.md b/content/clients/tools/psql.md index c674feb9..d1a83813 100644 --- a/content/clients/tools/psql.md +++ b/content/clients/tools/psql.md @@ -93,7 +93,7 @@ You can also show a list of all tables in the current database: Most commands also have a more verbose variant with a `+` (e.g., `\d+`), which will show more details like the table size in bytes. For a full list of psql backslash commands, see the -[psql docs]((https://www.postgresql.org/docs/current/app-psql.html)). +[psql docs](https://www.postgresql.org/docs/current/app-psql.html). ## Using psql interactively diff --git a/content/technology/parallelism.md b/content/technology/parallelism.md index 477bda0e..8d07ebfb 100644 --- a/content/technology/parallelism.md +++ b/content/technology/parallelism.md @@ -23,8 +23,8 @@ available hardware resources to a single query, resulting in low overall utiliza