2025-04-18 19:20:46 +08:00
|
|
|
/* General */
|
|
|
|
|
|
|
|
|
|
#aura-container-Aura-UI-Assistant-Config {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-root {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: url("../../../../app.asar/public/ae247697b4639c92bd008d0ea7d13b53.png");
|
|
|
|
|
/* 这里不用 background-size: cover; 的效果反而更舒服一些... */
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-root-inactive {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: scale(1.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
|
|
|
|
|
|
.aura-config-page-header-area {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
color: white;
|
2025-06-02 00:22:46 +08:00
|
|
|
z-index: 12000;
|
2025-04-18 19:20:46 +08:00
|
|
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-header-area .iconfont {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
|
|
|
|
transition: all 0.25s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-header-area .iconfont:hover {
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-header-area .iconfont:active {
|
|
|
|
|
opacity: 0.375;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-header-area p {
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-header-area.header-collapsed {
|
|
|
|
|
transform: translateY(-1rem);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-app-bar {
|
|
|
|
|
height: 40px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Status */
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
align-self: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-container-hidden {
|
|
|
|
|
position: absolute;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-main,
|
|
|
|
|
.aura-config-page-status-description {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-description {
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-description.status-description-hidden {
|
|
|
|
|
transform: translateY(-2rem);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-description p {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
color: white;
|
|
|
|
|
font-family: "Consolas", "Microsoft YaHei", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-description i {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-central-aura-logo {
|
|
|
|
|
margin: 0.5rem 3rem;
|
|
|
|
|
width: 17.5%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-hr-vertical {
|
|
|
|
|
height: 3.75rem;
|
|
|
|
|
width: 1px;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
margin-right: 30px;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-el {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-family: "Consolas", monospace;
|
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
.version-type {
|
|
|
|
|
content: "I want to use scss plz 😇"
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-side {
|
|
|
|
|
height: 30%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
|
|
transition: transform 0.5s, opacity 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-side.left-side {
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-side.left-side.status-side-hidden {
|
|
|
|
|
transform: translateX(5rem);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-side.right-side {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-side.right-side.status-side-hidden {
|
|
|
|
|
transform: translateX(-5rem);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-el .version-type {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-status-el .version-content {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
opacity: 0.625;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Operation */
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-area {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
flex: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-area::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-area.subpage-expanded {
|
|
|
|
|
flex: 15;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-subpage-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 0;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.825);
|
|
|
|
|
z-index: 6000;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-subpage-container::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-area.subpage-expanded
|
|
|
|
|
.aura-config-page-subpage-container {
|
|
|
|
|
height: calc(100% - 40px - 4rem);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
|
|
|
padding-left: 1rem;
|
|
|
|
|
padding-right: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-container.hide-other-operations
|
|
|
|
|
.aura-config-page-operation-el:not(.preserve-operation) {
|
|
|
|
|
max-width: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-container.hide-other-operations
|
|
|
|
|
.aura-config-page-operation-el.preserve-operation {
|
|
|
|
|
flex: 0.25;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding-top: 2rem;
|
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
|
|
max-width: 25%;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
|
|
|
|
transition: opacity 0.5s, transform 0.5s,
|
|
|
|
|
max-width cubic-bezier(0, 0.42, 0.18, 1) 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show[aura-disabled="true"]:hover {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-hidden {
|
|
|
|
|
transform: translateY(2rem);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show
|
|
|
|
|
.aura-config-page-operation-body {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 0.25s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show[aura-disabled="true"]
|
|
|
|
|
.aura-config-page-operation-body {
|
|
|
|
|
transition: opacity 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show:not(.preserve-operation):hover
|
|
|
|
|
.aura-config-page-operation-body {
|
|
|
|
|
opacity: 0.625;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show[aura-disabled="true"]:hover
|
|
|
|
|
.aura-config-page-operation-body {
|
|
|
|
|
opacity: 0.25;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show:not(.preserve-operation):active
|
|
|
|
|
.aura-config-page-operation-body {
|
|
|
|
|
opacity: 0.25;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show[aura-disabled="true"]::after {
|
|
|
|
|
content: "别急嘛, 还在开发呢...";
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
color: white;
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show[aura-disabled="true"]:hover::after,
|
|
|
|
|
.aura-config-page-operation-el.operation-el-show[aura-disabled="true"]:active::after {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el img {
|
|
|
|
|
max-width: 40px;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el .config-operation-title {
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: large;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-operation-el .config-operation-description {
|
|
|
|
|
color: white;
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
font-size: small;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-02 00:22:46 +08:00
|
|
|
/* Auth Dialog */
|
|
|
|
|
|
|
|
|
|
.aura-config-page-auth-dialog-area {
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: calc(100% - 40px);
|
|
|
|
|
width: 100%;
|
|
|
|
|
top: 40px;
|
|
|
|
|
left: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
z-index: 10000;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.35);
|
|
|
|
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: all 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-auth-dialog-area.blur-enabled {
|
|
|
|
|
height: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
|
|
|
backdrop-filter: blur(5px);
|
|
|
|
|
filter: blur(0.1px);
|
|
|
|
|
/* ↑ 似乎会导致性能问题 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.acp-ada-hidden {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.acp-ada-hidden.blur-enabled {
|
|
|
|
|
backdrop-filter: blur(0.1px);
|
|
|
|
|
filter: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-auth-dialog {
|
|
|
|
|
height: 40%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.625);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
text-align: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-top: 2rem;
|
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.acp-auth-dialog-title {
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#acp-auth-user-input {
|
|
|
|
|
max-width: 50%;
|
|
|
|
|
/* background-color: rgba(255, 255, 255, 0.5); */
|
|
|
|
|
border-radius: 35px;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#acp-auth-user-input.invalid {
|
|
|
|
|
animation: invalidShake 0.6s linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.acp-auth-confirm-btn {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-radius: 35px;
|
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.acp-auth-confirm-btn .layui-icon {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-18 19:20:46 +08:00
|
|
|
/* Toast */
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area {
|
|
|
|
|
z-index: 9000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast {
|
|
|
|
|
--bs-toast-border-width: 0 !important;
|
|
|
|
|
--bs-toast-bg: #fff !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast-header {
|
|
|
|
|
background-color: rgb(255, 234, 202);
|
|
|
|
|
|
|
|
|
|
border-top-left-radius: var(--bs-toast-border-radius);
|
|
|
|
|
border-top-right-radius: var(--bs-toast-border-radius);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast.acp-toast-emerg .toast-header {
|
|
|
|
|
background-color: rgb(255, 202, 202);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast-header * {
|
|
|
|
|
color: rgba(234, 126, 14, 0.85);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast.acp-toast-emerg .toast-header * {
|
|
|
|
|
color: rgba(234, 65, 14, 0.85);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast-body p {
|
|
|
|
|
margin-bottom: var(--bs-toast-padding-x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aura-config-page-toast-area .toast-header .layui-icon {
|
|
|
|
|
font-weight: bolder;
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|