Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
133 changes: 133 additions & 0 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.9.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/base/components/project-list/ProjectListCard.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@
white-space: nowrap;
}


/* ---------- body ---------- */
.project-list-card-clickable-content {
cursor: pointer;
Expand Down Expand Up @@ -317,7 +316,9 @@
border: 1.5px solid var(--project-detail-bg);
}

.project-list-card-shared-avatars .ant-avatar-group .ant-avatar.project-list-card-shared-avatar {
.project-list-card-shared-avatars
.ant-avatar-group
.ant-avatar.project-list-card-shared-avatar {
background: #722ed1;
}

Expand Down Expand Up @@ -346,7 +347,6 @@
pointer-events: auto;
}


.project-list-card-action-btn {
flex: 1;
padding: 4px 0;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/base/components/settings/contents/ApiAccess.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}

.api-access-info-row .info-value {
font-family: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
font-family: "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
font-size: 12px;
background: var(--component-background, #f5f5f5);
border: 1px solid var(--border-color, #d9d9d9);
Expand All @@ -56,7 +56,7 @@

.api-access-code-block pre {
margin: 0;
font-family: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
font-family: "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
font-size: 12px;
line-height: 1.6;
white-space: pre-wrap;
Expand Down Expand Up @@ -101,7 +101,7 @@
}

.endpoint-path {
font-family: 'SF Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
font-family: "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
font-size: 12px;
}

Expand Down
1 change: 0 additions & 1 deletion frontend/src/base/project-listing/ProjectListing.css
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@
margin-bottom: 12px;
}


.welcome-title {
font-size: 32px;
font-weight: 700;
Expand Down
11 changes: 8 additions & 3 deletions frontend/src/ide/chat-ai/ChatAI.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@
animation: collapsed-icon-glow 2s ease-in-out infinite;
}
@keyframes collapsed-icon-glow {
0%, 100% {
0%,
100% {
filter: drop-shadow(0 0 4px rgba(76, 154, 255, 0.4));
}
50% {
Expand Down Expand Up @@ -170,7 +171,9 @@
border-left: 1px solid var(--border-color-1);
border-right: 1px solid var(--border-color-1);
}
.chat-ai-container.fullscreen-mode .height-100.overflow-y-auto.pad-8 > .ant-space {
.chat-ai-container.fullscreen-mode
.height-100.overflow-y-auto.pad-8
> .ant-space {
max-width: 800px;
margin: 0 auto;
}
Expand All @@ -185,7 +188,9 @@
padding-left: 24px;
padding-right: 24px;
}
.chat-ai-container.fullscreen-mode .chat-ai-existing-chat-container > .ant-space {
.chat-ai-container.fullscreen-mode
.chat-ai-existing-chat-container
> .ant-space {
max-width: 800px;
margin: 0 auto;
}
Expand Down
8 changes: 6 additions & 2 deletions frontend/src/ide/chat-ai/ContextRulesPanel.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,19 @@
border-radius: 3px;
}

.context-rules-panel.dark .context-rules-tabs .ant-tabs-content-holder::-webkit-scrollbar-thumb {
.context-rules-panel.dark
.context-rules-tabs
.ant-tabs-content-holder::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
}

.context-rules-tabs .ant-tabs-content-holder::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.3);
}

.context-rules-panel.dark .context-rules-tabs .ant-tabs-content-holder::-webkit-scrollbar-thumb:hover {
.context-rules-panel.dark
.context-rules-tabs
.ant-tabs-content-holder::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3);
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/ide/chat-ai/LowBalanceWarning.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@

.low-balance-warning .warning-icon {
color: #faad14;
}
}
Loading
Loading