mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Fix diagram colours (#1815)
This commit is contained in:
parent
cc35654388
commit
9f886b85dd
|
@ -13,5 +13,6 @@ title = "Kanidm Administration"
|
|||
edit-url-template = "https://github.com/kanidm/kanidm/edit/master/book/{path}"
|
||||
git-repository-url = "https://github.com/kanidm/kanidm"
|
||||
git-repository-icon = "fa-github"
|
||||
additional-css = ["theme.css"]
|
||||
|
||||
[preprocessor.template]
|
||||
|
|
BIN
book/src/images/KanidmUseCases-Dark.png
Normal file
BIN
book/src/images/KanidmUseCases-Dark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 426 KiB |
BIN
book/src/images/KanidmUseCases-Light.png
Normal file
BIN
book/src/images/KanidmUseCases-Light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 399 KiB |
150
book/src/images/KanidmUseCases.drawio
Normal file
150
book/src/images/KanidmUseCases.drawio
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 69 KiB |
|
@ -36,7 +36,8 @@ they require.
|
|||
Kanidm acts as a central authority of accounts in your organisation and allows each account to
|
||||
associate many devices and credentials with different privileges. An example of how this looks:
|
||||
|
||||
<img src="images/KanidmUseCases.png" alt="Kanidm Use Case Diagram" />
|
||||
<img src="images/KanidmUseCases-Light.png" alt="Kanidm Use Case Diagram" class="light-mode-only" />
|
||||
<img src="images/KanidmUseCases-Dark.png" alt="Kanidm Use Case Diagram" class="dark-mode-only" />
|
||||
|
||||
A key design goal is that you authenticate with your device in some manner, and then your device
|
||||
will continue to authenticate you in the future. Each of these different types of credentials, from
|
||||
|
|
11
book/theme.css
Normal file
11
book/theme.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
@media (prefers-color-scheme: dark) {
|
||||
.light-mode-only {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
.dark-mode-only {
|
||||
display: none;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue