view sat_templates/templates/default/static/chat.css @ 413:0190a0d32909 default tip

Forum: Major redesign of forums: Forums have been redesigned. They follow the new general design with 2 or 3 panels, allowing to have directly a forum if one is found/set up, and a panel on the left to search/discover other ones. Categories have been rewritten to be usable with pubsub relationships, a XEP-0277 type node is used for topics, and each item has a comments node for the threads. The thread view is set in `forum/show_messages.html` template. It has a header with a search box and a button to (un)subscribe. Items are displayed with the same macros as for the blog items. Below a room is set for editor, tags and attachments. rel 463
author Goffi <goffi@goffi.org>
date Fri, 05 Sep 2025 21:54:09 +0200
parents 8308de7fc668
children
line wrap: on
line source

:root {
  --message_input-height: 2rem;
}

#main_area {
    overflow: hidden;
}

.chat_widget {
	position: absolute;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#messages {
    height: 100%;
    min-height: 150px;
    overflow: auto;
    box-sizing: border-box;
    resize: vertical;
    transition: height 0.6s;
}

#subject {
	padding: 1em;
	text-align: center;
	background: #eee;
	font-style: italic;
}

#messages > p {
    margin: 0;
    padding: 0.5em 0 0 0.5em;
}

#messages .msg_body {
    white-space: pre-wrap;
}

#message_input {
    width: 100%;
    height: 100%;
    padding-top: 0.5rem;
    margin: 0;
    box-sizing: border-box;
    resize: none;
}

.message_box {
    flex: 1 1 calc(var(--message_input-height));
    position: relative;
    min-height: 1rem;
    box-sizing: border-box;
}


#messages > p.msg_info {
    white-space: pre-wrap;
    font-family: monospace;
    color: #049282;
}

.msg_header {
	display: block;
	font-size: 0.9em;
}

.author {
    font-weight: bold;
}

.date {
	color: #777;
}