forked from steipete/CodexBar
-
Notifications
You must be signed in to change notification settings - Fork 119
CI validation mirror for #453 #464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9ae96d7
Use Windows typography and fix control layout
xuelongmu 94abb56
Split settings-specific control styles
Finesssee eae6d66
Merge Claude accounts base into Windows controls
Finesssee fc387f6
Merge branch 'main' into fix/windows-typography-controls
Finesssee 183a7cf
Preserve current styles in Windows controls
Finesssee 836417d
Merge branch 'main' into fix/windows-typography-controls
Finesssee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
apps/desktop-tauri/src/surfaces/settings/settings-layout.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| .settings-section { | ||
| gap: 4px; | ||
| padding-bottom: 12px; | ||
| } | ||
|
|
||
| .settings-section + .settings-section { | ||
| padding-top: 12px; | ||
| } | ||
|
|
||
| .settings-section > .settings-section__title { | ||
| margin: 0; | ||
| } | ||
|
|
||
| .settings-section__title, | ||
| .provider-detail-section h4 { | ||
| font-size: 13px; | ||
| font-weight: 600; | ||
| text-transform: none; | ||
| letter-spacing: 0; | ||
| color: var(--text-primary); | ||
| } | ||
|
|
||
| .settings-field { | ||
| padding: 8px 0; | ||
| } | ||
|
|
||
| .settings-field__label, | ||
| .settings-field__desc, | ||
| .settings-section__hint { | ||
| line-height: 1.4; | ||
| } | ||
|
|
||
| .settings-section__hint { | ||
| margin: 6px 0 0; | ||
| } | ||
|
|
||
| .provider-detail-section { | ||
| padding: 16px 0; | ||
| margin-bottom: 0; | ||
| } | ||
|
|
||
| .credential-card { | ||
| padding: 12px; | ||
| } | ||
|
|
||
| .codex-accounts .credential-card__header { | ||
| flex-direction: column; | ||
| align-items: stretch; | ||
| gap: 8px; | ||
| } | ||
|
|
||
| .codex-accounts .credential-card__actions { | ||
| justify-content: flex-end; | ||
| flex-wrap: wrap; | ||
| } | ||
|
|
||
| .codex-accounts .credential-card__badge { | ||
| align-self: flex-start; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Add the required empty line before
font-family.Stylelint reports
declaration-empty-line-beforeat Line 16. Add an empty line after--font-uiso the stylesheet passes the configured lint check.Proposed fix
--font-ui: "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif; + font-family: var(--font-ui);📝 Committable suggestion
🧰 Tools
🪛 Stylelint (17.14.0)
[error] 16-16: Expected empty line before declaration (declaration-empty-line-before)
(declaration-empty-line-before)
🤖 Prompt for AI Agents
Source: Linters/SAST tools