refactor: Simplify ColorSwitcher integration and clean up related styles

This commit is contained in:
sHa
2025-06-12 10:21:23 +03:00
parent 224a2c7e27
commit d02e11fd7d
5 changed files with 59 additions and 153 deletions

View File

@@ -237,73 +237,6 @@ button:hover {
border-right: none;
}
/* Shared color switcher and color circle styles */
.format-row {
display: flex;
align-items: center;
gap: 1em;
margin-bottom: 0.5em;
justify-content: space-between;
}
/* Global color circle and switcher styles */
.color-circle {
width: 24px;
height: 24px;
border-radius: 50%;
border: 1px solid var(--color-border, #ddd);
cursor: pointer;
transition: transform 0.2s;
box-sizing: border-box;
display: inline-block;
}
.color-circle:hover {
transform: scale(1.1);
}
.color-circle:last-child {
margin-right: 0;
}
.color-switcher-preview {
display: flex;
gap: 0.4em;
align-items: center;
justify-content: center;
}
.color-switcher-preview.align-right {
display: flex;
align-items: center;
justify-content: flex-end;
}
.color-switcher-preview.align-left {
justify-content: flex-start;
}
.color-circle.color-reset {
background: none !important;
}
/* Moved to component-specific style */
.logo-tag {
display: inline-block;
background: var(--color-accent);
color: var(--white);
border-radius: 12px;
padding: 0.2em 0.8em;
font-size: 0.85em;
font-weight: 500;
letter-spacing: 0.02em;
margin-right: 0.3em;
margin-top: 0.2em;
margin-bottom: 0.2em;
transition: background 0.2s;
}
.logo-actions {
display: flex;
align-items: center;
@@ -408,49 +341,7 @@ div.logo-image img {
color: var(--color-text);
}
.logo-img {
flex-shrink: 0;
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
background: var(--color-card);
border-radius: 8px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
cursor: pointer;
}
/* Header styles */
.logos-container {
width: 100%;
}
textarea {
background-color: var(--background-color);
color: var(--color-text);
}
.set-circle {
background: var(--color-border);
color: var(--color-text);
font-size: 10px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0;
}
/* Dark theme variation */
:root.dark-theme .set-circle,
.dark-theme .set-circle {
background: #444;
color: #eee;
}