32 lines
626 B
CSS
32 lines
626 B
CSS
/* Hide the contacts pane when enabled */
|
|
.gb-hide-contacts #pane-side {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Expand the chat area when contacts are hidden */
|
|
.gb-hide-contacts #main {
|
|
width: 100% !important;
|
|
left: 0 !important;
|
|
}
|
|
|
|
/* Style for processed messages */
|
|
.gb-processed-message {
|
|
position: relative;
|
|
}
|
|
|
|
.gb-processed-indicator {
|
|
position: absolute;
|
|
bottom: -16px;
|
|
right: 8px;
|
|
font-size: 10px;
|
|
color: #53bdeb;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
padding: 2px 4px;
|
|
border-radius: 4px;
|
|
opacity: 0.7;
|
|
cursor: help;
|
|
}
|
|
|
|
.gb-processed-message:hover .gb-processed-indicator {
|
|
opacity: 1;
|
|
}
|