mirror of
https://github.com/brianpetro/smart-context-obsidian.git
synced 2026-07-22 05:32:16 +00:00
50 lines
821 B
CSS
50 lines
821 B
CSS
.sc-modal-suggestion-has-icon {
|
|
display: flex;
|
|
span:has(svg) {
|
|
justify-content: flex-end;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.sc-selected-pill-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 6px;
|
|
gap: 6px;
|
|
|
|
& button {
|
|
justify-self: flex-end;
|
|
}
|
|
&:not(:has(.sc-selected-pill)) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.sc-selected-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
background-color: var(--background-secondary);
|
|
color: var(--text-normal);
|
|
border-radius: 12px;
|
|
padding: 2px 8px;
|
|
font-size: 0.9em;
|
|
cursor: default;
|
|
}
|
|
|
|
.sc-selected-pill-remove {
|
|
margin-left: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sc-selected-pill-icon {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.setting-explanation {
|
|
/* should be easy to highlight and copy */
|
|
& code {
|
|
cursor: text;
|
|
user-select: all;
|
|
}
|
|
}
|