snort/src/Element/NoteCreator.css

48 lines
882 B
CSS
Raw Normal View History

2023-01-03 16:55:51 +00:00
.note-creator {
margin-bottom: 10px;
2023-01-20 15:57:45 +00:00
background-color: var(--note-bg);
border: 1px solid var(--gray);
2023-01-06 12:45:30 +00:00
border-radius: 10px;
2023-01-20 15:57:45 +00:00
padding: 6px;
2023-01-03 16:55:51 +00:00
}
.note-reply {
margin: 10px;
}
2023-01-03 16:55:51 +00:00
.note-creator textarea {
2023-01-06 12:45:30 +00:00
outline: none;
resize: none;
2023-01-03 16:55:51 +00:00
min-height: 40px;
2023-01-20 15:57:45 +00:00
background-color: var(--note-bg);
2023-01-03 16:55:51 +00:00
border-radius: 10px 10px 0 0;
2023-01-25 13:54:45 +00:00
max-width: stretch;
min-width: stretch;
2023-01-03 16:55:51 +00:00
}
.note-creator .actions {
2023-01-06 12:45:30 +00:00
width: 100%;
justify-content: flex-end;
margin-bottom: 5px;
}
.note-creator .attachment {
2023-01-03 16:55:51 +00:00
cursor: pointer;
padding: 5px 10px;
2023-01-06 12:45:30 +00:00
border-radius: 10px;
}
.note-creator .attachment .error {
font-weight: normal;
margin-right: 5px;
font-size: 14px;
}
.note-creator .btn {
border-radius: 20px;
font-weight: bold;
2023-01-20 15:57:45 +00:00
background-color: var(--bg-color);
color: var(--font-color);
font-size: var(--font-size);
2023-01-06 12:45:30 +00:00
}