move composer
@ -1 +0,0 @@
|
||||
|
||||
@ -1,16 +0,0 @@
|
||||
{
|
||||
"name": "visiosoft/advs-module",
|
||||
"type": "streams-addon",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Visiosoft\\AdvsModule\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/Support/_helpers.php"
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"fruitcake/laravel-cors": "^2.0",
|
||||
"visiosoft/style_selector-module": "*"
|
||||
}
|
||||
}
|
||||
@ -1,254 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
use Visiosoft\AdvsModule\Adv\AdvModel;
|
||||
use Visiosoft\CatsModule\Category\CategoryModel;
|
||||
use Visiosoft\LocationModule\Country\CountryModel;
|
||||
use Visiosoft\AdvsModule\City\CityModel;
|
||||
use Visiosoft\AdvsModule\CustomField\CustomFieldModel;
|
||||
use Visiosoft\AdvsModule\District\DistrictModel;
|
||||
use Visiosoft\AdvsModule\Neighborhood\NeighborhoodModel;
|
||||
use Anomaly\Streams\Platform\Model\Blocks\BlocksAreasEntryModel;
|
||||
use Anomaly\Streams\Platform\Model\Blocks\BlocksBlocksEntryModel;
|
||||
use Anomaly\Streams\Platform\Model\HtmlBlock\HtmlBlockBlocksEntryModel;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class VisiosoftModuleAdvsCreateAdvsFields extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* The addon fields.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fields = [
|
||||
'name' => 'anomaly.field_type.text',
|
||||
'slug' => [
|
||||
'type' => 'anomaly.field_type.slug',
|
||||
'config' => [
|
||||
'slugify' => 'name',
|
||||
'type' => '_'
|
||||
],
|
||||
],
|
||||
'description' => 'anomaly.field_type.textarea',
|
||||
'advs_desc' => [
|
||||
'type' => 'anomaly.field_type.wysiwyg',
|
||||
'config' => [
|
||||
'height' => 500,
|
||||
],
|
||||
],
|
||||
'cat1' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => 0,
|
||||
]
|
||||
],
|
||||
'cat2' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat3' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat4' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat5' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat6' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat7' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat8' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat9' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat10' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'parent_category' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CategoryModel::class,
|
||||
"default_value" => 0,
|
||||
]
|
||||
],
|
||||
'status' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'config' => [
|
||||
'type' => 'text',
|
||||
'default_value' => 'pending_user'
|
||||
]
|
||||
],
|
||||
'order' => 'anomaly.field_type.integer',
|
||||
'price' => [
|
||||
'type' => 'visiosoft.field_type.decimal',
|
||||
'config' => [
|
||||
'decimal' => 2,
|
||||
'separator' => '.',
|
||||
'point' => ','
|
||||
],
|
||||
],
|
||||
'currency' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
'handler' => 'currencies',
|
||||
],
|
||||
],
|
||||
'stock' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'online_payment' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
'min' => 0,
|
||||
'max' => 9,
|
||||
]
|
||||
],
|
||||
'is_get_adv' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'files' => [
|
||||
'type' => 'visiosoft.field_type.media',
|
||||
'config' => [
|
||||
'folders' => ["images"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'country' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CountryModel::class,
|
||||
"default_value" => 0,
|
||||
]
|
||||
],
|
||||
'city' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'district' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'neighborhood' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'village' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'map_Val' => "anomaly.field_type.text",
|
||||
'parent_country_id' => 'anomaly.field_type.integer',
|
||||
'parent_city_id' => 'anomaly.field_type.integer',
|
||||
'parent_district_id' => 'anomaly.field_type.integer',
|
||||
'parent_neighborhood_id' => 'anomaly.field_type.integer',
|
||||
'publish_at' => 'anomaly.field_type.datetime',
|
||||
'finish_at' => 'anomaly.field_type.datetime',
|
||||
'custom_field_category' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CustomFieldModel::class,
|
||||
],
|
||||
],
|
||||
'parent_adv' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => AdvModel::class,
|
||||
],
|
||||
],
|
||||
'custom_field_value' => 'anomaly.field_type.text',
|
||||
'type' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
'options' => ['text' => 'Text Box', 'select' => 'Secim Alani(Select Box)', 'checkboxes' => 'Coklu Secim(Check Box)', 'multiple' => 'Cok Satirli Alan(Multi Line Box)', 'integer' => 'Tam Sayi', 'colorpicker' => 'Color Picker'],
|
||||
'separator' => ':',
|
||||
]
|
||||
],
|
||||
'custom_field_select_options' => 'anomaly.field_type.text',
|
||||
'popular_adv' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'adv_day' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'custom_field_type' => "anomaly.field_type.text",
|
||||
'cf_json' => "visiosoft.field_type.json",
|
||||
'foreign_currencies' => 'visiosoft.field_type.json',
|
||||
'deleted_at' => "anomaly.field_type.datetime",
|
||||
'value' => 'anomaly.field_type.text',
|
||||
'cover_photo' => 'anomaly.field_type.text',
|
||||
'category_id' => 'anomaly.field_type.integer',
|
||||
'field_id' => 'anomaly.field_type.integer',
|
||||
'custom_field' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CustomFieldModel::class,
|
||||
],
|
||||
],
|
||||
'count_show_phone' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'count_show_ad' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
];
|
||||
}
|
||||
@ -1,81 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateAdvsStream extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
'title_column' => 'name',
|
||||
'translatable' => true,
|
||||
'trashable' => true,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'name' => [
|
||||
'translatable' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'slug' => [
|
||||
'required' => true,
|
||||
],
|
||||
'advs_desc' => [
|
||||
'translatable' => true,
|
||||
],
|
||||
'cat1',
|
||||
'cat2',
|
||||
'cat3',
|
||||
'cat4',
|
||||
'cat5',
|
||||
'cat6',
|
||||
'cat7',
|
||||
'cat8',
|
||||
'cat9',
|
||||
'cat10',
|
||||
'price' => [
|
||||
'required' => true
|
||||
],
|
||||
'currency' => [
|
||||
'required' => true
|
||||
],
|
||||
'foreign_currencies',
|
||||
'online_payment',
|
||||
'is_get_adv',
|
||||
'stock',
|
||||
'country',
|
||||
'city',
|
||||
'district',
|
||||
'neighborhood',
|
||||
'village',
|
||||
'map_Val',
|
||||
'files',
|
||||
'publish_at',
|
||||
'finish_at',
|
||||
'status',
|
||||
'popular_adv',
|
||||
'adv_day',
|
||||
'cf_json',
|
||||
'cover_photo',
|
||||
'count_show_phone',
|
||||
'count_show_ad'
|
||||
];
|
||||
|
||||
}
|
||||
@ -1,57 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateOptionsStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* This migration creates the stream.
|
||||
* It should be deleted on rollback.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $delete = true;
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'options',
|
||||
'title_column' => 'name',
|
||||
'translatable' => false,
|
||||
'versionable' => false,
|
||||
'trashable' => false,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* This field will be added.
|
||||
*/
|
||||
protected $fields = [
|
||||
"adv" => [
|
||||
"type" => "anomaly.field_type.relationship",
|
||||
"config" => [
|
||||
"related" => \Visiosoft\AdvsModule\Adv\AdvModel::class,
|
||||
]
|
||||
]
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'name' => [
|
||||
'required' => true,
|
||||
],
|
||||
'adv' => [
|
||||
'required' => true,
|
||||
],
|
||||
];
|
||||
|
||||
}
|
||||
@ -1,52 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateStandardPriceField extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* Don't delete stream on rollback
|
||||
* because this isn't creating the
|
||||
* stream only referencing it.
|
||||
*/
|
||||
protected $delete = false;
|
||||
|
||||
/**
|
||||
* Any additional information will
|
||||
* be updated. Slug helps find
|
||||
* the stream to work with for
|
||||
* assignments that follow.
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
/**
|
||||
* The addon fields.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fields = [
|
||||
'standard_price' => [
|
||||
'type' => 'visiosoft.field_type.decimal',
|
||||
'config' => [
|
||||
'decimal' => 2,
|
||||
'separator' => '.',
|
||||
'point' => ','
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* The field's assignment.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'standard_price' => [
|
||||
'required' => true
|
||||
],
|
||||
];
|
||||
|
||||
}
|
||||
@ -1,52 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
use Visiosoft\AdvsModule\Adv\AdvModel;
|
||||
|
||||
class VisiosoftModuleAdvsCreateProductoptionsStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* This migration creates the stream.
|
||||
* It should be deleted on rollback.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $delete = true;
|
||||
|
||||
protected $fields = [
|
||||
'category' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
'handler' => 'Visiosoft\AdvsModule\OptionHandler\CategoriesOptions@handle'
|
||||
]
|
||||
],
|
||||
];
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'productoptions',
|
||||
'title_column' => 'name',
|
||||
'translatable' => true,
|
||||
'versionable' => false,
|
||||
'trashable' => true,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'category',
|
||||
'name' => [
|
||||
'translatable' => true,
|
||||
'required' => true,
|
||||
],
|
||||
];
|
||||
}
|
||||
@ -1,56 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
use \Visiosoft\AdvsModule\Productoption\ProductoptionModel;
|
||||
|
||||
class VisiosoftModuleAdvsCreateProductoptionsValueStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* This migration creates the stream.
|
||||
* It should be deleted on rollback.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $delete = true;
|
||||
|
||||
|
||||
protected $fields = [
|
||||
'product_option' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => ProductoptionModel::class,
|
||||
],
|
||||
]
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'productoptions_value',
|
||||
'title_column' => 'name',
|
||||
'translatable' => true,
|
||||
'versionable' => false,
|
||||
'trashable' => true,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'name' => [
|
||||
'translatable' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'product_option' => [
|
||||
'required' => true,
|
||||
],
|
||||
];
|
||||
}
|
||||
@ -1,48 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsAddedOptionsField extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* Don't delete stream on rollback
|
||||
* because this isn't creating the
|
||||
* stream only referencing it.
|
||||
*/
|
||||
protected $delete = false;
|
||||
|
||||
/**
|
||||
* Any additional information will
|
||||
* be updated. Slug helps find
|
||||
* the stream to work with for
|
||||
* assignments that follow.
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
/**
|
||||
* The addon fields.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fields = [
|
||||
'product_options_value' => [
|
||||
'type' => 'anomaly.field_type.multiple',
|
||||
'config' => [
|
||||
'mode' => 'lookup',
|
||||
'related' => \Visiosoft\AdvsModule\ProductoptionsValue\ProductoptionsValueModel::class,
|
||||
],
|
||||
]
|
||||
];
|
||||
|
||||
/**
|
||||
* The field's assignment.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'product_options_value',
|
||||
];
|
||||
}
|
||||
@ -1,58 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateOptionConfigurationStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* This migration creates the stream.
|
||||
* It should be deleted on rollback.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $delete = true;
|
||||
|
||||
protected $fields = [
|
||||
'option_json' => 'visiosoft.field_type.json',
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'option_configuration',
|
||||
'title_column' => 'option_json',
|
||||
'translatable' => false,
|
||||
'versionable' => false,
|
||||
'trashable' => false,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'parent_adv' => [
|
||||
'required' => true,
|
||||
],
|
||||
'price' => [
|
||||
'required' => true,
|
||||
],
|
||||
'currency' => [
|
||||
'required' => true,
|
||||
],
|
||||
'stock' => [
|
||||
'required' => true,
|
||||
],
|
||||
'option_json' => [
|
||||
'required' => true,
|
||||
],
|
||||
];
|
||||
|
||||
}
|
||||
@ -1,27 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateOldPriceField extends Migration
|
||||
{
|
||||
protected $delete = false;
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'old_price' => [
|
||||
'type' => 'visiosoft.field_type.decimal',
|
||||
'config' => [
|
||||
'decimal' => 2,
|
||||
'separator' => '.',
|
||||
'point' => ','
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'old_price'
|
||||
];
|
||||
}
|
||||
@ -1,23 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsAlterIndexToAllTable extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::table('advs_productoptions_value_translations', function (Blueprint $table) {
|
||||
$table->index('entry_id');
|
||||
});
|
||||
|
||||
Schema::table('advs_advs_translations', function (Blueprint $table) {
|
||||
$table->index('entry_id');
|
||||
});
|
||||
|
||||
Schema::table('advs_productoptions_translations', function (Blueprint $table) {
|
||||
$table->index('entry_id');
|
||||
});
|
||||
}
|
||||
}
|
||||
@ -1,48 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateStatusStream extends Migration
|
||||
{
|
||||
protected $delete = true;
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'status',
|
||||
'title_column' => 'slug',
|
||||
'translatable' => true,
|
||||
'versionable' => false,
|
||||
'trashable' => true,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
"is_system" => [
|
||||
"type" => "anomaly.field_type.boolean",
|
||||
"config" => [
|
||||
"default_value" => false,
|
||||
"mode" => "radio",
|
||||
]
|
||||
],
|
||||
"user_access" => [
|
||||
"type" => "anomaly.field_type.boolean",
|
||||
"config" => [
|
||||
"default_value" => true,
|
||||
"mode" => "radio",
|
||||
]
|
||||
]
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'name' => [
|
||||
'required' => true,
|
||||
'translatable' => true,
|
||||
],
|
||||
'slug' => [
|
||||
'required' => true,
|
||||
'unique' => true,
|
||||
],
|
||||
"is_system",
|
||||
"user_access"
|
||||
];
|
||||
}
|
||||
@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsAddDocFilesField extends Migration
|
||||
{
|
||||
protected $delete = false;
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'doc_files' => [
|
||||
'type' => 'visiosoft.field_type.media',
|
||||
'config' => [
|
||||
'folders' => ["ads_documents"],
|
||||
'mode' => 'upload',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'doc_files'
|
||||
];
|
||||
}
|
||||
@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsAddIndexTable extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::table('advs_advs', function (Blueprint $table) {
|
||||
$table->index('deleted_at');
|
||||
$table->index('cat1');
|
||||
$table->index('country_id');
|
||||
$table->index('city');
|
||||
$table->index('finish_at');
|
||||
$table->index('status');
|
||||
$table->index('count_show_ad');
|
||||
});
|
||||
}
|
||||
}
|
||||
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsChangeProductOptionsValue extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
//Maria DB will be removed when the version is updated.
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
public function up()
|
||||
{
|
||||
if (!$field = $this->fields()->findBySlugAndNamespace('product_options_value', 'advs')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field->setAttribute('type', 'visiosoft.field_type.multiple');
|
||||
|
||||
$this->fields()->save($field);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
if (!$field = $this->fields()->findBySlugAndNamespace('product_options_value', 'advs')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field->setAttribute('type', 'anomaly.field_type.multiple');
|
||||
|
||||
$this->fields()->save($field);
|
||||
}
|
||||
}
|
||||
@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateShowPhoneNumberField extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
//Maria DB will be removed when the version is updated.
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
protected $delete = false;
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'show_phone_number' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
'mode' => 'checkbox',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'show_phone_number'
|
||||
];
|
||||
}
|
||||
@ -1,30 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateTaxField extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
//Maria DB will be removed when the version is updated.
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'tax' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'tax'
|
||||
];
|
||||
}
|
||||
@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsAddTotalSalesField extends Migration
|
||||
{
|
||||
protected $delete = false;
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'total_sales' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'min' => 0,
|
||||
'default_value' => 0,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'total_sales'
|
||||
];
|
||||
}
|
||||
@ -1,25 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateConfigFields extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
//Maria DB will be removed when the version is updated.
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'config' => 'visiosoft.field_type.json',
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'config'
|
||||
];
|
||||
}
|
||||
@ -1,20 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsAddCustomOptionValue extends Migration
|
||||
{
|
||||
protected $stream = [
|
||||
'slug' => 'option_configuration',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'custom_option' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'custom_option'
|
||||
];
|
||||
}
|
||||
@ -1,29 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'advs' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
'productoptions' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
'productoptions_value' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
'option_configuration' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
'status' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
];
|
||||
@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
];
|
||||
@ -1,116 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'monitoring' => [
|
||||
'stacked' => true,
|
||||
'tabs' => [
|
||||
'general' => [
|
||||
'title' => 'visiosoft.module.advs::section.general',
|
||||
'fields' => [
|
||||
'favicon',
|
||||
'market_place',
|
||||
'show_lang_url',
|
||||
'iban_numbers',
|
||||
'google_statistic_code',
|
||||
'body_custom_space',
|
||||
'ogImage',
|
||||
'free_currencyconverterapi_key',
|
||||
'hide_price_categories',
|
||||
'tcmb_exchange_url',
|
||||
'enabled_currencies',
|
||||
'hide_ad_cat',
|
||||
],
|
||||
],
|
||||
'ads' => [
|
||||
'title' => 'visiosoft.module.advs::section.ads',
|
||||
'fields' => [
|
||||
'preview_mode',
|
||||
'show_finish_and_publish_date',
|
||||
'latest-limit',
|
||||
'popular_ads_limit',
|
||||
'ads_image_limit',
|
||||
'default_view_type',
|
||||
'show_price_to_members_only',
|
||||
'price_area_hidden',
|
||||
'hide_listing_standard_price',
|
||||
'hide_zero_price',
|
||||
'auto_approve',
|
||||
'estimated_pending_time',
|
||||
'default_published_time',
|
||||
'default_GET',
|
||||
'get_categories',
|
||||
'listing_page_image',
|
||||
'show_ads_count',
|
||||
'show_subcats_mobile',
|
||||
],
|
||||
],
|
||||
'ads_detail' => [
|
||||
'title' => 'visiosoft.module.advs::section.ads_detail',
|
||||
'fields' => [
|
||||
'ads_date_hidden',
|
||||
'hide_seller_info',
|
||||
'hide_seller_info_by_category',
|
||||
]
|
||||
],
|
||||
'create_ad' => [
|
||||
'title' => 'visiosoft.module.advs::section.create_ad',
|
||||
'fields' => [
|
||||
'hide_contact_created_at',
|
||||
'show_tax_field',
|
||||
'detailed_product_options',
|
||||
'steps_color',
|
||||
'create_ad_button_color',
|
||||
'hide_standard_price_field',
|
||||
'hide_options_field',
|
||||
'hide_village_field',
|
||||
'make_all_fields_required',
|
||||
'make_map_required',
|
||||
'show_breadcrumb_when_creating_ad',
|
||||
'show_post_ad_agreement',
|
||||
'show_input_flag',
|
||||
'show_order_note',
|
||||
],
|
||||
],
|
||||
'ads_image' => [
|
||||
'title' => 'visiosoft.module.advs::section.ads_image',
|
||||
'fields' => [
|
||||
'watermark',
|
||||
'image_resize_backend',
|
||||
'full_image_width',
|
||||
'full_image_height',
|
||||
'medium_image_width',
|
||||
'medium_image_height',
|
||||
'thumbnail_width',
|
||||
'thumbnail_height',
|
||||
'add_canvas',
|
||||
'image_canvas_width',
|
||||
'image_canvas_height',
|
||||
'watermark_type',
|
||||
'watermark_text',
|
||||
'watermark_image',
|
||||
'watermark_position',
|
||||
],
|
||||
],
|
||||
'user' => [
|
||||
'title' => 'visiosoft.module.advs::section.user',
|
||||
'fields' => [
|
||||
'register_email_field', 'only_email_login'
|
||||
],
|
||||
],
|
||||
'filter' => [
|
||||
'title' => 'visiosoft.module.advs::section.filter',
|
||||
'fields' => [
|
||||
'hide_filter_section', 'hide_price_filter', 'hide_date_filter', 'hide_photo_filter', 'hide_map_filter',
|
||||
'hide_listing_header', 'user_filter_limit','hide_out_of_stock_products_without_listing'
|
||||
],
|
||||
],
|
||||
'translations' => [
|
||||
'title' => 'visiosoft.module.advs::section.translations',
|
||||
'fields' => [
|
||||
'lang_switcher_for_browser',
|
||||
'override_text',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
@ -1,518 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'register_email_field' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
'only_email_login' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
'latest-limit' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'min' => 1,
|
||||
'default_value' => 5,
|
||||
],
|
||||
],
|
||||
'default_view_type' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
'options' => ['list' => 'List', 'table' => 'Table', 'map' => 'Map', 'gallery' => 'Gallery'],
|
||||
'default_value' => 'list',
|
||||
]
|
||||
],
|
||||
'hide_zero_price' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
'auto_approve' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'bind' => 'adv.auto_approve',
|
||||
'env' => 'ADV_AUTO_APPROVE',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
'estimated_pending_time' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 6,
|
||||
],
|
||||
],
|
||||
'default_published_time' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'bind' => 'adv.default_published_time',
|
||||
'env' => 'ADV_PUBLISH_TIME',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'default_value' => 10,
|
||||
],
|
||||
],
|
||||
|
||||
'iban_numbers' => [
|
||||
'type' => 'anomaly.field_type.wysiwyg',
|
||||
'bind' => 'adv.iban',
|
||||
'env' => 'ADV_IBAN',
|
||||
'config' => [
|
||||
'default_value' => '<h3>TR00 0000 0000 0000 0000 0000 00</h3>',
|
||||
],
|
||||
],
|
||||
|
||||
'google_statistic_code' => [
|
||||
'type' => 'anomaly.field_type.editor',
|
||||
'bind' => 'adv.google_statistic_code',
|
||||
'env' => 'ADV_GOOGLE_STATISTIC_CODE',
|
||||
'config' => [
|
||||
'default_value' => '',
|
||||
],
|
||||
],
|
||||
'body_custom_space' => [
|
||||
'type' => 'anomaly.field_type.editor',
|
||||
'bind' => 'adv.body_custom_space',
|
||||
'env' => 'ADV_BODY_CUSTOM_SPACE',
|
||||
'config' => [
|
||||
'default_value' => '',
|
||||
],
|
||||
],
|
||||
'logo' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.logo',
|
||||
'env' => 'ADV_LOGO',
|
||||
'config' => [
|
||||
'folders' => ["images"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'ogImage' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.ogImage',
|
||||
'env' => 'ADV_OG_IMAGE',
|
||||
'config' => [
|
||||
'folders' => ["images"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'free_currencyconverterapi_key' => [
|
||||
"type" => "anomaly.field_type.text",
|
||||
'bind' => 'adv.free_currencyconverterapi_key',
|
||||
'env' => 'ADV_CURRENCY_CONVERT_API_KEY',
|
||||
'config' => [
|
||||
"default_value" => "1eea72940f3868c77420"
|
||||
]
|
||||
],
|
||||
'hide_price_categories' => [
|
||||
'type' => 'anomaly.field_type.checkboxes',
|
||||
'config' => [
|
||||
'options' => function (\Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface $categoryRepository) {
|
||||
return $categoryRepository->getMainCategories()->pluck('name', 'id')->all();
|
||||
},
|
||||
],
|
||||
],
|
||||
'default_GET' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'bind' => 'adv.default_GET',
|
||||
'env' => 'ADV_GET',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
],
|
||||
],
|
||||
|
||||
'listing_page_image' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.listing_page_image',
|
||||
'env' => 'ADV_LISTING_PAGE_IMAGE',
|
||||
'config' => [
|
||||
'folders' => ["adv_listing_page"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'hide_standard_price_field' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_options_field' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
'mode' => 'checkbox'
|
||||
]
|
||||
],
|
||||
'hide_village_field' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
'mode' => 'checkbox'
|
||||
]
|
||||
],
|
||||
'make_all_fields_required' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
'mode' => 'checkbox'
|
||||
]
|
||||
],
|
||||
'make_map_required' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
'mode' => 'checkbox'
|
||||
]
|
||||
],
|
||||
'hide_listing_standard_price' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
'mode' => 'checkbox'
|
||||
]
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'enabled_currencies' => [
|
||||
'bind' => 'streams::currencies.enabled',
|
||||
'env' => 'ADV_ENABLED_CURRENCIES',
|
||||
'type' => 'anomaly.field_type.checkboxes',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'mode' => 'tags',
|
||||
'default_value' => function () {
|
||||
return [config('streams::currencies.default')];
|
||||
},
|
||||
'options' => function () {
|
||||
$array = config('streams::currencies.supported');
|
||||
$cur = array();
|
||||
foreach ($array as $key => $value) {
|
||||
$cur[$key] = $value['name'];
|
||||
}
|
||||
return $cur;
|
||||
},
|
||||
],
|
||||
],
|
||||
'market_place' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
|
||||
'hide_price_filter' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
|
||||
'hide_date_filter' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
|
||||
'hide_photo_filter' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_map_filter' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
|
||||
'show_lang_url' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
|
||||
'popular_ads_limit' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 15,
|
||||
],
|
||||
],
|
||||
|
||||
//Image Settings
|
||||
'image_resize_backend' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
'full_image_width' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 800,
|
||||
],
|
||||
],
|
||||
'full_image_height' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 600,
|
||||
],
|
||||
],
|
||||
'medium_image_width' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 600,
|
||||
],
|
||||
],
|
||||
'medium_image_height' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 400,
|
||||
],
|
||||
],
|
||||
'thumbnail_width' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 270,
|
||||
],
|
||||
],
|
||||
'thumbnail_height' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 180,
|
||||
],
|
||||
],
|
||||
'add_canvas' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
'image_canvas_width' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 800,
|
||||
],
|
||||
],
|
||||
'image_canvas_height' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 600,
|
||||
],
|
||||
],
|
||||
'watermark' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'watermark_type' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'bind' => 'adv.watermark_type',
|
||||
'env' => 'ADV_WATERMARK_TYPE',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'options' => ['image' => 'Image', 'text' => 'Text'],
|
||||
'default_value' => 'text',
|
||||
]
|
||||
],
|
||||
'watermark_text' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.watermark_text',
|
||||
'env' => 'ADV_WATERMARK_TEXT',
|
||||
],
|
||||
'watermark_image' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.watermark_image',
|
||||
'env' => 'ADV_WATERMARK_IMAGE',
|
||||
],
|
||||
'watermark_position' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'bind' => 'adv.watermark_position',
|
||||
'env' => 'ADV_WATERMARK_POSITION',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'options' => ['top-right' => 'Top Right', 'top-left' => 'Top Left', 'bottom-right' => 'Bottom Right',
|
||||
'bottom-left' => 'Bottom Left', 'center' => 'Middle'],
|
||||
'default_value' => 'top-right',
|
||||
]
|
||||
],
|
||||
'user_filter_limit' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 5,
|
||||
],
|
||||
],
|
||||
'show_breadcrumb_when_creating_ad' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
'mode' => 'checkbox'
|
||||
],
|
||||
],
|
||||
'show_ads_count' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
'mode' => 'checkbox'
|
||||
],
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
'mode' => 'checkbox'
|
||||
],
|
||||
],
|
||||
'override_text' => [
|
||||
'type' => 'anomaly.field_type.tags',
|
||||
'bind' => 'override_text',
|
||||
'env' => 'OVERRIDE_TEXT',
|
||||
],
|
||||
'steps_color' => [
|
||||
"type" => "anomaly.field_type.colorpicker",
|
||||
"config" => [
|
||||
"default_value" => '#209579',
|
||||
]
|
||||
],
|
||||
'create_ad_button_color' => [
|
||||
"type" => "anomaly.field_type.colorpicker",
|
||||
"config" => [
|
||||
"default_value" => '#00a651',
|
||||
]
|
||||
],
|
||||
'ads_image_limit' => [
|
||||
"type" => "anomaly.field_type.integer",
|
||||
"config" => [
|
||||
"default_value" => 25
|
||||
]
|
||||
],
|
||||
'lang_switcher_for_browser' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'bind' => 'advs.lang_switcher_for_browser',
|
||||
'env' => 'LANG_SWITCHER_FOR_BROWSER',
|
||||
],
|
||||
'get_categories' => [
|
||||
'type' => 'anomaly.field_type.checkboxes',
|
||||
'config' => [
|
||||
'options' => function (\Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface $categoryRepository) {
|
||||
return $categoryRepository->getMainCategories()->pluck('name', 'id')->all();
|
||||
},
|
||||
],
|
||||
],
|
||||
'favicon' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
],
|
||||
'ads_date_hidden' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_seller_info_by_category' => [
|
||||
'type' => 'anomaly.field_type.checkboxes',
|
||||
'config' => [
|
||||
'mode' => 'tags',
|
||||
'options' => function () {
|
||||
return app(\Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface::class)->getMainCategories()->pluck('name', 'id');
|
||||
},
|
||||
],
|
||||
],
|
||||
'detailed_product_options' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
]
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
|
||||
'show_finish_and_publish_date' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
|
||||
'show_tax_field' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
'hide_contact_created_at' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'show_input_flag' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_out_of_stock_products_without_listing' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'preview_mode' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'bind' => 'adv.preview_mode',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
'show_order_note' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
];
|
||||
@ -1,3 +0,0 @@
|
||||
select[name=filter_user] + .select2 {
|
||||
min-width: 20rem;
|
||||
}
|
||||
@ -1,46 +0,0 @@
|
||||
@media only screen and (min-width: 1004px) and (max-width: 1366px) {
|
||||
.advs-desc {
|
||||
width: 200px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1367px) {
|
||||
.advs-desc {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
-webkit-line-clamp: 1;
|
||||
white-space: nowrap;
|
||||
width: 300px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.advs-name {
|
||||
width: 20%;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
white-space: pre-line;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 1;
|
||||
}
|
||||
.advs-status {
|
||||
width: 5%;
|
||||
}
|
||||
.advs-cat1 , advs-country , .advs-currency , .advs-price {
|
||||
width: 5%;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/* Admin filter */
|
||||
.select2-container--default .select2-selection--single {
|
||||
height: calc(2.5rem - 2px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-radius: 0.17rem;
|
||||
}
|
||||
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
top: unset;
|
||||
}
|
||||
.navbar-collapse {
|
||||
padding-left: 15px !important;
|
||||
}
|
||||
@ -1,26 +0,0 @@
|
||||
.ad-detail-tabs .nav-link.active {
|
||||
background-color: #FFC106;
|
||||
border-color: #ffc107 #ffc107 #ffc107;
|
||||
}
|
||||
|
||||
.ad-price-standard {
|
||||
color: #f00;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.ad-price-standard-percentage {
|
||||
background-color: #f00;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* Pending screen */
|
||||
.pending-screen {
|
||||
background-color: #f2f2f2;
|
||||
color: #b31901;
|
||||
}
|
||||
.pending-screen img {
|
||||
height: 7em;
|
||||
}
|
||||
.pending-screen p {
|
||||
font-weight: 500;
|
||||
}
|
||||
@ -1,9 +0,0 @@
|
||||
.dropleft-edit {
|
||||
right: 0;
|
||||
top: 40%;
|
||||
z-index: 5;
|
||||
}
|
||||
.dropleft-edit button {
|
||||
transform: rotate(-90deg) translate(0, -100%);
|
||||
transform-origin: 100% 0;
|
||||
}
|
||||
@ -1,13 +0,0 @@
|
||||
.cat-select {
|
||||
border: none;
|
||||
overflow-y: auto
|
||||
}
|
||||
|
||||
.cat-select option {
|
||||
border-top: 1px solid #f2f2f2;
|
||||
padding: 15px 0 20px;
|
||||
position: relative;
|
||||
padding-left: 10px;
|
||||
font-size: 16px;
|
||||
color: #505050;
|
||||
}
|
||||
@ -1,777 +0,0 @@
|
||||
/* Main styles */
|
||||
html {
|
||||
@media only screen and (min-width: 576px) {
|
||||
font-size: 7.5789px;
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
font-size: 10.1052px;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
font-size: 13.4736px;
|
||||
}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
margin: 0;
|
||||
|
||||
.container {
|
||||
@media only screen and (max-width: 575.98px) {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Filter */
|
||||
#listFilterForm, #filterModal {
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.filter-box {
|
||||
background-color: #FCFCFC;
|
||||
|
||||
& > div {
|
||||
&:first-child {
|
||||
color: #373535;
|
||||
font-weight: 500;
|
||||
font-size: calc(17rem / 16);
|
||||
|
||||
svg {
|
||||
width: calc(11rem / 16);
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
max-height: 11rem;
|
||||
|
||||
label {
|
||||
font-size: calc(14rem / 16);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Category */
|
||||
#category {
|
||||
background-color: #FCFCFC;
|
||||
|
||||
#categoryNav {
|
||||
a {
|
||||
border-bottom: calc(2rem / 16) solid #D7DEEC;
|
||||
|
||||
svg {
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #9FA4A4;
|
||||
font-weight: 500;
|
||||
font-size: calc(17rem / 16);
|
||||
}
|
||||
|
||||
&.active {
|
||||
border-bottom-color: #373535;
|
||||
|
||||
svg path {
|
||||
fill: #373535;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #373535;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#categoryList {
|
||||
max-height: 24rem;
|
||||
|
||||
& > li {
|
||||
margin-bottom: .4rem;
|
||||
|
||||
& > div {
|
||||
div {
|
||||
line-height: 1;
|
||||
|
||||
&.sub-cat {
|
||||
margin-left: 1.65rem;
|
||||
}
|
||||
}
|
||||
|
||||
svg, img {
|
||||
width: 1.15rem;
|
||||
height: 1.15rem;
|
||||
overflow: hidden;
|
||||
object-fit: contain;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #183F8A;
|
||||
font-size: calc(13rem / 16);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.sub-cat {
|
||||
a {
|
||||
font-size: calc(12rem / 16);
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: .25rem;
|
||||
|
||||
ul {
|
||||
padding-left: .5rem;
|
||||
margin-top: .25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Category */
|
||||
|
||||
/* Location */
|
||||
#location {
|
||||
button:not(.filter-modal-close) {
|
||||
height: 2rem;
|
||||
background: #fff;
|
||||
color: #707070;
|
||||
font-size: calc(12rem / 16);
|
||||
padding: 0 1.25rem;
|
||||
|
||||
svg {
|
||||
width: .48rem;
|
||||
height: auto;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Location */
|
||||
|
||||
/* Price */
|
||||
#price, .range-filter {
|
||||
li {
|
||||
& + & {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
padding: 0.15em;
|
||||
color: #373535;
|
||||
border: calc(1rem / 16) solid #E5E5E5;
|
||||
font-size: calc(13rem / 16);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=radio] {
|
||||
border: 0;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
height: calc(1rem / 16);
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute !important;
|
||||
white-space: nowrap;
|
||||
width: calc(1rem / 16);
|
||||
|
||||
&:checked + label {
|
||||
background-color: #E5E5E5;
|
||||
border: calc(1rem / 16) solid #E5E5E5;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.range-input-wrapper {
|
||||
::placeholder {
|
||||
color: #DFDFDF;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: #DFDFDF;
|
||||
}
|
||||
|
||||
::-ms-input-placeholder {
|
||||
color: #DFDFDF;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 5rem;
|
||||
font-size: calc(14rem / 16);
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Price */
|
||||
|
||||
/* Map */
|
||||
#mapFilter {
|
||||
label {
|
||||
font-size: calc(14rem / 16);
|
||||
}
|
||||
}
|
||||
/* End Map */
|
||||
|
||||
/* Keyword */
|
||||
#keywordFilter, .text-filter {
|
||||
input {
|
||||
font-size: calc(14rem / 16);
|
||||
}
|
||||
}
|
||||
/* End Keyword */
|
||||
|
||||
/* Filter submit */
|
||||
#filterSubmit, #filterReset {
|
||||
button {
|
||||
background-color: #52C946;
|
||||
font-size: calc(12rem / 16);
|
||||
}
|
||||
}
|
||||
/* End Filter submit */
|
||||
}
|
||||
/* End Filter */
|
||||
/* End Main styles */
|
||||
|
||||
#listingPage {
|
||||
/* Breadcrumb */
|
||||
#breadcrumb {
|
||||
border-radius: 0 0 .25rem .25rem;
|
||||
padding: .2rem 1.5rem;
|
||||
background-color: #FCFCFC;
|
||||
|
||||
div {
|
||||
&:first-child {
|
||||
span {
|
||||
color: #8598AA;
|
||||
font-size: calc(13rem / 16);
|
||||
|
||||
&:not(:first-child):before {
|
||||
content: '>';
|
||||
margin-left: 0.4rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #8598AA;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
span {
|
||||
color: #87BBF1;
|
||||
font-size: calc(11rem / 16);
|
||||
|
||||
&:not(:first-child):before {
|
||||
content: '|';
|
||||
margin: 0 .25rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #87BBF1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Breadcrumb */
|
||||
|
||||
#mainContainer {
|
||||
margin-top: .75rem;
|
||||
|
||||
/* Listing container */
|
||||
#listingContainer {
|
||||
min-width: 0;
|
||||
|
||||
/* Page title */
|
||||
#pageTitle {
|
||||
p, a {
|
||||
color: #8598AA;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: calc(14rem / 16);
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: calc(14rem / 16);
|
||||
|
||||
svg {
|
||||
height: .8rem;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Page title */
|
||||
|
||||
/* Query bar */
|
||||
#queryBar {
|
||||
& > div {
|
||||
margin: calc(3rem / 16) calc(16rem / 16) calc(4rem / 16) 0;
|
||||
|
||||
& > span {
|
||||
font-weight: 500;
|
||||
color: #292d2e;
|
||||
font-size: calc(13rem / 16);
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
background-color: #eee;
|
||||
font-size: calc(12rem / 16);
|
||||
padding: calc(4rem / 16) calc(7rem / 16);
|
||||
border-radius: calc(2rem / 16);
|
||||
text-decoration: none;
|
||||
max-width: calc(400rem / 16);
|
||||
|
||||
&:hover {
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
|
||||
span {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
button {
|
||||
height: calc(12rem / 16);
|
||||
width: calc(12rem / 16);
|
||||
background-color: #EC9C4A;
|
||||
border-radius: calc(2rem / 16);
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
svg {
|
||||
flex-shrink: 0;
|
||||
height: calc(6rem / 16);
|
||||
width: calc(6rem / 16);
|
||||
}
|
||||
}
|
||||
|
||||
div:last-child {
|
||||
a {
|
||||
background-color: unset;
|
||||
font-size: calc(10rem / 16);
|
||||
padding: 0;
|
||||
text-decoration: none;
|
||||
color: #039;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
|
||||
span {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #CD7D22;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Query bar */
|
||||
|
||||
/* View types */
|
||||
#viewTypes {
|
||||
margin-bottom: .75rem;
|
||||
|
||||
ul {
|
||||
background-color: #F0F2F4;
|
||||
|
||||
li {
|
||||
font-size: calc(13rem / 16);
|
||||
font-weight: 500;
|
||||
|
||||
&:not(:first-child) {
|
||||
border-left: calc(1rem / 16) solid rgba(72, 154, 241, .33);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #489AF1;
|
||||
}
|
||||
|
||||
&.active {
|
||||
a {
|
||||
color: #707070;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > div {
|
||||
background-color: #F0F2F4;
|
||||
padding: calc(5.5rem / 16) .5rem;
|
||||
|
||||
p {
|
||||
font-size: calc(12rem / 16);
|
||||
font-weight: 500;
|
||||
color: #707070;
|
||||
margin-right: .75rem;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: auto;
|
||||
height: .75rem;
|
||||
}
|
||||
|
||||
a {
|
||||
&.active {
|
||||
svg path {
|
||||
fill: #489AF1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
button {
|
||||
background: none;
|
||||
|
||||
&:after {
|
||||
content: none;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End View types */
|
||||
|
||||
/* Listing */
|
||||
#listingWrapper {
|
||||
#listing {
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 0 .25rem;
|
||||
|
||||
thead {
|
||||
tr {
|
||||
th {
|
||||
background-color: #3F475F;
|
||||
font-weight: 400;
|
||||
font-size: calc(12rem / 16);
|
||||
padding: .2rem .5rem;
|
||||
|
||||
&.sortable {
|
||||
cursor: pointer;
|
||||
color: #adb4c9;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(.sort-by) {
|
||||
svg {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&.sort-desc {
|
||||
svg {
|
||||
transform: scaleY(-1);
|
||||
}
|
||||
}
|
||||
|
||||
svg {
|
||||
height: .5rem;
|
||||
width: auto;
|
||||
margin-left: .2rem;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
border-top-left-radius: .25rem;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border-top-right-radius: .25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
background-color: #F6F6F6;
|
||||
|
||||
&:hover {
|
||||
.action-data > a {
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
padding: .4rem .5rem;
|
||||
|
||||
& > a {
|
||||
img {
|
||||
width: 6.5rem;
|
||||
height: 5rem;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
width: 17%;
|
||||
border-radius: .25rem 0 0 .25rem;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border-radius: 0 .25rem .25rem 0;
|
||||
}
|
||||
|
||||
.id-data {
|
||||
font-size: calc(10rem / 16);
|
||||
color: rgba(34, 34, 34, .29);
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: calc(14rem / 16);
|
||||
color: #489AF1;
|
||||
}
|
||||
|
||||
.cat-data {
|
||||
font-size: calc(13rem / 16);
|
||||
color: rgba(34, 34, 34, .4);
|
||||
}
|
||||
|
||||
.action-data {
|
||||
color: #A1A1A1;
|
||||
font-size: calc(10.7rem / 16);
|
||||
|
||||
& > a {
|
||||
visibility: hidden;
|
||||
color: #A1A1A1;
|
||||
}
|
||||
|
||||
& > a.active {
|
||||
visibility: visible;
|
||||
|
||||
svg {
|
||||
path {
|
||||
fill: #FFE900;
|
||||
}
|
||||
|
||||
rect {
|
||||
fill: #EDA862;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
svg {
|
||||
width: .45rem;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
&.location-data, &.date-data {
|
||||
font-size: calc(13rem / 16);
|
||||
color: #707070;
|
||||
}
|
||||
|
||||
&.price-data {
|
||||
width: 20%;
|
||||
color: #D33023;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#gallerying {
|
||||
.gallery-item-wrapper {
|
||||
&:nth-child(odd) {
|
||||
padding-right: .125rem;
|
||||
}
|
||||
|
||||
&:nth-child(even) {
|
||||
padding-left: .125rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.action-data > a {
|
||||
visibility: visible !important;
|
||||
}
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
background-color: #F6F6F6;
|
||||
|
||||
img {
|
||||
width: 6.5rem;
|
||||
height: 5rem;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.action-data-wrapper {
|
||||
.action-data {
|
||||
margin-top: .7rem;
|
||||
|
||||
& > a {
|
||||
visibility: hidden;
|
||||
font-size: calc(8rem / 16);
|
||||
color: #A1A1A1;
|
||||
margin-bottom: .25rem;
|
||||
|
||||
svg {
|
||||
width: calc(6rem / 16);
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
& > a.active {
|
||||
visibility: visible;
|
||||
|
||||
svg {
|
||||
path {
|
||||
fill: #FFE900;
|
||||
}
|
||||
|
||||
rect {
|
||||
fill: #EDA862;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.id-data {
|
||||
font-size: calc(10rem / 16);
|
||||
color: #B8B8B8;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: calc(14rem / 16);
|
||||
|
||||
a {
|
||||
color: #489AF1;
|
||||
}
|
||||
}
|
||||
|
||||
.cat-data {
|
||||
font-size: calc(11rem / 16);
|
||||
color: #A1A1A1;
|
||||
}
|
||||
|
||||
.price-data {
|
||||
color: #D33023;
|
||||
font-weight: 700;
|
||||
font-size: calc(15rem / 16);
|
||||
}
|
||||
|
||||
.location-data {
|
||||
margin-bottom: .15rem;
|
||||
}
|
||||
|
||||
.location-data, .date-data {
|
||||
color: #707070;
|
||||
font-size: calc(12rem / 16);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* End Listing */
|
||||
}
|
||||
/* End Listing container */
|
||||
}
|
||||
}
|
||||
|
||||
#mobileListingPage {
|
||||
#breadcrumb {
|
||||
padding: .6rem 1rem;
|
||||
|
||||
ul {
|
||||
font-size: calc(11rem / 16);
|
||||
color: #8598AA;
|
||||
|
||||
li {
|
||||
&:not(:first-child):before {
|
||||
content: '>';
|
||||
margin-left: .125rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #8598AA;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#mobileListNav {
|
||||
background-color: #F8F9FA;
|
||||
|
||||
& > .mobile-list-nav-item {
|
||||
width: percentage(1/3);
|
||||
font-size: calc(11rem / 16);
|
||||
color: #4D5359;
|
||||
|
||||
svg {
|
||||
height: 1.1rem;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.divider {
|
||||
border-left: calc(1rem / 16) solid #E1E1E2;
|
||||
height: 1.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
#mobileListing {
|
||||
.listing-item {
|
||||
&:nth-child(odd) {
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
img {
|
||||
height: 5rem;
|
||||
width: 7rem;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
div {
|
||||
h6 {
|
||||
font-size: calc(13rem / 16);
|
||||
color: #393939;
|
||||
}
|
||||
|
||||
p {
|
||||
&:first-of-type {
|
||||
color: #A1A1A1;
|
||||
font-size: calc(10rem / 16);
|
||||
}
|
||||
|
||||
&:last-of-type {
|
||||
color: #1592E6;
|
||||
font-size: calc(14rem / 16);
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,332 +0,0 @@
|
||||
.gm-style .gm-style-iw-d {
|
||||
max-width: 150px !important;
|
||||
}
|
||||
|
||||
#map {
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
.table-classified .img-thumbnail {
|
||||
max-height: 70px;
|
||||
}
|
||||
|
||||
.table-classified .td-image {
|
||||
max-width: 200px;
|
||||
max-height: 100px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.list-classified .bg-light {
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.upper-list-banner {
|
||||
min-height: 300px;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.upper-list-banner img {
|
||||
max-width: 125px;
|
||||
max-height: 200px;
|
||||
margin: auto;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.table-classified .td-image,
|
||||
.table-classified .td-date {
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.table-classified .td-price {
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
|
||||
.table-classified .td-country,
|
||||
.table-classified .td-subject {
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
/* Mobile filter */
|
||||
.mobile-list-action {
|
||||
border: 1px solid #dee2e68a;
|
||||
}
|
||||
|
||||
.mobile-list-action a {
|
||||
font-size: 11px;
|
||||
line-height: 22px;
|
||||
text-align: center;
|
||||
margin-top: -5px;
|
||||
display: block;
|
||||
color: #022543;
|
||||
}
|
||||
|
||||
.mobile-list-action a:hover,
|
||||
.mobile-list-action a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.mobile-list-action a:after {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 33px;
|
||||
top: 0;
|
||||
right: 0;
|
||||
content: '';
|
||||
background: #c9c9c9;
|
||||
}
|
||||
|
||||
.mobile-list-action div:last-child a:after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
.mobile-list-action i {
|
||||
font-size: 19px;
|
||||
color: #a1a1a1;
|
||||
}
|
||||
|
||||
.mobile-list-action div {
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.edit-category-filter-modal {
|
||||
top: 7px;
|
||||
right: 14px;
|
||||
}
|
||||
|
||||
.edit-category-filter-modal a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#categoryModal {
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.category-select-mobile span {
|
||||
right: 10px;
|
||||
top: 6px;
|
||||
}
|
||||
|
||||
#filterModal {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.result-text {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.result-text h1 {
|
||||
font-size: 13px;
|
||||
margin: 0;
|
||||
line-height: 1.5;
|
||||
max-width: 330px;
|
||||
}
|
||||
|
||||
.result-text span:last-child {
|
||||
color: #8f0100;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs > div {
|
||||
margin: 3px 16px 4px 0;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs div > span {
|
||||
font-weight: 500;
|
||||
color: #292d2e;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a {
|
||||
background-color: #eee;
|
||||
font-size: 12px;
|
||||
padding: 4px 7px;
|
||||
border-radius: 2px;
|
||||
text-decoration: none;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs div:last-child a {
|
||||
background-color: unset;
|
||||
font-size: 10px;
|
||||
padding: 0;
|
||||
text-decoration: none;
|
||||
color: #039;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs div:last-child a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a:hover {
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a span {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a:hover span {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a:hover button {
|
||||
background-color: #CD7D22;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a button {
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
background-color: #EC9C4A;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.result-text .filter-tabs a svg {
|
||||
flex-shrink: 0;
|
||||
height: 6px;
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
a.sort-by-open-dropdown:hover {
|
||||
color: #8598AA !important;
|
||||
}
|
||||
|
||||
.sort-by-selected-text {
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
color: #8598AA;
|
||||
}
|
||||
|
||||
.list-view-type button {
|
||||
background-color: unset;
|
||||
}
|
||||
|
||||
.list-view-type button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.list-view-type button small {
|
||||
font-weight: 500;
|
||||
color: #8598AA;
|
||||
}
|
||||
|
||||
.gallery-tn {
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
#listFilterForm .card-header {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.searchbut {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
#main > div > nav {
|
||||
padding-bottom: 10px !important;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
padding: 0px !important;
|
||||
}
|
||||
.subbreadcrumb small , .sort-by-selected-text{
|
||||
color: black !important;
|
||||
}
|
||||
|
||||
.img-thumbnail {
|
||||
padding: 0px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.products-list p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.navbar-collapse {
|
||||
padding-left: 15px !important;
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.mobile-sub-cats {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: #fff;
|
||||
padding: 0 !important;
|
||||
left: 0;
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
display: flex !important;
|
||||
flex-direction: column;
|
||||
justify-content: start;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.mobile-sub-cats {
|
||||
background-color: #f3f0f0;
|
||||
}
|
||||
|
||||
.mobile-sub-cats ul {
|
||||
background-color: #fff;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
padding-top: 10px;
|
||||
margin-bottom: 50px;
|
||||
width: 100%;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .categories-list-li {
|
||||
height: 48px;
|
||||
line-height: 48px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .categories-list-li img {
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .categories-list-li .main-advs-count {
|
||||
color: #1064bc !important;
|
||||
}
|
||||
.mobile-sub-cats .categories-list-li .advs-count{
|
||||
font-weight: 200;
|
||||
color: #bcbbbb !important;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .categories-list-li a {
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .categories-list-li i{
|
||||
color: #bcbbbb !important;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .categories-list-li a span:first-child{
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mobile-sub-cats .show-all {
|
||||
font-weight: bolder;
|
||||
color: #1064bc !important;
|
||||
}
|
||||
}
|
||||
@ -1,298 +0,0 @@
|
||||
/* Main styles */
|
||||
html {
|
||||
font-size: 12px;
|
||||
@media only screen and (min-width: 576px) {
|
||||
font-size: 7.5789px;
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
font-size: 10.1052px;
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
font-size: 13.4736px;
|
||||
}
|
||||
@media only screen and (min-width: 1200px) {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* End Main styles */
|
||||
|
||||
#pageTitle {
|
||||
margin: 2rem 0;
|
||||
@media only screen and (min-width: 576px) {
|
||||
margin: 4rem 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #707070;
|
||||
font-size: calc(24rem / 16);
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
|
||||
#contactInfo {
|
||||
background-color: #FBFBFD;
|
||||
padding: 1.4rem 1rem 1.5rem;
|
||||
@media only screen and (min-width: 576px) {
|
||||
padding: 2.4rem 4rem 5.5rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #6E5DDB;
|
||||
font-size: calc(26rem / 16);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
#reachInfo {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
p {
|
||||
color: #4A4A4A;
|
||||
font-size: calc(14rem / 16);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
div {
|
||||
label {
|
||||
color: #505050;
|
||||
font-size: calc(18rem / 16);
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#contactSummary {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
margin-bottom: 1rem;
|
||||
@media only screen and (min-width: 576px) {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: calc(14rem / 16);
|
||||
color: #4A4A4A;
|
||||
width: 100%;
|
||||
font-weight: 600;
|
||||
margin-bottom: 1rem;
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 32.4%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
input {
|
||||
box-shadow: 0 calc(1rem / 16) calc(2rem / 16) rgba(0, 0, 0, .04);
|
||||
font-size: calc(17rem / 16);
|
||||
padding: 1.1rem 1.5rem;
|
||||
color: #707070;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#editContact {
|
||||
button {
|
||||
color: #0075FF;
|
||||
background: none;
|
||||
font-size: calc(18rem / 16);
|
||||
|
||||
svg {
|
||||
height: 1.08rem;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-left: .75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#mainInfo {
|
||||
background-color: #FBFBFD;
|
||||
padding: 1.4rem 1rem 2.3rem;
|
||||
@media only screen and (min-width: 576px) {
|
||||
padding: 2.4rem 4rem 4.3rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #6E5DDB;
|
||||
font-size: calc(26rem / 16);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
font-size: calc(14rem / 16);
|
||||
color: #4A4A4A;
|
||||
font-weight: 600;
|
||||
|
||||
input, textarea {
|
||||
box-shadow: 0 calc(1rem / 16) calc(2rem / 16) rgba(0, 0, 0, .04);
|
||||
font-size: calc(17rem / 16);
|
||||
padding: 1.1rem 1.5rem;
|
||||
color: #707070;
|
||||
}
|
||||
}
|
||||
|
||||
#stockInput {
|
||||
flex-wrap: wrap;
|
||||
@media only screen and (min-width: 576px) {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
& > label {
|
||||
width: 100%;
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 47.5%;
|
||||
}
|
||||
|
||||
&:not(.d-none) + div {
|
||||
top: .6rem;
|
||||
}
|
||||
|
||||
&.d-none + div {
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
}
|
||||
|
||||
div {
|
||||
position: relative;
|
||||
margin: 1rem 0;
|
||||
@media only screen and (min-width: 576px) {
|
||||
margin: 0;
|
||||
width: 47.5%;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: 2.2rem;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
label {
|
||||
position: relative;
|
||||
top: .25rem;
|
||||
font-weight: 500;
|
||||
font-size: calc(16rem / 16);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#priceInput {
|
||||
& > div {
|
||||
::placeholder {
|
||||
color: #B9C0CF;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: #B9C0CF;
|
||||
}
|
||||
|
||||
::-ms-input-placeholder {
|
||||
color: #B9C0CF;
|
||||
}
|
||||
|
||||
input, select {
|
||||
box-shadow: 0 calc(1rem / 16) calc(2rem / 16) rgba(0, 0, 0, .04);
|
||||
font-size: calc(17rem / 16);
|
||||
padding: 1.1rem 1.5rem;
|
||||
color: #707070;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
width: 100%;
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 47.5%;
|
||||
}
|
||||
|
||||
input {
|
||||
&.decimal-price {
|
||||
width: 17%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
width: 100%;
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 50.75%;
|
||||
}
|
||||
|
||||
select, .decimal-price {
|
||||
width: 17%;
|
||||
}
|
||||
|
||||
select {
|
||||
padding: 1.1rem 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#simpleOptionsInput {
|
||||
.select2-selection {
|
||||
box-shadow: 0 calc(1rem / 16) calc(2rem / 16) rgba(0, 0, 0, .04);
|
||||
font-size: calc(17rem / 16);
|
||||
padding: 1.1rem 1.5rem;
|
||||
color: #707070;
|
||||
border: 0;
|
||||
margin-top: 1rem;
|
||||
|
||||
.select2-selection__rendered {
|
||||
padding: 0;
|
||||
display: flex;
|
||||
margin: 0;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.select2-selection__choice {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.select2-search__field {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.swal2-title {
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
#configurationModal .form-group {
|
||||
flex: 1 1 auto!important;
|
||||
margin: 0 1rem 1rem 1rem;
|
||||
}
|
||||
|
||||
.btn-configuration {
|
||||
background-color: #6E5DDB;
|
||||
padding: 1rem 2rem;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
font-size: calc(18rem / 16);
|
||||
border-radius: .25rem;
|
||||
border: 0;
|
||||
color: #fff;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: #6E5DDB;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: 1.5rem;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
@ -1,70 +0,0 @@
|
||||
.editContact {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.input-group {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.input-group .form-control {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
flex: 1;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.input-group-addon:not(:first-child):not(:last-child),
|
||||
.input-group-btn:not(:first-child):not(:last-child),
|
||||
.input-group .form-control:not(:first-child):not(:last-child) {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.input-group-addon,
|
||||
.input-group-btn {
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.input-group-addon {
|
||||
padding: 0.5rem 0.75rem;
|
||||
margin-bottom: 0;
|
||||
font-size: 1rem;
|
||||
font-weight: normal;
|
||||
line-height: 1.25;
|
||||
color: #55595c;
|
||||
text-align: center;
|
||||
background-color: #eceeef;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-radius: 0.1rem;
|
||||
}
|
||||
|
||||
.input-group-addon.form-control-sm,
|
||||
.input-group-sm > .input-group-addon,
|
||||
.input-group-sm > .input-group-btn > .input-group-addon.btn {
|
||||
padding: 0.25rem 0.5rem;
|
||||
font-size: 0.875rem;
|
||||
border-radius: 0.1rem;
|
||||
}
|
||||
|
||||
.input-group-addon.form-control-lg,
|
||||
.input-group-lg > .input-group-addon,
|
||||
.input-group-lg > .input-group-btn > .input-group-addon.btn {
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-size: 1.25rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
.input-group-addon input[type=radio],
|
||||
.input-group-addon input[type=checkbox] {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.ads-box-image:hover {
|
||||
cursor: move;
|
||||
}
|
||||
@ -1,80 +0,0 @@
|
||||
#ad-cat-section .step-icon {
|
||||
height: 1rem;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.category-tab {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.cat-item:not(.focus-select) div, .cat-item:not(.focus-select) select {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.focus-select .cat-option {
|
||||
box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
|
||||
}
|
||||
|
||||
.cat-select {
|
||||
height: 0;
|
||||
width: 100%;
|
||||
border: none;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.cat-select:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.cat-item {
|
||||
flex: none;
|
||||
width: 13rem;
|
||||
}
|
||||
|
||||
.cat-select li {
|
||||
cursor: pointer;
|
||||
border-radius: 2px;
|
||||
position: relative;
|
||||
font-size: 13px;
|
||||
color: #505050;
|
||||
}
|
||||
|
||||
.cat-select li.selected {
|
||||
background-color: #1E90FF;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.cat-item-2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cat-item:last-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.next-stap svg {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.next-stap p {
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.btn-1 {
|
||||
background-color: {{ setting_value('visiosoft.module.advs::create_ad_button_color') }};
|
||||
padding: 5px 30px 7px;
|
||||
color: #fff;
|
||||
border: 1px solid #dadada;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.cat-select::-webkit-scrollbar {
|
||||
width: 4px;
|
||||
}
|
||||
|
||||
.cat-select::-webkit-scrollbar-thumb {
|
||||
border-radius: 4px;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
}
|
||||
@ -1,63 +0,0 @@
|
||||
.preview-wrapper {
|
||||
border: 4px solid #999;
|
||||
}
|
||||
.preview-wrapper:before, .preview-wrapper:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: -30px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-style: solid;
|
||||
border-width: 0 39px 30px 39px;
|
||||
border-color: transparent transparent #999 transparent;
|
||||
margin-left: -39px;
|
||||
}
|
||||
.preview-wrapper:after {
|
||||
top: inherit;
|
||||
bottom: -30px;
|
||||
border-width: 30px 39px 0 39px;
|
||||
border-color: #999 transparent transparent transparent;
|
||||
}
|
||||
.preview-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
opacity: .07;
|
||||
background-color: #000;
|
||||
z-index: 400;
|
||||
}
|
||||
.preview-paragraph {
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
.preview-actions {
|
||||
margin-top: 3em;
|
||||
margin-bottom: 4em;
|
||||
}
|
||||
.preview-edit {
|
||||
color: #438ed8;
|
||||
background: #f7f7f7;
|
||||
border: 1px solid #f7f7f7;
|
||||
}
|
||||
.preview-edit:hover {
|
||||
background: #eaeaea;
|
||||
border-color: #eaeaea;
|
||||
color: #438ed8;
|
||||
}
|
||||
.preview-continue {
|
||||
border-radius: 2px;
|
||||
color: #fff;
|
||||
background: #438ed8;
|
||||
}
|
||||
.preview-continue:hover {
|
||||
background: #3c7fc1;
|
||||
border-color: #3c7fc1;
|
||||
color: #fff;
|
||||
}
|
||||
#compare-sidebar, .dropleft-edit {
|
||||
display: none;
|
||||
}
|
||||
@ -1,7 +0,0 @@
|
||||
$cats: 10;
|
||||
|
||||
@for $i from 2 through $cats {
|
||||
.cat#{$i} {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@ -1,78 +0,0 @@
|
||||
#stepProgressBar {
|
||||
counter-reset: step;
|
||||
|
||||
.step {
|
||||
text-align: center;
|
||||
min-width: 0;
|
||||
|
||||
&.current {
|
||||
.bullet {
|
||||
background-color: #fff;
|
||||
@media only screen and (min-width: 768px) {
|
||||
border-width: .3rem;
|
||||
}
|
||||
}
|
||||
|
||||
.step-text {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
& ~ * {
|
||||
&::after {
|
||||
background-color: #dfdfdf;
|
||||
}
|
||||
|
||||
.bullet {
|
||||
color: #999;
|
||||
background-color: #DFDFDF;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
height: .16rem;
|
||||
top: 0.96rem;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
width: 100%;
|
||||
@media only screen and (min-width: 768px) {
|
||||
height: .3rem;
|
||||
top: 1.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
.bullet {
|
||||
height: 2rem;
|
||||
width: 2rem;
|
||||
border-radius: 100%;
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
line-height: 20px;
|
||||
@media only screen and (min-width: 768px) {
|
||||
height: 3rem;
|
||||
width: 3rem;
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: counter(step);
|
||||
counter-increment: step;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
@media only screen and (min-width: 768px) {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.step-text {
|
||||
color: #999;
|
||||
font-size: 12px;
|
||||
@media only screen and (min-width: 768px) {
|
||||
font-size: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,18 +0,0 @@
|
||||
{% set stepsColor = setting_value('visiosoft.module.advs::steps_color') %}
|
||||
|
||||
#stepProgressBar .step.current .bullet {
|
||||
color: {{ stepsColor }};
|
||||
border: 0.2rem solid {{ stepsColor }};
|
||||
}
|
||||
|
||||
#stepProgressBar .step .bullet {
|
||||
background-color: {{ stepsColor }};
|
||||
}
|
||||
|
||||
#stepProgressBar .step.current::after {
|
||||
background: linear-gradient(to right, {{ stepsColor }} 50%, #dfdfdf 50%);
|
||||
}
|
||||
|
||||
#stepProgressBar .step::after {
|
||||
background-color: {{ stepsColor }};
|
||||
}
|
||||
|
Before Width: | Height: | Size: 193 KiB |
@ -1,40 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<path style="fill:#92ECF6;" d="M497,0H376.5c-8.284,0-15,6.716-15,15v105.5H256c-8.284,0-15,6.716-15,15V241H135.5
|
||||
c-8.284,0-15,6.716-15,15v105.5H15c-8.284,0-15,6.716-15,15V497c0,8.284,6.716,15,15,15h482c8.284,0,15-6.716,15-15V15
|
||||
C512,6.716,505.284,0,497,0z"/>
|
||||
<path style="fill:#2FD6F0;" d="M497,0H376.5c-8.284,0-15,6.716-15,15v105.5H256c-8.284,0-15,6.716-15,15V241v271h256
|
||||
c8.284,0,15-6.716,15-15V15C512,6.716,505.284,0,497,0z"/>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 927 B |
@ -1,2 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve" width="512px" height="512px" class=""><g><ellipse style="fill:#26A67C" cx="256" cy="256" rx="256" ry="255.832" data-original="#32BEA6" class="" data-old_color="#32BEA6"/><polygon style="fill:#FFFFFF" points="235.472,392.08 114.432,297.784 148.848,253.616 223.176,311.52 345.848,134.504 391.88,166.392 " data-original="#FFFFFF" class="active-path" data-old_color="#FFFFFF"/></g> </svg>
|
||||
|
Before Width: | Height: | Size: 621 B |
@ -1,2 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" version="1.1" width="512" height="512" x="0" y="0" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><g xmlns="http://www.w3.org/2000/svg"><path d="m512.001 84.853-84.853-84.853-171.147 171.147-171.148-171.147-84.853 84.853 171.148 171.147-171.148 171.148 84.853 84.853 171.148-171.147 171.147 171.147 84.853-84.853-171.148-171.148z" fill="#ffffff" data-original="#000000" style="" class=""/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 604 B |
@ -1,6 +0,0 @@
|
||||
<svg id="Group_42321" data-name="Group 42321" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
|
||||
<g id="Group_15874" data-name="Group 15874">
|
||||
<path id="Path_10381" data-name="Path 10381" d="M15,0A15,15,0,1,1,0,15,15,15,0,0,1,15,0Z" fill="#f8f8f8"/>
|
||||
<path id="close" d="M10.557.6l-.6-.6L5.278,4.675.6,0,0,.6,4.675,5.278,0,9.953l.6.6L5.278,5.882l4.675,4.675.6-.6L5.882,5.278Z" transform="translate(9.5 9.5)" fill="#c7c7c7" stroke="#c7c7c7" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.7"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 570 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14.212" height="14.148" viewBox="0 0 14.212 14.148">
|
||||
<path id="Path_11030" data-name="Path 11030" d="M-1636.669-813.08l-.773.772-7.73,7.731-.006.006a.582.582,0,0,0-.1.159c-.007.015-.011.029-.017.045s-.016.041-.022.063l-.828,3.92a.681.681,0,0,0-.008.094c0,.007,0,.012,0,.019v.009a.508.508,0,0,0,.039.182c.005.013.01.026.017.039a.535.535,0,0,0,.1.153.542.542,0,0,0,.387.164h13.119a.546.546,0,0,0,.547-.546.546.546,0,0,0-.547-.546h-8.707l7.626-7.626.773-.772a2.732,2.732,0,0,0-.01-3.857,2.721,2.721,0,0,0-1.931-.8A2.724,2.724,0,0,0-1636.669-813.08Zm-7.791,9.989.833.834.833.832-2.112.447Zm1.607.061-1.16-1.16,6.958-6.957,1.159,1.16,1.159,1.159-6.957,6.957Zm6.57-8.89.387-.387a1.682,1.682,0,0,1,2.319,0,1.643,1.643,0,0,1,0,2.32l-.387.386Z" transform="translate(1646.16 813.872)" fill="#0075ff"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 850 B |
@ -1,12 +0,0 @@
|
||||
<svg id="add_5_" data-name="add (5)" xmlns="http://www.w3.org/2000/svg" width="19.96" height="19.96" viewBox="0 0 19.96 19.96">
|
||||
<g id="Group_16519" data-name="Group 16519">
|
||||
<g id="Group_16518" data-name="Group 16518">
|
||||
<path id="Path_10382" data-name="Path 10382" d="M9.98,0a9.98,9.98,0,1,0,9.98,9.98A9.991,9.991,0,0,0,9.98,0Zm0,18.414A8.434,8.434,0,1,1,18.414,9.98,8.444,8.444,0,0,1,9.98,18.414Z" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_16521" data-name="Group 16521" transform="translate(5.342 5.272)">
|
||||
<g id="Group_16520" data-name="Group 16520">
|
||||
<path id="Path_10383" data-name="Path 10383" d="M145.526,139.1h-3.092v-3.092a.773.773,0,0,0-1.546,0V139.1H137.8a.773.773,0,0,0,0,1.546h3.092v3.092a.773.773,0,0,0,1.546,0v-3.092h3.092a.773.773,0,1,0,0-1.546Z" transform="translate(-137.022 -135.238)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 898 B |
@ -1,19 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="28.064" height="24.555" viewBox="0 0 28.064 24.555">
|
||||
<g id="credit-card" transform="translate(0 -32.008)">
|
||||
<g id="Group_16590" data-name="Group 16590" transform="translate(0 37.269)">
|
||||
<g id="Group_16589" data-name="Group 16589" transform="translate(0 0)">
|
||||
<path id="Path_11024" data-name="Path 11024" d="M12.278,129.746v-1.754H1.754A1.757,1.757,0,0,0,0,129.746v3.508H12.648A15.7,15.7,0,0,1,12.278,129.746Z" transform="translate(0 -127.992)" fill="#7a50f0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_16592" data-name="Group 16592" transform="translate(0 46.039)">
|
||||
<g id="Group_16591" data-name="Group 16591">
|
||||
<path id="Path_11025" data-name="Path 11025" d="M27.992,287.992a15.776,15.776,0,0,1-5.634,4.913,2.635,2.635,0,0,1-2.615,0,15.855,15.855,0,0,1-5.636-4.916H0v8.77a1.756,1.756,0,0,0,1.754,1.754H26.31a1.755,1.755,0,0,0,1.754-1.754v-8.77Zm-20.1,5.262H4.385a.877.877,0,0,1,0-1.754H7.893a.877.877,0,0,1,0,1.754Z" transform="translate(0 -287.992)" fill="#7a50f0"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_16594" data-name="Group 16594" transform="translate(14.032 32.008)">
|
||||
<g id="Group_16593" data-name="Group 16593" transform="translate(0 0)">
|
||||
<path id="Path_11026" data-name="Path 11026" d="M269.5,34.71l-6.139-2.631a.88.88,0,0,0-.693,0L256.53,34.71a.875.875,0,0,0-.53.805v3.508c0,4.825,1.784,7.646,6.579,10.408a.882.882,0,0,0,.873,0c4.8-2.756,6.579-5.576,6.579-10.408V35.515A.874.874,0,0,0,269.5,34.71ZM266.333,38.7l-3.508,4.385a.887.887,0,0,1-.686.328H262.1a.88.88,0,0,1-.693-.389l-1.754-2.631a.877.877,0,1,1,1.459-.972l1.089,1.633,2.757-3.448a.877.877,0,0,1,1.372,1.094Z" transform="translate(-256 -32.008)" fill="#7a50f0"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,40 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<ellipse style="fill:#E04F5F;" cx="256" cy="256" rx="256" ry="255.832"/>
|
||||
<g transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 77.26 32)">
|
||||
<rect x="3.98" y="-427.615" style="fill:#FFFFFF;" width="55.992" height="285.672"/>
|
||||
<rect x="-110.828" y="-312.815" style="fill:#FFFFFF;" width="285.672" height="55.992"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 812 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22.275" height="22.275" viewBox="0 0 22.275 22.275">
|
||||
<path id="date_icon" data-name="date icon" d="M14.93,22.088a5.84,5.84,0,0,1-1.335-.529,5.918,5.918,0,0,1-2.074-1.895H.653A.653.653,0,0,1,0,19.012V2a.653.653,0,0,1,.653-.653h4.62v-.7a.653.653,0,1,1,1.305,0v.7h.9c.552,0,2.57,0,2.57,0v-.7a.653.653,0,1,1,1.305,0v.7h3.242v-.7a.653.653,0,1,1,1.305,0v.7h4.417A.653.653,0,0,1,20.97,2V12.715a5.873,5.873,0,0,1-6.04,9.374Zm-3.1-5.687A4.568,4.568,0,1,0,16.4,11.834,4.573,4.573,0,0,0,11.834,16.4ZM1.305,18.359h9.559a5.794,5.794,0,0,1-.232-.857c-.012-.063-.021-.115-.029-.168a5.843,5.843,0,0,1-.029-1.683c.009-.072.019-.141.03-.206H9.876a.653.653,0,0,1,0-1.305H11c.019-.045.04-.091.061-.139.095-.21.194-.407.3-.586a4.49,4.49,0,0,1,.384-.578c.077-.1.158-.2.235-.286a6.031,6.031,0,0,1,.9-.841,5.912,5.912,0,0,1,1.059-.637,5.859,5.859,0,0,1,5.728.448V6.569H1.305Zm0-13.1H19.665V2.654H15.9v.653a.653.653,0,1,1-1.305,0V2.654H11.353v.653a.653.653,0,1,1-1.305,0V2.654H6.578v.653a.653.653,0,1,1-1.305,0V2.654H1.305Zm15.1,11.79a.653.653,0,0,1-.653-.653v-2.61a.653.653,0,0,1,1.305,0v1.958h1.958a.653.653,0,1,1,0,1.305Zm-11.79-1.61a.653.653,0,1,1,0-1.305H5.917a.653.653,0,1,1,0,1.305Zm5.264-2.871a.653.653,0,1,1,0-1.305h1.305a.653.653,0,1,1,0,1.305Zm-5.264,0a.653.653,0,1,1,0-1.305H5.917a.653.653,0,1,1,0,1.305ZM15.1,9.7a.653.653,0,0,1,0-1.305H16.4a.653.653,0,0,1,0,1.305Zm-5.221,0a.653.653,0,1,1,0-1.305h1.305a.653.653,0,1,1,0,1.305Zm-5.264,0a.653.653,0,1,1,0-1.305H5.917a.653.653,0,1,1,0,1.305Z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 12 KiB |
@ -1,9 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.208" viewBox="0 0 58.492 39.208">
|
||||
<g id="birlesik_arap" transform="translate(0.05 0.05)">
|
||||
<path id="Path_17119" data-name="Path 17119" d="M0,0H58.392V39.108H0Z" transform="translate(0 0)" fill="#008837"/>
|
||||
<path id="Path_17120" data-name="Path 17120" d="M0,0H58.392V26.072H0Z" transform="translate(0 13.036)" fill="#fff"/>
|
||||
<rect id="Rectangle_2051" data-name="Rectangle 2051" width="58.392" height="13.04" transform="translate(0 26.068)"/>
|
||||
<rect id="Rectangle_2052" data-name="Rectangle 2052" width="58.392" height="39.108" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
<rect id="Rectangle_3462" data-name="Rectangle 3462" width="14.392" height="39.108" fill="#d00027"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 800 B |
@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.208" viewBox="0 0 58.492 39.208">
|
||||
<g id="germany" transform="translate(0.05 0.05)">
|
||||
<rect id="Rectangle_2049" data-name="Rectangle 2049" width="58.392" height="39.108" transform="translate(0 0)"/>
|
||||
<rect id="Rectangle_2050" data-name="Rectangle 2050" width="58.392" height="26.072" transform="translate(0 13.036)" fill="red"/>
|
||||
<rect id="Rectangle_2051" data-name="Rectangle 2051" width="58.392" height="13.04" transform="translate(0 26.068)" fill="#fc0"/>
|
||||
<rect id="Rectangle_2052" data-name="Rectangle 2052" width="58.392" height="39.108" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 711 B |
@ -1,72 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.207" viewBox="0 0 58.492 39.207">
|
||||
<g id="greece" transform="translate(2968.889 -9838.745)">
|
||||
<g id="Group_42612" data-name="Group 42612" transform="translate(65.503)">
|
||||
<g id="ne" transform="translate(-3034.342 9838.795)">
|
||||
<rect id="Rectangle_2198" data-name="Rectangle 2198" width="58.392" height="11.036" transform="translate(0 28.071)" fill="#d00027"/>
|
||||
<path id="Path_17265" data-name="Path 17265" d="M0,0H58.392V28.072H0Z" transform="translate(0 0)" fill="#fc0"/>
|
||||
<rect id="Rectangle_2201" data-name="Rectangle 2201" width="58.392" height="39.107" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
<rect id="Rectangle_3480" data-name="Rectangle 3480" width="58.392" height="11.036" fill="#d00027"/>
|
||||
</g>
|
||||
<g id="Group_42605" data-name="Group 42605" transform="translate(-296.977 -171.082)">
|
||||
<path id="Path_17266" data-name="Path 17266" d="M209.363,219.89l.681-3.064a.452.452,0,0,0-.441-.55h-.48a.452.452,0,0,0-.441.55Z" transform="translate(-2922.823 9809.543)" fill="#c8414b"/>
|
||||
<rect id="Rectangle_3481" data-name="Rectangle 3481" width="1.606" height="6.825" transform="translate(-2714.263 10027.827)" fill="#f5f5f5"/>
|
||||
<rect id="Rectangle_3482" data-name="Rectangle 3482" width="2.409" height="0.803" transform="translate(-2714.666 10027.024)" fill="#fab446"/>
|
||||
<g id="Group_42597" data-name="Group 42597" transform="translate(-2726.198 10025.819)">
|
||||
<rect id="Rectangle_3466" data-name="Rectangle 3466" width="4.015" height="0.803" transform="translate(9.926 3.614)" fill="#c8414b"/>
|
||||
<path id="Path_17249" data-name="Path 17249" d="M205.443,275.262l-2.409-.8v-.8l2.409.8Z" transform="translate(-191.502 -268.436)" fill="#c8414b"/>
|
||||
<path id="Path_17250" data-name="Path 17250" d="M76.949,219.89l.681-3.064a.452.452,0,0,0-.441-.55h-.48a.452.452,0,0,0-.441.55Z" transform="translate(-76.257 -216.276)" fill="#c8414b"/>
|
||||
</g>
|
||||
<path id="Path_17267" data-name="Path 17267" d="M106.734,229.518a.8.8,0,0,0-.8.8v5.22c0,.976.911,2.811,4.015,2.811s4.015-1.835,4.015-2.811v-5.22a.8.8,0,0,0-.8-.8Z" transform="translate(-2829.429 9797.507)" fill="#f5f5f5"/>
|
||||
<g id="Group_42598" data-name="Group 42598" transform="translate(-2723.498 10027.024)">
|
||||
<path id="Path_17252" data-name="Path 17252" d="M109.946,233.533h-4.015v-3.212a.8.8,0,0,1,.8-.8h3.212Z" transform="translate(-105.931 -229.518)" fill="#c8414b"/>
|
||||
<path id="Path_17253" data-name="Path 17253" d="M150.069,273.656h4.015v2.008a2.007,2.007,0,0,1-2.008,2.008h0a2.007,2.007,0,0,1-2.008-2.008Z" transform="translate(-146.054 -269.641)" fill="#c8414b"/>
|
||||
</g>
|
||||
<path id="Path_17268" data-name="Path 17268" d="M105.931,273.656h4.015v2.008a2.007,2.007,0,0,1-2.008,2.008h0a2.007,2.007,0,0,1-2.008-2.008Z" transform="translate(-2829.429 9757.383)" fill="#fab446"/>
|
||||
<g id="Group_42599" data-name="Group 42599" transform="translate(-2722.695 10031.039)">
|
||||
<path id="Path_17255" data-name="Path 17255" d="M133.216,277.261v-3.6h-.8v3.975A1.987,1.987,0,0,0,133.216,277.261Z" transform="translate(-130.807 -273.656)" fill="#c8414b"/>
|
||||
<path id="Path_17256" data-name="Path 17256" d="M115.561,277.631v-3.975h-.8v3.6A1.988,1.988,0,0,0,115.561,277.631Z" transform="translate(-114.758 -273.656)" fill="#c8414b"/>
|
||||
</g>
|
||||
<rect id="Rectangle_3483" data-name="Rectangle 3483" width="2.409" height="0.803" transform="translate(-2722.695 10029.434)" fill="#ffb441"/>
|
||||
<g id="Group_42600" data-name="Group 42600" transform="translate(-2722.695 10027.827)">
|
||||
<rect id="Rectangle_3468" data-name="Rectangle 3468" width="2.409" height="0.803" transform="translate(0 0)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3469" data-name="Rectangle 3469" width="1.606" height="1.455" transform="translate(0.401 0.478)" fill="#fab446"/>
|
||||
</g>
|
||||
<rect id="Rectangle_3484" data-name="Rectangle 3484" width="1.606" height="6.825" transform="translate(-2726.309 10027.827)" fill="#f5f5f5"/>
|
||||
<g id="Group_42601" data-name="Group 42601" transform="translate(-2726.71 10027.024)">
|
||||
<rect id="Rectangle_3471" data-name="Rectangle 3471" width="2.409" height="0.803" transform="translate(0 7.227)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3472" data-name="Rectangle 3472" width="2.409" height="0.803" transform="translate(0 0)" fill="#fab446"/>
|
||||
</g>
|
||||
<rect id="Rectangle_3485" data-name="Rectangle 3485" width="3.212" height="0.803" transform="translate(-2727.112 10035.054)" fill="#5064aa"/>
|
||||
<rect id="Rectangle_3486" data-name="Rectangle 3486" width="2.409" height="0.803" transform="translate(-2714.263 10034.252)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3487" data-name="Rectangle 3487" width="3.212" height="0.803" transform="translate(-2715.067 10035.054)" fill="#5064aa"/>
|
||||
<rect id="Rectangle_3488" data-name="Rectangle 3488" width="4.818" height="0.803" transform="translate(-2721.892 10026.222)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3489" data-name="Rectangle 3489" width="0.803" height="2.409" transform="translate(-2719.884 10023.813)" fill="#ffb441"/>
|
||||
<g id="Group_42602" data-name="Group 42602" transform="translate(-2723.097 10022.608)">
|
||||
<path id="Path_17257" data-name="Path 17257" d="M129.2,183.376a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,129.2,183.376Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,129.2,181.77Z" transform="translate(-126.394 -180.967)" fill="#f5f5f5"/>
|
||||
<path id="Path_17258" data-name="Path 17258" d="M146.86,183.376a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,146.86,183.376Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,146.86,181.77Z" transform="translate(-142.444 -180.967)" fill="#f5f5f5"/>
|
||||
<path id="Path_17259" data-name="Path 17259" d="M164.515,192.2a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,164.515,192.2Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,164.515,190.6Z" transform="translate(-158.493 -188.992)" fill="#f5f5f5"/>
|
||||
<path id="Path_17260" data-name="Path 17260" d="M111.549,192.2a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,111.549,192.2Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,111.549,190.6Z" transform="translate(-110.345 -188.992)" fill="#f5f5f5"/>
|
||||
</g>
|
||||
<path id="Path_17269" data-name="Path 17269" d="M160.5,283.287v.4a.4.4,0,0,1-.8,0v-.4h.8m.8-.8H158.9v1.2a1.2,1.2,0,0,0,2.409,0v-1.2Z" transform="translate(-2877.576 9749.358)" fill="#fab446"/>
|
||||
<path id="Path_17270" data-name="Path 17270" d="M164.113,240.754h0a.8.8,0,0,1-.8-.8v-.8a.8.8,0,0,1,.8-.8h0a.8.8,0,0,1,.8.8v.8A.8.8,0,0,1,164.113,240.754Z" transform="translate(-2881.589 9789.482)" fill="#ffa0d2"/>
|
||||
<circle id="Ellipse_455" data-name="Ellipse 455" cx="1.204" cy="1.204" r="1.204" transform="translate(-2720.688 10029.835)" fill="#5064aa"/>
|
||||
<rect id="Rectangle_3490" data-name="Rectangle 3490" width="0.803" height="2.409" transform="translate(-2719.884 10022.206)" fill="#fab446"/>
|
||||
<path id="Path_17271" data-name="Path 17271" d="M115.561,196.617l-.8-.8.47-.47a3.877,3.877,0,0,1,2.742-1.136h0a3.878,3.878,0,0,1,2.742,1.136l.47.47-.8.8Z" transform="translate(-2837.453 9829.604)" fill="#c8414b"/>
|
||||
<g id="Group_42603" data-name="Group 42603" transform="translate(-2721.491 10025.017)">
|
||||
<circle id="Ellipse_456" data-name="Ellipse 456" cx="0.402" cy="0.402" r="0.402" transform="translate(1.606 0)" fill="#ffd250"/>
|
||||
<circle id="Ellipse_457" data-name="Ellipse 457" cx="0.402" cy="0.402" r="0.402" transform="translate(0 0)" fill="#ffd250"/>
|
||||
<circle id="Ellipse_458" data-name="Ellipse 458" cx="0.402" cy="0.402" r="0.402" transform="translate(3.212 0)" fill="#ffd250"/>
|
||||
</g>
|
||||
<g id="Group_42604" data-name="Group 42604" transform="translate(-2726.71 10029.434)">
|
||||
<rect id="Rectangle_3479" data-name="Rectangle 3479" width="4.015" height="0.803" transform="translate(0 0)" fill="#c8414b"/>
|
||||
<path id="Path_17264" data-name="Path 17264" d="M70.621,275.262l2.409-.8v-.8l-2.409.8Z" transform="translate(-70.621 -272.05)" fill="#c8414b"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_42611" data-name="Group 42611" transform="translate(-5.503 2)">
|
||||
<path id="Subtraction_21" data-name="Subtraction 21" d="M58.392,42.762H0V38.417H58.392v4.344Zm0-8.69H0V29.727H58.392V34.07Zm0-8.691H0V21.036H58.392v4.343Zm0-8.689H0V12.345H58.392V16.69Z" transform="translate(-2963.336 9828.795)" fill="#f5f5f5"/>
|
||||
<path id="Subtraction_20" data-name="Subtraction 20" d="M58.392,47.108H1.03a1.065,1.065,0,0,1-.187-.017H0V42.763H58.392v4.344Zm0-8.69H0V34.072H58.392v4.344Zm0-8.691H0V8H58.392v4.345H20.583v4.345H58.392v4.345H20.583v4.345H58.392v4.344Z" transform="translate(-2963.336 9828.795)" fill="#4b54cf"/>
|
||||
<path id="Path_17274" data-name="Path 17274" d="M20.583,96.968H12.464V88.277H8.119v8.691H0v4.345H8.119V110h4.345v-8.691h8.119Z" transform="translate(-2963.336 9748.518)" fill="#f5f5f5"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.8 KiB |
@ -1,12 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.499" height="39.21" viewBox="0 0 58.499 39.21">
|
||||
<g id="en" transform="translate(0.05 0.05)">
|
||||
<rect id="Rectangle_2042" data-name="Rectangle 2042" width="58.399" height="39.111" transform="translate(0 0)" fill="#110070"/>
|
||||
<path id="Path_1607" data-name="Path 1607" d="M861.7,381.007h7.318l15.322,10.261V381.007h13.128v10.258l15.314-10.258H920.1v4.9L908.022,394H920.1v13.13H908.022l12.081,8.092v4.9h-7.314l-15.317-10.259v10.259H884.344V409.854L869.02,420.118H861.7v-4.9l12.083-8.093H861.7V394h12.085L861.7,385.9Z" transform="translate(-861.704 -381.007)" fill="#fff"/>
|
||||
<path id="Path_1608" data-name="Path 1608" d="M884.344,419.98v-.938H881.1l-19.4,12.991h4.64Z" transform="translate(-861.704 -392.922)" fill="red"/>
|
||||
<path id="Path_1609" data-name="Path 1609" d="M913.79,393.056V394h3.235l19.4-12.99h-4.641Z" transform="translate(-878.022 -381.007)" fill="red"/>
|
||||
<path id="Path_1610" data-name="Path 1610" d="M861.7,384.111,876.463,394h4.64l-19.4-12.99h0Z" transform="translate(-861.704 -381.007)" fill="red"/>
|
||||
<path id="Path_1611" data-name="Path 1611" d="M918.5,419.042,937.9,432.033v-3.108l-14.756-9.883Z" transform="translate(-879.498 -392.922)" fill="red"/>
|
||||
<path id="Path_1612" data-name="Path 1612" d="M894.846,396.624V381.007h-7.878v15.617H861.7V404.5h25.264v15.616h7.878V404.5H920.1v-7.877Z" transform="translate(-861.704 -381.007)" fill="red"/>
|
||||
<rect id="Rectangle_2043" data-name="Rectangle 2043" width="58.399" height="39.111" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,65 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.207" viewBox="0 0 58.492 39.207">
|
||||
<g id="spain" transform="translate(3034.392 -9838.745)">
|
||||
<g id="ne" transform="translate(-3034.342 9838.795)">
|
||||
<rect id="Rectangle_2198" data-name="Rectangle 2198" width="58.392" height="11.036" transform="translate(0 28.071)" fill="#d00027"/>
|
||||
<path id="Path_17265" data-name="Path 17265" d="M0,0H58.392V28.072H0Z" transform="translate(0 0)" fill="#fc0"/>
|
||||
<rect id="Rectangle_2201" data-name="Rectangle 2201" width="58.392" height="39.107" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
<rect id="Rectangle_3480" data-name="Rectangle 3480" width="58.392" height="11.036" fill="#d00027"/>
|
||||
</g>
|
||||
<g id="Group_42605" data-name="Group 42605" transform="translate(-296.977 -171.082)">
|
||||
<path id="Path_17266" data-name="Path 17266" d="M209.363,219.89l.681-3.064a.452.452,0,0,0-.441-.55h-.48a.452.452,0,0,0-.441.55Z" transform="translate(-2922.823 9809.543)" fill="#c8414b"/>
|
||||
<rect id="Rectangle_3481" data-name="Rectangle 3481" width="1.606" height="6.825" transform="translate(-2714.263 10027.827)" fill="#f5f5f5"/>
|
||||
<rect id="Rectangle_3482" data-name="Rectangle 3482" width="2.409" height="0.803" transform="translate(-2714.666 10027.024)" fill="#fab446"/>
|
||||
<g id="Group_42597" data-name="Group 42597" transform="translate(-2726.198 10025.819)">
|
||||
<rect id="Rectangle_3466" data-name="Rectangle 3466" width="4.015" height="0.803" transform="translate(9.926 3.614)" fill="#c8414b"/>
|
||||
<path id="Path_17249" data-name="Path 17249" d="M205.443,275.262l-2.409-.8v-.8l2.409.8Z" transform="translate(-191.502 -268.436)" fill="#c8414b"/>
|
||||
<path id="Path_17250" data-name="Path 17250" d="M76.949,219.89l.681-3.064a.452.452,0,0,0-.441-.55h-.48a.452.452,0,0,0-.441.55Z" transform="translate(-76.257 -216.276)" fill="#c8414b"/>
|
||||
</g>
|
||||
<path id="Path_17267" data-name="Path 17267" d="M106.734,229.518a.8.8,0,0,0-.8.8v5.22c0,.976.911,2.811,4.015,2.811s4.015-1.835,4.015-2.811v-5.22a.8.8,0,0,0-.8-.8Z" transform="translate(-2829.429 9797.507)" fill="#f5f5f5"/>
|
||||
<g id="Group_42598" data-name="Group 42598" transform="translate(-2723.498 10027.024)">
|
||||
<path id="Path_17252" data-name="Path 17252" d="M109.946,233.533h-4.015v-3.212a.8.8,0,0,1,.8-.8h3.212Z" transform="translate(-105.931 -229.518)" fill="#c8414b"/>
|
||||
<path id="Path_17253" data-name="Path 17253" d="M150.069,273.656h4.015v2.008a2.007,2.007,0,0,1-2.008,2.008h0a2.007,2.007,0,0,1-2.008-2.008Z" transform="translate(-146.054 -269.641)" fill="#c8414b"/>
|
||||
</g>
|
||||
<path id="Path_17268" data-name="Path 17268" d="M105.931,273.656h4.015v2.008a2.007,2.007,0,0,1-2.008,2.008h0a2.007,2.007,0,0,1-2.008-2.008Z" transform="translate(-2829.429 9757.383)" fill="#fab446"/>
|
||||
<g id="Group_42599" data-name="Group 42599" transform="translate(-2722.695 10031.039)">
|
||||
<path id="Path_17255" data-name="Path 17255" d="M133.216,277.261v-3.6h-.8v3.975A1.987,1.987,0,0,0,133.216,277.261Z" transform="translate(-130.807 -273.656)" fill="#c8414b"/>
|
||||
<path id="Path_17256" data-name="Path 17256" d="M115.561,277.631v-3.975h-.8v3.6A1.988,1.988,0,0,0,115.561,277.631Z" transform="translate(-114.758 -273.656)" fill="#c8414b"/>
|
||||
</g>
|
||||
<rect id="Rectangle_3483" data-name="Rectangle 3483" width="2.409" height="0.803" transform="translate(-2722.695 10029.434)" fill="#ffb441"/>
|
||||
<g id="Group_42600" data-name="Group 42600" transform="translate(-2722.695 10027.827)">
|
||||
<rect id="Rectangle_3468" data-name="Rectangle 3468" width="2.409" height="0.803" transform="translate(0 0)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3469" data-name="Rectangle 3469" width="1.606" height="1.455" transform="translate(0.401 0.478)" fill="#fab446"/>
|
||||
</g>
|
||||
<rect id="Rectangle_3484" data-name="Rectangle 3484" width="1.606" height="6.825" transform="translate(-2726.309 10027.827)" fill="#f5f5f5"/>
|
||||
<g id="Group_42601" data-name="Group 42601" transform="translate(-2726.71 10027.024)">
|
||||
<rect id="Rectangle_3471" data-name="Rectangle 3471" width="2.409" height="0.803" transform="translate(0 7.227)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3472" data-name="Rectangle 3472" width="2.409" height="0.803" transform="translate(0 0)" fill="#fab446"/>
|
||||
</g>
|
||||
<rect id="Rectangle_3485" data-name="Rectangle 3485" width="3.212" height="0.803" transform="translate(-2727.112 10035.054)" fill="#5064aa"/>
|
||||
<rect id="Rectangle_3486" data-name="Rectangle 3486" width="2.409" height="0.803" transform="translate(-2714.263 10034.252)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3487" data-name="Rectangle 3487" width="3.212" height="0.803" transform="translate(-2715.067 10035.054)" fill="#5064aa"/>
|
||||
<rect id="Rectangle_3488" data-name="Rectangle 3488" width="4.818" height="0.803" transform="translate(-2721.892 10026.222)" fill="#fab446"/>
|
||||
<rect id="Rectangle_3489" data-name="Rectangle 3489" width="0.803" height="2.409" transform="translate(-2719.884 10023.813)" fill="#ffb441"/>
|
||||
<g id="Group_42602" data-name="Group 42602" transform="translate(-2723.097 10022.608)">
|
||||
<path id="Path_17257" data-name="Path 17257" d="M129.2,183.376a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,129.2,183.376Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,129.2,181.77Z" transform="translate(-126.394 -180.967)" fill="#f5f5f5"/>
|
||||
<path id="Path_17258" data-name="Path 17258" d="M146.86,183.376a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,146.86,183.376Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,146.86,181.77Z" transform="translate(-142.444 -180.967)" fill="#f5f5f5"/>
|
||||
<path id="Path_17259" data-name="Path 17259" d="M164.515,192.2a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,164.515,192.2Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,164.515,190.6Z" transform="translate(-158.493 -188.992)" fill="#f5f5f5"/>
|
||||
<path id="Path_17260" data-name="Path 17260" d="M111.549,192.2a1.2,1.2,0,1,1,1.2-1.2A1.206,1.206,0,0,1,111.549,192.2Zm0-1.606a.4.4,0,1,0,.4.4A.4.4,0,0,0,111.549,190.6Z" transform="translate(-110.345 -188.992)" fill="#f5f5f5"/>
|
||||
</g>
|
||||
<path id="Path_17269" data-name="Path 17269" d="M160.5,283.287v.4a.4.4,0,0,1-.8,0v-.4h.8m.8-.8H158.9v1.2a1.2,1.2,0,0,0,2.409,0v-1.2Z" transform="translate(-2877.576 9749.358)" fill="#fab446"/>
|
||||
<path id="Path_17270" data-name="Path 17270" d="M164.113,240.754h0a.8.8,0,0,1-.8-.8v-.8a.8.8,0,0,1,.8-.8h0a.8.8,0,0,1,.8.8v.8A.8.8,0,0,1,164.113,240.754Z" transform="translate(-2881.589 9789.482)" fill="#ffa0d2"/>
|
||||
<circle id="Ellipse_455" data-name="Ellipse 455" cx="1.204" cy="1.204" r="1.204" transform="translate(-2720.688 10029.835)" fill="#5064aa"/>
|
||||
<rect id="Rectangle_3490" data-name="Rectangle 3490" width="0.803" height="2.409" transform="translate(-2719.884 10022.206)" fill="#fab446"/>
|
||||
<path id="Path_17271" data-name="Path 17271" d="M115.561,196.617l-.8-.8.47-.47a3.877,3.877,0,0,1,2.742-1.136h0a3.878,3.878,0,0,1,2.742,1.136l.47.47-.8.8Z" transform="translate(-2837.453 9829.604)" fill="#c8414b"/>
|
||||
<g id="Group_42603" data-name="Group 42603" transform="translate(-2721.491 10025.017)">
|
||||
<circle id="Ellipse_456" data-name="Ellipse 456" cx="0.402" cy="0.402" r="0.402" transform="translate(1.606 0)" fill="#ffd250"/>
|
||||
<circle id="Ellipse_457" data-name="Ellipse 457" cx="0.402" cy="0.402" r="0.402" transform="translate(0 0)" fill="#ffd250"/>
|
||||
<circle id="Ellipse_458" data-name="Ellipse 458" cx="0.402" cy="0.402" r="0.402" transform="translate(3.212 0)" fill="#ffd250"/>
|
||||
</g>
|
||||
<g id="Group_42604" data-name="Group 42604" transform="translate(-2726.71 10029.434)">
|
||||
<rect id="Rectangle_3479" data-name="Rectangle 3479" width="4.015" height="0.803" transform="translate(0 0)" fill="#c8414b"/>
|
||||
<path id="Path_17264" data-name="Path 17264" d="M70.621,275.262l2.409-.8v-.8l-2.409.8Z" transform="translate(-70.621 -272.05)" fill="#c8414b"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 30 KiB |
@ -1,9 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.207" viewBox="0 0 58.492 39.207">
|
||||
<g id="france" transform="translate(0.05 0.05)">
|
||||
<rect id="Rectangle_2061" data-name="Rectangle 2061" width="58.392" height="39.107" transform="translate(0 0)" fill="#008837"/>
|
||||
<rect id="Rectangle_2062" data-name="Rectangle 2062" width="58.393" height="39.107" transform="translate(0 0)" fill="#01a0c6"/>
|
||||
<rect id="Rectangle_2063" data-name="Rectangle 2063" width="38.93" height="39.109" transform="translate(19.463 0)" fill="#fff"/>
|
||||
<rect id="Rectangle_2064" data-name="Rectangle 2064" width="19.464" height="39.109" transform="translate(38.928 0)" fill="red"/>
|
||||
<rect id="Rectangle_2065" data-name="Rectangle 2065" width="58.392" height="39.107" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 857 B |
@ -1,9 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.208" viewBox="0 0 58.492 39.208">
|
||||
<g id="italy" transform="translate(0.05 0.049)">
|
||||
<rect id="Rectangle_2025" data-name="Rectangle 2025" width="58.392" height="39.108" transform="translate(0 0.001)" fill="#008837"/>
|
||||
<rect id="Rectangle_2026" data-name="Rectangle 2026" width="58.392" height="39.108" transform="translate(0 0.001)" fill="#008837"/>
|
||||
<rect id="Rectangle_2027" data-name="Rectangle 2027" width="38.929" height="39.109" transform="translate(19.463 0)" fill="#fff"/>
|
||||
<rect id="Rectangle_2028" data-name="Rectangle 2028" width="19.464" height="39.109" transform="translate(38.927 0)" fill="red"/>
|
||||
<rect id="Rectangle_2029" data-name="Rectangle 2029" width="58.392" height="39.108" transform="translate(0 0.001)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 870 B |
@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.207" viewBox="0 0 58.492 39.207">
|
||||
<g id="hollanda" transform="translate(0.05 0.05)">
|
||||
<rect id="Rectangle_2198" data-name="Rectangle 2198" width="58.392" height="39.107" transform="translate(0 0)" fill="#0a51a1"/>
|
||||
<rect id="Rectangle_2199" data-name="Rectangle 2199" width="58.392" height="26.072" transform="translate(0 0)" fill="#fff"/>
|
||||
<rect id="Rectangle_2200" data-name="Rectangle 2200" width="58.392" height="13.04" transform="translate(0 0)" fill="red"/>
|
||||
<rect id="Rectangle_2201" data-name="Rectangle 2201" width="58.392" height="39.107" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 717 B |
@ -1,95 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.207" viewBox="0 0 58.492 39.207">
|
||||
<g id="portugal" transform="translate(3216.895 -9838.745)">
|
||||
<g id="ne" transform="translate(-3216.845 9838.795)">
|
||||
<rect id="Rectangle_2198" data-name="Rectangle 2198" width="58.392" height="39.107" transform="translate(0 0)" fill="red"/>
|
||||
<rect id="Rectangle_2200" data-name="Rectangle 2200" width="21.392" height="39.107" transform="translate(0 0)" fill="#008837"/>
|
||||
<rect id="Rectangle_2201" data-name="Rectangle 2201" width="58.392" height="39.107" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
<g id="portugal-2" data-name="portugal" transform="translate(-3289.026 9678.97)">
|
||||
<circle id="Ellipse_454" data-name="Ellipse 454" cx="8.581" cy="8.581" r="8.581" transform="translate(85.297 170.199)" fill="#fff"/>
|
||||
<path id="Path_17136" data-name="Path 17136" d="M163.2,173.6a8.581,8.581,0,0,1,0,17.163" transform="translate(-69.321 -3.501)" fill="#f2efce"/>
|
||||
<path id="Path_17137" data-name="Path 17137" d="M116.8,204.284h0a5.594,5.594,0,0,0,1.7,3.991,5.652,5.652,0,0,0,3.991,1.7,5.748,5.748,0,0,0,3.991-1.6,5.652,5.652,0,0,0,1.7-3.991h0V196.8H116.9l-.1,7.484M125.781,199v5.289h0v.4a2.742,2.742,0,0,1-1,1.9,3.484,3.484,0,0,1-2.395,1,3.682,3.682,0,0,1-2.395-1,3.484,3.484,0,0,1-1-2.395V198.9l6.785.1" transform="translate(-28.709 -23.807)" fill="#c60606"/>
|
||||
<path id="Path_17138" data-name="Path 17138" d="M116.8,204.284h0a5.594,5.594,0,0,0,1.7,3.991,5.652,5.652,0,0,0,3.991,1.7v-2.2h0a3.682,3.682,0,0,1-2.395-1,3.484,3.484,0,0,1-1-2.395V199.1h3.393v-2.3H116.9Z" transform="translate(-28.709 -23.807)" fill="red"/>
|
||||
<g id="Group_42587" data-name="Group 42587" transform="translate(90.885 178.481)">
|
||||
<path id="Path_17139" data-name="Path 17139" d="M156.1,241.9h0a1.418,1.418,0,0,0,.2.6.723.723,0,0,0,1,0,.844.844,0,0,0,.2-.6v-1.1H156Z" transform="translate(-153.905 -240.8)" fill="#1477ef"/>
|
||||
<path id="Path_17140" data-name="Path 17140" d="M156.1,262.7h0a1.418,1.418,0,0,0,.2.6.723.723,0,0,0,1,0,.733.733,0,0,0,.2-.6v-1.1H156Z" transform="translate(-153.905 -259.006)" fill="#1477ef"/>
|
||||
<path id="Path_17141" data-name="Path 17141" d="M139.3,241.9h0a1.418,1.418,0,0,0,.2.6.723.723,0,0,0,1,0,.844.844,0,0,0,.2-.6v-1.1h-1.5Z" transform="translate(-139.2 -240.8)" fill="#1477ef"/>
|
||||
</g>
|
||||
<path id="Path_17142" data-name="Path 17142" d="M174.3,241.9v-1.1h-1.5v1.1h0a1.418,1.418,0,0,0,.2.6.723.723,0,0,0,1,0A.853.853,0,0,0,174.3,241.9Z" transform="translate(-77.724 -62.319)" fill="#005cb7"/>
|
||||
<path id="Path_17143" data-name="Path 17143" d="M156.3,221.7a.723.723,0,0,0,1,0,.844.844,0,0,0,.2-.6V220H156v1.1h0A1.625,1.625,0,0,0,156.3,221.7Z" transform="translate(-63.019 -44.114)" fill="#1477ef"/>
|
||||
<g id="Group_42588" data-name="Group 42588" transform="translate(88.391 172.993)">
|
||||
<path id="Path_17144" data-name="Path 17144" d="M119.2,205.8h1.7a.1.1,0,1,0,0-.2h0l-.1-.6h0a.1.1,0,1,0,0-.2h-1.5a.1.1,0,1,0,0,.2h0v.6h0c-.1,0-.1.1-.1.2Zm.6-.6a.367.367,0,0,0-.1.3C119.7,205.4,119.8,205.3,119.8,205.2Z" transform="translate(-119.2 -203.802)" fill="#ff0"/>
|
||||
<path id="Path_17145" data-name="Path 17145" d="M124.275,197.1h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1h-.1v.1h-.1v-.1h-.1v.3Z" transform="translate(-123.576 -196.8)" fill="#ff0"/>
|
||||
<path id="Path_17146" data-name="Path 17146" d="M156.2,205.6h0l-.1-.6h0a.1.1,0,1,0,0-.2h-1.5a.1.1,0,1,0,0,.2h0l-.1.6h0a.1.1,0,0,0,0,.2h1.7c.1,0,.1,0,0-.2C156.3,205.7,156.3,205.6,156.2,205.6Zm-1.2-.1c0-.1.1-.2.1-.3C155.1,205.3,155,205.4,155,205.5Z" transform="translate(-150.009 -203.802)" fill="#ff0"/>
|
||||
<path id="Path_17147" data-name="Path 17147" d="M119.475,204.2h1.6a.1.1,0,0,0,.1-.1h0a.1.1,0,0,0-.1-.1h-1.6c-.1.1-.1.1,0,.2Z" transform="translate(-119.375 -203.102)" fill="#ff0"/>
|
||||
<path id="Path_17148" data-name="Path 17148" d="M125.2,199.2h-.4v.7h.4Z" transform="translate(-124.102 -198.901)" fill="#ff0"/>
|
||||
<path id="Path_17149" data-name="Path 17149" d="M128.8,201.6h0v.4h.4v-.4h-.4Z" transform="translate(-127.603 -201.001)" fill="#ff0"/>
|
||||
<path id="Path_17150" data-name="Path 17150" d="M128.2,200H128v.2h0a.1.1,0,0,0,.1.1h.4a.1.1,0,0,0,.1-.1h0V200h-.4Z" transform="translate(-126.902 -199.601)" fill="#ff0"/>
|
||||
<path id="Path_17151" data-name="Path 17151" d="M120,200.2h.5a.1.1,0,0,0,.1-.1V200H120v.2Z" transform="translate(-119.9 -199.601)" fill="#ff0"/>
|
||||
<path id="Path_17152" data-name="Path 17152" d="M120.8,202h.4l-.1-.4h-.3Z" transform="translate(-120.6 -201.001)" fill="#ff0"/>
|
||||
<path id="Path_17153" data-name="Path 17153" d="M155.689,204.2h1.6a.1.1,0,0,0,.1-.1h0a.1.1,0,0,0-.1-.1h-1.6c0,.1-.1.1,0,.2Z" transform="translate(-151.099 -203.102)" fill="#ff0"/>
|
||||
<path id="Path_17154" data-name="Path 17154" d="M160.1,197.1h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1h-.1v.1h-.1v-.1H160l.1.3Z" transform="translate(-154.911 -196.8)" fill="#ff0"/>
|
||||
<path id="Path_17155" data-name="Path 17155" d="M161.2,199.2h-.4v.7h.4Z" transform="translate(-155.611 -198.901)" fill="#ff0"/>
|
||||
<path id="Path_17156" data-name="Path 17156" d="M164.8,201.6h0v.4h.4v-.4h-.4Z" transform="translate(-159.112 -201.001)" fill="#ff0"/>
|
||||
<path id="Path_17157" data-name="Path 17157" d="M164.9,200h-.1v.2h0a.1.1,0,0,0,.1.1h.3a.1.1,0,0,0,.1-.1h0V200h-.4Z" transform="translate(-159.112 -199.601)" fill="#ff0"/>
|
||||
<path id="Path_17158" data-name="Path 17158" d="M156.275,200.2h.4a.1.1,0,0,0,.1-.1V200h-.5v.2Z" transform="translate(-151.585 -199.601)" fill="#ff0"/>
|
||||
<path id="Path_17159" data-name="Path 17159" d="M156.8,201.6v.4h.4v-.4Z" transform="translate(-152.11 -201.001)" fill="#ff0"/>
|
||||
</g>
|
||||
<g id="Group_42589" data-name="Group 42589" transform="translate(97.371 172.993)">
|
||||
<path id="Path_17160" data-name="Path 17160" d="M191.2,205.8h1.7a.1.1,0,0,0,0-.2h0l-.1-.6h0a.1.1,0,1,0,0-.2h-1.5a.1.1,0,0,0,0,.2h0v.6h0c-.1,0-.1.1-.1.2Zm.6-.6a.367.367,0,0,0-.1.3C191.7,205.4,191.8,205.3,191.8,205.2Z" transform="translate(-191.2 -203.802)" fill="#ffe600"/>
|
||||
<path id="Path_17161" data-name="Path 17161" d="M191.475,204.2h1.6a.1.1,0,0,0,.1-.1h0a.1.1,0,0,0-.1-.1h-1.6c-.1.1-.1.1,0,.2Z" transform="translate(-191.375 -203.102)" fill="#ffe600"/>
|
||||
<path id="Path_17162" data-name="Path 17162" d="M196.275,197.1h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1h-.1v.1h-.1v-.1h-.1v.3Z" transform="translate(-195.576 -196.8)" fill="#ffe600"/>
|
||||
<path id="Path_17163" data-name="Path 17163" d="M197.2,199.2h-.4v.7h.4Z" transform="translate(-196.102 -198.901)" fill="#ffe600"/>
|
||||
<path id="Path_17164" data-name="Path 17164" d="M200.8,201.6h0v.4h.4v-.4h-.4Z" transform="translate(-199.603 -201.001)" fill="#ffe600"/>
|
||||
<path id="Path_17165" data-name="Path 17165" d="M200.1,200H200v.2h0a.1.1,0,0,0,.1.1h.4a.1.1,0,0,0,.1-.1h0V200h-.5Z" transform="translate(-198.902 -199.601)" fill="#ffe600"/>
|
||||
<path id="Path_17166" data-name="Path 17166" d="M192,199.5h.5a.1.1,0,0,0,.1-.1v-.2h-.1v.1H192v.2Z" transform="translate(-191.9 -198.901)" fill="#ffe600"/>
|
||||
<path id="Path_17167" data-name="Path 17167" d="M192.1,201.6l-.1.4h.4v-.4Z" transform="translate(-191.9 -201.001)" fill="#ffe600"/>
|
||||
</g>
|
||||
<g id="Group_42590" data-name="Group 42590" transform="translate(88.391 177.583)">
|
||||
<path id="Path_17168" data-name="Path 17168" d="M121,242.5h0l-.5-.1h0l.5.1h0l-.2-.7h0a.1.1,0,0,0,.1-.1c0-.1,0-.1-.1-.1h-1.5a.1.1,0,0,0-.1.1c0,.1,0,.1.1.1h0v.6h0a.1.1,0,0,0,0,.2l1.7-.1Zm-1.3-.2c0-.1.1-.2.1-.3C119.8,242.1,119.7,242.2,119.7,242.3Z" transform="translate(-119.2 -240.602)" fill="#ff0"/>
|
||||
<path id="Path_17169" data-name="Path 17169" d="M120.9,240.8h-1.6a.1.1,0,0,0-.1.1h0a.1.1,0,0,0,.1.1h1.6v-.2Z" transform="translate(-119.2 -239.902)" fill="#ff0"/>
|
||||
<path id="Path_17170" data-name="Path 17170" d="M124,233.6h0v.2a.1.1,0,0,0,.1.1h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1h-.1v.1h-.1v-.1Z" transform="translate(-123.401 -233.6)" fill="#ff0"/>
|
||||
<path id="Path_17171" data-name="Path 17171" d="M125.2,236h-.4v.6h.4Z" transform="translate(-124.102 -235.701)" fill="#ff0"/>
|
||||
<path id="Path_17172" data-name="Path 17172" d="M129.2,238.4h-.4v.3h.4Z" transform="translate(-127.603 -237.801)" fill="#ff0"/>
|
||||
<path id="Path_17173" data-name="Path 17173" d="M128.9,236h-.1v.2h0a.1.1,0,0,0,.1.1h.4a.1.1,0,0,0,.1-.1h0V236h-.1v.1h-.1V236Z" transform="translate(-127.603 -235.701)" fill="#ff0"/>
|
||||
<path id="Path_17174" data-name="Path 17174" d="M120,235.3h0v.2h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1h-.1v.1h-.1v-.1H120Z" transform="translate(-119.9 -235)" fill="#ff0"/>
|
||||
<path id="Path_17175" data-name="Path 17175" d="M120.8,238.4v.3h.4l-.1-.3h-.3Z" transform="translate(-120.6 -237.801)" fill="#ff0"/>
|
||||
</g>
|
||||
<g id="Group_42591" data-name="Group 42591" transform="translate(95.874 177.583)">
|
||||
<path id="Path_17176" data-name="Path 17176" d="M192.4,279.3l-.1-.1-.3.2.3.3.2-.2h0Z" transform="translate(-190.403 -273.512)" fill="#ffe600"/>
|
||||
<path id="Path_17177" data-name="Path 17177" d="M184.9,274.4h0a.1.1,0,0,0-.1.1l1.1,1.1h.1v-.1Z" transform="translate(-184.102 -269.311)" fill="#ffe600"/>
|
||||
<path id="Path_17178" data-name="Path 17178" d="M181,276.3l-1.1-1.1h-.1v.1h0l-.5.4h0l.3.3h0l-.3-.3h-.1v.1l1.2,1.2h.1v-.1l-.3-.3h0l.3.3h0l.4-.5.1-.1Zm-1.2-.4a.367.367,0,0,1,.3-.1C180,275.8,179.9,275.9,179.8,275.9Z" transform="translate(-179.2 -270.011)" fill="#ffe600"/>
|
||||
<path id="Path_17179" data-name="Path 17179" d="M192.8,272.2h0l.3.4h.1l.1-.1h0l-.1-.1-.1.1-.1-.1.1-.1h0l-.1-.1h0l-.1.1-.1-.1.1-.1-.1-.1h0Z" transform="translate(-191.104 -267.21)" fill="#ffe600"/>
|
||||
<path id="Path_17180" data-name="Path 17180" d="M188.8,274.8l.3.3h0l.5-.4h0l-.3-.3Z" transform="translate(-187.603 -269.311)" fill="#ffe600"/>
|
||||
<path id="Path_17181" data-name="Path 17181" d="M194.8,277.1h0l-.1-.1h0l-.1.1-.1-.1.1-.1-.1-.1h0l-.1.1h0v.1l.3.3h.1v-.2Z" transform="translate(-192.504 -271.412)" fill="#ffe600"/>
|
||||
<path id="Path_17182" data-name="Path 17182" d="M188.3,271h0l.2-.1-.1-.1-.1.1-.1-.1.1-.1-.1-.1-.1.1-.1-.1.1-.1-.1-.1h0v.3Z" transform="translate(-186.902 -265.81)" fill="#ffe600"/>
|
||||
<path id="Path_17183" data-name="Path 17183" d="M186.7,273.4l.2-.3h0l-.3-.3-.2.3h0Z" transform="translate(-185.502 -267.911)" fill="#ffe600"/>
|
||||
<path id="Path_17184" data-name="Path 17184" d="M192.9,242.4h0l-.1-.6h0a.1.1,0,0,0,.1-.1c0-.1,0-.1-.1-.1h-1.5a.1.1,0,0,0-.1.1c0,.1,0,.1.1.1h0v.6h0a.1.1,0,0,0,0,.2H193c-.1,0,0-.1-.1-.2Zm-1.2-.1c0-.1.1-.2.1-.3A.367.367,0,0,0,191.7,242.3Z" transform="translate(-189.703 -240.602)" fill="#ffe600"/>
|
||||
<path id="Path_17185" data-name="Path 17185" d="M192.9,240.8h-1.6a.1.1,0,0,0-.1.1h0a.1.1,0,0,0,.1.1h1.6v-.2Z" transform="translate(-189.703 -239.902)" fill="#ffe600"/>
|
||||
<path id="Path_17186" data-name="Path 17186" d="M196,233.6h0v.2a.1.1,0,0,0,.1.1h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1h-.1v.1h-.1v-.1Z" transform="translate(-193.905 -233.6)" fill="#ffe600"/>
|
||||
<path id="Path_17187" data-name="Path 17187" d="M196.4,236h-.3l-.1.6h.5Z" transform="translate(-193.905 -235.701)" fill="#ffe600"/>
|
||||
<path id="Path_17188" data-name="Path 17188" d="M201.2,238.4h-.4v.3h.4Z" transform="translate(-198.106 -237.801)" fill="#ffe600"/>
|
||||
<path id="Path_17189" data-name="Path 17189" d="M200.1,236H200v.2a.1.1,0,0,0,.1.1h.4a.1.1,0,0,0,.1-.1h0V236h-.1v.1h-.1V236Z" transform="translate(-197.406 -235.701)" fill="#ffe600"/>
|
||||
<path id="Path_17190" data-name="Path 17190" d="M192.1,235.3H192v.2h.4a.1.1,0,0,0,.1-.1v-.2h-.1v.1h-.1v-.1l-.2.1Z" transform="translate(-190.403 -235)" fill="#ffe600"/>
|
||||
<path id="Path_17191" data-name="Path 17191" d="M192,238.4h0v.3h.4v-.3H192Z" transform="translate(-190.403 -237.801)" fill="#ffe600"/>
|
||||
</g>
|
||||
<g id="Group_42592" data-name="Group 42592" transform="translate(89.289 182.173)">
|
||||
<path id="Path_17192" data-name="Path 17192" d="M134.9,273.1l-.3-.3h0l-.2.3h0l.2.3Z" transform="translate(-133.402 -272.501)" fill="#ff0"/>
|
||||
<path id="Path_17193" data-name="Path 17193" d="M132.2,275h0l-.4.3h0l.4-.3h0l-.5-.4h0v-.1h-.1v-.1h-.1l-1.1,1.1v.1h0v.1h0l.4.5.3-.3h0l-.3.3v.1h.1l1.2-1.2c.1,0,.1,0,.1-.1Zm-1.2.5a.367.367,0,0,0,.1.3C131.1,275.7,131,275.6,131,275.5Z" transform="translate(-129.901 -273.901)" fill="#ff0"/>
|
||||
<path id="Path_17194" data-name="Path 17194" d="M128,272.4l.1.1h.1l.3-.3v-.1l-.2-.1h0l.1.1-.1.1-.1-.1h0l-.1.1h0l.1.1-.1.1Z" transform="translate(-127.8 -271.8)" fill="#ff0"/>
|
||||
<path id="Path_17195" data-name="Path 17195" d="M132,274.4Z" transform="translate(-131.302 -273.901)" fill="#ff0"/>
|
||||
<path id="Path_17196" data-name="Path 17196" d="M129.9,274.4l-.3.3h0l.4.4.3-.3h0Z" transform="translate(-129.201 -273.901)" fill="#ff0"/>
|
||||
<path id="Path_17197" data-name="Path 17197" d="M132.9,270.7h0v0l-.1.1h0l.1.1h.1l.3-.3v-.1h0l-.1-.1-.2.2h0l.1.1-.1.1-.1-.1Z" transform="translate(-132.002 -270.4)" fill="#ff0"/>
|
||||
<path id="Path_17198" data-name="Path 17198" d="M126.9,277.7l-.1-.1-.1.1.1.1-.1.1-.1-.2v.1l.1.1h-.1l-.1-.1-.1.1h0l.1.1h.1l.3-.3Z" transform="translate(-126.4 -276.702)" fill="#ff0"/>
|
||||
<path id="Path_17199" data-name="Path 17199" d="M128.6,279.4l-.3-.2h0l-.3.2.3.3Z" transform="translate(-127.8 -278.102)" fill="#ff0"/>
|
||||
</g>
|
||||
<path id="Path_17200" data-name="Path 17200" d="M93.779,169.6a9.779,9.779,0,1,0,9.779,9.779A9.795,9.795,0,0,0,93.779,169.6Zm5.887,3.093v7.783h0a5.892,5.892,0,0,1-1.7,4.091,5.716,5.716,0,0,1-4.191,1.7,5.892,5.892,0,0,1-4.091-1.7,5.652,5.652,0,0,1-1.7-4.091h0v-7.783Z" fill="#ffe600"/>
|
||||
<path id="Path_17201" data-name="Path 17201" d="M84,180.733a9.8,9.8,0,0,0,9.779,9.779h0v-2.794h0a5.892,5.892,0,0,1-4.091-1.7,5.652,5.652,0,0,1-1.7-4.091h0v-7.783h5.887v-2.994h0A9.527,9.527,0,0,0,84,180.733Z" transform="translate(0 -1.355)" fill="#ff0"/>
|
||||
<g id="Group_42593" data-name="Group 42593" transform="translate(93.779 175.986)">
|
||||
<path id="Path_17202" data-name="Path 17202" d="M162.4,242.7h0a1.418,1.418,0,0,0,.6-.2.844.844,0,0,0,.2-.6v-1.1h-.8v1.9Z" transform="translate(-162.4 -238.305)" fill="#005cb7"/>
|
||||
<path id="Path_17203" data-name="Path 17203" d="M162.4,222.7h0a1.418,1.418,0,0,0,.6-.2c.2-.1.2-.3.2-.6v-1.1h-.8v1.9Z" transform="translate(-162.4 -220.8)" fill="#005cb7"/>
|
||||
<path id="Path_17204" data-name="Path 17204" d="M162.4,263.5h0a1.418,1.418,0,0,0,.6-.2c.2-.1.2-.3.2-.6v-1.1h-.8v1.9Z" transform="translate(-162.4 -256.511)" fill="#005cb7"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 14 KiB |
@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.492" height="39.207" viewBox="0 0 58.492 39.207">
|
||||
<g id="rusya" transform="translate(0.05 0.05)">
|
||||
<rect id="Rectangle_2198" data-name="Rectangle 2198" width="58.392" height="39.107" transform="translate(0 0)" fill="red"/>
|
||||
<rect id="Rectangle_2199" data-name="Rectangle 2199" width="58.392" height="26.072" transform="translate(0 0)" fill="#0a51a1"/>
|
||||
<rect id="Rectangle_2200" data-name="Rectangle 2200" width="58.392" height="13.04" transform="translate(0 0)" fill="#fff"/>
|
||||
<rect id="Rectangle_2201" data-name="Rectangle 2201" width="58.392" height="39.107" transform="translate(0 0)" fill="none" stroke="#000" stroke-width="0.1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 714 B |
@ -1,7 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="58.497" height="39.208" viewBox="0 0 58.497 39.208">
|
||||
<g id="tr" transform="translate(0.05 0.05)">
|
||||
<rect id="Rectangle_1998" data-name="Rectangle 1998" width="58.397" height="39.108" transform="translate(0 0)" fill="red" stroke="#000" stroke-width="0.1"/>
|
||||
<path id="Path_1586" data-name="Path 1586" d="M429.112,314.207l3.649,1.188-2.248-3.11,2.253-3.1-3.645,1.18-2.256-3.106,0,3.839-3.648,1.181,3.645,1.192v3.837Z" transform="translate(-394.661 -292.613)" fill="#fff"/>
|
||||
<path id="Path_1587" data-name="Path 1587" d="M407.812,318.243a8.346,8.346,0,1,1,5.645-14.493,10.285,10.285,0,1,0,0,12.292A8.321,8.321,0,0,1,407.812,318.243Z" transform="translate(-385.8 -290.218)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 756 B |
@ -1,12 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="33.56" height="19.582" viewBox="0 0 33.56 19.582">
|
||||
<g id="zh" transform="translate(-3704 -518)">
|
||||
<rect id="Rectangle_5" data-name="Rectangle 5" width="33.56" height="19.582" transform="translate(3704 518)" fill="#d80027"/>
|
||||
<g id="Group_41368" data-name="Group 41368" transform="translate(3710.703 522.995)">
|
||||
<path id="Path_11050" data-name="Path 11050" d="M120.4,189.567l.841,2.588h2.721l-2.2,1.6.841,2.588-2.2-1.6-2.2,1.6.841-2.588-2.2-1.6h2.721Z" transform="translate(-116.837 -188.582)" fill="#ffda44"/>
|
||||
<path id="Path_11051" data-name="Path 11051" d="M235.789,297.848l-.826-.6-.825.6.315-.97-.825-.6h1.02l.315-.97.315.97h1.02l-.826.6Z" transform="translate(-226.928 -288.256)" fill="#ffda44"/>
|
||||
<path id="Path_11052" data-name="Path 11052" d="M264.944,262.127h-1.02l-.315.97-.315-.97h-1.02l.826-.6-.315-.97.826.6.825-.6-.315.97Z" transform="translate(-253.93 -255.499)" fill="#ffda44"/>
|
||||
<path id="Path_11053" data-name="Path 11053" d="M264.944,208.117l-.825.6.315.97-.825-.6-.826.6.315-.971-.826-.6h1.02l.315-.97.315.97Z" transform="translate(-253.93 -205.153)" fill="#ffda44"/>
|
||||
<path id="Path_11054" data-name="Path 11054" d="M235.79,172.4l-.315.97.825.6h-1.02l-.315.971-.315-.971h-1.02l.825-.6-.315-.97.825.6Z" transform="translate(-226.929 -172.396)" fill="#ffda44"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11.001" viewBox="0 0 14 11.001">
|
||||
<path id="Gallery_icon" data-name="Gallery icon" d="M3254.636,3065a1,1,0,0,1-1-1v-2.857a1,1,0,0,1,1-1H3259a1,1,0,0,1,1,1V3064a1,1,0,0,1-1,1Zm-7.636,0a1,1,0,0,1-1-1v-2.857a1,1,0,0,1,1-1h4.363a1,1,0,0,1,1,1V3064a1,1,0,0,1-1,1Zm7.636-6.143a1,1,0,0,1-1-1V3055a1,1,0,0,1,1-1H3259a1,1,0,0,1,1,1v2.857a1,1,0,0,1-1,1Zm-7.636,0a1,1,0,0,1-1-1V3055a1,1,0,0,1,1-1h4.363a1,1,0,0,1,1,1v2.857a1,1,0,0,1-1,1Z" transform="translate(-3246 -3054)" fill="#8598aa"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 547 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="17.925" height="12.944" viewBox="0 0 17.925 12.944">
|
||||
<path id="list_icon" data-name="list icon" d="M5.434,12.944a.734.734,0,0,1-.734-.734V10.74a.734.734,0,0,1,.734-.734H17.19a.735.735,0,0,1,.735.734v1.47a.735.735,0,0,1-.735.734Zm-4.7,0A.735.735,0,0,1,0,12.2V10.735A.735.735,0,0,1,.734,10h1.94a.735.735,0,0,1,.734.735V12.2a.735.735,0,0,1-.734.735Zm4.7-5A.735.735,0,0,1,4.7,7.209V5.74A.735.735,0,0,1,5.434,5H17.19a.736.736,0,0,1,.735.735V7.209a.736.736,0,0,1-.735.735Zm-4.7-.005A.735.735,0,0,1,0,7.2V5.735A.735.735,0,0,1,.734,5h1.94a.734.734,0,0,1,.734.734V7.2a.734.734,0,0,1-.734.734Zm4.7-4.995A.734.734,0,0,1,4.7,2.21V.74A.734.734,0,0,1,5.434.005H17.19a.735.735,0,0,1,.735.734V2.21a.735.735,0,0,1-.735.734Zm-4.7,0A.735.735,0,0,1,0,2.2V.734A.735.735,0,0,1,.734,0h1.94a.735.735,0,0,1,.734.734V2.2a.735.735,0,0,1-.734.735Z" fill="#8598aa"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 894 B |
@ -1,5 +0,0 @@
|
||||
<svg id="ribbon-with-cross" xmlns="http://www.w3.org/2000/svg" width="8.477" height="12.417" viewBox="0 0 8.477 12.417">
|
||||
<path id="Path_3996" data-name="Path 3996" d="M14.307,0H6.236a.2.2,0,0,0-.2.2V12.216a.2.2,0,0,0,.125.186.191.191,0,0,0,.077.016.194.194,0,0,0,.142-.06L10.272,9.1l3.892,3.259a.2.2,0,0,0,.346-.142V.2A.2.2,0,0,0,14.307,0Z" transform="translate(-6.033)" fill="#a1a1a1"/>
|
||||
<rect id="Rectangle_2426" data-name="Rectangle 2426" width="4.639" height="0.843" transform="translate(3.898 5.949) rotate(-90)" fill="#fff"/>
|
||||
<rect id="Rectangle_2427" data-name="Rectangle 2427" width="4.639" height="0.843" transform="translate(2.001 3.208)" fill="#fff"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 681 B |
@ -1,7 +0,0 @@
|
||||
<svg id="Group_1379" data-name="Group 1379" xmlns="http://www.w3.org/2000/svg" width="9.038" height="10.172" viewBox="0 0 9.038 10.172">
|
||||
<rect id="Rectangle_2604" data-name="Rectangle 2604" width="9.038" height="10.172" transform="translate(0 0)" fill="#a1a1a1"/>
|
||||
<g id="Solid" transform="translate(1.466 2.56)">
|
||||
<path id="Path_11023" data-name="Path 11023" d="M24.316,65.683h4.711l-.514.514a.316.316,0,0,0,.447.447l1.053-1.053a.316.316,0,0,0,0-.447L28.96,64.092a.316.316,0,0,0-.447.447l.514.514H24.316a.316.316,0,1,0,0,.632Z" transform="translate(-24 -63.999)" fill="#fff"/>
|
||||
<path id="Path_11024" data-name="Path 11024" d="M29.788,241.052H25.077l.514-.514a.316.316,0,1,0-.447-.447l-1.053,1.053a.316.316,0,0,0,0,.447l1.053,1.053a.316.316,0,1,0,.447-.447l-.514-.514h4.711a.316.316,0,1,0,0-.632Z" transform="translate(-23.999 -237.684)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 889 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="15.303" height="9.867" viewBox="0 0 15.303 9.867">
|
||||
<path id="Path_454" data-name="Path 454" d="M-3948.849,51.453v0h0l-7.15-5.539V43l7.151,5.534L-3941.7,43v2.913l-7.15,5.539h0v0Z" transform="translate(3956.5 -41.981)" fill="#373535" stroke="rgba(0,0,0,0)" stroke-width="1"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 332 B |
@ -1,3 +0,0 @@
|
||||
<svg id="Component_22_1" data-name="Component 22 – 1" xmlns="http://www.w3.org/2000/svg" width="24.001" height="16.999" viewBox="0 0 24.001 16.999">
|
||||
<path id="Union_69" data-name="Union 69" d="M-7554.5,3327a1,1,0,0,1-1-1v-5a1,1,0,0,1,1-1h8.5a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1Zm-13.5,0a1,1,0,0,1-1-1v-5a1,1,0,0,1,1-1h8.5a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1Zm13.5-10a1,1,0,0,1-1-1v-5a1,1,0,0,1,1-1h8.5a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1Zm-13.5,0a1,1,0,0,1-1-1v-5a1,1,0,0,1,1-1h8.5a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1Z" transform="translate(7569 -3310)" fill="#c4dbf2"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 560 B |
@ -1,10 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="23.997" height="17.328" viewBox="0 0 23.997 17.328">
|
||||
<g id="Group_1132" data-name="Group 1132" opacity="0.62">
|
||||
<path id="Icon_awesome-sort-amount-down" data-name="Icon awesome-sort-amount-down" d="M27.008,2.25H11.27a.984.984,0,0,0-.984.984V5.2a.984.984,0,0,0,.984.984H27.008a.984.984,0,0,0,.984-.984V3.234A.984.984,0,0,0,27.008,2.25Z" transform="translate(-3.995 11.144)" fill="#c4dbf2"/>
|
||||
<path id="Icon_awesome-sort-amount-down-2" data-name="Icon awesome-sort-amount-down" d="M27.008,2.25H11.27a.984.984,0,0,0-.984.984V5.2a.984.984,0,0,0,.984.984H27.008a.984.984,0,0,0,.984-.984V3.234A.984.984,0,0,0,27.008,2.25Z" transform="translate(-3.995 4.45)" fill="#c4dbf2"/>
|
||||
<path id="Icon_awesome-sort-amount-down-3" data-name="Icon awesome-sort-amount-down" d="M27.008,2.25H11.27a.984.984,0,0,0-.984.984V5.2a.984.984,0,0,0,.984.984H27.008a.984.984,0,0,0,.984-.984V3.234A.984.984,0,0,0,27.008,2.25Z" transform="translate(-3.995 -2.243)" fill="#c4dbf2"/>
|
||||
<path id="Icon_awesome-sort-amount-down-4" data-name="Icon awesome-sort-amount-down" d="M13.866,19.884h-2.6a.984.984,0,0,0-.984.984v1.967a.984.984,0,0,0,.984.984h2.6a.984.984,0,0,0,.984-.984V20.868A.984.984,0,0,0,13.866,19.884Z" transform="translate(-10.286 -6.497)" fill="#c4dbf2"/>
|
||||
<path id="Icon_awesome-sort-amount-down-5" data-name="Icon awesome-sort-amount-down" d="M13.866,19.884h-2.6a.984.984,0,0,0-.984.984v1.967a.984.984,0,0,0,.984.984h2.6a.984.984,0,0,0,.984-.984V20.868A.984.984,0,0,0,13.866,19.884Z" transform="translate(-10.286 -13.19)" fill="#c4dbf2"/>
|
||||
<path id="Icon_awesome-sort-amount-down-6" data-name="Icon awesome-sort-amount-down" d="M13.866,19.884h-2.6a.984.984,0,0,0-.984.984v1.967a.984.984,0,0,0,.984.984h2.6a.984.984,0,0,0,.984-.984V20.868A.984.984,0,0,0,13.866,19.884Z" transform="translate(-10.286 -19.884)" fill="#c4dbf2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,7 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="23.997" height="17.329" viewBox="0 0 23.997 17.329">
|
||||
<g id="Group_1063" data-name="Group 1063" transform="translate(0 0)">
|
||||
<path id="Icon_awesome-sort-amount-down" data-name="Icon awesome-sort-amount-down" d="M27.008,2.25H11.27a.984.984,0,0,0-.984.984V5.2a.984.984,0,0,0,.984.984H27.008a.984.984,0,0,0,.984-.984V3.234A.984.984,0,0,0,27.008,2.25Z" transform="translate(-3.995 11.144)" fill="#9FA4A4"/>
|
||||
<path id="Icon_awesome-sort-amount-down-2" data-name="Icon awesome-sort-amount-down" d="M27.008,2.25H11.27a.984.984,0,0,0-.984.984V5.2a.984.984,0,0,0,.984.984H27.008a.984.984,0,0,0,.984-.984V3.234A.984.984,0,0,0,27.008,2.25Z" transform="translate(-3.995 4.45)" fill="#9FA4A4"/>
|
||||
<path id="Union_68" data-name="Union 68" d="M-4758.229,3103.736a.983.983,0,0,1-.984-.984v-1.967a.983.983,0,0,1,.984-.983h2.594a.983.983,0,0,1,.984.983v1.967a.983.983,0,0,1-.984.984Zm0-6.695a.982.982,0,0,1-.984-.983v-1.967a.983.983,0,0,1,.984-.983h2.594a.983.983,0,0,1,.984.983v1.967a.982.982,0,0,1-.984.983Zm6.291-6.686a.994.994,0,0,1-.108-.006h-6.183a.984.984,0,0,1-.984-.984V3087.4a.983.983,0,0,1,.984-.984h10.594a1.014,1.014,0,0,1,.119.007h11.315a.984.984,0,0,1,.984.984v1.967a.984.984,0,0,1-.984.983Z" transform="translate(4759.214 -3086.414)" fill="#9FA4A4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="11.002" height="6.618" viewBox="0 0 11.002 6.618">
|
||||
<path id="Path_221" data-name="Path 221" d="M4.758-4.92.675-10.2H2.812L5.957-6.142,6.9-4.92,5.957-3.7,2.419.807H.282Z" transform="translate(0.807 -0.282) rotate(90)" fill="#707070"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 292 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24.262" height="24.262" viewBox="0 0 24.262 24.262">
|
||||
<path id="Icon_open-location" data-name="Icon open-location" d="M24.262,0,0,12.131l9.1,3.033,3.033,9.1Z" fill="#9fa4a4"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 233 B |
@ -1,5 +0,0 @@
|
||||
<svg id="bookmark" xmlns="http://www.w3.org/2000/svg" width="12.416" height="16.931" viewBox="0 0 12.416 16.931">
|
||||
<g id="Group_984" data-name="Group 984">
|
||||
<path id="Path_3969" data-name="Path 3969" d="M68.267,0V16.931h.564l5.644-5.644,5.644,5.644h.564V0Z" transform="translate(-68.267)" fill="#a1a1a1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 332 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16.774" height="16.774" viewBox="0 0 16.774 16.774">
|
||||
<path id="Icon_awesome-filter" data-name="Icon awesome-filter" d="M15.987,0H.787A.787.787,0,0,0,.231,1.342L6.29,7.4v6.751a.786.786,0,0,0,.335.644l2.621,1.834a.787.787,0,0,0,1.237-.644V7.4l6.059-6.06A.787.787,0,0,0,15.987,0Z" fill="#a1a1a1"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 353 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18.891" height="16.529" viewBox="0 0 18.891 16.529">
|
||||
<path id="Icon_awesome-sort-amount-down" data-name="Icon awesome-sort-amount-down" d="M11.216,16.418H8.855a.59.59,0,0,0-.59.59v1.181a.59.59,0,0,0,.59.59h2.361a.59.59,0,0,0,.59-.59V17.008A.59.59,0,0,0,11.216,16.418ZM6.494,14.057H4.723V2.84a.59.59,0,0,0-.59-.59H2.952a.59.59,0,0,0-.59.59V14.057H.59a.591.591,0,0,0-.417,1.008l2.952,3.542a.59.59,0,0,0,.835,0l2.952-3.542A.591.591,0,0,0,6.494,14.057Zm9.445-7.084H8.855a.59.59,0,0,0-.59.59V8.744a.59.59,0,0,0,.59.59h7.084a.59.59,0,0,0,.59-.59V7.563A.59.59,0,0,0,15.939,6.973ZM13.578,11.7H8.855a.59.59,0,0,0-.59.59v1.181a.59.59,0,0,0,.59.59h4.723a.59.59,0,0,0,.59-.59V12.286A.59.59,0,0,0,13.578,11.7ZM18.3,2.25H8.855a.59.59,0,0,0-.59.59V4.021a.59.59,0,0,0,.59.59H18.3a.59.59,0,0,0,.59-.59V2.84A.59.59,0,0,0,18.3,2.25Z" transform="translate(0 -2.25)" fill="#a1a1a1"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 921 B |
@ -1,9 +0,0 @@
|
||||
<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.086 1.00385e-05C17.3451 -0.000227449 20.5036 1.12961 23.023 3.19703C25.5425 5.26445 27.2672 8.14151 27.9032 11.338C28.5392 14.5345 28.0472 17.8526 26.511 20.727C24.9747 23.6014 22.4894 25.8541 19.4784 27.1015C16.4674 28.3488 13.117 28.5135 9.99817 27.5675C6.87933 26.6216 4.185 24.6234 2.37427 21.9136C0.563531 19.2037 -0.251579 15.9498 0.0678402 12.7064C0.387259 9.46292 1.82145 6.43055 4.12601 4.12599C5.43257 2.8161 6.98508 1.77729 8.69434 1.06922C10.4036 0.361154 12.2359 -0.00220191 14.086 1.00385e-05V1.00385e-05Z" fill="#997A8C"/>
|
||||
<path d="M21.5059 8H11.4785C10.6544 8 9.98438 8.67037 9.98438 9.49414C9.98438 10.3182 10.6544 10.9883 11.4785 10.9883H21.5059C22.3296 10.9883 23 10.3182 23 9.49414C23 8.67037 22.3296 8 21.5059 8Z" fill="white"/>
|
||||
<path d="M21.5059 12.9805H11.4785C10.6544 12.9805 9.98438 13.6508 9.98438 14.4746C9.98438 15.2987 10.6544 15.9688 11.4785 15.9688H21.5059C22.3296 15.9688 23 15.2987 23 14.4746C23 13.6508 22.3296 12.9805 21.5059 12.9805Z" fill="white"/>
|
||||
<path d="M21.5059 17.9609H11.4785C10.6544 17.9609 9.98438 18.6313 9.98438 19.4551C9.98438 20.2792 10.6544 20.9492 11.4785 20.9492H21.5059C22.3296 20.9492 23 20.2792 23 19.4551C23 18.6313 22.3296 17.9609 21.5059 17.9609Z" fill="white"/>
|
||||
<path d="M7.49414 8C6.67004 8 6 8.67037 6 9.49414C6 10.3182 6.67004 10.9883 7.49414 10.9883C8.31791 10.9883 8.98828 10.3182 8.98828 9.49414C8.98828 8.67037 8.31791 8 7.49414 8Z" fill="white"/>
|
||||
<path d="M7.49414 12.9805C6.67004 12.9805 6 13.6508 6 14.4746C6 15.2987 6.67004 15.9688 7.49414 15.9688C8.31791 15.9688 8.98828 15.2987 8.98828 14.4746C8.98828 13.6508 8.31791 12.9805 7.49414 12.9805Z" fill="white"/>
|
||||
<path d="M7.49414 17.9609C6.67004 17.9609 6 18.6313 6 19.4551C6 20.2792 6.67004 20.9492 7.49414 20.9492C8.31791 20.9492 8.98828 20.2792 8.98828 19.4551C8.98828 18.6313 8.31791 17.9609 7.49414 17.9609Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@ -1,7 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13.422" height="19.662" viewBox="0 0 13.422 19.662">
|
||||
<g id="ribbon-with-cross" transform="translate(-6.033)">
|
||||
<path id="Path_3996" data-name="Path 3996" d="M19.133,0H6.354a.322.322,0,0,0-.321.32V19.343a.317.317,0,0,0,.2.294.3.3,0,0,0,.122.025.307.307,0,0,0,.225-.095l6.166-5.16,6.163,5.16a.32.32,0,0,0,.547-.224V.32A.323.323,0,0,0,19.133,0Z" transform="translate(0)" fill="#fb0"/>
|
||||
<rect id="Rectangle_2426" data-name="Rectangle 2426" width="7.345" height="1.335" transform="translate(12.205 9.42) rotate(-90)" fill="#fff"/>
|
||||
<rect id="Rectangle_2427" data-name="Rectangle 2427" width="7.345" height="1.335" transform="translate(9.201 5.079)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 746 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="19.804" height="17.328" viewBox="0 0 19.804 17.328">
|
||||
<path id="Icon_awesome-sort-amount-down" data-name="Icon awesome-sort-amount-down" d="M11.759,17.1H9.283a.619.619,0,0,0-.619.619v1.238a.619.619,0,0,0,.619.619h2.475a.619.619,0,0,0,.619-.619V17.722A.619.619,0,0,0,11.759,17.1ZM6.808,14.627H4.951V2.869a.619.619,0,0,0-.619-.619H3.094a.619.619,0,0,0-.619.619V14.627H.619a.619.619,0,0,0-.437,1.056L3.277,19.4a.619.619,0,0,0,.875,0l3.094-3.713A.62.62,0,0,0,6.808,14.627Zm9.9-7.426H9.283a.619.619,0,0,0-.619.619V9.058a.619.619,0,0,0,.619.619h7.426a.619.619,0,0,0,.619-.619V7.82A.619.619,0,0,0,16.709,7.2Zm-2.475,4.951H9.283a.619.619,0,0,0-.619.619v1.238a.619.619,0,0,0,.619.619h4.951a.619.619,0,0,0,.619-.619V12.771A.619.619,0,0,0,14.234,12.152Zm4.951-9.9h-9.9a.619.619,0,0,0-.619.619V4.107a.619.619,0,0,0,.619.619h9.9a.619.619,0,0,0,.619-.619V2.869A.619.619,0,0,0,19.185,2.25Z" transform="translate(0 -2.25)" fill="#87bbf1" opacity="0.62"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 996 B |
|
Before Width: | Height: | Size: 775 KiB |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20.878" height="20.878" viewBox="0 0 20.878 20.878">
|
||||
<path id="map_location_icon" data-name="map location icon" d="M20.878,0,0,10.439l7.829,2.61,2.61,7.829Z" fill="#8598aa"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 231 B |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,5 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22.348" height="20.889" viewBox="0 0 22.348 20.889">
|
||||
<g id="sale_icon" data-name="sale icon" transform="translate(-0.277)">
|
||||
<path id="Path_3973" data-name="Path 3973" d="M12.44,8.423a4.092,4.092,0,0,0,.907,1.661,1,1,0,0,0-.016.126v2.844A1.566,1.566,0,0,0,14.9,14.62v5.222a.522.522,0,0,0,.289.47l1.044.522a.522.522,0,0,0,.467,0l1.044-.522a.522.522,0,0,0,.289-.47V14.62A1.567,1.567,0,0,0,19.6,13.054V10.21a1.058,1.058,0,0,0-.017-.136,4.046,4.046,0,0,0,.8-1.317,1.907,1.907,0,0,0,1.948-.893A2.061,2.061,0,0,0,22,5.319L17.751,1.07A3.632,3.632,0,0,0,15.166,0H9.676A.514.514,0,0,0,9.47.042L5.916,1.566H5.5V.522A.522.522,0,0,0,4.977,0H.8A.522.522,0,0,0,.277.522V8.877A.522.522,0,0,0,.8,9.4H4.977A.522.522,0,0,0,5.5,8.877V7.832h.076c.374,1.253,2.053,2.089,3.579,2.089a4.166,4.166,0,0,0,3.286-1.5ZM4.454,8.355H1.321V1.044H4.454ZM16.986,19.519l-.522.261-.522-.261v-4.9h1.044Zm1.566-6.465a.522.522,0,0,1-.522.522H14.9a.522.522,0,0,1-.522-.522V10.922a4.108,4.108,0,0,0,1.126.449,1.051,1.051,0,1,0,.146-1.049,3.1,3.1,0,0,1-.836-.357A4.1,4.1,0,0,1,16.464,9.4a4.895,4.895,0,0,1,2.089.812Zm.389-3.826a5.7,5.7,0,0,0-2.477-.873,5.69,5.69,0,0,0-2.474.871,3.059,3.059,0,0,1-.613-1.394h2.564a2.036,2.036,0,0,0,1.824-1.092L19.228,8.2a1.882,1.882,0,0,0,.185.152,3,3,0,0,1-.472.873ZM18.006,5.5a2.07,2.07,0,0,0-.517-1.149,3.134,3.134,0,0,1,2.1,2.73ZM11.765,7.31c0,.791-1.293,1.566-2.611,1.566S6.543,8.1,6.543,7.31a.522.522,0,0,0-.522-.522H5.5V2.611h.522a.515.515,0,0,0,.206-.042L9.78,1.044h5.383a2.594,2.594,0,0,1,1.848.764l4.248,4.248A1.011,1.011,0,0,1,21.447,7.3a.94.94,0,0,1-.806.438h-.025a4.068,4.068,0,0,0,.025-.428,4.182,4.182,0,0,0-4.177-4.177,4.134,4.134,0,0,0-2,.522H10.2V4.7h5.744a1.044,1.044,0,0,1,0,2.089H12.287a.522.522,0,0,0-.522.522Zm0,0" transform="translate(0 0)" fill="#212529"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 79 KiB |
@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" width="512" height="512" x="0" y="0" viewBox="0 0 64 64" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><g xmlns="http://www.w3.org/2000/svg" id="Layer_87" data-name="Layer 87"><path d="m60.94 42.17-28-22.67a1.5 1.5 0 0 0 -1.88 0l-28 22.67a1.47 1.47 0 0 0 -.47 1.66 1.49 1.49 0 0 0 1.41 1h56a1.49 1.49 0 0 0 1.41-1 1.47 1.47 0 0 0 -.47-1.66z" fill="#ffffff" data-original="#ffffff" style="" class=""></path></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 584 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="19.429" height="17" viewBox="0 0 19.429 17">
|
||||
<path id="Icon_awesome-sort-amount-down" data-name="Icon awesome-sort-amount-down" d="M11.536,16.821H9.107a.607.607,0,0,0-.607.607v1.214a.607.607,0,0,0,.607.607h2.429a.607.607,0,0,0,.607-.607V17.429A.607.607,0,0,0,11.536,16.821ZM6.679,14.393H4.857V2.857A.607.607,0,0,0,4.25,2.25H3.036a.607.607,0,0,0-.607.607V14.393H.607a.607.607,0,0,0-.428,1.036l3.036,3.643a.607.607,0,0,0,.858,0l3.036-3.643A.608.608,0,0,0,6.679,14.393Zm9.714-7.286H9.107a.607.607,0,0,0-.607.607V8.929a.607.607,0,0,0,.607.607h7.286A.607.607,0,0,0,17,8.929V7.714A.607.607,0,0,0,16.393,7.107Zm-2.429,4.857H9.107a.607.607,0,0,0-.607.607v1.214a.607.607,0,0,0,.607.607h4.857a.607.607,0,0,0,.607-.607V12.571A.607.607,0,0,0,13.964,11.964ZM18.821,2.25H9.107a.607.607,0,0,0-.607.607V4.071a.607.607,0,0,0,.607.607h9.714a.607.607,0,0,0,.607-.607V2.857A.607.607,0,0,0,18.821,2.25Z" transform="translate(0 -2.25)" fill="#8598aa"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 987 B |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14.787" height="12.939" viewBox="0 0 14.787 12.939">
|
||||
<path id="table_icon" data-name="table icon" d="M13.4,2.25H1.386A1.386,1.386,0,0,0,0,3.636V13.8a1.386,1.386,0,0,0,1.386,1.386H13.4A1.386,1.386,0,0,0,14.787,13.8V3.636A1.386,1.386,0,0,0,13.4,2.25ZM6.469,13.341H1.848V10.568H6.469Zm0-4.621H1.848V5.947H6.469Zm6.469,4.621H8.318V10.568h4.621Zm0-4.621H8.318V5.947h4.621Z" transform="translate(0 -2.25)" fill="#8598aa"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 473 B |
|
Before Width: | Height: | Size: 42 KiB |
@ -1,32 +0,0 @@
|
||||
function getUrlParameter(sParam) {
|
||||
var sPageURL = window.location.search.substring(1),
|
||||
sURLVariables = sPageURL.split('&'),
|
||||
sParameterName,
|
||||
i;
|
||||
|
||||
for (i = 0; i < sURLVariables.length; i++) {
|
||||
sParameterName = sURLVariables[i].split('=');
|
||||
|
||||
if (sParameterName[0] === sParam) {
|
||||
return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
if (getUrlParameter('view') === "advanced") {
|
||||
$('.fast-update').on('change', function () {
|
||||
var advanced_value = $(this).val(), advanced_entry_id = $(this).data('entry_id'),
|
||||
advanced_column = $(this).data('column'), advanced_type = $(this).attr('type');
|
||||
|
||||
if (advanced_type === "checkbox") {
|
||||
advanced_value = ($(this).prop('checked')) ? 1 : 0;
|
||||
}
|
||||
|
||||
crudAjax({
|
||||
'edit_column': advanced_column,
|
||||
'edit_entry_id': advanced_entry_id,
|
||||
'edit_value': advanced_value
|
||||
}, advanced_update_url, 'POST')
|
||||
})
|
||||
}
|
||||
@ -1,116 +0,0 @@
|
||||
$(document).ready( function () {
|
||||
$('#stockReport').DataTable({
|
||||
ajax: {
|
||||
url: '/admin/api/classified/report/stock',
|
||||
dataSrc( json ) {
|
||||
json.recordsTotal = json.total;
|
||||
json.recordsFiltered = json.total;
|
||||
|
||||
return json.data;
|
||||
}
|
||||
},
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
order: [[ 1, "asc" ]],
|
||||
columns: [
|
||||
{
|
||||
data: 'name',
|
||||
render: function ( data, type, row, meta ) {
|
||||
return `
|
||||
<a href="/admin/advs/edit/${row.id}" class="text-info">
|
||||
${data ?? productsReportTrans.undefined_product}
|
||||
</a>
|
||||
`;
|
||||
}
|
||||
},
|
||||
{ data: 'stock' },
|
||||
],
|
||||
});
|
||||
|
||||
$('#activePassiveReport').DataTable({
|
||||
ajax: '/admin/api/classified/report/status',
|
||||
columns: [
|
||||
{ data: 'status' },
|
||||
{ data: 'count' },
|
||||
],
|
||||
});
|
||||
|
||||
$('#unexplainedReport').DataTable({
|
||||
ajax: {
|
||||
url: '/admin/api/classified/report/unexplained',
|
||||
dataSrc( json ) {
|
||||
json.recordsTotal = json.total;
|
||||
json.recordsFiltered = json.total;
|
||||
|
||||
return json.data;
|
||||
}
|
||||
},
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
columns: [
|
||||
{ data: 'id', orderable: false },
|
||||
{
|
||||
data: 'name',
|
||||
render: function ( data, type, row, meta ) {
|
||||
return `
|
||||
<a href="/admin/advs/edit/${row.id}" class="text-info">
|
||||
${data ?? productsReportTrans.undefined_product}
|
||||
</a>
|
||||
`;
|
||||
}
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
$('#noImageReport').DataTable({
|
||||
ajax: {
|
||||
url: '/admin/api/classified/report/no-image',
|
||||
dataSrc( json ) {
|
||||
json.recordsTotal = json.total;
|
||||
json.recordsFiltered = json.total;
|
||||
|
||||
return json.data;
|
||||
}
|
||||
},
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
columns: [
|
||||
{
|
||||
data: 'name',
|
||||
render: function ( data, type, row, meta ) {
|
||||
return `
|
||||
<a href="/admin/advs/edit/${row.id}" class="text-info">
|
||||
${data ?? productsReportTrans.undefined_product}
|
||||
</a>
|
||||
`;
|
||||
}
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
$('#metaPageReport').DataTable({
|
||||
ajax: {
|
||||
url: '/admin/api/classified/report/page',
|
||||
dataSrc( json ) {
|
||||
json.recordsTotal = json.total;
|
||||
json.recordsFiltered = json.total;
|
||||
|
||||
return json.data;
|
||||
}
|
||||
},
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
columns: [
|
||||
{
|
||||
data: 'name',
|
||||
render: function ( data, type, row, meta ) {
|
||||
return `
|
||||
<a href="/admin/pages/edit/${row.id}" class="text-info">
|
||||
${data ?? productsReportTrans.undefined_page}
|
||||
</a>
|
||||
`;
|
||||
}
|
||||
},
|
||||
],
|
||||
});
|
||||
} );
|
||||
@ -1,25 +0,0 @@
|
||||
$(document).ready(function () {
|
||||
|
||||
// User filter
|
||||
$("select[name=filter_user]").select2({
|
||||
placeholder: $('select[name=filter_user] option:first-child').text(),
|
||||
ajax: {
|
||||
url: '/api/profile/query-users',
|
||||
dataType: 'json',
|
||||
processResults: function (data) {
|
||||
let formattedData = [];
|
||||
|
||||
Object.keys(data).forEach(function (id) {
|
||||
formattedData.push({
|
||||
'id': id,
|
||||
'text': data[id]
|
||||
})
|
||||
});
|
||||
|
||||
return {
|
||||
results: formattedData
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
@ -1,111 +0,0 @@
|
||||
function showLoader() {
|
||||
$('body').append('<div class="loading-cart"><div class="lds-ripple"><div></div><div></div></div></div>');
|
||||
}
|
||||
|
||||
$("#catSelectionStepForm").on('click', 'input[type=submit]', function() {
|
||||
$("input[type=submit]", $(this).parents("form")).removeAttr("clicked");
|
||||
$(this).attr("clicked", "true");
|
||||
});
|
||||
|
||||
$(document).ready(function () {
|
||||
$('select[name="cat1"], select[name="cat2"], select[name="cat3"], select[name="cat4"], select[name="cat5"], ' +
|
||||
'select[name="cat6"], select[name="cat7"], select[name="cat8"], select[name="cat9"], select[name="cat10"]')
|
||||
.on('change', function () {
|
||||
var all = $(this).val();
|
||||
$(this).val(all[all.length-1])
|
||||
});
|
||||
|
||||
var filter = {};
|
||||
filter.getCats = (catId, divId) => {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/class/getcats/'+ divId,
|
||||
success: function (response) {
|
||||
if(response['title'] != undefined){
|
||||
response['success'] ? $('.post-icon > svg:last-of-type').hide() : $('.post-icon > svg:first-of-type').hide();
|
||||
|
||||
let btn = '<button type="submit" class="btn-1">'+response['continueBtn']+'</button>';
|
||||
if (response['link']) {
|
||||
const res = response['link']
|
||||
if (Array.isArray(res)) {
|
||||
btn = '';
|
||||
res.forEach(function (link) {
|
||||
btn += `
|
||||
<input type="submit" data-pack-id="${link.packID}" class="btn-1 mb-2 text-wrap"
|
||||
value="${response['continueBtn']}` + ' ' + `(${link.price})" />
|
||||
`
|
||||
})
|
||||
} else {
|
||||
btn = "<a class='link-unstyled btn-1 text-white' href='"+res+"' role='button'>"+response['continueBtn']+"</a>";
|
||||
}
|
||||
}
|
||||
let content;
|
||||
if (response['msg']) {
|
||||
content = `
|
||||
<p class="mb-1 mt-2">${response['title']}</p>
|
||||
<small class="text-muted">${response['msg']}</small>
|
||||
<div class="mt-3 btn-section btn-next">${btn}</div>
|
||||
`
|
||||
} else {
|
||||
content = `
|
||||
<p class="mb-3 mt-2">${response['title']}</p>
|
||||
<div class="btn-section btn-next">${btn}</div>
|
||||
`
|
||||
}
|
||||
$('.cat-item-3 .next-content').html(content);
|
||||
$('.cat-item-3').parent().css('display', 'flex');
|
||||
stop();
|
||||
} else {
|
||||
if (!$('li', catId).length) {
|
||||
response.forEach(function(options){
|
||||
$(catId).append("<li class='text-truncate pl-1 my-1' data-value="+options.id+">"+options.name+"</li>");
|
||||
});
|
||||
$('.focus-select').removeClass('focus-select');
|
||||
// $(catId).animate({height: '14rem'}, 200);
|
||||
$(catId).css({height: '14rem'});
|
||||
$(catId).closest('.cat-item-2').show().addClass('focus-select')
|
||||
}
|
||||
}
|
||||
// Auto scroll right or left
|
||||
let categoryTab = $('.category-tab');
|
||||
let pos;
|
||||
if (isRtl){
|
||||
pos = categoryTab.scrollLeft() - (categoryTab.width() * 2);
|
||||
$('.cat-item-3').css('display', 'flex');
|
||||
} else {
|
||||
pos = categoryTab.scrollLeft() + categoryTab.width();
|
||||
}
|
||||
categoryTab.animate( {scrollLeft: pos}, 1000);
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
filter.hideCats = (num) => {
|
||||
var startNo = num;
|
||||
var endNo = 9;
|
||||
|
||||
while (startNo <= endNo) {
|
||||
// $('#cat'+ startNo).animate({height: 0}, 200, 'linear', function () {
|
||||
// $(this).html("").closest('.cat-item-2').hide();
|
||||
// });
|
||||
$('#cat'+ startNo).html("").closest('.cat-item-2').hide();
|
||||
$('.cat-item-3').parent().hide();
|
||||
startNo++;
|
||||
}
|
||||
};
|
||||
|
||||
$('.cat-select').on('click', 'li', function () {
|
||||
$(this).addClass('selected').siblings().removeClass('selected')
|
||||
let divId = $(this).data('value');
|
||||
let catSelectId = $(this).closest('.cat-select').attr('id')
|
||||
catSelectId = catSelectId.substring(3)
|
||||
|
||||
$(`input[name=cat${catSelectId}]`).val(divId);
|
||||
|
||||
filter.hideCats(Number(catSelectId) + 1);
|
||||
filter.getCats("#cat" + (Number(catSelectId) + 1), divId);
|
||||
});
|
||||
});
|
||||
@ -1,59 +0,0 @@
|
||||
phoneMask("input[name='gsm_phone'],input[name='office_phone'],input[name='land_phone']")
|
||||
$('.formEditInfo').on('submit', function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
const oldBtnHtml = $(this).find('.btn-success').html();
|
||||
$(this).find('.btn-success').attr('disabled', true).html(`
|
||||
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
|
||||
`);
|
||||
|
||||
var form = $(this);
|
||||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
data: {
|
||||
action: 'update',
|
||||
first_name: $('input[name=first_name]', form).val(),
|
||||
last_name: $('input[name=last_name]', form).val(),
|
||||
gsm_phone: $('#gsm_phone', form).val(),
|
||||
office_phone: $('#office_phone', form).val(),
|
||||
land_phone: $('#land_phone', form).val(),
|
||||
},
|
||||
url: '/ajax/update-user-info',
|
||||
success: function (response) {
|
||||
if (response.status == "success") {
|
||||
var profile = response.data;
|
||||
$('.infoName').val(profile.first_name + " " + profile.last_name);
|
||||
$('.infoGsmPhone').val(profile.gsm_phone);
|
||||
$('.infoOfficePhone').val(profile.office_phone);
|
||||
$('.infoLandPhone').html(profile.land_phone);
|
||||
$('#editMyInfo').modal('hide');
|
||||
|
||||
$('.formEditInfo .btn-success').attr('disabled', false).html(oldBtnHtml);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$('.editInformationUser').on('click', function () {
|
||||
$('#editMyInfo').modal('show');
|
||||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/ajax/update-user-info',
|
||||
success: function (response) {
|
||||
if (response.status == "success") {
|
||||
var profile = response.data;
|
||||
$('input[name="first_name"]').val(profile.first_name);
|
||||
$('input[name="last_name"]').val(profile.last_name);
|
||||
const numbers = ['gsm_phone', 'office_phone', 'land_phone'];
|
||||
for (let i = 0; i < numbers.length; i++) {
|
||||
const number = numbers[i];
|
||||
if (profile[number]) {
|
||||
intlTelInput(document.querySelector(`input[name=${number}]`)).setNumber(profile[number]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
@ -1,129 +0,0 @@
|
||||
var level = 0;
|
||||
var selected;
|
||||
var all_categories = {};
|
||||
var promiseForCategory = new Promise(function (resolve) {
|
||||
if (categories.length != 0) {
|
||||
$.each(categories, function (index, value) {
|
||||
crudAjax({'level': level, "cat": categories['cat' + level]}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
// console.log('cat' + (level + 1), categories['cat' + level], callback)
|
||||
all_categories['cat' + (level + 1)] = callback;
|
||||
})
|
||||
level++;
|
||||
});
|
||||
} else {
|
||||
crudAjax({'level': level, "cat": ""}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
all_categories['cat' + (level + 1)] = callback;
|
||||
})
|
||||
level++;
|
||||
}
|
||||
resolve(all_categories);
|
||||
});
|
||||
|
||||
promiseForCategory.then(function (categories_list) {
|
||||
|
||||
categories_list = $.grep(Object.values(categories_list), function (e) {
|
||||
return (e.length > 0) ? e : '';
|
||||
});
|
||||
|
||||
level = 0;
|
||||
$.each(categories_list, function (index, value) {
|
||||
level++;
|
||||
index = `cat${index + 1}`;
|
||||
$('.category-row').append(CategoryField(index, level));
|
||||
searchCategoryName(index)
|
||||
$.each(value, function (index2, value2) {
|
||||
selected = "";
|
||||
if (id_list[index] == value2.id) {
|
||||
selected = "selected";
|
||||
}
|
||||
$('.' + index).append("<option value='" + value2.id + "'" + selected + ">" + value2.name + "</option>");
|
||||
});
|
||||
});
|
||||
$('.category-row').append(completedField());
|
||||
})
|
||||
|
||||
function CategoryField(name, level) {
|
||||
return '<div class="col-12 col-md-3 category-box p-2" data-level="' + level + '">\n' +
|
||||
' <div class="col-12 border p-0">\n' +
|
||||
'<div class="col-12 p-0">\n' +
|
||||
' <input type="text" id="searchCategory-' + name + '" class="form-control"\n' +
|
||||
' placeholder="' + search + '">\n' +
|
||||
'</div>' +
|
||||
' <select name="' + name + '" class="cat-select w-100 ' + name + '" data-level="'
|
||||
+ level + '" multiple>\n' +
|
||||
' </select>\n' +
|
||||
' </div>\n' +
|
||||
' </div>';
|
||||
}
|
||||
|
||||
function completedField() {
|
||||
return '<div class="col-12 col-md-3 category-box py-5 px-2">\n' +
|
||||
' <div class="col-12 p-0 text-center">\n' +
|
||||
' <h5>\n' +
|
||||
continue_message +
|
||||
' </h5>\n' +
|
||||
' <button type="submit" name="action" value="update" class="btn btn-primary btn-lg w-100">\n' +
|
||||
continue_btn +
|
||||
' </button>\n' +
|
||||
' </div>\n' +
|
||||
' </div>';
|
||||
}
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
$(".cat-select").on('change', function (e) {
|
||||
if (Object.keys($(this).val()).length > 1) {
|
||||
$('option[value="' + $(this).val().toString().split(',')[1] + '"]').prop('selected', false);
|
||||
}
|
||||
});
|
||||
selectedValue()
|
||||
});
|
||||
|
||||
|
||||
function selectedValue() {
|
||||
return $('.cat-select').on('change', function () {
|
||||
var value = $(this).val();
|
||||
var all_category_box = $('.category-row').find('.category-box');
|
||||
var level = parseInt($(this).attr('data-level')) + 1;
|
||||
|
||||
//Remove right select fields
|
||||
for (var i = level - 1; i <= all_category_box.length - 1; i++) {
|
||||
all_category_box[i].remove();
|
||||
}
|
||||
|
||||
scroolToSelect(all_category_box)
|
||||
|
||||
crudAjax({"cat": value[0], 'level': level}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
if (callback.length <= 0) {
|
||||
$('.category-row').append(completedField());
|
||||
} else {
|
||||
$('.category-row').append(CategoryField('cat' + level, level));
|
||||
$.each(callback, function (index, value) {
|
||||
$('.cat' + level).append("<option value='" + value.id + "'>" + value.name + "</option>");
|
||||
});
|
||||
}
|
||||
selectedValue().unbind()
|
||||
searchCategoryName('cat' + level)
|
||||
return selectedValue();
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function searchCategoryName(name) {
|
||||
var searchField = $("#searchCategory-" + name);
|
||||
searchField.unbind();
|
||||
searchField.on("keyup", function () {
|
||||
var value = this.value.toLowerCase().trim();
|
||||
$('.' + name + ' option').show().filter(function () {
|
||||
return $(this).text().toLowerCase().trim().indexOf(value) == -1;
|
||||
}).hide();
|
||||
});
|
||||
}
|
||||
|
||||
function scroolToSelect(fields) {
|
||||
//Scrool Screen
|
||||
$([document.documentElement, document.body]).animate({
|
||||
scrollTop: $(fields[fields.length - 1]).offset().top + 300
|
||||
}, 1000);
|
||||
}
|
||||
@ -1,132 +0,0 @@
|
||||
$('#filter_modal_btn').on('click', function () {
|
||||
$('#filterModal').modal('toggle');
|
||||
})
|
||||
|
||||
$('.edit-category-filter-modal').on('click', function () {
|
||||
$('#filterModal').modal('hide');
|
||||
$('#categoryModal').modal('toggle');
|
||||
})
|
||||
|
||||
var level = 0;
|
||||
var id_list = categories;
|
||||
var selected;
|
||||
var selected_cat;
|
||||
var all_categories = {};
|
||||
var promiseForCategory = new Promise(function (resolve) {
|
||||
if (categories.length != 0) {
|
||||
$.each(categories, function (index, value) {
|
||||
crudAjax({
|
||||
'level': level,
|
||||
"cat": categories['cat' + level]
|
||||
}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
all_categories['cat' + (level + 1)] = callback;
|
||||
})
|
||||
level++;
|
||||
});
|
||||
} else {
|
||||
crudAjax({'level': level, "cat": ""}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
all_categories['cat' + (level + 1)] = callback;
|
||||
})
|
||||
level++;
|
||||
}
|
||||
resolve(all_categories);
|
||||
});
|
||||
|
||||
promiseForCategory.then(function (categories_list) {
|
||||
level = 0;
|
||||
$.each(categories_list, function (index, value) {
|
||||
level++;
|
||||
$('.category-row').append(CategoryField(index, level));
|
||||
$.each(value, function (index2, value2) {
|
||||
selected = "";
|
||||
if (id_list[index] == value2.id) {
|
||||
selected = "selected";
|
||||
selected_cat = value2.id;
|
||||
}
|
||||
$('.' + index).append("<option value='" + value2.id + "'" + selected + ">" + value2.name + "</option>");
|
||||
});
|
||||
});
|
||||
level++;
|
||||
crudAjax({
|
||||
'level': level,
|
||||
"cat": id_list['cat' + Object.keys(id_list).length]
|
||||
}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
|
||||
if(callback.length > 0)
|
||||
{
|
||||
$('.category-row').append(CategoryField('cat'+level, level));
|
||||
$.each(callback, function (index2, value2) {
|
||||
selected = "";
|
||||
|
||||
$('.' + 'cat'+level).append("<option value='" + value2.id + "'" + selected + ">" + value2.name + "</option>");
|
||||
});
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
|
||||
function CategoryField(name, level) {
|
||||
return '<div class="col-12 px-0 py-1 category-select-mobile category-box" data-level="' + level + '">\n' +
|
||||
'</span>\n<select data-level="' + level + '" class="form-control cat-select ' + name + '">\n' +
|
||||
'<option>'+ catsPlaceholder +'</option>' +
|
||||
'</select>\n</div>';
|
||||
}
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
$(".cat-select").on('change', function (e) {
|
||||
if (Object.keys($(this).val()).length > 1) {
|
||||
$('option[value="' + $(this).val().toString().split(',')[1] + '"]').prop('selected', false);
|
||||
}
|
||||
});
|
||||
selectedValue()
|
||||
});
|
||||
|
||||
|
||||
function selectedValue() {
|
||||
return $('.cat-select').on('change', function () {
|
||||
var value = $(this).val();
|
||||
$('.set_category').attr("data-selected", value);
|
||||
$('input[name="cat"]').val(value)
|
||||
var all_category_box = $('.category-row').find('.category-box');
|
||||
var level = parseInt($(this).attr('data-level')) + 1;
|
||||
|
||||
//Remove right select fields
|
||||
for (var i = level - 1; i <= all_category_box.length - 1; i++) {
|
||||
all_category_box[i].remove();
|
||||
}
|
||||
|
||||
|
||||
crudAjax({"cat": value, 'level': level}, '/class/ajaxCategory', 'POST', function (callback) {
|
||||
if (callback.length > 0) {
|
||||
$('.category-row').append(CategoryField('cat' + level, level));
|
||||
$.each(callback, function (index, value) {
|
||||
$('.cat' + level).append("<option value='" + value.id + "'>" + value.name + "</option>");
|
||||
});
|
||||
}
|
||||
selectedValue().unbind()
|
||||
editCategorySpan()
|
||||
return selectedValue();
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
function editCategorySpan() {
|
||||
$('.selected-category-name').html("")
|
||||
$.each($('.category-row').find('.category-select-mobile'), function (index, value) {
|
||||
var selected_name = $(this).find('.cat-select').find(':selected');
|
||||
$('.selected-category-name').append(selected_name.html() + ',');
|
||||
});
|
||||
}
|
||||
|
||||
$('.set_category').on('click', function () {
|
||||
|
||||
$('#categoryModal').modal('hide');
|
||||
|
||||
$('#filterModal').find('form').attr("action", '/advs/list');
|
||||
$('#filterModal').modal('toggle');
|
||||
});
|
||||
@ -1,29 +0,0 @@
|
||||
// Init tooltip
|
||||
$(function () {
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
})
|
||||
|
||||
// Handle table header sorting
|
||||
$('.sortable').on('click', function () {
|
||||
const searchParams = new URLSearchParams(window.location.search);
|
||||
const sortBy = searchParams.get('sort_by');
|
||||
const direction = $(this).hasClass('sort-desc') ? 'asc' : 'desc';
|
||||
const value = $(this).data(`sort-${direction}`);
|
||||
|
||||
let url = window.location.href;
|
||||
if (url.slice(-1) === "#") {
|
||||
url = url.slice(0, -1);
|
||||
}
|
||||
|
||||
let goURL;
|
||||
if (window.location.search == "") {
|
||||
goURL = `${url}?sort_by=${value}`;
|
||||
} else if (searchParams.has('sort_by')) {
|
||||
const parameters = value !== 'all' ? "sort_by=" + value : "";
|
||||
goURL = location.href.replace(`sort_by=${sortBy}`, parameters);
|
||||
} else {
|
||||
goURL = `${url}&sort_by=${value}`;
|
||||
}
|
||||
|
||||
window.location.replace(goURL);
|
||||
})
|
||||