/*////////////////////////////////////////////////////////////////////////////80
//  Atheos Messaging
//////////////////////////////////////////////////////////////////////////////80
// Copyright (c) 2020 Liam Siira (liam@siira.io), distributed as-is and without
// warranty under the MIT License. See [root]/license.md for more.
// This information must remain intact.
//////////////////////////////////////////////////////////////////////////////80
// Copyright (c) 2016 Codiad & RustyGumbo
// Source: https://github.com/RustyGumbo/Codiad-Messaging
//////////////////////////////////////////////////////////////////////////////*/
#messaging_bar {
	position: relative;
	top: -32px;
	z-index: 1;
}

#messaging_bar ul {
	float: right;
	overflow: hidden;
	padding-left: 15px;
}

#messaging_bar ul a {
	width: auto;
	color: var(--fontColorMajor);
}

#messaging_history {
	height: 250px;
	overflow: auto;
	background: var(--shade7, #1C1C1E);
	/*box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, .5);*/
}

#messaging_history .message {
	position: relative;
	border-bottom: solid 1px #CCC;
	padding: 5px;
}

#messaging_history .message span {
	display: block;
}

#messaging_history .date {
	font-size: 10px;
	position: absolute;
	bottom: 1px;
	right: 1px;
}

#messaging_history .text {
	padding-left: 10px;
}

#messaging_history .user {
	font-weight: bold;
}

#messaging_history .green {
	border-left: 3px var(--green) solid;
	padding-left: 2px;
}

#messaging_history .blue {
	border-left: 3px var(--blue) solid;
	padding-left: 2px;
}