mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 12:30:24 +00:00
67 lines
1.4 KiB
CSS
67 lines
1.4 KiB
CSS
.custom-status-card {
|
|
background: var(--background-secondary);
|
|
border-radius: var(--radius-m);
|
|
padding: var(--size-4-3);
|
|
margin-bottom: var(--size-4-2);
|
|
}
|
|
|
|
.custom-status-preview {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--size-4-2);
|
|
padding: var(--size-4-2);
|
|
background: var(--background-primary-alt);
|
|
border-radius: var(--radius-s);
|
|
border-left: 4px solid var(--text-muted);
|
|
}
|
|
|
|
.custom-status-icon-input {
|
|
width: 40px;
|
|
text-align: center;
|
|
font-size: 1.2em;
|
|
background: transparent !important;
|
|
border: none !important;
|
|
padding: 2px !important;
|
|
}
|
|
|
|
.custom-status-text-inputs {
|
|
flex: 1;
|
|
}
|
|
|
|
.custom-status-name-input {
|
|
background: transparent !important;
|
|
border: none !important;
|
|
color: var(--text-normal);
|
|
font-weight: var(--font-semibold);
|
|
font-size: var(--font-ui-medium);
|
|
width: 100% !important;
|
|
margin-bottom: 2px;
|
|
padding: 2px !important;
|
|
}
|
|
|
|
.custom-status-description-input {
|
|
background: transparent !important;
|
|
border: none !important;
|
|
color: var(--text-muted);
|
|
font-size: var(--font-ui-smaller);
|
|
width: 100% !important;
|
|
padding: 2px !important;
|
|
}
|
|
|
|
.custom-status-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--size-4-2);
|
|
}
|
|
|
|
.custom-status-color-input {
|
|
width: 32px !important;
|
|
height: 32px !important;
|
|
border-radius: var(--radius-s);
|
|
cursor: pointer;
|
|
padding: 2px !important;
|
|
}
|
|
|
|
.custom-status-remove-btn {
|
|
font-size: 16px;
|
|
}
|