diff --git a/frontend/src/components/lib/JApp.vue b/frontend/src/components/lib/JApp.vue
index b8d912e39d97..39ad39b18415 100644
--- a/frontend/src/components/lib/JApp.vue
+++ b/frontend/src/components/lib/JApp.vue
@@ -10,10 +10,12 @@
cursor: wait;
- --j-theme-transition-duration: .3s;
+ --j-theme-transition-duration: 0.3s;
--j-theme-color-background: var(--v-theme-background);
--j-theme-color-menu: var(--v-theme-menu);
--j-font-family: '{{ typography }}';
+ --j-border-opacity: 0.12;
+ --j-border-color: 255, 255, 255;
}
diff --git a/packages/ui-toolkit/src/components/JProgressCircular.vue b/packages/ui-toolkit/src/components/JProgressCircular.vue
index a9d1089a7a07..10802e606f64 100644
--- a/packages/ui-toolkit/src/components/JProgressCircular.vue
+++ b/packages/ui-toolkit/src/components/JProgressCircular.vue
@@ -1,16 +1,87 @@
-
+ role="progressbar"
+ aria-valuemin="0"
+ aria-valuemax="100"
+ :aria-valuenow="indeterminate || !model ? undefined : Math.max(0, Math.min(model, 100))">
+
+
+
+
+