Skip to content
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

Kf1.9(jupyter): fix style #352

Merged
merged 5 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from 4 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="form--section-bottom">
<div class="mat-title header" data-cy-form-section-header>
<div class="mat-headline-6 header" data-cy-form-section-header>
<lib-icon *ngIf="icon" [icon]="icon"></lib-icon>{{ title }}
<mat-icon
class="icon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<mat-icon>arrow_back</mat-icon>
</button>

<div class="mat-headline title-margin" data-cy-toolbar-title>
<div class="mat-headline-5 title-margin" data-cy-toolbar-title>
{{ title }}
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
// Define the primary palette for the color that appears most
// frequently throughout your application.
$kubeflow-primary-palette: (
100: $kubeflow-blue-hue-1,
400: $kubeflow-blue-hue-1,
500: $kubeflow-blue-hue-2,
600: $kubeflow-blue-hue-3,
Expand Down Expand Up @@ -55,12 +56,11 @@ $kubeflow-typography-config: mat.define-typography-config(
// theming systems such as "color" or "typography".
$kubeflow-theme: mat.define-light-theme(
(
//TODO: AAW figure out why this breaks
// color: (
// primary: mat.define-palette($kubeflow-primary-palette, 700),
// accent: mat.define-palette(mat.$pink-palette, A200, A100, A400),
// ),
typography: $kubeflow-typography-config
color: (
primary: mat.define-palette($kubeflow-primary-palette, 700),
accent: mat.define-palette(mat.$pink-palette, A200, A100, A400),
),
typography: $kubeflow-typography-config,
)
);

Expand All @@ -86,9 +86,7 @@ $kubeflow-theme: mat.define-light-theme(
}

// Use the material icons offline
// AAW: Leaving this blank was the way to make this work
// after angular version update without returning errors
$material-icons-font-path: '';
$material-icons-font-path: '~material-icons/iconfont/';
@import 'node_modules/material-icons/iconfont/material-icons.scss';

// Custom css
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export const defaultConfig: TableConfig = {
new ActionIconValue({
name: 'delete',
tooltipReady: $localize`Delete this notebook server`,
color: '',
color: 'warn',
field: 'deleteAction',
iconReady: 'material:delete',
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
[phase]="status.phase"
data-cy-notebook-status
></lib-status-icon>
<div class="mat-title notebook-name">{{ notebookName }}</div>
<div class="mat-headline-6 notebook-name">{{ notebookName }}</div>
</div>
<div class="small-padding-up">
<lib-status-info [status]="status"></lib-status-info>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
[phase]="status"
></lib-status-icon>

<div class="mat-title volume-name">{{ name }}</div>
<div class="mat-headline-6 volume-name">{{ name }}</div>
</div>
</div>
<mat-tab-group
Expand Down
2 changes: 1 addition & 1 deletion frontend/jupyter/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Give some space after each input
mat-form-field {
margin-bottom: 0.25rem;
margin-bottom: 0rem;
}

// Give some space
Expand Down
Loading