2024-08-31 22:29:32 +00:00
|
|
|
#CL-bacbe {
|
2024-09-01 19:24:55 +00:00
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 4px;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 22:29:32 +00:00
|
|
|
.CL-my-chat-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 22:29:32 +00:00
|
|
|
.CL-my-chat-box-nickname {
|
|
|
|
margin-left: 8px;
|
|
|
|
justify-self: flex-start;
|
2024-08-05 11:42:32 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 22:29:32 +00:00
|
|
|
.CL-my-chat-box-name {
|
|
|
|
margin-left: 14px;
|
|
|
|
justify-self: flex-start;
|
2024-08-05 12:40:36 +00:00
|
|
|
}
|
2024-08-10 03:09:51 +00:00
|
|
|
|
2024-08-31 22:29:32 +00:00
|
|
|
.CL-my-chat-box-my-role {
|
|
|
|
margin-left: auto;
|
|
|
|
justify-self: flex-end;
|
2024-08-10 03:09:51 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 22:29:32 +00:00
|
|
|
.CL-my-chat-box-leave-btn {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 8px;
|
|
|
|
justify-self: flex-end;
|
|
|
|
width: 16px;
|
2024-08-14 22:07:59 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-09-01 10:03:52 +00:00
|
|
|
|
|
|
|
/* The morbid thing */
|
|
|
|
table.id-str-input-table {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse; /* Combine borders */
|
|
|
|
}
|
|
|
|
.id-str-input-td1, .id-str-input-td2 {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.id-str-input-td1 {
|
|
|
|
text-align: left;
|
|
|
|
padding-right: 5px;
|
|
|
|
white-space: nowrap; /* Prevent text wrap, keeping it in one line */
|
|
|
|
overflow: hidden; /* Hide overflow content */
|
|
|
|
text-overflow: ellipsis; /* Show ellipsis for overflowing text */
|
|
|
|
}
|
|
|
|
.id-str-input-td2 {
|
|
|
|
width: 100%;
|
|
|
|
}
|