Skip to content

Commit

Permalink
Merge branch '597-feature-updating-node-to-version-17' of https://git…
Browse files Browse the repository at this point in the history
…hub.com/encorelab/ck-board into 597-feature-updating-node-to-version-17
  • Loading branch information
marieklinaeva committed Aug 30, 2024
2 parents 120f710 + de95e62 commit 404b6e6
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.cancel {
padding-left: 10px;
width: 12px;
width: 15px;
height: 15px;
font-size: medium;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.cancel, .correct {
padding-left: 10px;
width: 12px;
width: 15px;
height: 15px;
font-size: medium;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.cancel {
padding-left: 10px;
width: 12px;
width: 15px;
height: 15px;
font-size: medium;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</app-toolbar>
<div class="container d-flex align-items-center justify-content-center">
<div class="heading">
<button
<button *ngIf="project"
mat-icon-button
routerLink="{{'/project/'+project.projectID}}"
aria-label="Return to Dashboard"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

.cancel {
padding-left: 10px;
width: 12px;
width: 15px;
height: 15px;
font-size: medium;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h3 class="mat-title heading">My Projects</h3>
>
<div style="display:flex; flex-direction: row; align-items: center" >
<mat-card-title class="title accent">
<mat-icon color="accent">grid_view</mat-icon>
<mat-icon style="min-width: fit-content;" color="accent">grid_view</mat-icon>
<span>{{ project.name }}</span>
<button
*ngIf="user && user.role === Role.TEACHER"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

.cancel {
padding-left: 10px;
width: 12px;
width: 15px;
height: 15px;
font-size: medium;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.cancel {
padding-left: 10px;
width: 12px;
width: 15px;
height: 15px;
font-size: medium;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/material-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { MatLegacyAutocompleteModule as MatAutocompleteModule } from '@angular/m
import { MatLegacySelectModule as MatSelectModule } from '@angular/material/legacy-select';
import { MatSidenavModule } from '@angular/material/sidenav';
import { MatLegacyProgressSpinnerModule as MatProgressSpinnerModule } from '@angular/material/legacy-progress-spinner';
import { MatLegacyProgressBarModule as MatProgressBarModule } from '@angular/material/legacy-progress-bar';
import { MatProgressBarModule as MatProgressBarModule } from '@angular/material/progress-bar';
import { MatLegacySlideToggleModule as MatSlideToggleModule } from '@angular/material/legacy-slide-toggle';
import { MatExpansionModule } from '@angular/material/expansion';
import { MatLegacyRadioModule as MatRadioModule } from '@angular/material/legacy-radio';
Expand Down
1 change: 1 addition & 0 deletions frontend/src/style/layout/_dashboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ app-toolbar {
line-height: 1.5;
display: flex;
align-items: flex-start;
justify-items: flex-start;
gap: 0.25em;
}

Expand Down
22 changes: 22 additions & 0 deletions frontend/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,25 @@ a {
.wide-snackbar {
max-width: 75% !important;
}

/* mat-slider - temp legacy fix */
.slider .mat-slider-track-wrapper {
background-color: #3a34b3;
}

.slider .mat-slider-thumb {
background-color: #f44336;
}

.slider .mat-slider-thumb-label {
background-color: #f44336;
}

.slider .mat-slider-thumb-label-text {
color: white;
}

/* radio button - temp legacy fix */
.mat-radio-checked .mat-radio-inner-circle {
background-color: #3a34b3;
}

0 comments on commit 404b6e6

Please sign in to comment.