Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[autofix.ci] apply automated fixes

authored by

autofix-ci[bot] and committed by
GitHub
805f88fb c6cecebc

+152 -150
+3 -3
starlight/astro.config.mjs
··· 1 - import { defineConfig } from "astro/config"; 2 1 import starlight from "@astrojs/starlight"; 3 - import remarkMath from "remark-math"; 2 + import { defineConfig } from "astro/config"; 4 3 import rehypeMathjax from "rehype-mathjax"; 4 + import remarkMath from "remark-math"; 5 5 import starlightImageZoom from "starlight-image-zoom"; 6 - import starlightViewModes from "starlight-view-modes"; 7 6 import starlightLinksValidator from "starlight-links-validator"; 8 7 import starlightSidebarTopicsDropdown from "starlight-sidebar-topics-dropdown"; 8 + import starlightViewModes from "starlight-view-modes"; 9 9 10 10 // https://astro.build/config 11 11 // https://starlight.astro.build/reference/configuration/
+1
starlight/lunaria/renderer.config.ts
··· 1 1 import { defineRendererConfig } from "@lunariajs/core"; 2 + 2 3 import { TitleParagraph } from "./components"; 3 4 4 5 export default defineRendererConfig({
+4 -7
starlight/lunaria/styles.css
··· 7 7 --theme-text-bright: hsl(0, 0%, 100%); 8 8 --overlay-blurple: hsla(255, 60%, 60%, 0.2); 9 9 10 - --ln-color-background: linear-gradient( 11 - 215deg, 12 - var(--overlay-blurple), 13 - transparent 40% 14 - ), 15 - radial-gradient(var(--overlay-blurple), transparent 40%) no-repeat -60vw -40vh / 16 - 105vw 200vh, 10 + --ln-color-background: 11 + linear-gradient(215deg, var(--overlay-blurple), transparent 40%), 12 + radial-gradient(var(--overlay-blurple), transparent 40%) 13 + no-repeat -60vw -40vh / 105vw 200vh, 17 14 radial-gradient(var(--overlay-blurple), transparent 65%) no-repeat 50% 18 15 calc(100% + 20rem) / 60rem 30rem, 19 16 var(--theme-bg);
starlight/public/images/artificial_intelligence/count_vectorizer_pandas_output.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/bar.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/box.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/heatmap.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/hist.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/histplot.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/pairplot.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/plot.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/relplot.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/scatter.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/scatter_2.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/diagrams/violinplot.png

This is a binary file and will not be displayed.

starlight/public/images/artificial_intelligence/series-and-dataframe.png

This is a binary file and will not be displayed.

starlight/public/images/economy_and_law/portfolioanalyse.png

This is a binary file and will not be displayed.

starlight/public/images/economy_and_law/product_lifecycle.png

This is a binary file and will not be displayed.

starlight/public/images/project_management/earned_value_analysis_key_figures.png

This is a binary file and will not be displayed.

starlight/public/images/project_management/project_budget_controlling.png

This is a binary file and will not be displayed.

starlight/public/images/project_management/project_controlling_necessity-2.png

This is a binary file and will not be displayed.

starlight/public/images/project_management/project_controlling_necessity.png

This is a binary file and will not be displayed.

starlight/public/images/project_management/project_controlling_process.png

This is a binary file and will not be displayed.

starlight/public/images/project_management/project_time_controlling.png

This is a binary file and will not be displayed.

starlight/public/images/system_integration_and_infrastructure/SAN-Aufbau.png

This is a binary file and will not be displayed.

starlight/public/images/system_integration_and_infrastructure/Typ-1-Virtualisierung.png

This is a binary file and will not be displayed.

starlight/public/images/system_integration_and_infrastructure/Typ-2-Virtualisierung.png

This is a binary file and will not be displayed.

starlight/public/images/system_integration_and_infrastructure/backup-full.png

This is a binary file and will not be displayed.

+5 -5
starlight/src/assets/components/ContributorList.astro
··· 1 1 --- 2 - import { getAllContributors } from './getContributors'; 3 - import FacePile from './FacePile.astro'; 2 + import { getAllContributors } from "./getContributors"; 3 + import FacePile from "./FacePile.astro"; 4 4 5 5 export interface Props { 6 - githubRepo?: `${string}/${string}`; 6 + githubRepo?: `${string}/${string}`; 7 7 } 8 8 9 - const { githubRepo = 'withastro/docs' } = Astro.props as Props; 9 + const { githubRepo = "withastro/docs" } = Astro.props as Props; 10 10 11 11 const contributors = await getAllContributors(githubRepo); 12 12 --- 13 13 14 - <FacePile {contributors} /> 14 + <FacePile {contributors} />
+70 -65
starlight/src/assets/components/FacePile.astro
··· 1 1 --- 2 - import type { Contributor } from './getContributors'; 2 + import type { Contributor } from "./getContributors"; 3 3 4 4 export interface Props { 5 - contributors: Contributor[]; 5 + contributors: Contributor[]; 6 6 } 7 7 8 8 const { contributors } = Astro.props as Props; ··· 10 10 11 11 <!-- Thanks to @5t3ph for https://smolcss.dev/#smol-avatar-list! --> 12 12 <div> 13 - <ul class="avatar-list"> 14 - { 15 - contributors.map((item) => ( 16 - <li> 17 - <a href={`https://github.com/${item.login}`}> 18 - <img 19 - alt={item.login} 20 - title={item.login} 21 - width="3rem" 22 - height="3rem" 23 - src={`https://avatars.githubusercontent.com/u/${item.id}?s=64`} 24 - loading="lazy" 25 - /> 26 - </a> 27 - </li> 28 - )) 29 - } 30 - </ul> 13 + <ul class="avatar-list"> 14 + { 15 + contributors.map((item) => ( 16 + <li> 17 + <a href={`https://github.com/${item.login}`}> 18 + <img 19 + alt={item.login} 20 + title={item.login} 21 + width="3rem" 22 + height="3rem" 23 + src={`https://avatars.githubusercontent.com/u/${item.id}?s=64`} 24 + loading="lazy" 25 + /> 26 + </a> 27 + </li> 28 + )) 29 + } 30 + </ul> 31 31 </div> 32 32 33 33 <style> 34 - .avatar-list { 35 - --avatar-size: 3rem; 36 - --avatar-overlap: -0.125em; 37 - --avatar-row-spacing: 0.125em; 38 - --avatar-outline-width: 1px; 39 - --avatar-outline-offset: 0.08em; 34 + .avatar-list { 35 + --avatar-size: 3rem; 36 + --avatar-overlap: -0.125em; 37 + --avatar-row-spacing: 0.125em; 38 + --avatar-outline-width: 1px; 39 + --avatar-outline-offset: 0.08em; 40 40 41 - display: flex; 42 - flex-wrap: wrap; 43 - list-style: none; 44 - padding: var(--avatar-border); 45 - font-size: var(--avatar-size); 46 - } 41 + display: flex; 42 + flex-wrap: wrap; 43 + list-style: none; 44 + padding: var(--avatar-border); 45 + font-size: var(--avatar-size); 46 + } 47 47 48 - .avatar-list li { 49 - --avatar-row-margin: calc( 50 - var(--avatar-outline-offset) + var(--avatar-outline-width) + var(--avatar-row-spacing) / 2 51 - ); 52 - margin: var(--avatar-row-margin) var(--avatar-overlap) var(--avatar-row-margin) 0; 53 - } 48 + .avatar-list li { 49 + --avatar-row-margin: calc( 50 + var(--avatar-outline-offset) + var(--avatar-outline-width) + 51 + var(--avatar-row-spacing) / 2 52 + ); 53 + margin: var(--avatar-row-margin) var(--avatar-overlap) 54 + var(--avatar-row-margin) 0; 55 + } 54 56 55 - .avatar-list img, 56 - .avatar-list a { 57 - display: block; 58 - border-radius: 50%; 59 - width: var(--avatar-size); 60 - height: var(--avatar-size); 61 - /* Hide alt/title if Avatar image fails to load. */ 62 - text-decoration: none; 63 - color: transparent; 64 - } 57 + .avatar-list img, 58 + .avatar-list a { 59 + display: block; 60 + border-radius: 50%; 61 + width: var(--avatar-size); 62 + height: var(--avatar-size); 63 + /* Hide alt/title if Avatar image fails to load. */ 64 + text-decoration: none; 65 + color: transparent; 66 + } 65 67 66 - .avatar-list img { 67 - width: 100%; 68 - height: 100%; 69 - object-fit: cover; 70 - background-color: var(--theme-bg); 71 - box-shadow: 0 0 0 var(--avatar-outline-width) var(--theme-divider), 72 - 0 0 0 var(--avatar-outline-offset) var(--theme-bg), 73 - 0 0 0 calc(var(--avatar-outline-offset) + var(--avatar-outline-width)) var(--theme-divider), 74 - 0 0 calc(var(--theme-glow-blur) + var(--avatar-outline-offset)) var(--theme-glow-diffuse); 75 - /* Indicates the contributor image boundaries for forced colors users, transparent is changed to a solid color */ 76 - outline: 1px solid transparent; 77 - } 68 + .avatar-list img { 69 + width: 100%; 70 + height: 100%; 71 + object-fit: cover; 72 + background-color: var(--theme-bg); 73 + box-shadow: 74 + 0 0 0 var(--avatar-outline-width) var(--theme-divider), 75 + 0 0 0 var(--avatar-outline-offset) var(--theme-bg), 76 + 0 0 0 calc(var(--avatar-outline-offset) + var(--avatar-outline-width)) 77 + var(--theme-divider), 78 + 0 0 calc(var(--theme-glow-blur) + var(--avatar-outline-offset)) 79 + var(--theme-glow-diffuse); 80 + /* Indicates the contributor image boundaries for forced colors users, transparent is changed to a solid color */ 81 + outline: 1px solid transparent; 82 + } 78 83 79 - .avatar-list a:focus { 80 - outline: 2px solid var(--theme-accent); 81 - outline-offset: var(--avatar-outline-offset); 82 - } 83 - </style> 84 + .avatar-list a:focus { 85 + outline: 2px solid var(--theme-accent); 86 + outline-offset: var(--avatar-outline-offset); 87 + } 88 + </style>
+4 -3
starlight/src/assets/components/ResponsiveTable.astro
··· 1 1 --- 2 2 // src/components/ResponsiveTable.astro 3 3 --- 4 + 4 5 <table-saw> 5 - <slot /> 6 + <slot /> 6 7 </table-saw> 7 8 8 9 <script> 9 - import '@zachleat/table-saw'; 10 - </script> 10 + import "@zachleat/table-saw"; 11 + </script>
-1
starlight/src/assets/components/util-server.ts
··· 2 2 This file contains server-side utilities using features that don't work in a browser. 3 3 Do not import this file from a hydrated client-side component. 4 4 */ 5 - 6 5 // @ts-expect-error Package without types we can’t do anything about. 7 6 import EleventyFetch from "@11ty/eleventy-fetch"; 8 7
+3 -3
starlight/src/components/CustomPagination.astro
··· 6 6 --- 7 7 8 8 <> 9 - { !entry.data.hero && <FeedbackComponent /> } 10 - <Pagination /> 11 - </> 9 + {!entry.data.hero && <FeedbackComponent />} 10 + <Pagination /> 11 + </>
+50 -52
starlight/src/components/FeedbackComponent.astro
··· 6 6 --- 7 7 8 8 <FeelbackTaggedMessage 9 - contentSetId={CONTENT_SET_ID} 10 - preset="evaluation" 11 - title="Was this page useful?" 12 - layout="reveal-message" 13 - style={["bordered", "align-center"]} 14 - withEmail 9 + contentSetId={CONTENT_SET_ID} 10 + preset="evaluation" 11 + title="Was this page useful?" 12 + layout="reveal-message" 13 + style={["bordered", "align-center"]} 14 + withEmail 15 15 /> 16 16 17 17 <style is:global> 18 - .feelback-container { 19 - margin: 0 auto 2rem; 20 - --max-width: 400px !important; 21 - } 18 + .feelback-container { 19 + margin: 0 auto 2rem; 20 + --max-width: 400px !important; 21 + } 22 22 23 - .feelback-container [data-feelback-type="button-group"] .feelback-btn { 24 - border-radius: 100%; 25 - } 23 + .feelback-container [data-feelback-type="button-group"] .feelback-btn { 24 + border-radius: 100%; 25 + } 26 26 27 - .feelback-container 28 - [data-feelback-type="button-group"] 29 - .feelback-btn.active { 30 - color: var(--sl-color-text-invert); 31 - background-color: var(--sl-color-text-accent); 32 - } 27 + .feelback-container [data-feelback-type="button-group"] .feelback-btn.active { 28 + color: var(--sl-color-text-invert); 29 + background-color: var(--sl-color-text-accent); 30 + } 33 31 34 - .feelback-container textarea, 35 - .feelback-container input[type="text"], 36 - .feelback-container input[type="email"] { 37 - resize: none; 38 - border-radius: 0.5rem; 39 - border: 1px solid var(--sl-color-gray-5); 40 - background-color: var(--sl-color-gray-6); 41 - } 32 + .feelback-container textarea, 33 + .feelback-container input[type="text"], 34 + .feelback-container input[type="email"] { 35 + resize: none; 36 + border-radius: 0.5rem; 37 + border: 1px solid var(--sl-color-gray-5); 38 + background-color: var(--sl-color-gray-6); 39 + } 42 40 43 - .feelback-container textarea:hover, 44 - .feelback-container input[type="text"]:hover, 45 - .feelback-container input[type="email"]:hover { 46 - border: 1px solid var(--sl-color-gray-2); 47 - } 41 + .feelback-container textarea:hover, 42 + .feelback-container input[type="text"]:hover, 43 + .feelback-container input[type="email"]:hover { 44 + border: 1px solid var(--sl-color-gray-2); 45 + } 48 46 49 - .feelback-container .feelback-btn[type="submit"] { 50 - border-radius: 10000px; 51 - padding: 1.25rem 2rem; 52 - color: var(--sl-color-text-invert); 53 - background-color: var(--sl-color-text-accent); 54 - font-weight: bold; 55 - } 47 + .feelback-container .feelback-btn[type="submit"] { 48 + border-radius: 10000px; 49 + padding: 1.25rem 2rem; 50 + color: var(--sl-color-text-invert); 51 + background-color: var(--sl-color-text-accent); 52 + font-weight: bold; 53 + } 56 54 57 - .feelback-container .feelback-btn[type="submit"]:hover { 58 - background-color: var(--sl-color-gray-6); 59 - color: var(--sl-color-gray-2); 60 - } 55 + .feelback-container .feelback-btn[type="submit"]:hover { 56 + background-color: var(--sl-color-gray-6); 57 + color: var(--sl-color-gray-2); 58 + } 61 59 62 - .feelback-a { 63 - text-align: center; 64 - } 60 + .feelback-a { 61 + text-align: center; 62 + } 65 63 66 - .feelback-a::after { 67 - content: "!"; 68 - display: inline-block; 69 - transform: translateX(-100%); 70 - } 71 - </style> 64 + .feelback-a::after { 65 + content: "!"; 66 + display: inline-block; 67 + transform: translateX(-100%); 68 + } 69 + </style>
+1 -1
starlight/src/content.config.ts
··· 1 - import { defineCollection } from "astro:content"; 2 1 import { docsLoader } from "@astrojs/starlight/loaders"; 3 2 import { docsSchema } from "@astrojs/starlight/schema"; 3 + import { defineCollection } from "astro:content"; 4 4 import { topicSchema } from "starlight-sidebar-topics-dropdown/schema"; 5 5 6 6 export const collections = {
+4 -3
starlight/src/styles/landing.css
··· 8 8 } 9 9 10 10 [data-has-hero] .page { 11 - background: linear-gradient(215deg, var(--overlay-blurple), transparent 40%), 12 - radial-gradient(var(--overlay-blurple), transparent 40%) no-repeat -60vw -40vh / 13 - 105vw 200vh, 11 + background: 12 + linear-gradient(215deg, var(--overlay-blurple), transparent 40%), 13 + radial-gradient(var(--overlay-blurple), transparent 40%) 14 + no-repeat -60vw -40vh / 105vw 200vh, 14 15 radial-gradient(var(--overlay-blurple), transparent 65%) no-repeat 50% 15 16 calc(100% + 20rem) / 60rem 30rem; 16 17 }
+7 -7
starlight/src/styles/print.css
··· 1 1 @media print { 2 2 :is( 3 - .header, 4 - #starlight__sidebar, 5 - .right-sidebar-container, 6 - footer, 7 - starlight-menu-button, 8 - .content-panel > div > p.sl-flex 9 - ) { 3 + .header, 4 + #starlight__sidebar, 5 + .right-sidebar-container, 6 + footer, 7 + starlight-menu-button, 8 + .content-panel > div > p.sl-flex 9 + ) { 10 10 display: none; 11 11 } 12 12