-
Notifications
You must be signed in to change notification settings - Fork 89
feat: Fixed WebUI #70
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -116,6 +116,11 @@ | |
| color: #1e40af; | ||
| } | ||
|
|
||
| .badge-primary { | ||
| background-color: #dbeafe; | ||
| color: #1e40af; | ||
| } | ||
|
Comment on lines
+119
to
+122
|
||
|
|
||
| /* Status indicators */ | ||
| .status-indicator { | ||
| display: inline-block; | ||
|
|
@@ -395,3 +400,28 @@ | |
| .toggle-switch input:checked + .toggle-slider:before { | ||
| transform: translateX(20px); | ||
| } | ||
|
|
||
| /* Copy button */ | ||
| .btn-icon { | ||
| background: none; | ||
| border: none; | ||
| cursor: pointer; | ||
| padding: 0.25rem; | ||
| font-size: 1rem; | ||
| color: var(--text-secondary); | ||
| transition: color 0.2s; | ||
| margin-left: 0.5rem; | ||
| } | ||
|
|
||
| .btn-icon:hover { | ||
| color: var(--primary-color); | ||
| } | ||
|
|
||
| /* Drag and drop styles */ | ||
| .table tbody tr[draggable="true"] { | ||
| transition: opacity 0.2s, border-top 0.2s; | ||
| } | ||
|
|
||
| .table tbody tr[draggable="true"]:active { | ||
| cursor: grabbing; | ||
| } | ||
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.
Potential type conversion issue: InputTokens and OutputTokens are being cast to int64, but if the source type is already int64 or larger, this is redundant. If they are smaller types (like int or int32), the conversion is correct, but without seeing the stats structure definition, this could indicate a type mismatch. Consider verifying that the source types match the target types to avoid unnecessary conversions or potential overflow issues.