Switch to angular #1

Closed
pratik wants to merge 18 commits from f/updates into main
3 changed files with 37 additions and 14 deletions
Showing only changes of commit 024e139627 - Show all commits

View File

@@ -31,7 +31,11 @@
"mcp__ide__getDiagnostics",
"Read(//c/Users/Pratik/Desktop/code/**)",
"Bash(cat:*)",
"Bash(git add:*)"
"Bash(git add:*)",
"Bash(git commit:*)",
"Bash(git merge:*)",
"Bash(git rm:*)",
"Bash(git checkout:*)"
],
"deny": [],
"ask": []

View File

@@ -31,16 +31,25 @@
}
.header-info {
::ng-deep {
mat-chip-set {
mat-chip {
background-color: rgba(255, 255, 255, 0.2) !important;
.mdc-evolution-chip__action {
color: white !important;
}
.mdc-evolution-chip__text-label {
color: white !important;
}
mat-icon {
color: white !important;
}
}
}
}
}
// Tab Group Styling - Dark Theme
@@ -146,11 +155,19 @@
margin-bottom: 20px;
align-items: center;
flex-wrap: wrap;
// Ensure buttons have proper styling
button {
&[color="accent"] {
background-color: #10b981 !important;
color: white !important;
}
}
}
.count-badge {
background: #1e3a8a;
color: #93c5fd;
background: #3b82f6;
color: #ffffff;
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
@@ -246,25 +263,27 @@
}
.filename-cell {
display: flex;
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 500;
color: #cbd5e1;
.file-icon {
color: #60a5fa;
font-size: 20px;
width: 20px;
height: 20px;
flex-shrink: 0;
}
}
.type-chip {
background-color: #1e3a8a !important;
color: #93c5fd !important;
background-color: #3b82f6 !important;
color: #ffffff !important;
font-weight: 600;
font-size: 11px;
padding: 4px 8px;
padding: 4px 12px;
height: auto;
}

View File

@@ -14,7 +14,7 @@ export class ArtifactService {
constructor(private http: HttpClient) { }
getArtifacts(limit: number = 25, offset: number = 0): Observable<Artifact[]> {
getArtifacts(limit: number = 1000, offset: number = 0): Observable<Artifact[]> {
const params = new HttpParams()
.set('limit', limit.toString())
.set('offset', offset.toString());