diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css
index aad3790..2af6b92 100755
--- a/frontend/web/css/style.css
+++ b/frontend/web/css/style.css
@@ -987,18 +987,21 @@ a.active{font-weight:bold;text-decoration: underline;}
list-style: none;
}
.sort_block ul li a:after {
- display: inline-block;
- /*font-family: 'Glyphicons Halflings';*/
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
+ display: block;
+ width: 10px;
+ height: 10px;
+ position: absolute;
+ top: 50%;
+ margin-top: -5px;
+ right: -15px;
+ content: '';
+ background: url("../img/arrow_sort_asc_desc") no-repeat;
}
.sort_block ul li a.asc:after {
- content: "↓";
+ background-position: 0 0;
}
.sort_block ul li a.desc:after {
- content: "↑";
+ background-position: 0 0;
}
/*************/
.home_banner_up {margin-top: 20px;}
@@ -1100,7 +1103,7 @@ ul.product-special li.top {
ul.product-special li.top:after {
content: '';
position: absolute;
- left: 52px;
+ right: -19px;
top: 3px;
border: 11px solid transparent;
border-top: 5px solid #fbc665;
@@ -1125,7 +1128,7 @@ ul.product-special li.promo {
ul.product-special li.promo:after {
content: '';
position: absolute;
- left: 52px;
+ right: -19px;
top: 3px;
border: 11px solid transparent;
border-top: 5px solid #f75d50;
@@ -1173,6 +1176,7 @@ ul.product-special li.promo:after {
}
.sort_block ul li a {
color: #8fa951;
+ position: relative;
}
.sort_block ul li a:hover {
color: #333;
@@ -1435,7 +1439,7 @@ input.custom-radio + label:hover {
}
.input-blocks-wrapper .help-block {
padding-left: 71px;
- padding-top: 5px;
+ padding-top: 4px;
width: 100%;
float: left;
box-sizing: border-box;
--
libgit2 0.21.4