Добавить дневник действий и статусы материалов

This commit is contained in:
AidarKC
2026-08-10 01:34:17 +04:00
parent ee185cf20a
commit 67d63256c2
20 changed files with 881 additions and 90 deletions
+56 -2
View File
@@ -3972,7 +3972,9 @@ textarea.input {
display: flex;
align-items: center;
gap: 12px;
width: 100%;
flex: 1 1 auto;
width: auto;
min-width: 0;
padding: 8px 10px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.12);
@@ -4013,6 +4015,12 @@ textarea.input {
min-width: 0;
}
.channel-message-head-row {
display: flex;
align-items: stretch;
gap: 8px;
}
.channel-message-title {
font-size: 15px;
color: #f5f8ff;
@@ -4035,6 +4043,38 @@ textarea.input {
border: 1px solid rgba(255, 214, 117, 0.28);
}
.channel-message-kind-badge--status {
color: #bfe9d1;
background: rgba(38, 92, 62, 0.32);
border: 1px solid rgba(137, 223, 176, 0.26);
}
.channel-message-target-preview {
display: grid;
gap: 4px;
padding: 9px 11px;
border-radius: 10px;
border: 1px solid rgba(154, 178, 224, 0.16);
background: rgba(13, 22, 39, 0.56);
}
.channel-message-target-preview strong {
color: #f0d99c;
font-size: 12px;
}
.channel-message-target-preview span {
color: rgba(188, 208, 244, 0.82);
font-size: 12px;
}
.channel-message-target-preview p {
margin: 0;
color: #d9e6ff;
font-size: 13px;
line-height: 1.35;
}
.channels-screen .channel-message-card.is-rating,
.thread-node-card.is-rating {
border-color: rgba(255, 214, 117, 0.34);
@@ -4964,7 +5004,8 @@ textarea.input {
flex-wrap: wrap;
}
.channel-message-type-chip {
.channel-message-type-chip,
.channel-message-type-button {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
@@ -4981,6 +5022,19 @@ textarea.input {
text-transform: uppercase;
}
.channel-message-type-button {
min-width: 82px;
padding: 6px 10px;
border-radius: 10px;
cursor: pointer;
}
.channel-message-type-button.is-static,
.channel-message-type-button:disabled {
opacity: 1;
cursor: default;
}
.channel-message-tools {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;