Compare commits

...

7 Commits

Author SHA1 Message Date
Simon 49dfca8c03
update base image 2024-04-19 19:13:44 +02:00
lamusmaser a9ae0e3811
Merge pull request #32 from lamusmaser/batch-editing
Fix table references in stylesheet.
2024-04-19 08:37:00 -06:00
lamusmaser 787ad74572 Fix table references in stylesheet. 2024-04-19 08:36:29 -06:00
lamusmaser 91ec12b499
Merge pull request #31 from lamusmaser/batch-editing
Table style editing
2024-04-19 08:32:17 -06:00
lamusmaser 4eb5b4f4af Add styling to tables. 2024-04-19 08:31:22 -06:00
lamusmaser 760e83320c Fix right angle bracket. 2024-04-19 07:38:20 -06:00
lamusmaser e31efec7b1 Fix brackets around question 2024-04-19 07:36:31 -06:00
3 changed files with 16 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# build the docs and load static files into nginx
FROM python:3.11.3-slim-bullseye AS builder
FROM python:3.11.8-slim-bookworm AS builder
ENV PATH=/root/.local/bin:$PATH
RUN apt-get update -y && apt-get install -y libcairo2

View File

@ -40,7 +40,7 @@ Docker is the only supported installation method. If you don't have any experien
## How do I install this on Windows?
The only supported methodology is through Docker on Windows. We don't currently have installation instructions provided, however it has been reported that some users have been successful in getting it to work with modification of the base `docker-compose.yml`. Try following the [Docker Compose](installation/docker-compose.md) instructions.
## Where is the .exe/.rpm/.pkg/.msi/<insert installer here>?
## Where is the .exe/.rpm/.pkg/.msi/&lt;insert installer here&gt;?
As noted [here](faq.md#how-do-i-install-this-natively), this project is largely focused on container-based applications. We are not looking to support cross-platform for a small user base. It is not on our roadmap to support any additional installation types or be included as part of additional installation package manager solutions. However, this is an open source project and we won't stop the community from providing those packages. If you do decide to do so, please contribute to our installation instructions and point to your created resources. Pay attention to any licensing requirements for dependencies.
## How do I finetune Elasticsearch?

View File

@ -40,6 +40,19 @@ footer {
border-color: var(--accent-font-light);
}
.md-typeset table::not {
border-color: .075rem solid #448aff;
border-radius: 0.2rem;
}
.md-typeset tr::hover {
background-color: var(--md-admonition-bg-color);
}
.md-typeset td::not {
border-top: .05rem solid white;
}
.highlight .nv {
color: var(--highlight-error-light);
}
@ -65,6 +78,7 @@ footer {
--md-code-hl-number-color: var(--highlight-error-light);
--md-code-hl-operator-color: var(--highlight-error);
--md-code-nv-color: var(--highlight-error);
--md-typeset-table-color: var(--main-font);
}
:root {