mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-02 04:07:33 +08:00
support dark mode
This commit is contained in:
parent
73cc89bfde
commit
04843c0fff
1
web/components.d.ts
vendored
1
web/components.d.ts
vendored
@ -37,6 +37,7 @@ declare module '@vue/runtime-core' {
|
||||
ElOption: typeof import('element-plus/es')['ElOption']
|
||||
ElPagination: typeof import('element-plus/es')['ElPagination']
|
||||
ElPopover: typeof import('element-plus/es')['ElPopover']
|
||||
ElProgress: typeof import('element-plus/es')['ElProgress']
|
||||
ElRadio: typeof import('element-plus/es')['ElRadio']
|
||||
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
|
||||
ElRow: typeof import('element-plus/es')['ElRow']
|
||||
|
@ -68,7 +68,7 @@
|
||||
shadow="hover"
|
||||
:body-style="{
|
||||
padding: '0px',
|
||||
backgroundColor: '#fff',
|
||||
backgroundColor: 'var(--el-bg-color)',
|
||||
position: 'relative',
|
||||
}"
|
||||
class="card"
|
||||
@ -939,7 +939,7 @@ function setStick(value: string) {
|
||||
|
||||
.deploying:before {
|
||||
animation: roll linear 3s infinite;
|
||||
background: conic-gradient(#e6a23c, #fff);
|
||||
background: conic-gradient(var(--el-color-warning), var(--el-bg-color));
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
@ -947,7 +947,7 @@ function setStick(value: string) {
|
||||
.success:before {
|
||||
animation: opacity 3s 1;
|
||||
animation-fill-mode: forwards;
|
||||
background: #67c23a;
|
||||
background: var(--el-color-success);
|
||||
left: -50%;
|
||||
top: -50%;
|
||||
}
|
||||
@ -955,7 +955,7 @@ function setStick(value: string) {
|
||||
.fail:before {
|
||||
animation: opacity linear 5s 1;
|
||||
animation-fill-mode: forwards;
|
||||
background: #f56c6c;
|
||||
background: var(--el-color-danger);
|
||||
left: -50%;
|
||||
top: -50%;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user