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

Small css changes for docs web site #1663

Merged
merged 2 commits into from
Sep 9, 2023
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
3 changes: 3 additions & 0 deletions site/content/docs/howto/configure-auth-for-webapps.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ authentication. There are several typical combinations of these settings:
authenticate into Kubernetes clusters and perform actions on behalf of the users (using the user's identity):

```yaml
spec:
allowedGrantTypes:
- authorization_code
- refresh_token
Expand All @@ -122,6 +123,7 @@ authentication. There are several typical combinations of these settings:
Kubernetes clusters.

```yaml
spec:
allowedGrantTypes:
- authorization_code
- refresh_token
Expand All @@ -138,6 +140,7 @@ authentication. There are several typical combinations of these settings:
group memberships of the authenticated users, and cannot perform actions on Kubernetes clusters.

```yaml
spec:
allowedGrantTypes:
- authorization_code
- refresh_token
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions site/themes/pinniped/assets/scss/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ li {
display: inline;
padding-right: 25px;
font-size: 14px;
line-height: 1.7em;
line-height: 1.6em;
&:last-of-type {
padding-right: 0px;
}
Expand Down Expand Up @@ -239,4 +239,4 @@ button {
url("/fonts/Metropolis-SemiBoldItalic.woff") format("woff");
font-weight: normal;
font-style: normal;
}
}
10 changes: 9 additions & 1 deletion site/themes/pinniped/assets/scss/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,16 @@ code {
}
pre code {
background: none;
font-size: 100%;
font-size: 14px;
line-height: 1.6em;
}
pre.chroma {
padding: 10px;
code {
padding-left: 0px;
}
}

.highlight pre codesite/sidebar/reorganize {
font-size: 100%;
}
Expand Down