Browse Source

Ajout description groupe + css

bastien 13 years ago
parent
commit
6a150e6cfd

+ 4 - 0
src/Muzich/HomeBundle/Resources/views/Show/showGroup.html.twig View File

24
   </div>
24
   </div>
25
     
25
     
26
   <h2>{{ group.name }}</h2>
26
   <h2>{{ group.name }}</h2>
27
+  
28
+  <p class="group_description">
29
+    {{ group.description }}
30
+  </p>
27
 
31
 
28
   {% include "MuzichCoreBundle:Tag:tagsList.show.html.twig" with {
32
   {% include "MuzichCoreBundle:Tag:tagsList.show.html.twig" with {
29
     'object_id'   : group.id,
33
     'object_id'   : group.id,

+ 1 - 1
web/bundles/muzichcore/css/main.css View File

30
 }
30
 }
31
 #container h2
31
 #container h2
32
 {
32
 {
33
-  margin-top: 5px;
33
+  margin-top: 0px;
34
   margin-bottom: 5px;
34
   margin-bottom: 5px;
35
   font-size: 1.7em;
35
   font-size: 1.7em;
36
   
36
   

+ 6 - 0
web/bundles/muzichhome/css/home.css View File

84
 div.tags_prompt
84
 div.tags_prompt
85
 {
85
 {
86
   margin-top: 5px;
86
   margin-top: 5px;
87
+}
88
+
89
+p.group_description
90
+{
91
+  font-size: 90%;
92
+  text-indent: 15px;
87
 }
93
 }