jvsteiner_send-note/styles.css

47 lines
942 B
CSS
Raw Permalink Normal View History

2024-11-10 13:52:07 +00:00
.send-note-status-error.notice {
background: #c10000;
color: white;
2023-09-12 15:10:38 +00:00
}
2024-11-10 13:52:07 +00:00
.send-note-status-info.notice {
background: hsl(204, 86%, 53%);
color: white;
2023-09-23 11:05:26 +00:00
}
2024-11-10 13:52:07 +00:00
.send-note-status-success.notice {
background: #629762;
color: white;
2023-09-12 15:10:38 +00:00
}
2023-10-18 10:38:41 +00:00
2024-11-10 13:52:07 +00:00
.send-note-icons {
2024-12-03 15:07:42 +00:00
display: inline-flex !important;
gap: 8px !important;
margin-right: 8px !important;
align-items: center !important;
vertical-align: middle !important;
2023-10-18 10:38:41 +00:00
}
.send-note-icons span {
2024-12-03 15:07:42 +00:00
cursor: pointer !important;
opacity: 0.7;
transition: opacity 0.2s ease;
2024-12-03 15:07:42 +00:00
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
}
.send-note-icons span:hover {
opacity: 1;
}
2024-12-03 15:07:42 +00:00
.theme-dark .send-note-icons span,
.theme-light .send-note-icons span {
color: var(--text-normal) !important;
}
2024-12-03 15:07:42 +00:00
.metadata-property-value .send-note-icons,
.property-value .send-note-icons {
display: inline-flex !important;
margin-right: 8px !important;
2023-10-18 10:38:41 +00:00
}