Commit b10d17b8ac3538080501f685e3954a3921805f1b

Authored by OlenaKl
1 parent e5a28136

V

Showing 2 changed files with 11 additions and 3 deletions   Show diff stats
frontend/views/goods/index.php
... ... @@ -96,9 +96,9 @@ $this->params['breadcrumbs'][] = $this->title;
96 96 <td class="medium_width row_name">Номер детали</td>
97 97 <td class="large_width row_name">Описание</td>
98 98 <td class="row_select1 row_name"></td>
99   - <td class="right_large row_name"><?=$sort->link('box')?><img src="/images/icon2.png" class="sort"></td>
100   - <td class="right_small row_name"><?=$sort->link('delivery')?><img src="/images/icon2.png" class="sort"></td>
101   - <td class="right_medium row_name"><?=$sort->link('price')?><img src="/images/icon2.png" class="sort"></td>
  99 + <td class="right_large row_name link_sort"><?=$sort->link('box')?></td>
  100 + <td class="right_small row_name link_sort"><?=$sort->link('delivery')?></td>
  101 + <td class="right_medium row_name link_sort"><?=$sort->link('price')?></td>
102 102  
103 103 </tr>
104 104 <?php
... ...
frontend/web/css/main.css
... ... @@ -558,4 +558,12 @@ div.required:after { content: &quot; *&quot;;
558 558 .first_section{
559 559 height: auto;
560 560 margin-bottom: 59px;
  561 +}
  562 +.link_sort a{
  563 + color: #333;
  564 + text-decoration: none;
  565 + display: inline-block;
  566 + margin-left: -13px;
  567 + width: 100%;
  568 + background: url("/images/icon2.png") no-repeat 100%;
561 569 }
562 570 \ No newline at end of file
... ...