Skip to content

Commit

Permalink
Merge pull request #4512 from DonOmalVindula/fix/side-panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ashensw authored Mar 2, 2024
2 parents 27f6c7f + cd93303 commit 4f5b6b3
Show file tree
Hide file tree
Showing 15 changed files with 312 additions and 33 deletions.
3 changes: 3 additions & 0 deletions en/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,12 @@ extra:
source_link: https://github.com/manfredsteyer/angular-oauth2-oidc
- name: Next Auth
icon: assets/img/logo/nextjs-logo.svg
dark_icon: assets/img/logo/nextjs-logo-dark.svg
description: A library for implementing OAuth2 and OIDC in NextJS applications
source_link: https://github.com/nextauthjs/next-auth
- name: Auth Node SDK
icon: assets/img/logo/expressjs-logo.svg
dark_icon: assets/img/logo/expressjs-logo-dark.svg
description: An SDK to integrate {{ config.extra.product_name }} into JS/TS-based frameworks such as ExpressJS
source_link: https://github.com/asgardeo/asgardeo-auth-node-sdk
- name: Tomcat OIDC Agent
Expand Down Expand Up @@ -152,6 +154,7 @@ extra:
source_link: https://github.com/openid/AppAuth-Android
- name: AppAuth iOS
icon: assets/img/logo/apple-idp-illustration.svg
dark_icon: assets/img/logo/apple-logo-dark.svg
description: A client SDK to integrate OAuth2 and OIDC providers into iOS applications
source_link: https://github.com/openid/AppAuth-iOS
redoc_theme: '{
Expand Down
26 changes: 26 additions & 0 deletions en/identity-server/7.0.0/docs/assets/img/logo/apple-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions en/identity-server/7.0.0/docs/assets/img/logo/nextjs-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 25 additions & 3 deletions en/identity-server/7.0.0/docs/assets/img/logo/nextjs-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions en/identity-server/next/docs/assets/img/logo/apple-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions en/identity-server/next/docs/assets/img/logo/nextjs-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 26 additions & 4 deletions en/identity-server/next/docs/assets/img/logo/nextjs-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 48 additions & 1 deletion en/theme/material/assets/css/integrations.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,51 @@
box-shadow: inset 0px 0px 0px 1px #4e4e4e;
}

.flex-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.flex-grid .integration-card {
flex: 0 1 calc(33.33% - 20px);
display: flex;
flex-direction: column;
align-items: flex-start;
}

.integration-card-icon {
height: 50px !important;
}

.flex-grid .integration-card-header {
font-weight: 500;
}

.flex-grid .integration-card-description {
font-size: 0.6rem;
margin: 0px;
}

.integration-card-source-links {
display: flex;
flex-wrap: wrap;
align-content: flex-end;
margin-top: 20px;
}

@media (max-width: 768px) {
.flex-grid .integration-card {
flex: 0 1 calc(50% - 20px); /* On smaller screens, adjust so 2 cards fit per row */
}
}

@media (max-width: 480px) {
.flex-grid .integration-card {
flex: 0 1 100%; /* On very small screens, adjust so 1 card fits per row */
}
}

.integrations-list-item {
background-color: rgb(248, 248, 248);
margin: 0.7em 0;
Expand Down Expand Up @@ -122,7 +167,9 @@

.source-link {
flex: 1;
margin: 0 20px 0 0;
margin: 0 10px 0 0;
color: var(--md-typeset-color) !important;
width: 35px;
}

.md-sidebar--secondary {
Expand Down
23 changes: 23 additions & 0 deletions en/theme/material/assets/images/icons/book-16.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4f5b6b3

Please sign in to comment.