Skip to content

Commit 270bada

Browse files
authored
[6.x] Improve progress states (#13690)
1 parent c008ff1 commit 270bada

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

resources/js/composables/progress-bar.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { ref, watch } from 'vue';
22
import progress from 'nprogress';
33

4+
progress.configure({ showSpinner: false });
5+
46
const progressing = ref(false);
57
const progressNames = ref([]);
68
const timer = ref(null);

src/CP/Color.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ public static function defaults(bool $dark = false): array
414414
'dark-content-bg' => self::Zinc[900],
415415
'dark-content-border' => self::Zinc[950],
416416
'global-header-bg' => self::Zinc[800],
417-
'progress-bar' => self::Indigo[700],
417+
'progress-bar' => self::Volt,
418418
'focus-outline' => self::Blue[400],
419419
'ui-accent-bg' => self::Indigo[700],
420420
'ui-accent-text' => 'var(--theme-color-ui-accent-bg)',

0 commit comments

Comments
 (0)