implementatiion updates
This commit is contained in:
parent
fec205839c
commit
93f4d957d8
3 changed files with 15 additions and 8 deletions
|
@ -5,19 +5,19 @@ color : blue-1
|
||||||
---
|
---
|
||||||
|
|
||||||
{{< grid >}}
|
{{< grid >}}
|
||||||
{{< implementation type="server client" devs="IndieHosters" link="https://indiehosters.net/">}}
|
{{< implementation type="server client">}}
|
||||||
#### Keycloak
|
#### Keycloak
|
||||||
{{< /implementation >}}
|
{{< /implementation >}}
|
||||||
|
|
||||||
{{< implementation type="server" devs="Greenhost" link="https://indiehosters.net/">}}
|
{{< implementation type="server" devs="Greenhost">}}
|
||||||
#### Stackspin
|
#### Stackspin
|
||||||
{{< /implementation >}}
|
{{< /implementation >}}
|
||||||
|
|
||||||
{{< implementation type="client" devs="IndieHosters" link="https://indiehosters.net/">}}
|
{{< implementation type="client" devs="IndieHosters">}}
|
||||||
#### Element
|
#### Element
|
||||||
{{< /implementation >}}
|
{{< /implementation >}}
|
||||||
|
|
||||||
{{< implementation type="client" devs="IndieHosters" link="https://indiehosters.net/">}}
|
{{< implementation type="client" devs="IndieHosters" link="https://scim2-cli.readthedocs.io/en/latest/#">}}
|
||||||
#### Cli
|
#### Cli
|
||||||
{{< /implementation >}}
|
{{< /implementation >}}
|
||||||
{{< /grid >}}
|
{{< /grid >}}
|
|
@ -6,7 +6,7 @@
|
||||||
<p>
|
<p>
|
||||||
{{ $types := split (.Get "type") " " }}
|
{{ $types := split (.Get "type") " " }}
|
||||||
{{ range $types }}
|
{{ range $types }}
|
||||||
<span class="type {{ . }}">{{ . }}</span>
|
<span class="type {{ . }} marked-color">{{ . }}</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -19,6 +19,8 @@
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
{{ if .Get "link" }}
|
{{ if .Get "link" }}
|
||||||
<a class="btn lv1" target="_blank" href="{{ .Get "link" }}">specs ↗</a>
|
<a class="btn lv1" target="_blank" href="{{ .Get "link" }}">specs ↗</a>
|
||||||
|
{{ else }}
|
||||||
|
<p class="btn draft marked-color"><em>à venir...</em></p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -135,6 +135,10 @@ mark{
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.marked-color{
|
||||||
|
color: var(--marked-color);
|
||||||
|
}
|
||||||
|
|
||||||
mark strong{
|
mark strong{
|
||||||
font-weight: 1000;
|
font-weight: 1000;
|
||||||
color: var(--marked-color);
|
color: var(--marked-color);
|
||||||
|
@ -563,6 +567,10 @@ g.word{
|
||||||
top: 1em;
|
top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.implementation .draft{
|
||||||
|
margin-left: -1em;
|
||||||
|
}
|
||||||
|
|
||||||
/* ACTIVABLE TRIGGERS */
|
/* ACTIVABLE TRIGGERS */
|
||||||
/* Switch-boxes */
|
/* Switch-boxes */
|
||||||
#switch-box-trigger{
|
#switch-box-trigger{
|
||||||
|
@ -591,19 +599,16 @@ g.word{
|
||||||
font-size: .75em;
|
font-size: .75em;
|
||||||
}
|
}
|
||||||
.server{
|
.server{
|
||||||
color: var(--blue-2);
|
|
||||||
--marked-color: var(--blue-2);
|
--marked-color: var(--blue-2);
|
||||||
--marked-color-dark:var(--blue-2-dark);
|
--marked-color-dark:var(--blue-2-dark);
|
||||||
}
|
}
|
||||||
|
|
||||||
.client{
|
.client{
|
||||||
color: var(--yellow);
|
|
||||||
--marked-color: var(--yellow);
|
--marked-color: var(--yellow);
|
||||||
--marked-color-dark:var(--yellow-dark);
|
--marked-color-dark:var(--yellow-dark);
|
||||||
}
|
}
|
||||||
|
|
||||||
.server.client{
|
.server.client{
|
||||||
color: var(--blue-1);
|
|
||||||
--marked-color: var(--blue-1);
|
--marked-color: var(--blue-1);
|
||||||
--marked-color-dark:var(--blue-1-dark);
|
--marked-color-dark:var(--blue-1-dark);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue