Commit 73bc07bdb7d2620d8eff9788350aaa48077d5c8f
1 parent
fd3e9ef7
Веталь
Showing
2 changed files
with
13 additions
and
10 deletions
Show diff stats
frontend/views/catalog/product.php
| ... | ... | @@ -116,15 +116,17 @@ $this->registerJs (" |
| 116 | 116 | </ul> |
| 117 | 117 | <div class="both"></div> |
| 118 | 118 | |
| 119 | - <div class="cost_box product_read_ _qqq_"> | |
| 119 | + <div class="cost_box product_read_"> | |
| 120 | 120 | <div class='params'>код: <span id='art'></span><br/> цвет: <span id='color'></span></div> |
| 121 | 121 | <div class="product_read_price"> |
| 122 | 122 | <div class="w"> |
| 123 | 123 | <strike><span id='old_cost'>0</span> грн.</strike> |
| 124 | 124 | <span class="cost"><span id='cost'>0</span> <span class="valute">грн.</span></span> |
| 125 | 125 | </div> |
| 126 | - <input type='hidden' id='product_id'/> | |
| 127 | - <a href="#" rel='product' class="link_buy fl">В Корзину</a> | |
| 126 | + <div class="product_read_basket"> | |
| 127 | + <input type='hidden' id='product_id'/> | |
| 128 | + <a href="#" rel='product' class="link_buy fl">В Корзину</a> | |
| 129 | + </div> | |
| 128 | 130 | <div class="both"></div> |
| 129 | 131 | </div> |
| 130 | 132 | </div> | ... | ... |
frontend/web/css/style.css
| ... | ... | @@ -986,14 +986,14 @@ a.active{font-weight:bold;text-decoration: underline;} |
| 986 | 986 | margin: 0 0.5em; |
| 987 | 987 | list-style: none; |
| 988 | 988 | } |
| 989 | -.sort_block ul li a:after { | |
| 989 | +.sort_block ul li a.asc:after, .sort_block ul li a.desc:after { | |
| 990 | 990 | display: block; |
| 991 | - width: 10px; | |
| 992 | - height: 10px; | |
| 991 | + width: 5px; | |
| 992 | + height: 3px; | |
| 993 | 993 | position: absolute; |
| 994 | 994 | top: 50%; |
| 995 | - margin-top: -5px; | |
| 996 | - right: -15px; | |
| 995 | + margin-top: -1px; | |
| 996 | + right: -10px; | |
| 997 | 997 | content: ''; |
| 998 | 998 | background: url("../img/arrow_sort_asc_desc.png") no-repeat; |
| 999 | 999 | } |
| ... | ... | @@ -1001,7 +1001,7 @@ a.active{font-weight:bold;text-decoration: underline;} |
| 1001 | 1001 | background-position: 0 0; |
| 1002 | 1002 | } |
| 1003 | 1003 | .sort_block ul li a.desc:after { |
| 1004 | - background-position: 0 0; | |
| 1004 | + background-position: 0 -3px; | |
| 1005 | 1005 | } |
| 1006 | 1006 | /*************/ |
| 1007 | 1007 | .home_banner_up {margin-top: 20px;} |
| ... | ... | @@ -1454,4 +1454,5 @@ input.custom-radio + label:hover { |
| 1454 | 1454 | margin-top: 8px; |
| 1455 | 1455 | float: left; |
| 1456 | 1456 | } |
| 1457 | -.cont_shop_but-wr .submit4.bottom3 {float: right;} | |
| 1458 | 1457 | \ No newline at end of file |
| 1458 | +.cont_shop_but-wr .submit4.bottom3 {float: right;} | |
| 1459 | +._qqq_ .params {font-size: 12px;} | |
| 1459 | 1460 | \ No newline at end of file | ... | ... |