Fix ConverseJS input borders/outline/shadow. (#311)

This commit is contained in:
John Livingston
2024-02-08 11:33:43 +01:00
parent 7b8c961faf
commit 99f01014b2
2 changed files with 14 additions and 1 deletions

View File

@ -85,6 +85,18 @@
}
}
.form-control {
/* Cancelling some bootstrap stuff */
border-color: var(--chatroom-head-bg-color);
box-shadow: none;
&:focus {
border-color: var(--chatroom-head-bg-color);
outline: 2px solid var(--chatroom-head-bg-color);
box-shadow: none;
}
}
.chatroom .box-flyout .chatroom-body .chatroom-form-container {
background-color: var(--peertube-main-background);
}