Commit 64ff7d6e15efe0b81b0628149c4b6cf5a429973c
1 parent
997497ee
Exists in
fix_text_display_content
Make display content text fill all the space when there is no image
Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Fabio Teixeira <fabio1079@gmail.com>
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
page-inicial.css
... | ... | @@ -374,10 +374,10 @@ margin: -10px 0px 10px 20px; /*-20px 20px; |
374 | 374 | .block.display-content-block .image { |
375 | 375 | width: 150px; |
376 | 376 | height: 90px; |
377 | - position: absolute; | |
378 | 377 | margin-top: 35px; |
379 | 378 | border: 0px solid #c0c1c1; |
380 | 379 | border-radius: 8px; |
380 | + float: left; | |
381 | 381 | } |
382 | 382 | |
383 | 383 | .block.display-content-block .image img { |
... | ... | @@ -393,7 +393,6 @@ margin: -10px 0px 10px 20px; /*-20px 20px; |
393 | 393 | } |
394 | 394 | |
395 | 395 | .block.display-content-block .title { |
396 | - padding-left: 160px; | |
397 | 396 | padding-right: 0px; |
398 | 397 | max-height: 33px; |
399 | 398 | overflow: hidden; |
... | ... | @@ -407,7 +406,6 @@ margin: -10px 0px 10px 20px; /*-20px 20px; |
407 | 406 | } |
408 | 407 | |
409 | 408 | .block.display-content-block .lead { |
410 | - padding-left: 160px; | |
411 | 409 | padding-right: 0px; |
412 | 410 | max-height: 56px; |
413 | 411 | } | ... | ... |