Improved posts UI

This commit is contained in:
Pierre HUBERT 2018-07-20 14:27:49 +02:00
parent 693b1fa26c
commit 476f1b24a7
5 changed files with 17 additions and 3 deletions

View File

@ -3,3 +3,7 @@
*
* @author Pierre HUBERT
*/
.box-group-posts .second-user-area {
display: none;
}

View File

@ -0,0 +1,9 @@
/**
* User posts stylesheet
*
* @author Pierre HUBERT
*/
.box-user-posts .second-user-area {
display: none;
}

View File

@ -37,7 +37,7 @@ ComunicWeb.pages.groups.sections.posts = {
var postsBody = createElem2({
appendTo: target,
type: "div",
class: "box box-primary"
class: "box box-primary box-group-posts"
});
var postsBody = createElem2({

View File

@ -33,7 +33,7 @@ ComunicWeb.pages.userPage.posts = {
var postsBlock = createElem2({
appendTo: target,
type: "div",
class: "box box-primary"
class: "box box-primary box-user-posts"
});
var postsBody = createElem2({

View File

@ -207,6 +207,7 @@ class Dev {
"css/pages/userPage/main.css",
"css/pages/userPage/accessForbidden.css",
"css/pages/userPage/profileInfos.css",
"css/pages/userPage/posts.css",
//Post page
"css/pages/postPage/main.css",