mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-05-04 11:37:31 +08:00
refresh webui forms and fix whatsapp bridge login state
This commit is contained in:
@@ -975,21 +975,33 @@ html.theme-dark .brand-button {
|
||||
border-radius: 0.4rem;
|
||||
background: rgb(255 255 255 / 0.94);
|
||||
box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.95);
|
||||
transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 0.72rem 0.72rem;
|
||||
transition:
|
||||
border-color 160ms ease,
|
||||
background-color 160ms ease,
|
||||
box-shadow 160ms ease,
|
||||
transform 160ms ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ui-checkbox:hover {
|
||||
border-color: rgb(249 115 22 / 0.72);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgb(255 255 255 / 0.95),
|
||||
0 0 0 3px rgb(249 115 22 / 0.08);
|
||||
}
|
||||
|
||||
.ui-checkbox:checked {
|
||||
border-color: var(--color-indigo-500);
|
||||
background:
|
||||
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7.2L5.7 10L11 4.6' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
|
||||
linear-gradient(135deg, var(--button-start) 0%, var(--button-end) 100%);
|
||||
box-shadow:
|
||||
inset 0 0 0 2px rgb(255 255 255 / 0.96),
|
||||
0 0 0 3px rgb(249 115 22 / 0.12);
|
||||
0 0 0 3px rgb(249 115 22 / 0.14),
|
||||
0 8px 18px rgb(249 115 22 / 0.2);
|
||||
transform: translateY(-0.5px);
|
||||
}
|
||||
|
||||
.ui-checkbox:focus-visible {
|
||||
@@ -1022,12 +1034,10 @@ html.theme-dark .brand-button {
|
||||
-moz-appearance: none;
|
||||
cursor: pointer;
|
||||
padding-right: 2.75rem;
|
||||
background-image:
|
||||
linear-gradient(180deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0)),
|
||||
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.5L8 10L12 6.5' stroke='%2364758b' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||||
background-repeat: no-repeat, no-repeat;
|
||||
background-position: 0 0, right 0.95rem center;
|
||||
background-size: auto, 16px 16px;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.5L8 10L12 6.5' stroke='%2364758b' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 0.95rem center;
|
||||
background-size: 16px 16px;
|
||||
}
|
||||
|
||||
.ui-select:hover {
|
||||
@@ -1077,9 +1087,7 @@ html.theme-dark .ui-select {
|
||||
}
|
||||
|
||||
html.theme-dark .ui-select {
|
||||
background-image:
|
||||
linear-gradient(180deg, rgb(255 255 255 / 0.03), rgb(255 255 255 / 0)),
|
||||
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.5L8 10L12 6.5' stroke='%2390a4bc' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6.5L8 10L12 6.5' stroke='%2390a4bc' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
html.theme-dark .ui-select:hover {
|
||||
@@ -1093,20 +1101,30 @@ html.theme-dark .ui-textarea::placeholder {
|
||||
}
|
||||
|
||||
html.theme-dark .ui-checkbox {
|
||||
border-color: rgb(111 131 155 / 0.85);
|
||||
background: rgb(9 16 28 / 0.76);
|
||||
box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
|
||||
border-color: rgb(151 170 194 / 0.86);
|
||||
background: rgb(14 24 40 / 0.92);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgb(255 255 255 / 0.06),
|
||||
0 0 0 1px rgb(8 12 20 / 0.32);
|
||||
}
|
||||
|
||||
html.theme-dark .ui-checkbox:hover {
|
||||
border-color: rgb(241 165 97 / 0.78);
|
||||
box-shadow:
|
||||
inset 0 1px 0 rgb(255 255 255 / 0.06),
|
||||
0 0 0 1px rgb(8 12 20 / 0.32),
|
||||
0 0 0 3px rgb(232 132 58 / 0.12);
|
||||
}
|
||||
|
||||
html.theme-dark .ui-checkbox:checked {
|
||||
border-color: rgb(241 165 97 / 0.78);
|
||||
background:
|
||||
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7.2L5.7 10L11 4.6' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
|
||||
linear-gradient(135deg, rgb(249 115 22 / 0.96) 0%, rgb(245 158 11 / 0.96) 100%);
|
||||
box-shadow:
|
||||
inset 0 0 0 2px rgb(9 16 28 / 0.95),
|
||||
0 0 0 3px rgb(232 132 58 / 0.16);
|
||||
0 0 0 1px rgb(255 196 128 / 0.24),
|
||||
0 0 0 4px rgb(232 132 58 / 0.18),
|
||||
0 10px 22px rgb(232 132 58 / 0.22);
|
||||
}
|
||||
|
||||
html.theme-dark .ui-checkbox:focus-visible {
|
||||
@@ -1115,6 +1133,16 @@ html.theme-dark .ui-checkbox:focus-visible {
|
||||
inset 0 0 0 2px rgb(9 16 28 / 0.95);
|
||||
}
|
||||
|
||||
.ui-select option {
|
||||
background: rgb(255 255 255 / 0.98);
|
||||
color: rgb(51 65 85 / 0.98);
|
||||
}
|
||||
|
||||
html.theme-dark .ui-select option {
|
||||
background: rgb(12 20 34 / 0.98);
|
||||
color: rgb(226 232 240 / 0.96);
|
||||
}
|
||||
|
||||
.ui-soft-panel {
|
||||
border: 1px solid var(--color-zinc-800);
|
||||
border-radius: var(--radius-subtle);
|
||||
|
||||
Reference in New Issue
Block a user