﻿/* CommentBox for SharePoint v2.0 */

/* Comment layout */
div.cBoxRoot{
	border-left:1px silver solid;
	border-top:1px silver solid;
	margin:0px 2px 5px 0px;
	padding:2px 0px 2px 2px;
	background-color:white;
}
div.cBoxChildEven{
	border:1px silver solid;
	margin:10px 2px 10px 0px;
	padding:2px 0px 2px 2px;
	background-color:#EDEDED;
}
div.cBoxChildOdd{
	border:1px silver solid;
	margin:10px 2px 10px 0px;
	padding:2px 0px 2px 2px;
	background-color:white;
}
/* Color code my comments - set "colorMyComments" to true in the argument object */
div.cBoxMyComments{
	border-left:3px solid #7AD03A;
	background-color:#CEE7F8;
}
/* Button style */
input.cBoxBtn{
	min-width:6em;
	border:1px solid #ababab;
	padding:4px 6px;
	background-color:#fdfdfd;
	margin:3px 5px 3px 0px;
	font-size:11px;
	color:#444;
}
/* The "Leave a reply" or "Edit" label above the textarea */
div.cBoxLeaveCommentLabel{
	padding:3px;
	font-size:14px;
	color:#444;
	cursor:default;
}
/* The wrap around the textarea where the comments are added */
div.cBoxAddCommentWrap{
	border:1px silver solid;
	margin:2px 0px 2px 0px;
	background-color:#CEE7F8;
}
/* The textare where the comments are added */
.cBoxTextarea{
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/**/
td.cBoxPostedBy{
	padding-bottom:3px;
	font-size:13px;
}
/* The comment body */
div.cBoxCommentBody{
	font-family:Calibri;		
	font-size:12px;
	max-height:400px;
	overflow:auto;
}
/* Fix excessive padding on p tags in the comments */
td.cBoxCommentContainer p{
	margin:0px;
}
/* Label for comment modified */
td.cBoxCommentEdited{
	padding:3px 3px 3px 0px;
	font-size:10px;
	color:gray;
}
/* Icons */
i.cBoxIcon{
	color:gray;
	font-size:14px;
}
i.cBoxIcon:hover{
	color:black;
}
/* Label for when a use is not signed in */
div.cBoxNotSignedIn{
	color:red;
	padding:3px;
	cursor:default;
}
/* Temporary highlighting of new comments */
.cBoxNewComment{
	background-color:#C6E2FF !important;
}
/* Temporary highlighting of comments to be deleted */
.cBoxCommentDeletet{
	background-color:#ffcccc !important;
}
/* mce-btn fix for SP 2013*/
.mce-btn button{
	min-width:0 !important;
}