mirror of
https://github.com/kenforthewin/obsidian-atomic.git
synced 2026-07-22 06:06:33 +00:00
921 lines
16 KiB
CSS
921 lines
16 KiB
CSS
/* Atomic Plugin Styles */
|
|
|
|
/* Search modal */
|
|
.atomic-search-result {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.atomic-search-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.atomic-search-snippet {
|
|
font-size: 0.85em;
|
|
color: var(--text-muted);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.atomic-search-score {
|
|
font-size: 0.75em;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
/* Similar notes view */
|
|
.atomic-similar-container {
|
|
padding: 8px;
|
|
}
|
|
|
|
.atomic-similar-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.atomic-similar-item:hover {
|
|
background: var(--background-modifier-hover);
|
|
}
|
|
|
|
.atomic-similar-title {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.atomic-similar-score {
|
|
font-size: 0.8em;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.atomic-similar-chunk {
|
|
font-size: 0.85em;
|
|
color: var(--text-muted);
|
|
margin-top: 4px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
/* Wiki view */
|
|
.atomic-wiki-container {
|
|
padding: 16px;
|
|
}
|
|
|
|
.atomic-wiki-tag-select {
|
|
width: 100%;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.atomic-wiki-content {
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.atomic-wiki-empty {
|
|
color: var(--text-muted);
|
|
text-align: center;
|
|
padding: 32px 16px;
|
|
}
|
|
|
|
.atomic-wiki-generating {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 48px 24px;
|
|
}
|
|
|
|
.atomic-wiki-spinner {
|
|
width: 64px;
|
|
height: 64px;
|
|
color: var(--interactive-accent);
|
|
margin-bottom: 24px;
|
|
animation: atomic-wiki-spin 1s linear infinite;
|
|
}
|
|
|
|
.atomic-wiki-spinner svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.atomic-wiki-generating-title {
|
|
font-size: 1.05em;
|
|
font-weight: 500;
|
|
color: var(--text-normal);
|
|
margin: 0 0 6px;
|
|
}
|
|
|
|
.atomic-wiki-generating-sub {
|
|
font-size: 0.85em;
|
|
color: var(--text-muted);
|
|
margin: 0;
|
|
}
|
|
|
|
.atomic-wiki-generating-hint {
|
|
font-size: 0.75em;
|
|
color: var(--text-faint);
|
|
margin: 12px 0 0;
|
|
}
|
|
|
|
@keyframes atomic-wiki-spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Chat view */
|
|
.atomic-chat-root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.atomic-chat-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.atomic-chat-title {
|
|
flex: 1;
|
|
font-weight: 600;
|
|
font-size: 0.95em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.atomic-chat-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.atomic-chat-scope-chip {
|
|
background: var(--background-modifier-hover);
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 12px;
|
|
padding: 2px 10px;
|
|
font-size: 0.8em;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.atomic-chat-scope-chip:hover {
|
|
color: var(--text-normal);
|
|
border-color: var(--interactive-accent);
|
|
}
|
|
|
|
.atomic-chat-icon-btn {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 4px;
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.atomic-chat-icon-btn:hover {
|
|
background: var(--background-modifier-hover);
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.atomic-chat-conv-list {
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
max-height: 240px;
|
|
overflow-y: auto;
|
|
background: var(--background-secondary);
|
|
}
|
|
|
|
.atomic-chat-conv-list.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.atomic-chat-conv-row {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.atomic-chat-conv-row:hover {
|
|
background: var(--background-modifier-hover);
|
|
}
|
|
|
|
.atomic-chat-conv-row.active {
|
|
background: var(--background-modifier-hover);
|
|
border-left: 2px solid var(--interactive-accent);
|
|
}
|
|
|
|
.atomic-chat-conv-title {
|
|
font-size: 0.9em;
|
|
color: var(--text-normal);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.atomic-chat-conv-tags {
|
|
font-size: 0.75em;
|
|
color: var(--text-faint);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.atomic-chat-conv-empty {
|
|
padding: 16px;
|
|
color: var(--text-muted);
|
|
text-align: center;
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.atomic-chat-thread {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 12px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.atomic-chat-empty,
|
|
.atomic-chat-loading {
|
|
color: var(--text-muted);
|
|
text-align: center;
|
|
padding: 24px 12px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.atomic-chat-msg {
|
|
max-width: 90%;
|
|
padding: 8px 12px;
|
|
border-radius: 10px;
|
|
line-height: 1.5;
|
|
font-size: 0.9em;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.atomic-chat-msg p {
|
|
margin: 0 0 8px;
|
|
}
|
|
|
|
.atomic-chat-msg p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.atomic-chat-msg pre {
|
|
font-size: 0.85em;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.atomic-chat-msg-user {
|
|
align-self: flex-end;
|
|
background: var(--interactive-accent);
|
|
color: var(--text-on-accent);
|
|
}
|
|
|
|
.atomic-chat-msg-user a {
|
|
color: var(--text-on-accent);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.atomic-chat-msg-assistant {
|
|
align-self: flex-start;
|
|
background: var(--background-secondary);
|
|
}
|
|
|
|
.atomic-chat-msg-tool {
|
|
align-self: stretch;
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
.atomic-chat-typing {
|
|
color: var(--text-muted);
|
|
letter-spacing: 2px;
|
|
animation: atomic-chat-pulse 1.2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes atomic-chat-pulse {
|
|
0%, 100% { opacity: 0.3; }
|
|
50% { opacity: 1; }
|
|
}
|
|
|
|
.atomic-chat-tool-calls {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.atomic-chat-tool-call {
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 6px;
|
|
background: var(--background-primary);
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.atomic-chat-tool-call summary {
|
|
padding: 4px 8px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
list-style: none;
|
|
}
|
|
|
|
.atomic-chat-tool-call summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.atomic-chat-tool-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.atomic-chat-tool-call.status-running .atomic-chat-tool-icon {
|
|
color: var(--interactive-accent);
|
|
animation: atomic-wiki-spin 1s linear infinite;
|
|
}
|
|
|
|
.atomic-chat-tool-call.status-failed .atomic-chat-tool-icon {
|
|
color: var(--color-red);
|
|
}
|
|
|
|
.atomic-chat-tool-name {
|
|
font-family: var(--font-monospace);
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.atomic-chat-tool-status {
|
|
margin-left: auto;
|
|
color: var(--text-muted);
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.atomic-chat-tool-body {
|
|
padding: 6px 8px;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.atomic-chat-tool-body pre {
|
|
margin: 0 0 4px;
|
|
font-size: 0.85em;
|
|
background: var(--background-secondary);
|
|
padding: 6px;
|
|
border-radius: 4px;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.atomic-chat-input-wrap {
|
|
display: flex;
|
|
gap: 6px;
|
|
padding: 8px 10px;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.atomic-chat-input {
|
|
flex: 1;
|
|
resize: none;
|
|
min-height: 32px;
|
|
max-height: 200px;
|
|
padding: 6px 8px;
|
|
font-family: inherit;
|
|
font-size: 0.9em;
|
|
line-height: 1.4;
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 6px;
|
|
background: var(--background-primary);
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.atomic-chat-input:focus {
|
|
outline: none;
|
|
border-color: var(--interactive-accent);
|
|
}
|
|
|
|
.atomic-chat-send {
|
|
background: var(--interactive-accent);
|
|
color: var(--text-on-accent);
|
|
border: none;
|
|
border-radius: 6px;
|
|
padding: 6px 10px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.atomic-chat-send:disabled {
|
|
background: var(--background-modifier-border);
|
|
color: var(--text-faint);
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Scope editor popover */
|
|
.atomic-chat-scope-popover {
|
|
position: absolute;
|
|
min-width: 240px;
|
|
max-width: 320px;
|
|
background: var(--background-primary);
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
|
|
padding: 10px;
|
|
z-index: 100;
|
|
}
|
|
|
|
.atomic-chat-scope-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 4px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.atomic-chat-scope-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
background: var(--background-modifier-hover);
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 10px;
|
|
padding: 2px 4px 2px 8px;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.atomic-chat-scope-remove {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font-size: 1em;
|
|
padding: 0 4px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.atomic-chat-scope-remove:hover {
|
|
color: var(--color-red);
|
|
}
|
|
|
|
.atomic-chat-scope-empty {
|
|
font-size: 0.8em;
|
|
color: var(--text-faint);
|
|
padding: 2px 0;
|
|
}
|
|
|
|
.atomic-chat-scope-input {
|
|
width: 100%;
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 4px;
|
|
background: var(--background-primary);
|
|
color: var(--text-normal);
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.atomic-chat-scope-suggestions {
|
|
margin-top: 4px;
|
|
max-height: 180px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.atomic-chat-scope-suggest-row {
|
|
padding: 4px 8px;
|
|
font-size: 0.85em;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.atomic-chat-scope-suggest-row:hover {
|
|
background: var(--background-modifier-hover);
|
|
}
|
|
|
|
/* Onboarding wizard */
|
|
.atomic-onboarding-modal .modal-content {
|
|
padding: 0;
|
|
}
|
|
|
|
.atomic-onboarding {
|
|
padding: 24px;
|
|
}
|
|
|
|
.atomic-onboarding h2 {
|
|
margin: 0 0 8px;
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.atomic-onboarding-desc {
|
|
color: var(--text-muted);
|
|
margin: 0 0 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.atomic-onboarding-features {
|
|
color: var(--text-muted);
|
|
padding-left: 20px;
|
|
margin: 0 0 20px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.atomic-onboarding-features strong {
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.atomic-onboarding-body {
|
|
min-height: 260px;
|
|
}
|
|
|
|
.atomic-onboarding-form .setting-item {
|
|
border-top: none;
|
|
padding: 6px 0;
|
|
}
|
|
|
|
.atomic-onboarding-test {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin: 8px 0 16px;
|
|
}
|
|
|
|
.atomic-onboarding-test-status {
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.atomic-onboarding-test-status.success {
|
|
color: var(--color-green);
|
|
}
|
|
|
|
.atomic-onboarding-test-status.error {
|
|
color: var(--color-red);
|
|
}
|
|
|
|
.atomic-onboarding-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 20px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
/* Step indicator */
|
|
.atomic-step-indicator {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
gap: 0;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.atomic-step {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 6px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.atomic-step-dot {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
background: var(--background-modifier-border);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.atomic-step-dot svg {
|
|
width: 12px;
|
|
height: 12px;
|
|
color: var(--text-on-accent);
|
|
}
|
|
|
|
.atomic-step-dot.active {
|
|
background: var(--interactive-accent);
|
|
box-shadow: 0 0 0 3px var(--interactive-accent-hover);
|
|
}
|
|
|
|
.atomic-step-dot.completed {
|
|
background: var(--interactive-accent);
|
|
}
|
|
|
|
.atomic-step-label {
|
|
font-size: 0.7em;
|
|
color: var(--text-muted);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.atomic-step-connector {
|
|
height: 2px;
|
|
flex: 1;
|
|
min-width: 32px;
|
|
max-width: 64px;
|
|
background: var(--background-modifier-border);
|
|
margin-top: 11px;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.atomic-step-connector.completed {
|
|
background: var(--interactive-accent);
|
|
}
|
|
|
|
/* Progress bar */
|
|
.atomic-sync-progress {
|
|
margin: 16px 0;
|
|
}
|
|
|
|
.atomic-sync-progress.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.atomic-progress-bar {
|
|
height: 6px;
|
|
background: var(--background-modifier-border);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.atomic-progress-fill {
|
|
height: 100%;
|
|
width: 0;
|
|
background: var(--interactive-accent);
|
|
border-radius: 3px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.atomic-progress-label {
|
|
font-size: 0.85em;
|
|
color: var(--text-muted);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
/* Sync stats */
|
|
.atomic-sync-stats {
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
|
|
.atomic-sync-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.atomic-sync-stat-value {
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.atomic-sync-stat-label {
|
|
font-size: 0.75em;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* AI processing phase */
|
|
.atomic-ai-progress {
|
|
margin-top: 16px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.atomic-ai-progress.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.atomic-ai-title {
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-muted);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.atomic-ai-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.atomic-ai-row-label {
|
|
font-size: 0.85em;
|
|
color: var(--text-normal);
|
|
width: 88px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.atomic-ai-bar {
|
|
flex: 1;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.atomic-ai-row-count {
|
|
font-size: 0.8em;
|
|
color: var(--text-muted);
|
|
width: 56px;
|
|
text-align: right;
|
|
flex-shrink: 0;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.atomic-ai-hint {
|
|
font-size: 0.75em;
|
|
color: var(--text-faint);
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Feature cards */
|
|
.atomic-feature-cards {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.atomic-feature-card {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
border: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.atomic-feature-icon {
|
|
flex-shrink: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
color: var(--interactive-accent);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.atomic-feature-icon svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.atomic-feature-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.atomic-feature-title {
|
|
font-weight: 600;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.atomic-feature-desc {
|
|
font-size: 0.85em;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.atomic-feature-shortcut {
|
|
font-size: 0.75em;
|
|
color: var(--text-faint);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* Skip link */
|
|
.atomic-skip-link {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font-size: 0.85em;
|
|
padding: 4px 8px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.atomic-skip-link:hover {
|
|
color: var(--text-normal);
|
|
}
|
|
|
|
.atomic-skip-link.hidden {
|
|
display: none;
|
|
}
|
|
|
|
/* Canvas view */
|
|
.atomic-canvas-root {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
.atomic-canvas-sigma {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
.atomic-canvas-status {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
gap: 6px;
|
|
color: var(--text-muted);
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.atomic-canvas-status-sub {
|
|
font-size: 0.85em;
|
|
color: var(--text-faint);
|
|
}
|
|
|
|
.atomic-canvas-status-error {
|
|
color: var(--color-red);
|
|
}
|
|
|
|
.atomic-canvas-info {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 12px;
|
|
font-size: 0.75em;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
pointer-events: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.atomic-canvas-labels {
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
z-index: 10;
|
|
}
|
|
|
|
.atomic-canvas-controls {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 12px;
|
|
display: flex;
|
|
gap: 6px;
|
|
padding: 6px;
|
|
background: rgba(20, 20, 20, 0.6);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 6px;
|
|
z-index: 20;
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
.atomic-canvas-swatch {
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
padding: 0;
|
|
cursor: pointer;
|
|
box-shadow: none;
|
|
transition: transform 0.1s ease;
|
|
}
|
|
|
|
.atomic-canvas-swatch:hover {
|
|
transform: scale(1.15);
|
|
}
|
|
|
|
.atomic-canvas-swatch.active {
|
|
border-color: #fff;
|
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
/* Status bar */
|
|
.atomic-status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.atomic-status-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.atomic-status-dot.connected {
|
|
background: var(--color-green);
|
|
}
|
|
|
|
.atomic-status-dot.disconnected {
|
|
background: var(--color-red);
|
|
}
|