25 lines
634 B
CSS
25 lines
634 B
CSS
/* Custom component node pill styling inside the editor wrapper */
|
|
.homelab-app-reference-pill {
|
|
background-color: rgba(
|
|
16,
|
|
185,
|
|
129,
|
|
0.1
|
|
); /* Emerald tint matching your UI accents */
|
|
color: #059669;
|
|
border: 1px solid rgba(16, 185, 129, 0.2);
|
|
border-radius: 0.375rem;
|
|
padding: 0.1rem 0.4rem;
|
|
font-weight: 500;
|
|
font-size: 0.875rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
user-select: none;
|
|
}
|
|
|
|
/* Visually highlight the whole card pill block if a user hits delete or selects it */
|
|
.ProseMirror-selectednode .homelab-app-reference-pill {
|
|
outline: 2px solid #10b981;
|
|
outline-offset: 1px;
|
|
}
|