mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(style): Update Eslint to V9 and Prettier to V3 * fix: vscode color * fix: vscode color * chore: remove Useless dependence and old config file * chore: format * Merge branch 'dev' into eslintV9 * fix: fix * fix: ssr test * fix: ssr test * fix: use defineConfig * fix: prettier format and ignore docs dist * fix: index.mjs => index.js * fix: Vscode color * fix: prettier ignore global.d.ts * fix: format --------- Co-authored-by: 2586740555 <15972343+CYJ090915@user.noreply.gitee.com>
72 lines
1.4 KiB
CSS
72 lines
1.4 KiB
CSS
#nprogress {
|
|
pointer-events: none;
|
|
}
|
|
#nprogress .bar {
|
|
background: #29d;
|
|
position: fixed;
|
|
z-index: 1031;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
}
|
|
#nprogress .peg {
|
|
display: block;
|
|
position: absolute;
|
|
right: 0;
|
|
width: 100px;
|
|
height: 100%;
|
|
box-shadow:
|
|
0 0 10px #29d,
|
|
0 0 5px #29d;
|
|
opacity: 1;
|
|
-webkit-transform: rotate(3deg) translateY(-4px);
|
|
-ms-transform: rotate(3deg) translateY(-4px);
|
|
transform: rotate(3deg) translateY(-4px);
|
|
}
|
|
#nprogress .spinner {
|
|
display: block;
|
|
position: fixed;
|
|
z-index: 1031;
|
|
top: 15px;
|
|
right: 15px;
|
|
}
|
|
#nprogress .spinner-icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
box-sizing: border-box;
|
|
border-color: #29d transparent transparent #29d;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-radius: 50%;
|
|
-webkit-animation: nprogress-spinner 0.4s linear infinite;
|
|
animation: nprogress-spinner 0.4s linear infinite;
|
|
}
|
|
.nprogress-custom-parent {
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.nprogress-custom-parent #nprogress .bar,
|
|
.nprogress-custom-parent #nprogress .spinner {
|
|
position: absolute;
|
|
}
|
|
@-webkit-keyframes nprogress-spinner {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
}
|
|
to {
|
|
-webkit-transform: rotate(1turn);
|
|
}
|
|
}
|
|
@keyframes nprogress-spinner {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
.doc-content .header-anchor:before {
|
|
content: '#';
|
|
}
|