Commit 5325ab2cbf0268c430e4a26dc114683fe1442830

Authored by Pedro de Lyra Pereira
Committed by Eduardo Vital
1 parent a5cf909c
Exists in news_page_css

Fixing display of blog event information when there is no image

Showing 2 changed files with 8 additions and 6 deletions   Show diff stats
html-cms/blog.html
... ... @@ -83,4 +83,4 @@
83 83 <p>CACIC - Configurador Automático e Coletor de Informações Computacionais</p>
84 84 </div>
85 85 </div>
86   -</div>
87 86 \ No newline at end of file
  87 +</div>
... ...
pagina_comunidade.css
... ... @@ -828,6 +828,7 @@ ul#itens-legend-grafic{
828 828 border-top: 1px solid #D3D6DE;
829 829 padding-top: 25px;
830 830 margin-bottom: 25px;
  831 + display: table;
831 832 }
832 833  
833 834 .blog-event-item .blog-event-information .date {
... ... @@ -837,6 +838,7 @@ ul#itens-legend-grafic{
837 838 }
838 839  
839 840 .blog-event-item .blog-event-information .title {
  841 + padding-right: 0px !important;
840 842 font-weight: 700 !important;
841 843 font-size: 15px;
842 844 margin-top: 6px;
... ... @@ -850,14 +852,14 @@ ul#itens-legend-grafic{
850 852 }
851 853  
852 854 .blog-event-item .blog-event-information {
853   - float: left;
854   - width: 370px;
  855 + display: table-cell;
  856 + width: 100%;
855 857 }
856 858  
857 859 .blog-event-item .item-image {
858   - float: left;
859   - height: 100%;
860   - margin-right: 20px;
  860 + display: table-cell;
  861 + vertical-align: top;
  862 + padding-right: 20px;
861 863 }
862 864  
863 865 .blog-event-item img {
... ...