diff --git a/examples-standalone/kendoangular-java-integration/ClientApp/angular.json b/examples-standalone/kendoangular-java-integration/ClientApp/angular.json index 4bc371d5..1ddcd802 100644 --- a/examples-standalone/kendoangular-java-integration/ClientApp/angular.json +++ b/examples-standalone/kendoangular-java-integration/ClientApp/angular.json @@ -29,7 +29,7 @@ ], "styles": [ { - "input": "node_modules/@progress/kendo-theme-default/dist/all.css" + "input": "node_modules/@progress/kendo-theme-default/dist/default-ocean-blue-a11y.css" }, "src/styles.css" ], diff --git a/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.css b/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.css index 309d01ca..3f387785 100644 --- a/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.css +++ b/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.css @@ -40,10 +40,6 @@ kendo-upload { } a { - color: #ff6358; - text-decoration: none; -} - -a:hover { + color: var(--kendo-color-primary); text-decoration: underline; } diff --git a/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.html b/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.html index 367f62f0..4711d6f7 100644 --- a/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.html +++ b/examples-standalone/kendoangular-java-integration/ClientApp/src/app/app.component.html @@ -1,4 +1,5 @@
+

Fetching Data from the Server

Grid component +

Upload Files to the Server

@@ -79,8 +81,8 @@

It is a richer version of an - ]]> element and - supports model binding, templates, forms, and more. + <input type="file" /> element and supports + model binding, templates, forms, and more.

For more information check the diff --git a/examples-standalone/kendoangular-java-integration/ClientApp/src/styles.css b/examples-standalone/kendoangular-java-integration/ClientApp/src/styles.css index 90d4ee00..07aa447c 100644 --- a/examples-standalone/kendoangular-java-integration/ClientApp/src/styles.css +++ b/examples-standalone/kendoangular-java-integration/ClientApp/src/styles.css @@ -1 +1,4 @@ -/* You can add global styles to this file, and also import other style files */ +body { + font-family: "RobotoRegular", Helvetica, Arial, sans-serif; + font-size: 16px; +}