Files
gitea-themes/styles/pages/org.ts
T
chuan 434161de5b
Release / release (push) Failing after 13s
Refactor theme management and update documentation
- 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.
2026-05-18 01:26:17 +08:00

50 lines
1.0 KiB
TypeScript

export const org = `
.page-content.organization {
/* 组织成员头像 */
.members .ui.avatar {
border-radius: 9999px;
}
/* 组织头像 */
.org-avatar {
margin: 8px 24px 16px 0px;
}
/* 组织信息 */
#org-info {
margin-top: 8px; /* 与头像对齐 */
gap: 8px;
/* 组织名称 */
> .ui.header {
font-size: 24px;
> .org-visibility {
margin-left: 8px;
}
/* 组织页面的 RSS 订阅按钮 */
.ui.label.button {
padding: 4px 16px;
.svg {
width: 20px;
min-width: 20px;
}
&:hover {
border-color: var(--color-light-border);
}
}
}
/* 组织描述 */
> .markup {
color: var(--color-text-light-1);
}
/* 组织信息 */
> .meta {
font-size: 12px;
svg {
color: var(--color-text-light-1);
}
}
}
}
`;
export const stylesheet = [org].join("\n\n");