Commit 505c1c76e1bc709f61338431b0fd9f7ea4bb5093
1 parent
99b10610
Блог
Showing
2 changed files
with
9 additions
and
5 deletions
Show diff stats
frontend/views/comment/artbox_comment_list.php
... | ... | @@ -23,8 +23,8 @@ |
23 | 23 | if(( $success = \Yii::$app->session->getFlash('artbox_comment_success') ) != NULL) { |
24 | 24 | echo Html::tag('p', $success); |
25 | 25 | } |
26 | - echo '<div class="comments-border"></div>'; | |
27 | - echo '<h4 class="text-uppercase">Комментарии</h4>'; | |
26 | +echo '<div class="comments-border"></div>'; | |
27 | +echo '<h4 class="text-uppercase">Комментарии</h4>'; | |
28 | 28 | echo ListView::widget([ |
29 | 29 | 'dataProvider' => $comments, |
30 | 30 | 'itemOptions' => $item_options, |
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | |
51 | 51 | return "<a id='hide_more_link' style='cursor:pointer'>Скрыть комментарии</a></div>"; |
52 | 52 | } |
53 | -} | |
53 | + } | |
54 | 54 | |
55 | 55 | |
56 | 56 | ]); | ... | ... |
frontend/web/css/custom.css
... | ... | @@ -95,7 +95,7 @@ |
95 | 95 | text-align: center; |
96 | 96 | line-height: 50px; |
97 | 97 | font-size: 32px; |
98 | - background: #38a7bb; | |
98 | + background: #4fbfa8; | |
99 | 99 | color: #fff; |
100 | 100 | cursor: pointer; |
101 | 101 | text-decoration: none; |
... | ... | @@ -107,7 +107,8 @@ |
107 | 107 | } |
108 | 108 | |
109 | 109 | #back-to-top:hover { |
110 | - background: #20616d; | |
110 | + transition:0.2s; | |
111 | + background: #206b5c; | |
111 | 112 | color: #fff; |
112 | 113 | } |
113 | 114 | |
... | ... | @@ -293,6 +294,9 @@ input[type="text"].form-control{ |
293 | 294 | background-color: #4fbfa8; |
294 | 295 | border-color: #4fbfa8!important; |
295 | 296 | } |
297 | +.post .img-responsive{ | |
298 | + width:100%; | |
299 | +} | |
296 | 300 | @media (max-width: 1199px){ |
297 | 301 | .header-kristal .container .img-responsive{ |
298 | 302 | margin-bottom: -68px; | ... | ... |