434161de5b
Release / release (push) Failing after 13s
- Removed `.github-theme` from .gitignore as it is no longer needed. - Updated `official-style-map.md` to clarify the maintenance of GitHub Light style increments within the current repository. - Revised `rules.md` to reflect the new approach to maintaining GitHub Light theme increments. - Changed test script in `package.json` to verify generated theme instead of GitHub migration. - Added `verify-generated-theme.ts` script to validate the generated theme files. - Migrated various styles from `.github-theme` to the new structure, updating comments and references accordingly.
56 lines
1.1 KiB
TypeScript
56 lines
1.1 KiB
TypeScript
|
|
export const footer = `
|
|
.page-footer {
|
|
background-color: var(--color-body);
|
|
border-top: 0;
|
|
color: var(--color-text-light-1);
|
|
font-size: 12px;
|
|
gap: 32px;
|
|
justify-content: center;
|
|
padding: 16px 0 40px 0;
|
|
> .left-links {
|
|
gap: 4px;
|
|
a {
|
|
color: var(--color-text-light-1);
|
|
&:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
}
|
|
strong {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
> .right-links {
|
|
gap: 16px;
|
|
> .ui.dropdown {
|
|
font-size: 12px;
|
|
&:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
> .flex-text-inline {
|
|
gap: 4px;
|
|
}
|
|
}
|
|
> a {
|
|
border-left: 0;
|
|
color: var(--color-text-light-1);
|
|
padding-left: 0;
|
|
margin-left: 0;
|
|
&:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
}
|
|
/* 主题按钮&菜单项 */
|
|
.ui.dropdown .theme-menu-item {
|
|
gap: 4px;
|
|
}
|
|
/* 主题菜单 */
|
|
.menu.theme-menu > .item > .theme-menu-item {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const stylesheet = [footer].join("\n\n");
|