mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-08-07 22:44:10 +08:00
🚧 WIP(custom): support sync gallery db file
ISSUES CLOSED: #355,#417
This commit is contained in:
@@ -964,3 +964,121 @@ small {
|
||||
.rotate {
|
||||
animation: rotate 1s linear infinite;
|
||||
}
|
||||
|
||||
/* Config Dialog Styles */
|
||||
.config-dialog {
|
||||
width: 90%;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
.dialog-header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.dialog-icon {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
.config-section {
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: 12px;
|
||||
padding: 1.25rem;
|
||||
background: var(--color-background-secondary);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.config-section:hover {
|
||||
border-color: var(--color-accent);
|
||||
box-shadow: 0 2px 12px rgb(64 158 255 / 15%);
|
||||
}
|
||||
|
||||
.config-section:not(:last-child) {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.config-section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.config-section-header h4 {
|
||||
margin: 0;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.config-section-header svg {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
.config-button-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.config-button-grid.full-width {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.config-button {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: 8px;
|
||||
padding: 0.875rem 1rem;
|
||||
min-height: 48px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
color: var(--color-text-primary);
|
||||
background: var(--color-background-primary);
|
||||
transition: all 0.2s ease;
|
||||
cursor: pointer;
|
||||
gap: 0.5rem;
|
||||
|
||||
}
|
||||
|
||||
.config-button:hover {
|
||||
border-color: var(--color-accent);
|
||||
color: var(--color-accent);
|
||||
background: var(--color-background-hover);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgb(64 158 255 / 20%);
|
||||
}
|
||||
|
||||
.config-button:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: 0 2px 6px rgb(64 158 255 / 15%);
|
||||
}
|
||||
|
||||
.config-button .button-icon {
|
||||
flex-shrink: 0;
|
||||
color: var(--color-accent);
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.config-button:hover .button-icon {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.config-button span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media (width <= 768px) {
|
||||
.config-button-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.config-dialog {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user