mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	Remove label from sidebar
This commit is contained in:
		@@ -90,6 +90,24 @@ body.sidebar-collapse .sidebar-menu {
 | 
			
		||||
 * Conversations entries
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
add left border
 | 
			
		||||
.main-sidebar .memberships-list .conversation_memberhsip.has-unread-msg::before {
 | 
			
		||||
	border: 2px white solid;
 | 
			
		||||
  border-radius: 2px 0px 0px 2px;
 | 
			
		||||
  content: " ";
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  background-color: white;
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  left: 1%;
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
.main-sidebar .memberships-list .conversation_memberhsip.has-unread-msg {
 | 
			
		||||
	background-color: #00a65a30;
 | 
			
		||||
}
 | 
			
		||||
  
 | 
			
		||||
 | 
			
		||||
.main-sidebar .memberships-list .conversation_memberhsip a {
 | 
			
		||||
	padding: 5px 5px 5px 15px;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -75,12 +75,12 @@ const SidebarMain = {
 | 
			
		||||
		this.addSearchForm(section);
 | 
			
		||||
 | 
			
		||||
		// User memberships
 | 
			
		||||
		createElem2({
 | 
			
		||||
		/*createElem2({
 | 
			
		||||
			appendTo: section,
 | 
			
		||||
			type: "div",
 | 
			
		||||
			class: "intermediate-label hide-on-collapse",
 | 
			
		||||
			innerHTML: "FRIENDS & GROUPS"
 | 
			
		||||
		});
 | 
			
		||||
		});*/
 | 
			
		||||
		let userMemberships = createElem2({
 | 
			
		||||
			appendTo: section,
 | 
			
		||||
			type: "div",
 | 
			
		||||
@@ -544,6 +544,11 @@ const SidebarMain = {
 | 
			
		||||
		});
 | 
			
		||||
		li.setAttribute("data-membership-conv-id", conv.ID)
 | 
			
		||||
 | 
			
		||||
		// Check for unread messages
 | 
			
		||||
		if(!conv.saw_last_message) {
 | 
			
		||||
			li.classList.add("has-unread-msg");
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		let a = createElem2({
 | 
			
		||||
			appendTo: li,
 | 
			
		||||
			type: "a",
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user