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.
22 lines
479 B
TypeScript
22 lines
479 B
TypeScript
|
|
export const emojiDropdown = `
|
|
.ui.dropdown.action.select-reaction.active .menu:has(.emoji) {
|
|
display: flex !important;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
padding: 4px;
|
|
min-width: auto;
|
|
> .item.emoji {
|
|
font-size: 14px;
|
|
min-height: 32px;
|
|
height: 32px;
|
|
margin: 0px;
|
|
&:hover {
|
|
background-color: var(--github-bgColor-accent-emphasis) !important;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const stylesheet = [emojiDropdown].join("\n\n");
|