api chat window status message colors fixed for light theme
This commit is contained in:
parent
56b5c47565
commit
ddf164f1c2
1 changed files with 5 additions and 1 deletions
|
|
@ -64,13 +64,17 @@ messagesInputStyle .textContent = `
|
||||||
border: 1px solid lightgrey;
|
border: 1px solid lightgrey;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background: #212121;
|
background: #F2F2F2;
|
||||||
}
|
}
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
#messageInputField {
|
#messageInputField {
|
||||||
background-color: #303030;
|
background-color: #303030;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
#statusLogger{
|
||||||
|
background: #212121;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
messageInputTemplate.content.appendChild(messagesInputStyle);
|
messageInputTemplate.content.appendChild(messagesInputStyle);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue