sahibinden theme remove and restate theme set as default theme

This commit is contained in:
Mostafa Moradi 2024-08-21 18:28:56 +03:00
parent 78aa553117
commit 29e40fd482
656 changed files with 12824 additions and 320557 deletions

View File

@ -46,7 +46,7 @@ class LoginController extends PublicController
return $form
->setOption('redirect', 'admin')
->setOption('wrapper_view', 'visiosoft.theme.sahibinden::login')
->setOption('wrapper_view', 'visiosoft.theme.restate::login')
->render();
}

View File

@ -18,9 +18,11 @@
background-color: #f2f2f2;
color: #b31901;
}
.pending-screen img {
height: 7em;
}
.pending-screen p {
font-weight: 500;
}

View File

@ -20,7 +20,6 @@
{% include "visiosoft.module.advs::ad-detail/partials/ad-status" %}
<h2 class="title">
{{ adv.title }}
{{ addBlock('ad-detail/title/action',{'adv_id':adv.id})|raw }}
</h2>
<!--detail-ad -->
@ -47,7 +46,6 @@
{% include "visiosoft.module.advs::ad-detail/partials/content" %}
{{ addBlock('ad-detail/widget', {'price': adv.price, 'id': adv.id})|raw }}
{% endif %}
</div>

View File

@ -1 +1 @@
{% include "visiosoft.theme.sahibinden::ad-detail/default" %}
{% include "visiosoft.theme.restate::ad-detail/default" %}

View File

@ -1,6 +1,5 @@
{% if app.auth.id == adv.created_by_id %}
<div class="breadcrumb bg-dark justify-content-end mt-3 mb-0">
{{ addBlock('ad-detail/partials/author-button', {'adv_id': adv.id})|raw }}
<a class="btn btn-info edit-adv-btn mr-2" href="/advs/edit_advs/{{ adv.id }}">
<i class="fas fa-pencil-alt"></i>
<font>{{ trans('visiosoft.module.advs::field.edit') }}</font>

View File

@ -1,9 +1,7 @@
{% extends "visiosoft.module.advs::list/list" %}
{% block listContent %}
{% set showPrice = setting_value('visiosoft.theme.sahibinden::price_fields') %}
{% set showLocation = setting_value('visiosoft.module.location::home_page_location') %}
{% set showDate = setting_value('visiosoft.theme.sahibinden::date_fields') %}
<div class="row p-0 m-0 ">
{% for adv in advs %}
@ -32,12 +30,6 @@
<a href="{{ adv.detail_url }}" class="product-name-hb text-truncate text-decoration-none text-dark">{{ adv.cat1_name }} /{{ adv.cat2_name }}</a>
{% endif %}
{% if showPrice %}
<div class="product-price-hb rounded d-flex align-items-center mt-2 bg-secondary-md bg-none text-dark justify-content-between">
{{ adv.price != '0' ? currency_format(adv.price,adv.currency, {'decimals' : setting_value('visiosoft.field_type.decimal::decimal_length')}) : setting_value("visiosoft.module.advs::hide_zero_price") ? '-' : trans('visiosoft.module.advs::field.free') }}
</div>
{% endif %}
</div>
</div>
</div>
@ -49,12 +41,7 @@
{% endblock %}
{% block styles %}
{{ asset_style('visiosoft.theme.sahibinden::css/gallery.css') }}
{{ asset_style('visiosoft.module.advs::css/list-new.scss') }}
{% endblock %}
{% block customjs %}
{% include "theme::scroll-modal" %}
{% endblock %}

View File

@ -8,6 +8,10 @@
<input type="hidden" name="user" value="{{ app.request.get('user') }}">
<div id="category" class="border rounded p-3 mb-3 d-none d-sm-block">
<div id="categoryNav" class="d-flex">
<a href="{{ url_route('visiosoft.module.advs::view_type', ['list']) }}" rel="nofollow"
class="d-flex w-50 align-items-center pl-2 pb-1{{ request().cookie.viewType != "map" ? ' active' }}">
@ -21,6 +25,10 @@
<p class="ml-2">{{ trans("visiosoft.module.advs::field.map.name") }}</p>
</a>
{% endif %}
</div>
{% include 'visiosoft.module.cats::ads-list/partials/cat-filter' %}

View File

@ -1,5 +1,5 @@
{{ asset_add("styles.css", "visiosoft.module.advs::css/list.css") }}
{% set sub_categories_limit = setting_value('visiosoft.theme.sahibinden::home_page_sub_categories_limit') %}
{% set sub_categories_limit = setting_value('visiosoft.theme.restate::home_page_sub_categories_limit') %}
{% if setting_value('visiosoft.module.advs::show_subcats_mobile')
and subCats|length > 0
@ -11,7 +11,7 @@
<li class="categories-list-li category-icon text-truncate d-flex justify-content-between text-dark">
<a href="{{ url_current() }}?show=all" class="sub-category show-all">
<span>
{{ trans('visiosoft.theme.sahibinden::field.show_all_for_cats', {cat_name: mainCats|last.name})}}
{{ trans('visiosoft.theme.restate::field.show_all_for_cats', {cat_name: mainCats|last.name})}}
</span>
<span>
{% if setting_value('visiosoft.module.advs::show_ads_count') %}

View File

@ -4,7 +4,7 @@
<style>
{{ asset_inline("visiosoft.module.advs::css/new-create.css") }}
{{ asset_inline("visiosoft.module.advs::css/new-create-new.scss") }}
{{ asset_inline("visiosoft.theme.sahibinden::css/base/jquery-ui.min.css") }}
{{ asset_inline("visiosoft.theme.restate::css/base/jquery-ui.min.css") }}
</style>
{% endblock %}
@ -275,6 +275,6 @@
{{ asset_add("scripts.js", "visiosoft.module.advs::js/new-create.js") }}
{{ asset_add("scripts.js", "streams::js/form/form.js") }}
{{ asset_add("scripts.js", "streams::js/form/translations.js") }}
{{ asset_add("scripts.js", "visiosoft.theme.sahibinden::js/base/vendor/jquery-ui.min.js") }}
{{ asset_add("scripts.js", "visiosoft.theme.restate::js/base/jquery-ui.min.js") }}
{% endblock %}

View File

@ -1,6 +1,6 @@
{% if setting_value('visiosoft.theme.base::breadcrumbs') %}
{% if setting_value('visiosoft.theme.restate::breadcrumbs') %}
<!-- breadcrumb -->
{% include "visiosoft.module.advs::ad-detail/partials/breadcrumb" %}
<!-- breadcrumb -->
{% endif %}
{% include "visiosoft.theme.sahibinden::ad-detail/default" %}
{% include "visiosoft.theme.restate::addons/visiosoft/advs-module/ad-detail/main" %}

View File

@ -1,6 +1,6 @@
{% extends "visiosoft.theme.sahibinden::layouts/default" %}
{% extends "theme::layouts/default" %}
{% block content %}
{% include "visiosoft.theme.sahibinden::partials/messages" %}
{% include "theme::partials/messages" %}
{{ asset_add("scripts.js", "streams::js/form/form.js") }}
{{ asset_add("scripts.js", "streams::js/form/translations.js") }}
@ -49,7 +49,7 @@
</span>
{{ form.fields.icon.value
? img(url(form.fields.icon.value)).width(24)|raw
: img('visiosoft.theme.sahibinden::images/default-categories-icon.png').width(24)|raw }}
: img('visiosoft.theme.restate::images/default-categories-icon.png').width(24)|raw }}
</div>
{{ form.fields.icon.input|raw }}
</div>

View File

