Skip to content

Commit a00693f

Browse files
committed
chore: minor folder structure update
1 parent caf0de2 commit a00693f

16 files changed

+110
-98
lines changed
Lines changed: 0 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +0,0 @@
1-
#app,
2-
.k-animation-container {
3-
font-family: "Roboto", sans-serif;
4-
}
5-
6-
.k-list-item:hover,
7-
.k-list-optionlabel:hover,
8-
.k-list-item.k-hover,
9-
.k-hover.k-list-optionlabel,
10-
.k-columnmenu-item:hover {
11-
background-color: color-mix(in srgb, #5777ea 11%, transparent);
12-
}
13-
14-
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row):hover,
15-
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover {
16-
background-color: color-mix(in srgb, #5777ea 16%, transparent);
17-
}
18-
19-
.k-columnmenu-item.k-selected,
20-
.k-list-item.k-selected,
21-
.k-list-item.k-selected:hover,
22-
.k-list-optionlabel.k-selected,
23-
.k-list-optionlabel.k-selected:hover {
24-
background-color: #5777ea;
25-
color: #fff;
26-
}
27-
28-
.k-grid .k-table-row.k-table-alt-row {
29-
background-color: color-mix(in srgb, #5777ea 10%, transparent);
30-
}
31-
32-
.k-button-flat-primary {
33-
color: #5777ea;
34-
}
35-
36-
.k-button-solid-primary,
37-
.k-button-solid-primary:hover {
38-
border-color: #5777ea;
39-
background-color: #5777ea;
40-
}
41-
42-
.k-svg-icon.k-icon-lg {
43-
width: 22.5px;
44-
height: 12px;
45-
}
46-
47-
.k-switch-on .k-switch-track {
48-
background-color: #5777ea !important;
49-
color: #fff;
50-
}
51-
52-
.k-rating-item,
53-
.k-rating-item.k-selected {
54-
color: #90b6ff;
55-
}
56-
57-
.k-slider .k-slider-selection {
58-
background-color: #90b6ff;
59-
}
60-
61-
.k-slider .k-draghandle {
62-
border-color: #5777ea;
63-
color: var(--kendo-color-on-primary, white);
64-
background-color: #5777ea;
65-
border-radius: 50%;
66-
}
67-
68-
.form-header {
69-
font-family: var(--kendo-font-family, inherit);
70-
font-size: var(--kendo-font-size, inherit);
71-
line-height: 19.88px;
72-
font-weight: 400;
73-
}
74-
75-
.k-form-buttons > .k-button-solid-primary {
76-
background-color: #5777ea;
77-
}
Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
1-
<div id="app" style="display: flex; flex-direction: column; width: 630px; height: 680px; margin-left: 7px; gap: 30px">
2-
<div>
3-
<app-transactions-dashboard></app-transactions-dashboard>
4-
</div>
5-
<div style="display: flex; flex-direction: row; justify-content: space-evenly; gap: 30px">
6-
<div style="max-height: 310px; flex: 1">
7-
<app-bottom-left></app-bottom-left>
8-
</div>
9-
<div style="max-height: 310px; flex: 1">
10-
<app-bottom-right></app-bottom-right>
11-
</div>
12-
</div>
13-
</div>
1+
<app-header></app-header>

examples-standalone/kendoangular-landing-page/src/app/app.component.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
import { Component, ViewEncapsulation } from '@angular/core';
22
import { RouterOutlet, RouterLink, RouterLinkActive } from '@angular/router';
3-
import { BottomLeftComponent } from './components/bottom-left/bottom-left.component';
4-
import { TransactionsDashboardComponent } from './components/transactions-dashboard/transactions-dashboard.component';
5-
import { BottomRightComponent } from './components/bottom-right/bottom-right.component';
63
import { SchedulerComponent } from "./components/scheduler/scheduler.component";
74
import { DynamicGridComponent } from './components/dynamic-grid/dynamic-grid.component';
85
import { ChartsComponent } from './components/charts/charts.component';
6+
import { HeaderComponent } from './components/header/header.component';
97

108
@Component({
119
selector: 'app-root',
1210
encapsulation: ViewEncapsulation.None,
1311
standalone: true,
14-
imports: [RouterOutlet, RouterLink, RouterLinkActive, BottomLeftComponent, BottomRightComponent, TransactionsDashboardComponent, SchedulerComponent, DynamicGridComponent, ChartsComponent],
12+
imports: [RouterOutlet, RouterLink, RouterLinkActive, SchedulerComponent, DynamicGridComponent, ChartsComponent, HeaderComponent],
1513
templateUrl: './app.component.html',
1614
styleUrl: './app.component.css'
1715
})

examples-standalone/kendoangular-landing-page/src/app/app.routes.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Routes } from '@angular/router';
2-
import { TransactionsDashboardComponent } from './components/transactions-dashboard/transactions-dashboard.component';
3-
import { BottomLeftComponent } from './components/bottom-left/bottom-left.component';
4-
import { BottomRightComponent } from './components/bottom-right/bottom-right.component';
2+
import { TransactionsDashboardComponent } from './components/header/transactions-dashboard/transactions-dashboard.component';
3+
import { BottomLeftComponent } from './components/header/bottom-left/bottom-left.component';
4+
import { BottomRightComponent } from './components/header/bottom-right/bottom-right.component';
55
import { DynamicGridComponent } from './components/dynamic-grid/dynamic-grid.component';
66

77
export const routes: Routes = [

0 commit comments

Comments
 (0)