diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css index a6443e2..891a24e 100755 --- a/frontend/web/css/style.css +++ b/frontend/web/css/style.css @@ -4597,21 +4597,21 @@ input.custom-radio + label span, input.custom-check + label span { input.custom-radio + label span { width: 12px; height: 12px; - background: url(../images/sets-ico/radio-active.png) no-repeat; + background: url(/images/sets-ico/radio-active.png) no-repeat; float: left; } input.custom-radio:checked + label span, input.custom-radio:checked + label:hover span { - background: url(../images/sets-ico/radio.png) no-repeat;transition: .2s; + background: url(/images/sets-ico/radio.png) no-repeat;transition: .2s; } input.custom-check + label span { width: 12px; height: 12px; - background: url(../images/sets-ico/check.png) no-repeat; + background: url(/images/sets-ico/check.png) no-repeat; float: left; margin-left: 46px; } input.custom-check:checked + label span, input.custom-check:checked + label:hover span { - background: url(../images/sets-ico/check-active.png) no-repeat;transition: .2s; + background: url(/images/sets-ico/check-active.png) no-repeat;transition: .2s; } .check-radio-wr { width: 50%; @@ -4631,7 +4631,7 @@ input.custom-check:checked + label span, input.custom-check:checked + label:hove -webkit-appearance: none; -moz-appearance: none; appearance: none; - background: url("../images/sets-ico/select-arrow.jpg")right center no-repeat ; + background: url("/images/sets-ico/select-arrow.jpg")right center no-repeat ; font-family: 'Roboto'!important; font-style: normal!important; font-weight: 400!important; @@ -4684,7 +4684,7 @@ input.custom-check:checked + label span, input.custom-check:checked + label:hove width: 139px; height: 59px; margin: 0 auto; - background: url("../images/captcha-bg.jpg"); + background: url("/images/captcha-bg.jpg"); } .who-you-are-form .check-radio-wr { @@ -4800,7 +4800,7 @@ input.custom-check:checked + label span, input.custom-check:checked + label:hove height: 28px; margin-top: 0; content: ''; - background: url("../images/sets-ico/select-arrow.jpg") no-repeat; + background: url("/images/sets-ico/select-arrow.jpg") no-repeat; } .selectize-dropdown { @@ -4952,10 +4952,17 @@ input.custom-check:checked + label span, input.custom-check:checked + label:hove border-right: 1px solid #b7b7b7; margin-top: 7px; cursor: pointer; - position: relative; + padding-right: 28px; } -.search-list span:after { - +.search-list:before { + position: absolute; + right: 9px; + top: 50%; + margin-top: -3px; + width: 9px; + height: 6px; + background: url("/images/arrow-search.png"); + content: ''; } .search-list ul { position: absolute; diff --git a/frontend/web/images/arrow-search.png b/frontend/web/images/arrow-search.png new file mode 100644 index 0000000..a1e06ad Binary files /dev/null and b/frontend/web/images/arrow-search.png differ diff --git a/frontend/web/images/captcha-bg.jpg b/frontend/web/images/captcha-bg.jpg new file mode 100644 index 0000000..0482ec7 Binary files /dev/null and b/frontend/web/images/captcha-bg.jpg differ diff --git a/frontend/web/images/sets-ico/check-active.png b/frontend/web/images/sets-ico/check-active.png new file mode 100644 index 0000000..d9461c5 Binary files /dev/null and b/frontend/web/images/sets-ico/check-active.png differ diff --git a/frontend/web/images/sets-ico/check.png b/frontend/web/images/sets-ico/check.png new file mode 100644 index 0000000..eaa1f16 Binary files /dev/null and b/frontend/web/images/sets-ico/check.png differ diff --git a/frontend/web/images/sets-ico/radio-active.png b/frontend/web/images/sets-ico/radio-active.png new file mode 100644 index 0000000..caf5a50 Binary files /dev/null and b/frontend/web/images/sets-ico/radio-active.png differ diff --git a/frontend/web/images/sets-ico/radio.png b/frontend/web/images/sets-ico/radio.png new file mode 100644 index 0000000..6eebdc6 Binary files /dev/null and b/frontend/web/images/sets-ico/radio.png differ diff --git a/frontend/web/images/sets-ico/select-arrow.jpg b/frontend/web/images/sets-ico/select-arrow.jpg new file mode 100644 index 0000000..b4d4dc5 Binary files /dev/null and b/frontend/web/images/sets-ico/select-arrow.jpg differ -- libgit2 0.21.4