@ -58,7 +58,7 @@ class CatsModulePlugin extends Plugin
'catIcon',
function ($path) {
if ($path == "") {
return dispatch_sync(new MakeImageInstance('visiosoft.theme.sahibinden::images/default-categories-icon.png', 'img'))->url();
return dispatch_sync(new MakeImageInstance('visiosoft.theme.restate::images/default-categories-icon.png', 'img'))->url();
} else {
return url('files/' . $path);
}

View File

@ -44,7 +44,7 @@ return [
'required' => false,
'config' => [
'default_value' => function () {
return config('visiosoft.theme.sahibinden::countries.default');
return config('visiosoft.theme.restate::countries.default');
},
'options' => function () {
$array = \Visiosoft\LocationModule\Country\CountryModel::query()->get()->pluck('name', 'abv')->toArray();

View File

@ -1,4 +1,4 @@
{% extends template.layout ?: "visiosoft.theme.sahibinden::layouts/default" %}
{% extends template.layout ?: "visiosoft.theme.restate::layouts/default" %}
{% block content %}
{% set neighborhood = getNeighborhood(app.request.get('village')) %}

View File

@ -1,6 +1,6 @@
{% extends "visiosoft.theme.sahibinden::layouts/default" %}
{% extends "visiosoft.theme.restate::layouts/default" %}
{% block content %}
{% include "visiosoft.theme.sahibinden::partials/messages" %}
{% include "visiosoft.theme.restate::partials/messages" %}
{{ asset_add("scripts.js", "streams::js/form/form.js") }}
{{ asset_add("scripts.js", "streams::js/form/translations.js") }}

View File

@ -99,4 +99,4 @@
<script>
var default_country = "{{ setting_value('visiosoft.module.location::default_country') }}"
</script>
{{ asset_add("scripts.js", "visiosoft.theme.sahibinden::js/phonefield.js") }}
{{ asset_add("scripts.js", "visiosoft.theme.restate::js/base/phonefield.js") }}

View File

@ -99,4 +99,4 @@
<script>
var default_country = "{{ setting_value('visiosoft.module.location::default_country') }}"
</script>
{{ asset_add("scripts.js", "visiosoft.theme.sahibinden::js/phonefield.js") }}
{{ asset_add("scripts.js", "visiosoft.theme.restate::js/base/phonefield.js") }}

View File

@ -0,0 +1,9 @@
{
"name": "visiosoft/restate-theme",
"type": "streams-addon",
"autoload": {
"psr-4": {
"Visiosoft\\RestateTheme\\": "src/"
}
}
}

View File

@ -0,0 +1,51 @@
<?php
return [
'monitoring' => [
'stacked' => false,
'tabs' => [
'home_settings' => [
'title' => 'visiosoft.theme.restate::setting.home_settings.name',
'fields' => [
'logo', 'logo_white', 'mobile_intro_bg', 'btn_color', 'btn_color2',
'home_background_image','print_logo', 'popular_cities',
'ad_page_target', 'header_category1' , 'header_category2',
'search_cat1', 'search_cat2', 'search_cat3', 'search_cat4',
'homepage_cats_with_images','homepage_banner_section'
],
],
'footer_settings' => [
'title' => 'visiosoft.theme.restate::setting.footer_settings.name',
'fields' => [
'footer_doping_color','facebook_address', 'instagram_address', 'twitter_address', 'linkedin_address', 'youtube_address',
'app_store', 'android_store', "footer_logo",'etbis_qr','etbis_link'
],
],
'posts' => [
'title' => 'visiosoft.theme.restate::setting.posts.name',
'fields' => [
'list_cats',
],
],
'contact' => [
'title' => 'visiosoft.theme.restate::setting.contact.name',
'fields' => [
'address' , 'phone' , 'mail', 'company_name' , 'company_desc', 'form_desc'
]
],
'others' => [
'title' => 'visiosoft.theme.restate::setting.others.name',
'fields' => [
'contact_info_visible_to_login_user', 'default_owner', 'shareWhatsappMsg', 'list_top_customfield'
]
],
'catalog_mode' => [
'title' => 'visiosoft.theme.restate::section.catalog_mode.name',
'fields' => [
'breadcrumbs','home_page_sub_categories_limit','domains_allowed_iframe_access'
],
],
],
],
];

View File

@ -0,0 +1,185 @@
<?php
return [
"logo" => "anomaly.field_type.file",
"logo_white" => "anomaly.field_type.file",
"home_background_image" => "anomaly.field_type.file",
"print_logo" => "anomaly.field_type.file",
"popular_cities" => [
"type" => "anomaly.field_type.checkboxes",
"config" => [
"mode" => "tags",
"options" => static function (\Visiosoft\LocationModule\City\CityModel $cityModel) {
return $cityModel->all()->pluck('name', 'id')->all();
},
]
],
"facebook_address" => [
"type" => "anomaly.field_type.url",
"config" => [
"default_value" => 'https://www.facebook.com'
]
],
"instagram_address" => "anomaly.field_type.url",
"twitter_address" => [
"type" => "anomaly.field_type.url",
"config" => [
"default_value" => 'https://www.twitter.com'
]
],
"linkedin_address" => [
"type" => "anomaly.field_type.url",
"config" => [
"default_value" => 'https://www.linkedin.com'
]
],
"youtube_address" => "anomaly.field_type.url",
"app_store" => "anomaly.field_type.url",
"android_store" => "anomaly.field_type.url",
"footer_logo" => "anomaly.field_type.file",
"etbis_qr" => "anomaly.field_type.file",
"etbis_link" => "anomaly.field_type.text",
'btn_color' => [
'type' => 'anomaly.field_type.colorpicker',
"config" => [
"default_value" => '#061a46'
]
],
'btn_color2' => [
'type' => 'anomaly.field_type.colorpicker',
"config" => [
"default_value" => '#5226d2'
]
],
'list_cats' => [
'type' => 'anomaly.field_type.checkboxes',
'config' => [
'mode' => 'tags',
'options' => function () {
return app(\Anomaly\PostsModule\Category\CategoryModel::class)->get()->pluck('name', 'id');
}
]
],'ad_page_target' => [
'type' => 'anomaly.field_type.select',
"config" => [
"options" => [
'current' => "visiosoft.theme.restate::setting.current_page",
'new' => "visiosoft.theme.restate::setting.new_page",
],
]
],
'header_category1' => [
'type' => 'anomaly.field_type.select',
'config' => [
'handler' => 'Visiosoft\RestateTheme\SettingHandler\CategoriesOptions@handle'
],
],
'header_category2' => [
'type' => 'anomaly.field_type.select',
'config' => [
'handler' => 'Visiosoft\RestateTheme\SettingHandler\CategoriesOptions@handle'
],
],
'search_cat1' => [
'type' => 'anomaly.field_type.select',
'config' => [
'handler' => 'Visiosoft\RestateTheme\SettingHandler\CategoriesOptions@handle'
]
],
'search_cat2' => [
'type' => 'anomaly.field_type.select',
'config' => [
'handler' => 'Visiosoft\RestateTheme\SettingHandler\CategoriesOptions@handle'
]
],'search_cat3' => [
'type' => 'anomaly.field_type.select',
'config' => [
'handler' => 'Visiosoft\RestateTheme\SettingHandler\CategoriesOptions@handle'
]
],'search_cat4' => [
'type' => 'anomaly.field_type.select',
'config' => [
'handler' => 'Visiosoft\RestateTheme\SettingHandler\CategoriesOptions@handle'
]
],
'address' => [
'type' => 'anomaly.field_type.text',
],
'phone' => [
'type' => 'anomaly.field_type.text',
],
'mail' => [
'type' => 'anomaly.field_type.email',
],
'company_name' => [
'type' => 'anomaly.field_type.text',
],
'company_desc' => [
'type' => 'anomaly.field_type.text',
],
'form_desc' => [
'type' => 'anomaly.field_type.text',
],
'mobile_intro_bg' => [
'type' => 'anomaly.field_type.file'
],
'contact_info_visible_to_login_user' => [
'type' => 'anomaly.field_type.boolean'
],
'shareWhatsappMsg' => [
'type' => 'anomaly.field_type.textarea',
"config" => [
'default_value' => 'See what I found on Openclassify. Just look at the details.',
]
],
'default_owner' => [
"type" => "anomaly.field_type.relationship",
"config" => [
"related" => '\Anomaly\UsersModule\User\UserModel',
"mode" => "search",
"default_value" => null,
]
],
'footer_doping_color' => [
'type' => 'anomaly.field_type.colorpicker',
"config" => [
"default_value" => '#061a46'
]
],
'list_top_customfield' => [
'type' => 'anomaly.field_type.relationship',
'config' => [
'related' => \Visiosoft\CustomFieldsModule\CustomField\CustomFieldModel::class,
],
],
'homepage_cats_with_images' => [
'type' => 'anomaly.field_type.boolean',
"config" => [
"default_value" => false
]
],
'homepage_banner_section' => [
'type' => 'anomaly.field_type.editor',
"config" => [
"default_value" => false
]
],
'breadcrumbs' => [
'type' => 'anomaly.field_type.boolean',
"config" => [
"default_value" => 1,
]
],
'home_page_sub_categories_limit' => [
'type' => 'anomaly.field_type.integer',
'config' => [
'min' => 0,
'default_value' => 8
],
],
'domains_allowed_iframe_access'=> [
'type' => 'anomaly.field_type.tags',
],
];

View File

@ -0,0 +1,44 @@
/**
* Bootstrap Multiselect (http://davidstutz.de/bootstrap-multiselect/)
*
* Apache License, Version 2.0:
* Copyright (c) 2012 - 2021 David Stutz
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a
* copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
* BSD 3-Clause License:
* Copyright (c) 2012 - 2021 David Stutz
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of David Stutz nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
span.multiselect-native-select{position:relative}span.multiselect-native-select select{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px -1px -1px -3px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;left:50%;top:30px}.multiselect.dropdown-toggle:after{display:none}.multiselect{overflow:hidden;text-overflow:ellipsis}.multiselect-container{position:absolute;list-style-type:none;margin:0;padding:0}.multiselect-container .multiselect-reset .input-group{width:93%}.multiselect-container .multiselect-filter>.fa-search{z-index:1;padding-left:.75rem}.multiselect-container .multiselect-filter>input.multiselect-search{border:none;border-bottom:1px solid #d3d3d3;padding-left:2rem;margin-left:-1.625rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.multiselect-container .multiselect-filter>input.multiselect-search:focus{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.multiselect-container .multiselect-filter>.multiselect-moz-clear-filter{margin-left:-1.5rem;display:none}.multiselect-container .multiselect-option.multiselect-group-option-indented{padding-left:1.75rem}.multiselect-container .multiselect-all,.multiselect-container .multiselect-group,.multiselect-container .multiselect-option{padding:.25rem .25rem .25rem .75rem}.multiselect-container .multiselect-all .form-check-label,.multiselect-container .multiselect-all.dropdown-item,.multiselect-container .multiselect-all.dropdown-toggle,.multiselect-container .multiselect-group .form-check-label,.multiselect-container .multiselect-group.dropdown-item,.multiselect-container .multiselect-group.dropdown-toggle,.multiselect-container .multiselect-option .form-check-label,.multiselect-container .multiselect-option.dropdown-item,.multiselect-container .multiselect-option.dropdown-toggle{cursor:pointer}.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback),.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active,.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback),.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active,.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback),.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active{background-color:#d3d3d3;color:#000}.multiselect-container .multiselect-all:focus,.multiselect-container .multiselect-all:hover,.multiselect-container .multiselect-group:focus,.multiselect-container .multiselect-group:hover,.multiselect-container .multiselect-option:focus,.multiselect-container .multiselect-option:hover{background-color:#a9a9a9!important}.multiselect-container .multiselect-all .form-check,.multiselect-container .multiselect-group .form-check,.multiselect-container .multiselect-option .form-check{padding:0 5px 0 20px}.multiselect-container .multiselect-all:focus,.multiselect-container .multiselect-group:focus,.multiselect-container .multiselect-option:focus{outline:0}.form-inline .multiselect-container span.form-check{padding:3px 20px 3px 40px}.input-group.input-group-sm>.multiselect-native-select .multiselect{padding:.25rem 1.75rem .25rem .5rem;font-size:.875rem;line-height:1.5;height:calc(4em)}.input-group>.multiselect-native-select{flex:1 1 auto;width:1%}.input-group>.multiselect-native-select>div.btn-group{width:100%}.input-group>.multiselect-native-select:not(:first-child) .multiselect{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.multiselect-native-select:not(:last-child) .multiselect{border-top-right-radius:0;border-bottom-right-radius:0}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,204 @@
body.lb-disable-scrolling {
overflow: hidden;
}
.lightboxOverlay {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
background-color: black;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
opacity: 0.8;
display: none;
}
.lightbox {
position: absolute;
left: 0;
width: 100%;
z-index: 10000;
text-align: center;
line-height: 0;
font-weight: normal;
outline: none;
}
.lightbox .lb-image {
display: block;
height: auto;
max-width: inherit;
max-height: none;
border-radius: 3px;
/* Image border */
border: 4px solid white;
}
.lightbox a img {
border: none;
}
.lb-outerContainer {
position: relative;
*zoom: 1;
width: 250px;
height: 250px;
margin: 0 auto;
border-radius: 4px;
/* Background color behind image.
This is visible during transitions. */
background-color: white;
}
.lb-outerContainer:after {
content: "";
display: table;
clear: both;
}
.lb-loader {
position: absolute;
top: 43%;
left: 0;
height: 25%;
width: 100%;
text-align: center;
line-height: 0;
}
.lb-cancel {
display: block;
width: 32px;
height: 32px;
margin: 0 auto;
background: url(../images/loading.gif) no-repeat;
}
.lb-nav {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 10;
}
.lb-container > .nav {
left: 0;
}
.lb-nav a {
outline: none;
background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
height: 100%;
cursor: pointer;
display: block;
}
.lb-nav a.lb-prev {
width: 34%;
left: 0;
float: left;
background: url(../images/prev.png) left 48% no-repeat;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition: opacity 0.6s;
-moz-transition: opacity 0.6s;
-o-transition: opacity 0.6s;
transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
.lb-nav a.lb-next {
width: 64%;
right: 0;
float: right;
background: url(../images/next.png) right 48% no-repeat;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition: opacity 0.6s;
-moz-transition: opacity 0.6s;
-o-transition: opacity 0.6s;
transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
.lb-dataContainer {
margin: 0 auto;
padding-top: 5px;
*zoom: 1;
width: 100%;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
content: "";
display: table;
clear: both;
}
.lb-data {
padding: 0 4px;
color: #ccc;
}
.lb-data .lb-details {
width: 85%;
float: left;
text-align: left;
line-height: 1.1em;
}
.lb-data .lb-caption {
font-size: 13px;
font-weight: bold;
line-height: 1em;
}
.lb-data .lb-caption a {
color: #4ae;
}
.lb-data .lb-number {
display: block;
clear: left;
padding-bottom: 1em;
font-size: 12px;
color: #999999;
}
.lb-data .lb-close {
display: block;
float: right;
width: 30px;
height: 30px;
background: url(../images/close.png) top right no-repeat;
text-align: right;
outline: none;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
-webkit-transition: opacity 0.2s;
-moz-transition: opacity 0.2s;
-o-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
cursor: pointer;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}

View File

@ -0,0 +1,39 @@
.small-notice {
background-color: #f7f7f7;
}
.small-notice i {
font-size: 18px;
position: relative;
top: 4px;
}
.personal-advantages img {
max-height: 60px;
max-width: 60px;
}
.approved-phone {
background-color: #ebf2e5 !important;
border-color: #4a7c20 !important;
}
.rejected-phone {
background-color: #f8e6e9 !important;
border-color: #ba7b84 !important;
}
.phone-validation-error {
color: #c75050;
font-size: 14px;
}
.register-area input {
color: #707070 !important;
}
.register-area input::-webkit-input-placeholder,
.register-area input::-moz-placeholder,
.register-area input::placeholder {
color: #BCBDC3 !important;
}

View File

@ -0,0 +1,207 @@
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
background: #fff url("{{ img('visiosoft.theme.restate::images/ajax-loader.gif').url }}") center center no-repeat;
}
/* Icons */
@font-face
{
font-family: 'slick';
font-weight: normal;
font-style: normal;
src: url('{{ asset_path("visiosoft.theme.restate::fonts/slick/slick.eot") }}');
src: url('{{ asset_path("visiosoft.theme.restate::fonts/slick/slick.eot") }}?#iefix') format('embedded-opentype'),
url('{{ asset_path("visiosoft.theme.restate::fonts/slick/slick.woff") }}') format('woff'),
url('{{ asset_path("visiosoft.theme.restate::fonts/slick/slick.ttf") }}') format('truetype'),
url('{{ asset_path("visiosoft.theme.restate::fonts/slick/slick.svg") }}#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
width: 20px;
height: 20px;
padding: 0;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
color: transparent;
outline: none;
background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
opacity: .25;
}
.slick-prev:before,
.slick-next:before
{
font-family: 'slick';
font-size: 20px;
line-height: 1;
opacity: .75;
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
left: -25px;
}
[dir='rtl'] .slick-prev
{
right: -25px;
left: auto;
}
.slick-prev:before
{
content: '←';
}
[dir='rtl'] .slick-prev:before
{
content: '→';
}
.slick-next
{
right: -25px;
}
[dir='rtl'] .slick-next
{
right: auto;
left: -25px;
}
.slick-next:before
{
content: '→';
}
[dir='rtl'] .slick-next:before
{
content: '←';
}
/* Dots */
.slick-dotted.slick-slider
{
margin-bottom: 30px;
}
.slick-dots
{
position: absolute;
bottom: -25px;
display: block;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
.slick-dots li
{
position: relative;
display: inline-block;
width: 20px;
height: 20px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button
{
font-size: 0;
line-height: 0;
display: block;
width: 20px;
height: 20px;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
opacity: 1;
}
.slick-dots li button:before
{
font-family: 'slick';
font-size: 6px;
line-height: 20px;
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
content: '•';
text-align: center;
opacity: .25;
color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
opacity: .75;
color: black;
}

View File

@ -0,0 +1,119 @@
/* Slider */
.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,20 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by Fontastic.me</metadata>
<defs>
<font id="slick" horiz-adv-x="512">
<font-face font-family="slick" units-per-em="512" ascent="480" descent="-32"/>
<missing-glyph horiz-adv-x="512"/>
<glyph unicode="&#8594;"
d="M241 113l130 130c4 4 6 8 6 13 0 5-2 9-6 13l-130 130c-3 3-7 5-12 5-5 0-10-2-13-5l-29-30c-4-3-6-7-6-12 0-5 2-10 6-13l87-88-87-88c-4-3-6-8-6-13 0-5 2-9 6-12l29-30c3-3 8-5 13-5 5 0 9 2 12 5z m234 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
<glyph unicode="&#8592;"
d="M296 113l29 30c4 3 6 7 6 12 0 5-2 10-6 13l-87 88 87 88c4 3 6 8 6 13 0 5-2 9-6 12l-29 30c-3 3-8 5-13 5-5 0-9-2-12-5l-130-130c-4-4-6-8-6-13 0-5 2-9 6-13l130-130c3-3 7-5 12-5 5 0 10 2 13 5z m179 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
<glyph unicode="&#8226;"
d="M475 256c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29-40 0-77 9-110 29-34 20-60 46-80 80-20 33-29 70-29 110 0 40 9 77 29 110 20 34 46 60 80 80 33 20 70 29 110 29 40 0 77-9 110-29 34-20 60-46 80-80 20-33 29-70 29-110z"/>
<glyph unicode="&#97;"
d="M475 439l0-128c0-5-1-9-5-13-4-4-8-5-13-5l-128 0c-8 0-13 3-17 11-3 7-2 14 4 20l40 39c-28 26-62 39-100 39-20 0-39-4-57-11-18-8-33-18-46-32-14-13-24-28-32-46-7-18-11-37-11-57 0-20 4-39 11-57 8-18 18-33 32-46 13-14 28-24 46-32 18-7 37-11 57-11 23 0 44 5 64 15 20 9 38 23 51 42 2 1 4 3 7 3 3 0 5-1 7-3l39-39c2-2 3-3 3-6 0-2-1-4-2-6-21-25-46-45-76-59-29-14-60-20-93-20-30 0-58 5-85 17-27 12-51 27-70 47-20 19-35 43-47 70-12 27-17 55-17 85 0 30 5 58 17 85 12 27 27 51 47 70 19 20 43 35 70 47 27 12 55 17 85 17 28 0 55-5 81-15 26-11 50-26 70-45l37 37c6 6 12 7 20 4 8-4 11-9 11-17z"/>
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 592 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="14" height="14" viewBox="0 0 256 256" xml:space="preserve">
<desc>Created with Fabric.js 1.7.22</desc>
<defs>
</defs>
<g transform="translate(128 128) scale(0.97 0.97)" style="">
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(-130.05 -130.05000000000004) scale(2.89 2.89)" >
<path d="M 24.25 90 c -0.896 0 -1.792 -0.342 -2.475 -1.025 c -1.367 -1.366 -1.367 -3.583 0 -4.949 L 60.8 45 L 21.775 5.975 c -1.367 -1.367 -1.367 -3.583 0 -4.95 c 1.367 -1.366 3.583 -1.366 4.95 0 l 41.5 41.5 c 1.367 1.366 1.367 3.583 0 4.949 l -41.5 41.5 C 26.042 89.658 25.146 90 24.25 90 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(90,90,90); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,12 @@
<svg width="37px" height="37px" viewBox="0 0 37 37" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Detail" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Detail-Paylas-2" transform="translate(-561.000000, -317.000000)">
<g id="Group-30" transform="translate(561.000000, 244.000000)">
<g id="Group-42" transform="translate(0.000000, 73.000000)">
<circle id="Oval" fill="#E2E2E2" fill-rule="nonzero" cx="18.5" cy="18.5" r="18.5"></circle>
<path d="M26,11 C27.1045695,11 28,11.8954305 28,13 L28,24 C28,25.1045695 27.1045695,26 26,26 L11,26 C9.8954305,26 9,25.1045695 9,24 L9,13 C9,11.8954305 9.8954305,11 11,11 L26,11 Z M11,13 L11,15.2597656 L18.441,19.962 L18.5,20.0416309 L26,15.2597656 L26,13.0234375 L18.529,17.669 L11,13 Z" id="Combined-Shape" fill="#FFFFFF"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 992 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,14 @@
<svg width="37px" height="37px" viewBox="0 0 37 37" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Detail" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Detail-Paylas-2" transform="translate(-561.000000, -369.000000)">
<g id="Group-30" transform="translate(561.000000, 244.000000)">
<g id="Group-43" transform="translate(0.000000, 125.000000)">
<circle id="Oval" fill="#E2E2E2" fill-rule="nonzero" cx="18.5" cy="18.5" r="18.5"></circle>
<g id="facebook" transform="translate(14.000000, 9.000000)" fill="#3456A5">
<path d="M6,6.95454545 L6,4.34659091 C6,3.47727273 6.42085714,3.25994318 7.07142857,3.25994318 L8.25,3.25994318 L8.57142857,0 L5.89285714,0 C3.42857143,0 2.57142857,1.73863636 2.57142857,3.47727273 L2.57142857,6.95454545 L0,6.95454545 L0,10.4318182 L2.57142857,10.4318182 L2.57142857,19.125 L6,19.125 L6,10.4318182 L8.25,10.4318182 L9,6.95454545 L6,6.95454545 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 7.33l2.829-2.83 9.175 9.339 9.167-9.339 2.829 2.83-11.996 12.17z"/></svg>

After

Width:  |  Height:  |  Size: 168 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 21.25C5.58579 21.25 5.25 21.5858 5.25 22C5.25 22.4142 5.58579 22.75 6 22.75V21.25ZM18 22.75C18.4142 22.75 18.75 22.4142 18.75 22C18.75 21.5858 18.4142 21.25 18 21.25V22.75ZM18.75 9.5C18.75 11.2065 17.6599 13.4136 16.1547 15.2468C15.4148 16.1481 14.6072 16.9179 13.8465 17.4554C13.0624 18.0094 12.4227 18.25 12 18.25V19.75C12.8898 19.75 13.8438 19.294 14.7121 18.6804C15.6038 18.0504 16.5071 17.1815 17.314 16.1987C18.9026 14.2638 20.25 11.7209 20.25 9.5H18.75ZM12 18.25C11.5925 18.25 10.9595 17.9993 10.171 17.4074C9.409 16.8353 8.59932 16.0178 7.85679 15.0668C6.34675 13.1327 5.25 10.825 5.25 9.11111H3.75C3.75 11.3246 5.09075 13.9614 6.67446 15.9899C7.4788 17.0201 8.38006 17.9385 9.27041 18.6069C10.1343 19.2555 11.095 19.75 12 19.75V18.25ZM5.25 9.11111C5.25 5.48059 8.47857 2.75 12 2.75V1.25C7.78944 1.25 3.75 4.51941 3.75 9.11111H5.25ZM12 2.75C15.4938 2.75 18.75 5.45503 18.75 9.5H20.25C20.25 4.54497 16.2382 1.25 12 1.25V2.75ZM14.25 9C14.25 10.2426 13.2426 11.25 12 11.25V12.75C14.0711 12.75 15.75 11.0711 15.75 9H14.25ZM12 11.25C10.7574 11.25 9.75 10.2426 9.75 9H8.25C8.25 11.0711 9.92893 12.75 12 12.75V11.25ZM9.75 9C9.75 7.75736 10.7574 6.75 12 6.75V5.25C9.92893 5.25 8.25 6.92893 8.25 9H9.75ZM12 6.75C13.2426 6.75 14.25 7.75736 14.25 9H15.75C15.75 6.92893 14.0711 5.25 12 5.25V6.75ZM6 22.75H18V21.25H6V22.75Z" fill="#61697B"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 8L9.7812 10.5208C11.1248 11.4165 12.8752 11.4165 14.2188 10.5208L18 8M6 21H18C20.2091 21 22 19.2091 22 17V7C22 4.79086 20.2091 3 18 3H6C3.79086 3 2 4.79086 2 7V17C2 19.2091 3.79086 21 6 21Z" stroke="#61697B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 391 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 19V17.3541C21 16.5363 20.5021 15.8008 19.7428 15.4971L17.7086 14.6835C16.7429 14.2971 15.6422 14.7156 15.177 15.646L15 16C15 16 12.5 15.5 10.5 13.5C8.5 11.5 8 9 8 9L8.35402 8.82299C9.28438 8.35781 9.70285 7.25714 9.31654 6.29136L8.50289 4.25722C8.19916 3.4979 7.46374 3 6.64593 3H5C3.89543 3 3 3.89543 3 5C3 13.8366 10.1634 21 19 21C20.1046 21 21 20.1046 21 19Z" stroke="#61697B" stroke-width="1.5" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 541 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 70 KiB

View File

@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<g fill="none" fill-rule="evenodd">
<g>
<g transform="translate(-351 -284) translate(351 284)">
<circle cx="16" cy="16" r="15" stroke="#E1E1E1" stroke-width="2"></circle>
<path fill="#C7C7C7"
d="M16.908 10.268c.478-.384 1.171-.354 1.611.082L24 15.78l-5.498 5.446c-.479.474-1.243.47-1.718.002l.04.036-.053-.059c-.36-.44-.359-1.063-.004-1.499l.088-.097 2.525-2.503H9c-.552 0-1-.447-1-1v-.143c0-.552.448-1 1-1h10.896l-3.017-2.989c-.434-.43-.464-1.123-.081-1.596l.049-.056z">
</path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 681 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 10L12 14L17 10" stroke="#7D879B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 14L12 10L17 14" stroke="#2068FF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

View File

@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.8662 21H6.13967C5.30698 21 4.50839 20.6876 3.91959 20.1315C3.33079 19.5754 3 18.8212 3 18.0348V6.95967C3.00156 6.17421 3.33304 5.42142 3.92167 4.86653C4.51031 4.31164 5.308 4 6.13967 4H17.8662C18.2778 4 18.6853 4.07655 19.0655 4.22529C19.4457 4.37403 19.7911 4.59204 20.0821 4.86687C20.3731 5.1417 20.604 5.46797 20.7615 5.82705C20.9189 6.18614 21 6.571 21 6.95967V18.0348C21 18.8202 20.67 19.5736 20.0825 20.1295C19.495 20.6855 18.6979 20.9985 17.8662 21ZM6.13967 5.39344C5.9214 5.39271 5.70512 5.43268 5.50323 5.51106C5.30135 5.58944 5.11784 5.70469 4.96322 5.85021C4.8086 5.99572 4.68592 6.16862 4.60221 6.35901C4.5185 6.5494 4.47541 6.75352 4.47541 6.95967V18.0348C4.47541 18.4516 4.65075 18.8514 4.96286 19.1462C5.27497 19.441 5.69828 19.6066 6.13967 19.6066H17.8662C18.0845 19.6066 18.3006 19.5659 18.5022 19.4868C18.7038 19.4077 18.8869 19.2919 19.041 19.1458C19.195 18.9998 19.3171 18.8265 19.4001 18.6358C19.483 18.4452 19.5254 18.2409 19.5246 18.0348V6.95967C19.5246 6.54428 19.3499 6.14591 19.0389 5.85218C18.7279 5.55846 18.3061 5.39344 17.8662 5.39344H6.13967Z" fill="#2068FF"/>
<path d="M9.82432 12.8199C9.61992 12.8193 9.41804 12.7792 9.23222 12.7023C8.97234 12.5957 8.75231 12.4233 8.59886 12.206C8.4454 11.9887 8.36512 11.7359 8.36775 11.4782V4.66817C8.36775 4.49096 8.44573 4.32101 8.58453 4.1957C8.72333 4.0704 8.91159 4 9.10788 4C9.30417 4 9.49243 4.0704 9.63123 4.1957C9.77003 4.32101 9.84801 4.49096 9.84801 4.66817V11.4782L11.2394 10.3664C11.5009 10.1556 11.8392 10.0391 12.1898 10.0391C12.5403 10.0391 12.8786 10.1556 13.1401 10.3664L14.5671 11.4836L14.5197 4.66817C14.5197 4.49096 14.5977 4.32101 14.7365 4.1957C14.8753 4.0704 15.0635 4 15.2598 4C15.4561 4 15.6444 4.0704 15.7832 4.1957C15.922 4.32101 15.9999 4.49096 15.9999 4.66817V11.4782C16.0026 11.7359 15.9223 11.9887 15.7688 12.206C15.6154 12.4233 15.3954 12.5957 15.1355 12.7023C14.8833 12.807 14.6028 12.843 14.3284 12.806C14.0539 12.769 13.7973 12.6605 13.5901 12.4938L12.1809 11.3927L10.7717 12.4992C10.5099 12.707 10.1729 12.821 9.82432 12.8199ZM13.069 17H7.74013C7.54383 17 7.35558 16.9296 7.21678 16.8043C7.07798 16.679 7 16.509 7 16.3318C7 16.1546 7.07798 15.9847 7.21678 15.8594C7.35558 15.734 7.54383 15.6637 7.74013 15.6637H13.069C13.2653 15.6637 13.4536 15.734 13.5924 15.8594C13.7312 15.9847 13.8092 16.1546 13.8092 16.3318C13.8092 16.509 13.7312 16.679 13.5924 16.8043C13.4536 16.9296 13.2653 17 13.069 17Z" fill="#2068FF"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Some files were not shown because too many files have changed in this diff Show More