jvsteiner_send-note/styles.css
2024-12-03 16:07:42 +01:00

46 lines
942 B
CSS

.send-note-status-error.notice {
background: #c10000;
color: white;
}
.send-note-status-info.notice {
background: hsl(204, 86%, 53%);
color: white;
}
.send-note-status-success.notice {
background: #629762;
color: white;
}
.send-note-icons {
display: inline-flex !important;
gap: 8px !important;
margin-right: 8px !important;
align-items: center !important;
vertical-align: middle !important;
}
.send-note-icons span {
cursor: pointer !important;
opacity: 0.7;
transition: opacity 0.2s ease;
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
}
.send-note-icons span:hover {
opacity: 1;
}
.theme-dark .send-note-icons span,
.theme-light .send-note-icons span {
color: var(--text-normal) !important;
}
.metadata-property-value .send-note-icons,
.property-value .send-note-icons {
display: inline-flex !important;
margin-right: 8px !important;
}