Commit 831a667d166a465e55e584b1130df2d42eacd7af

Authored by Alexey Boroda
2 parents 3870b8c6 d724ef50

Merge remote-tracking branch 'origin/master'

frontend/views/blog/article.php
... ... @@ -47,7 +47,7 @@ _________________________________________________________ -->
47 47 ) ?></p>
48 48 <p class="lead"><?= $model->lang->body_preview ?></p>
49 49  
50   - <div id="post-content">
  50 + <div id="post-content" class="lead">
51 51  
52 52 <?= $model->lang->body ?>
53 53  
... ...
frontend/views/page/view.php
... ... @@ -28,7 +28,7 @@
28 28 _________________________________________________________ -->
29 29 <div class="col-md-9 clearfix">
30 30 <section>
31   - <div id="text-page">
  31 + <div id="text-page" class="lead">
32 32  
33 33 <?= $body ?>
34 34  
... ...
frontend/web/css/custom.css
... ... @@ -387,10 +387,11 @@ figure.reviews_gallery {
387 387 left: 0;
388 388 float: left;
389 389 box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  390 + width: max-content;
390 391 }
391 392 ._dropdown>li{
392 393 min-width: 160px;
393   - width: max-content;
  394 + width: 100%;
394 395 max-width: 300px;
395 396 padding: 10px 15px;
396 397 position: relative;
... ... @@ -424,6 +425,11 @@ figure.reviews_gallery {
424 425 ._dropdown>li:hover>a{
425 426 color:#fff;
426 427 }
  428 +#text-page img{
  429 + max-width:100%;
  430 + height:auto;
  431 + display:block;
  432 +}
427 433  
428 434 @media (max-width: 767px) {
429 435 ._dropdown-wr ._dropdown{
... ...