2024-05-02 19:30:25 +00:00
|
|
|
.chatbot {
|
|
|
|
background-color: #344453;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
min-width: 500px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header {
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid #061726;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
min-height: 55px;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 10px 20px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-button {
|
|
|
|
align-items: center;
|
|
|
|
background-color: #344453;
|
|
|
|
border: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-button:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-button-icon {
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-left {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-icon {
|
|
|
|
height: 28px;
|
|
|
|
width: 28px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-icon-back {
|
|
|
|
height: 28px;
|
|
|
|
width: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-icon-back:hover {
|
|
|
|
/* background-color: #415568; */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-right {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-header-title {
|
|
|
|
color: #eee;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
max-width: 250px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
overflow-y: auto;
|
2024-05-22 16:51:46 +00:00
|
|
|
padding: 0px;
|
2024-05-02 19:30:25 +00:00
|
|
|
}
|
|
|
|
|
2024-05-22 16:51:46 +00:00
|
|
|
.chatbot-list-item-button {
|
2024-05-02 19:30:25 +00:00
|
|
|
align-items: center;
|
|
|
|
background-color: #344453;
|
|
|
|
border: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: start;
|
|
|
|
padding: 15px 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-05-22 16:51:46 +00:00
|
|
|
.chatbot-list-item-button:hover {
|
2024-05-02 19:30:25 +00:00
|
|
|
background-color: #415568;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-list-item {
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-list-item-name {
|
|
|
|
color: #eee;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
max-width: 300px;
|
|
|
|
overflow: hidden;
|
2024-05-22 16:51:46 +00:00
|
|
|
padding: 0px 10px;
|
2024-05-02 19:30:25 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
/* width: 100%; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-form {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-input {
|
|
|
|
background-color: #061726;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: white;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 10px;
|
|
|
|
resize: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-label {
|
|
|
|
color: white;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-label-warning {
|
|
|
|
color: #f23160;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-description {
|
|
|
|
color: #eee;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-description-warning {
|
|
|
|
color: #f23160;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-05-28 20:44:31 +00:00
|
|
|
.chatbot-modal-event-body {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-body-bottom {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 50%;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-body-top {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 50%;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-setting {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-options {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
height: 158.5px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-options-follow {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-options-label {
|
|
|
|
align-items: center;
|
|
|
|
color: #eee;
|
|
|
|
display: flex;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-event-options-label-warning {
|
|
|
|
align-items: center;
|
|
|
|
color: #f23160;
|
|
|
|
display: flex;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-option-label {
|
|
|
|
align-items: center;
|
|
|
|
color: #eee;
|
|
|
|
display: flex;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-option-label-warning {
|
|
|
|
align-items: center;
|
|
|
|
color: #f23160;
|
|
|
|
display: flex;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
2024-05-02 19:30:25 +00:00
|
|
|
.chatbot-modal-pages {
|
|
|
|
background-color: white;
|
|
|
|
/* border: 1px solid #D6E0EA; */
|
|
|
|
border-radius: 5px;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-page {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-page-selected {
|
|
|
|
background-color: #85c742;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-page-button {
|
|
|
|
background-color: white;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #061726;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 10px 10px;
|
|
|
|
text-align: left;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-page-button:hover {
|
|
|
|
background-color: #85c742;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2024-05-22 16:51:46 +00:00
|
|
|
.chatbot-modal-review {
|
|
|
|
color: #eee;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
height: 350px;
|
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: scroll;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-05-02 19:30:25 +00:00
|
|
|
.chatbot-modal-setting {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-setting-description {
|
|
|
|
color: #eee;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2024-05-28 20:44:31 +00:00
|
|
|
.chatbot-modal-setting-description-warning {
|
|
|
|
color: #f23160;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2024-05-02 19:30:25 +00:00
|
|
|
.chatbot-modal-textarea {
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 10px;
|
|
|
|
resize: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-toggle-switch {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 50px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-toggle-switch input {
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-toggle-slider {
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #495a6a;
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
transition: .4s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-toggle-slider:before {
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
left: 4px;
|
|
|
|
bottom: 4px;
|
|
|
|
background-color: white;
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
transition: .4s;
|
|
|
|
}
|
|
|
|
|
2024-05-22 16:51:46 +00:00
|
|
|
.chatbot-rules {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
.chatbot-rule {
|
|
|
|
border-bottom: 1px solid #1f2e3c;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
font-family: sans-serif;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-header {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-output {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: left;
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-x: scroll;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-buttons {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: center;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
padding-left: 10px;
|
|
|
|
width: 75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-button {
|
|
|
|
align-items: center;
|
|
|
|
background-color: #344453;
|
|
|
|
border: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-button:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-button-icon {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-sender {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
justify-content: left;
|
|
|
|
overflow-x: scroll;
|
|
|
|
padding-left: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-rule-trigger {
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
justify-content: left;
|
|
|
|
overflow-x: scroll;
|
|
|
|
padding-left: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
2024-05-02 19:30:25 +00:00
|
|
|
.choose-file {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file-button-box {
|
|
|
|
min-width: 100px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file-button {
|
|
|
|
background-color: #85c742;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #061726;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
/* width: 200px; */
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose-file-path {
|
|
|
|
color: #eee;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
overflow: scroll;
|
|
|
|
margin-left: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .chatbot-modal-toggle-slider {
|
|
|
|
background-color: #85c742;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .chatbot-modal-toggle-slider:before {
|
|
|
|
-webkit-transform: translateX(26px);
|
|
|
|
-ms-transform: translateX(26px);
|
|
|
|
transform: translateX(26px);
|
|
|
|
}
|
|
|
|
/* Rounded sliders */
|
|
|
|
.chatbot-modal-toggle-slider.round {
|
|
|
|
border-radius: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chatbot-modal-toggle-slider.round:before {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2024-05-22 16:51:46 +00:00
|
|
|
.command-input {
|
|
|
|
border: none;
|
|
|
|
border-radius: 34px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 5px 10px 5px 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.command-rant-amount {
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 16px;
|
|
|
|
outline: none;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.command-rant-amount-symbol {
|
|
|
|
color: #eee;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 20px;
|
|
|
|
padding-right: 1px;
|
|
|
|
}
|
|
|
|
|
2024-05-28 20:44:31 +00:00
|
|
|
.dropdown-option-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-05-02 19:30:25 +00:00
|
|
|
.timer-input {
|
|
|
|
border: none;
|
|
|
|
border-radius: 34px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: monospace;
|
2024-05-22 16:51:46 +00:00
|
|
|
font-size: 16px;
|
2024-05-02 19:30:25 +00:00
|
|
|
outline: none;
|
|
|
|
padding: 5px 10px 5px 10px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timer-input-zero::placeholder {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timer-input-value::placeholder {
|
|
|
|
color: black;
|
|
|
|
opacity: 1;
|
|
|
|
text-align: center;
|
|
|
|
}
|