Initial commit
17
.env.dist
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
# This file is a "template" of which env vars need to be defined for your application
|
||||||
|
# Copy this file to .env file for development, create environment variables when deploying to production
|
||||||
|
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
|
||||||
|
|
||||||
|
###> symfony/framework-bundle ###
|
||||||
|
APP_ENV=dev
|
||||||
|
APP_SECRET=b344cd6cd151ae1d61403ed55806c5ce
|
||||||
|
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
|
||||||
|
#TRUSTED_HOSTS=localhost,example.com
|
||||||
|
###< symfony/framework-bundle ###
|
||||||
|
|
||||||
|
###> doctrine/doctrine-bundle ###
|
||||||
|
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
|
||||||
|
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
|
||||||
|
# Configure your db driver and server_version in config/packages/doctrine.yaml
|
||||||
|
DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name
|
||||||
|
###< doctrine/doctrine-bundle ###
|
||||||
7
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
###> symfony/framework-bundle ###
|
||||||
|
.env
|
||||||
|
/public/bundles/
|
||||||
|
/var/
|
||||||
|
/vendor/
|
||||||
|
###< symfony/framework-bundle ###
|
||||||
39
bin/console
Executable file
|
|
@ -0,0 +1,39 @@
|
||||||
|
#!/usr/bin/env php
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use App\Kernel;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||||
|
use Symfony\Component\Console\Input\ArgvInput;
|
||||||
|
use Symfony\Component\Debug\Debug;
|
||||||
|
use Symfony\Component\Dotenv\Dotenv;
|
||||||
|
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
require __DIR__.'/../vendor/autoload.php';
|
||||||
|
|
||||||
|
if (!class_exists(Application::class)) {
|
||||||
|
throw new \RuntimeException('You need to add "symfony/framework-bundle" as a Composer dependency.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isset($_SERVER['APP_ENV'])) {
|
||||||
|
if (!class_exists(Dotenv::class)) {
|
||||||
|
throw new \RuntimeException('APP_ENV environment variable is not defined. You need to define environment variables for configuration or add "symfony/dotenv" as a Composer dependency to load variables from a .env file.');
|
||||||
|
}
|
||||||
|
(new Dotenv())->load(__DIR__.'/../.env');
|
||||||
|
}
|
||||||
|
|
||||||
|
$input = new ArgvInput();
|
||||||
|
$env = $input->getParameterOption(['--env', '-e'], $_SERVER['APP_ENV'] ?? 'dev');
|
||||||
|
$debug = ($_SERVER['APP_DEBUG'] ?? ('prod' !== $env)) && !$input->hasParameterOption(['--no-debug', '']);
|
||||||
|
|
||||||
|
if ($debug) {
|
||||||
|
umask(0000);
|
||||||
|
|
||||||
|
if (class_exists(Debug::class)) {
|
||||||
|
Debug::enable();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$kernel = new Kernel($env, $debug);
|
||||||
|
$application = new Application($kernel);
|
||||||
|
$application->run($input);
|
||||||
69
composer.json
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
"type": "project",
|
||||||
|
"license": "proprietary",
|
||||||
|
"require": {
|
||||||
|
"php": "^7.1.3",
|
||||||
|
"ext-iconv": "*",
|
||||||
|
"sensio/framework-extra-bundle": "^5.1",
|
||||||
|
"symfony/console": "^4.0",
|
||||||
|
"symfony/debug": "^4.0",
|
||||||
|
"symfony/flex": "^1.0",
|
||||||
|
"symfony/framework-bundle": "^4.0",
|
||||||
|
"symfony/lts": "^4@dev",
|
||||||
|
"symfony/maker-bundle": "^1.0",
|
||||||
|
"symfony/orm-pack": "^1.0",
|
||||||
|
"symfony/profiler-pack": "^1.0",
|
||||||
|
"symfony/security-bundle": "^4.0",
|
||||||
|
"symfony/twig-bundle": "^4.0",
|
||||||
|
"symfony/yaml": "^4.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"doctrine/doctrine-fixtures-bundle": "^3.0",
|
||||||
|
"symfony/dotenv": "^4.0",
|
||||||
|
"symfony/thanks": "^1.0"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"preferred-install": {
|
||||||
|
"*": "dist"
|
||||||
|
},
|
||||||
|
"sort-packages": true
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"App\\": "src/",
|
||||||
|
"Catalyst\\": "catalyst-libs/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload-dev": {
|
||||||
|
"psr-4": {
|
||||||
|
"App\\Tests\\": "tests/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"replace": {
|
||||||
|
"symfony/polyfill-iconv": "*",
|
||||||
|
"symfony/polyfill-php71": "*",
|
||||||
|
"symfony/polyfill-php70": "*",
|
||||||
|
"symfony/polyfill-php56": "*"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"auto-scripts": {
|
||||||
|
"cache:clear": "symfony-cmd",
|
||||||
|
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
|
||||||
|
},
|
||||||
|
"post-install-cmd": [
|
||||||
|
"@auto-scripts"
|
||||||
|
],
|
||||||
|
"post-update-cmd": [
|
||||||
|
"@auto-scripts"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"conflict": {
|
||||||
|
"symfony/symfony": "*"
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"symfony": {
|
||||||
|
"id": "01C2S930830GN7Q2AE2C3DZVAD",
|
||||||
|
"allow-contrib": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3706
composer.lock
generated
Normal file
14
config/bundles.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
||||||
|
Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],
|
||||||
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
||||||
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
||||||
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
||||||
|
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
||||||
|
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
|
||||||
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
||||||
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
||||||
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
||||||
|
];
|
||||||
17
config/menu.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
main_menu:
|
||||||
|
- id: home
|
||||||
|
acl: dashboard.menu
|
||||||
|
label: Dashboard
|
||||||
|
icon: flaticon-line-graph
|
||||||
|
- id: user
|
||||||
|
acl: user.menu
|
||||||
|
label: User
|
||||||
|
icon: flaticon-users
|
||||||
|
- id: user_list
|
||||||
|
acl: user.list
|
||||||
|
label: Users
|
||||||
|
parent: user
|
||||||
|
- id: role_list
|
||||||
|
acl: role.list
|
||||||
|
label: Roles
|
||||||
|
parent: user
|
||||||
3
config/packages/dev/routing.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
framework:
|
||||||
|
router:
|
||||||
|
strict_requirements: true
|
||||||
6
config/packages/dev/web_profiler.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
web_profiler:
|
||||||
|
toolbar: true
|
||||||
|
intercept_redirects: false
|
||||||
|
|
||||||
|
framework:
|
||||||
|
profiler: { only_exceptions: false }
|
||||||
27
config/packages/doctrine.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
parameters:
|
||||||
|
# Adds a fallback DATABASE_URL if the env var is not set.
|
||||||
|
# This allows you to run cache:warmup even if your
|
||||||
|
# environment variables are not available yet.
|
||||||
|
# You should not need to change this value.
|
||||||
|
env(DATABASE_URL): ''
|
||||||
|
|
||||||
|
doctrine:
|
||||||
|
dbal:
|
||||||
|
# configure these for your database server
|
||||||
|
driver: 'pdo_mysql'
|
||||||
|
server_version: '5.7'
|
||||||
|
charset: utf8mb4
|
||||||
|
|
||||||
|
# With Symfony 3.3, remove the `resolve:` prefix
|
||||||
|
url: '%env(resolve:DATABASE_URL)%'
|
||||||
|
orm:
|
||||||
|
auto_generate_proxy_classes: '%kernel.debug%'
|
||||||
|
naming_strategy: doctrine.orm.naming_strategy.underscore
|
||||||
|
auto_mapping: true
|
||||||
|
mappings:
|
||||||
|
App:
|
||||||
|
is_bundle: false
|
||||||
|
type: annotation
|
||||||
|
dir: '%kernel.project_dir%/src/Entity'
|
||||||
|
prefix: 'App\Entity'
|
||||||
|
alias: App
|
||||||
5
config/packages/doctrine_migrations.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
doctrine_migrations:
|
||||||
|
dir_name: '%kernel.project_dir%/src/Migrations'
|
||||||
|
# namespace is arbitrary but should be different from App\Migrations
|
||||||
|
# as migrations classes should NOT be autoloaded
|
||||||
|
namespace: DoctrineMigrations
|
||||||
15
config/packages/framework.yaml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
framework:
|
||||||
|
secret: '%env(APP_SECRET)%'
|
||||||
|
#default_locale: en
|
||||||
|
#csrf_protection: ~
|
||||||
|
#http_method_override: true
|
||||||
|
|
||||||
|
# uncomment this entire section to enable sessions
|
||||||
|
session:
|
||||||
|
# # With this config, PHP's native session handling is used
|
||||||
|
handler_id: ~
|
||||||
|
|
||||||
|
#esi: ~
|
||||||
|
#fragments: ~
|
||||||
|
php_errors:
|
||||||
|
log: true
|
||||||
31
config/packages/prod/doctrine.yaml
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
doctrine:
|
||||||
|
orm:
|
||||||
|
metadata_cache_driver:
|
||||||
|
type: service
|
||||||
|
id: doctrine.system_cache_provider
|
||||||
|
query_cache_driver:
|
||||||
|
type: service
|
||||||
|
id: doctrine.system_cache_provider
|
||||||
|
result_cache_driver:
|
||||||
|
type: service
|
||||||
|
id: doctrine.result_cache_provider
|
||||||
|
|
||||||
|
services:
|
||||||
|
doctrine.result_cache_provider:
|
||||||
|
class: Symfony\Component\Cache\DoctrineProvider
|
||||||
|
public: false
|
||||||
|
arguments:
|
||||||
|
- '@doctrine.result_cache_pool'
|
||||||
|
doctrine.system_cache_provider:
|
||||||
|
class: Symfony\Component\Cache\DoctrineProvider
|
||||||
|
public: false
|
||||||
|
arguments:
|
||||||
|
- '@doctrine.system_cache_pool'
|
||||||
|
|
||||||
|
framework:
|
||||||
|
cache:
|
||||||
|
pools:
|
||||||
|
doctrine.result_cache_pool:
|
||||||
|
adapter: cache.app
|
||||||
|
doctrine.system_cache_pool:
|
||||||
|
adapter: cache.system
|
||||||
3
config/packages/routing.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
framework:
|
||||||
|
router:
|
||||||
|
strict_requirements: ~
|
||||||
40
config/packages/security.yaml
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
security:
|
||||||
|
# https://symfony.com/doc/current/book/security.html#where-do-users-come-from-user-providers
|
||||||
|
encoders:
|
||||||
|
App\Entity\User:
|
||||||
|
algorithm: bcrypt
|
||||||
|
cost: 12
|
||||||
|
providers:
|
||||||
|
user:
|
||||||
|
entity:
|
||||||
|
class: App\Entity\User
|
||||||
|
property: username
|
||||||
|
firewalls:
|
||||||
|
dev:
|
||||||
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
||||||
|
security: false
|
||||||
|
|
||||||
|
login:
|
||||||
|
pattern: ^\/login$
|
||||||
|
methods: [GET]
|
||||||
|
security: false
|
||||||
|
|
||||||
|
main:
|
||||||
|
form_login:
|
||||||
|
login_path: login
|
||||||
|
check_path: login
|
||||||
|
logout:
|
||||||
|
path: logout
|
||||||
|
target: /
|
||||||
|
remember_me:
|
||||||
|
secret: '%env(APP_SECRET)%'
|
||||||
|
lifetime: 604800
|
||||||
|
path: /
|
||||||
|
|
||||||
|
# activate different ways to authenticate
|
||||||
|
|
||||||
|
# http_basic: ~
|
||||||
|
# https://symfony.com/doc/current/book/security.html#a-configuring-how-your-users-will-authenticate
|
||||||
|
|
||||||
|
# form_login: ~
|
||||||
|
# https://symfony.com/doc/current/cookbook/security/form_login_setup.html
|
||||||
5
config/packages/test/framework.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
framework:
|
||||||
|
test: ~
|
||||||
|
# Uncomment this section if you're using sessions
|
||||||
|
#session:
|
||||||
|
# storage_id: session.storage.mock_file
|
||||||
6
config/packages/test/web_profiler.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
web_profiler:
|
||||||
|
toolbar: false
|
||||||
|
intercept_redirects: false
|
||||||
|
|
||||||
|
framework:
|
||||||
|
profiler: { collect: false }
|
||||||
4
config/packages/twig.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
twig:
|
||||||
|
paths: ['%kernel.project_dir%/templates']
|
||||||
|
debug: '%kernel.debug%'
|
||||||
|
strict_variables: '%kernel.debug%'
|
||||||
19
config/routes.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
#index:
|
||||||
|
# path: /
|
||||||
|
# controller: App\Controller\DefaultController::index
|
||||||
|
#
|
||||||
|
#
|
||||||
|
home:
|
||||||
|
path: /
|
||||||
|
controller: App\Controller\HomeController::index
|
||||||
|
|
||||||
|
login:
|
||||||
|
path: /login
|
||||||
|
controller: App\Controller\SecurityController::login
|
||||||
|
|
||||||
|
logout:
|
||||||
|
path: /logout
|
||||||
|
|
||||||
|
user_list:
|
||||||
|
path: /users
|
||||||
|
controller: App\Controller\UserController::index
|
||||||
3
config/routes/annotations.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
controllers:
|
||||||
|
resource: ../../src/Controller/
|
||||||
|
type: annotation
|
||||||
3
config/routes/dev/twig.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
_errors:
|
||||||
|
resource: '@TwigBundle/Resources/config/routing/errors.xml'
|
||||||
|
prefix: /_error
|
||||||
7
config/routes/dev/web_profiler.yaml
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
web_profiler_wdt:
|
||||||
|
resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
|
||||||
|
prefix: /_wdt
|
||||||
|
|
||||||
|
web_profiler_profiler:
|
||||||
|
resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
|
||||||
|
prefix: /_profiler
|
||||||
33
config/services.yaml
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
# Put parameters here that don't need to change on each machine where the app is deployed
|
||||||
|
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
||||||
|
parameters:
|
||||||
|
|
||||||
|
services:
|
||||||
|
# default configuration for services in *this* file
|
||||||
|
_defaults:
|
||||||
|
autowire: true # Automatically injects dependencies in your services.
|
||||||
|
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
|
||||||
|
public: false # Allows optimizing the container by removing unused services; this also means
|
||||||
|
# fetching services directly from the container via $container->get() won't work.
|
||||||
|
# The best practice is to be explicit about your dependencies anyway.
|
||||||
|
|
||||||
|
# makes classes in src/ available to be used as services
|
||||||
|
# this creates a service per class whose id is the fully-qualified class name
|
||||||
|
App\:
|
||||||
|
resource: '../src/*'
|
||||||
|
exclude: '../src/{Entity,Migrations,Tests,Menu}'
|
||||||
|
|
||||||
|
# controllers are imported separately to make sure services can be injected
|
||||||
|
# as action arguments even if you don't extend any base controller class
|
||||||
|
App\Controller\:
|
||||||
|
resource: '../src/Controller'
|
||||||
|
tags: ['controller.service_arguments']
|
||||||
|
|
||||||
|
# add more service definitions when explicit configuration is needed
|
||||||
|
# please note that last definitions always *replace* previous ones
|
||||||
|
App\Menu\Generator:
|
||||||
|
class: App\Menu\Generator
|
||||||
|
arguments:
|
||||||
|
$router: "@router.default"
|
||||||
|
$cache_dir: "%kernel.cache_dir%"
|
||||||
|
$config_dir: "%kernel.root_dir%/../config"
|
||||||
1682
public/assets/app/js/dashboard.js
Normal file
439
public/assets/app/js/layout-builder.js
Normal file
|
|
@ -0,0 +1,439 @@
|
||||||
|
//== Class definition
|
||||||
|
var LayoutBuilder = function() {
|
||||||
|
|
||||||
|
var exporter = {
|
||||||
|
init: function() {
|
||||||
|
$('#m-btn-howto').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('#m-howto').slideToggle();
|
||||||
|
});
|
||||||
|
this.exportHtml();
|
||||||
|
this.exportHtmlStatic();
|
||||||
|
this.exportAngular();
|
||||||
|
},
|
||||||
|
startLoad: function(options) {
|
||||||
|
$('#builder_export').
|
||||||
|
addClass('m-loader m-loader--light m-loader--right').
|
||||||
|
find('> span > span').
|
||||||
|
text('Exporting...').
|
||||||
|
closest('.m-form__actions').
|
||||||
|
find('.btn').
|
||||||
|
prop('disabled', true);
|
||||||
|
$.notify(options);
|
||||||
|
},
|
||||||
|
doneLoad: function() {
|
||||||
|
$('#builder_export').
|
||||||
|
removeClass('m-loader m-loader--light m-loader--right').
|
||||||
|
find('> span > span').
|
||||||
|
text('Export').
|
||||||
|
closest('.m-form__actions').
|
||||||
|
find('.btn').
|
||||||
|
prop('disabled', false);
|
||||||
|
},
|
||||||
|
exportHtml: function() {
|
||||||
|
$('#builder_export_html').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!envato.isVerified()) return;
|
||||||
|
|
||||||
|
var _self = $(this);
|
||||||
|
|
||||||
|
exporter.startLoad({
|
||||||
|
title: 'Generate HTML Partials',
|
||||||
|
message: 'Process started and it may take about 1 to 10 minutes.',
|
||||||
|
});
|
||||||
|
|
||||||
|
$.ajax('index.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_export: 1,
|
||||||
|
export_type: 'partial',
|
||||||
|
demo: $(_self).data('demo'),
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
var result = JSON.parse(r);
|
||||||
|
if (result.message) {
|
||||||
|
exporter.stopWithNotify(result.message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var timer = setInterval(function() {
|
||||||
|
$.ajax('index.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_export: 1,
|
||||||
|
builder_check: result.id,
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
var result = JSON.parse(r);
|
||||||
|
if (typeof result === 'undefined') return;
|
||||||
|
// export status 1 is completed
|
||||||
|
if (result.export_status !== '1') return;
|
||||||
|
|
||||||
|
$('<iframe/>').attr({
|
||||||
|
src: 'index.php?builder_export&builder_download&id=' +
|
||||||
|
result.id,
|
||||||
|
style: 'visibility:hidden;display:none',
|
||||||
|
}).ready(function() {
|
||||||
|
$.notify({
|
||||||
|
title: 'Export HTML Version Layout',
|
||||||
|
message: 'HTML version exported.',
|
||||||
|
}, {type: 'success'});
|
||||||
|
exporter.doneLoad();
|
||||||
|
// stop the timer
|
||||||
|
clearInterval(timer);
|
||||||
|
}).appendTo(_self);
|
||||||
|
});
|
||||||
|
}, 15000);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
exportHtmlStatic: function() {
|
||||||
|
$('#builder_export_html_static').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!envato.isVerified()) return;
|
||||||
|
|
||||||
|
var _self = $(this);
|
||||||
|
|
||||||
|
exporter.startLoad({
|
||||||
|
title: 'Generate HTML Static Version',
|
||||||
|
message: 'Process started and it may take about 1 to 10 minutes.',
|
||||||
|
});
|
||||||
|
|
||||||
|
$.ajax('index.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_export: 1,
|
||||||
|
export_type: 'html',
|
||||||
|
demo: $(_self).data('demo'),
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
var result = JSON.parse(r);
|
||||||
|
if (result.message) {
|
||||||
|
exporter.stopWithNotify(result.message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var timer = setInterval(function() {
|
||||||
|
$.ajax('index.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_export: 1,
|
||||||
|
builder_check: result.id,
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
var result = JSON.parse(r);
|
||||||
|
if (typeof result === 'undefined') return;
|
||||||
|
// export status 1 is completed
|
||||||
|
if (result.export_status !== '1') return;
|
||||||
|
|
||||||
|
$('<iframe/>').attr({
|
||||||
|
src: 'index.php?builder_export&builder_download&id=' +
|
||||||
|
result.id,
|
||||||
|
style: 'visibility:hidden;display:none',
|
||||||
|
}).ready(function() {
|
||||||
|
$.notify({
|
||||||
|
title: 'Export Default Version',
|
||||||
|
message: 'Default HTML version exported with current configured layout.',
|
||||||
|
}, {type: 'success'});
|
||||||
|
exporter.doneLoad();
|
||||||
|
// stop the timer
|
||||||
|
clearInterval(timer);
|
||||||
|
}).appendTo(_self);
|
||||||
|
});
|
||||||
|
}, 15000);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
},
|
||||||
|
exportAngular: function() {
|
||||||
|
$('#builder_export_angular').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
if (!envato.isVerified()) return;
|
||||||
|
|
||||||
|
var _self = $(this);
|
||||||
|
|
||||||
|
exporter.startLoad({
|
||||||
|
title: 'Export Angular Version',
|
||||||
|
message: 'Process started and it may take about 1 to 10 minutes.',
|
||||||
|
});
|
||||||
|
|
||||||
|
$.ajax('index.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_export: 1,
|
||||||
|
export_type: 'angular',
|
||||||
|
demo: $(_self).data('demo'),
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
var result = JSON.parse(r);
|
||||||
|
if (result.message) {
|
||||||
|
exporter.stopWithNotify(result.message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var timer = setInterval(function() {
|
||||||
|
$.ajax('index.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_export: 1,
|
||||||
|
builder_check: result.id,
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
var result = JSON.parse(r);
|
||||||
|
if (typeof result === 'undefined') return;
|
||||||
|
// export status 1 is completed
|
||||||
|
if (result.export_status !== '1') return;
|
||||||
|
|
||||||
|
$('<iframe/>').attr({
|
||||||
|
src: 'index.php?builder_export&builder_download&id=' +
|
||||||
|
result.id,
|
||||||
|
style: 'visibility:hidden;display:none',
|
||||||
|
}).ready(function() {
|
||||||
|
$.notify({
|
||||||
|
title: 'Export Angular Version',
|
||||||
|
message: 'Angular App version exported with current configured layout.',
|
||||||
|
}, {type: 'success'});
|
||||||
|
exporter.doneLoad();
|
||||||
|
// stop the timer
|
||||||
|
clearInterval(timer);
|
||||||
|
}).appendTo(_self);
|
||||||
|
});
|
||||||
|
}, 15000);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
stopWithNotify: function(message, type) {
|
||||||
|
type = type || 'danger';
|
||||||
|
$.notify({
|
||||||
|
title: 'Verification failed',
|
||||||
|
message: message,
|
||||||
|
}, {type: type});
|
||||||
|
exporter.doneLoad();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
//== Private functions
|
||||||
|
var preview = function() {
|
||||||
|
$('[name="builder_submit"]').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var _self = $(this);
|
||||||
|
$(_self).
|
||||||
|
addClass('m-loader m-loader--light m-loader--right').
|
||||||
|
closest('.m-form__actions').
|
||||||
|
find('.btn').
|
||||||
|
prop('disabled', true);
|
||||||
|
|
||||||
|
$.ajax('index.php?demo=' + $(_self).data('demo'), {
|
||||||
|
method: 'POST',
|
||||||
|
data: $('[name]').serialize(),
|
||||||
|
}).done(function(r) {
|
||||||
|
$.notify({
|
||||||
|
title: 'Preview updated',
|
||||||
|
message: 'Preview has been updated with current configured layout.',
|
||||||
|
}, {type: 'success'});
|
||||||
|
}).always(function() {
|
||||||
|
setTimeout(function() {
|
||||||
|
location.reload();
|
||||||
|
}, 600);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
var reset = function() {
|
||||||
|
$('[name="builder_reset"]').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var _self = $(this);
|
||||||
|
$(_self).
|
||||||
|
addClass('m-loader m-loader--primary m-loader--right').
|
||||||
|
closest('.m-form__actions').
|
||||||
|
find('.btn').
|
||||||
|
prop('disabled', true);
|
||||||
|
|
||||||
|
$.ajax('index.php?demo=' + $(_self).data('demo'), {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
builder_reset: 1,
|
||||||
|
demo: $(_self).data('demo'),
|
||||||
|
},
|
||||||
|
}).done(function(r) {
|
||||||
|
}).always(function() {
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
var keepActiveTab = function() {
|
||||||
|
$('[href^="#m_builder_"]').click(function(e) {
|
||||||
|
var which = $(this).attr('href');
|
||||||
|
var btn = $('[name="builder_submit"]');
|
||||||
|
var tab = $('[name="builder[tab]"]');
|
||||||
|
if ($(tab).length === 0) {
|
||||||
|
$('<input/>').
|
||||||
|
attr('type', 'hidden').
|
||||||
|
attr('name', 'builder[tab]').
|
||||||
|
val(which).
|
||||||
|
insertBefore(btn);
|
||||||
|
} else {
|
||||||
|
$(tab).val(which);
|
||||||
|
}
|
||||||
|
}).each(function() {
|
||||||
|
if ($(this).hasClass('active')) {
|
||||||
|
var which = $(this).attr('href');
|
||||||
|
var btn = $('[name="builder_submit"]');
|
||||||
|
var tab = $('[name="builder[tab]"]');
|
||||||
|
if ($(tab).length === 0) {
|
||||||
|
$('<input/>').
|
||||||
|
attr('type', 'hidden').
|
||||||
|
attr('name', 'builder[tab]').
|
||||||
|
val(which).
|
||||||
|
insertBefore(btn);
|
||||||
|
} else {
|
||||||
|
$(tab).val(which);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// localStorage.removeItem('envato');
|
||||||
|
window.envato = {
|
||||||
|
apiKey: '05kxpfkxwymzzczjm75d9s3li4spg0j1',
|
||||||
|
expires_in: '3600', // seconds
|
||||||
|
isVerified: function() {
|
||||||
|
// console.log(envato.getItem());
|
||||||
|
// check token is not expired and verified
|
||||||
|
return !envato.tokenIsExpired() && envato.getItem('verified');
|
||||||
|
},
|
||||||
|
reCaptchaVerified: function() {
|
||||||
|
return $.ajax('http://keenthemes.com/metronic/preview/inc/api/envato.php?recaptcha', {
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
response: $('#g-recaptcha-response').val(),
|
||||||
|
},
|
||||||
|
}).fail(function() {
|
||||||
|
grecaptcha.reset();
|
||||||
|
$('#alert-message').
|
||||||
|
removeClass('alert-success m--hide').
|
||||||
|
addClass('alert-danger').
|
||||||
|
html('Invalid reCaptcha validation');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
verifyEvent: function() {
|
||||||
|
// click event
|
||||||
|
$('#builder_export').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
if (envato.isVerified()) return;
|
||||||
|
grecaptcha.reset();
|
||||||
|
$('#m-modal-purchase').modal('show');
|
||||||
|
$('#alert-message').addClass('m--hide');
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#submit-verify').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
envato.reCaptchaVerified().done(function(response) {
|
||||||
|
if (response.success) {
|
||||||
|
var purchaseCode = $('#purchase-code').val();
|
||||||
|
envato.setItem('purchase_code', purchaseCode);
|
||||||
|
envato.verifyPurchase(purchaseCode);
|
||||||
|
} else {
|
||||||
|
grecaptcha.reset();
|
||||||
|
$('#alert-message').
|
||||||
|
removeClass('alert-success m--hide').
|
||||||
|
addClass('alert-danger').
|
||||||
|
html('Invalid reCaptcha validation');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#purchase-code').keyup(function() {
|
||||||
|
$('#alert-message').addClass('m--hide');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
verifyPurchase: function(purchaseCode) {
|
||||||
|
return $.ajax('https://marketplace.envato.com/api/edge/keenthemes/' +
|
||||||
|
envato.apiKey + '/verify-purchase:' +
|
||||||
|
purchaseCode + '.json', {
|
||||||
|
method: 'GET',
|
||||||
|
}).done(function(response) {
|
||||||
|
if (!$.isEmptyObject(response['verify-purchase'])) {
|
||||||
|
envato.setItems(response['verify-purchase']);
|
||||||
|
envato.setItem('verified', true);
|
||||||
|
|
||||||
|
// keep session is php
|
||||||
|
$.ajax('inc/api/envato.php', {
|
||||||
|
method: 'POST',
|
||||||
|
data: envato.getItem(),
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#alert-message').
|
||||||
|
removeClass('alert-danger m--hide').
|
||||||
|
addClass('alert-success').
|
||||||
|
html('Purchase code is successfully verified');
|
||||||
|
} else {
|
||||||
|
grecaptcha.reset();
|
||||||
|
$('#alert-message').
|
||||||
|
removeClass('alert-success m--hide').
|
||||||
|
addClass('alert-danger').
|
||||||
|
html('Invalid purchase code');
|
||||||
|
}
|
||||||
|
}).fail(function(e) {
|
||||||
|
grecaptcha.reset();
|
||||||
|
$('#alert-message').
|
||||||
|
removeClass('alert-success m--hide').
|
||||||
|
addClass('alert-danger').
|
||||||
|
html('Invalid purchase code');
|
||||||
|
});
|
||||||
|
},
|
||||||
|
setItems: function(object) {
|
||||||
|
var params = $.extend({}, envato.getItem(), object);
|
||||||
|
localStorage.setItem('envato', JSON.stringify(params));
|
||||||
|
},
|
||||||
|
setItem: function(key, val) {
|
||||||
|
var assign = {};
|
||||||
|
assign[key] = val;
|
||||||
|
var params = $.extend({}, envato.getItem(), assign);
|
||||||
|
localStorage.setItem('envato', JSON.stringify(params));
|
||||||
|
},
|
||||||
|
getItem: function(key) {
|
||||||
|
var params = JSON.parse(localStorage.getItem('envato'));
|
||||||
|
if (typeof key !== 'undefined') {
|
||||||
|
return params !== null ? params[key] : null;
|
||||||
|
}
|
||||||
|
return params;
|
||||||
|
},
|
||||||
|
startTimer: function(now) {
|
||||||
|
envato.setItem('created_on', now);
|
||||||
|
setTimeout(function() {
|
||||||
|
localStorage.removeItem('envato');
|
||||||
|
}, envato.expires_in * 1000);
|
||||||
|
},
|
||||||
|
tokenIsExpired: function() {
|
||||||
|
var diff = new Date().getTime() - envato.getItem('created_on');
|
||||||
|
if (typeof envato.expires_in === 'undefined' ||
|
||||||
|
diff >= ( envato.expires_in * 1000)) {
|
||||||
|
localStorage.removeItem('envato');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
// basic demo
|
||||||
|
var init = function() {
|
||||||
|
exporter.init();
|
||||||
|
keepActiveTab();
|
||||||
|
preview();
|
||||||
|
reset();
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
// public functions
|
||||||
|
init: function() {
|
||||||
|
envato.verifyEvent();
|
||||||
|
init();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}();
|
||||||
|
|
||||||
|
jQuery(document).ready(function() {
|
||||||
|
LayoutBuilder.init();
|
||||||
|
});
|
||||||
BIN
public/assets/app/media/img/bg/bg-1.jpg
Normal file
|
After Width: | Height: | Size: 200 KiB |
BIN
public/assets/app/media/img/bg/bg-2.jpg
Normal file
|
After Width: | Height: | Size: 236 KiB |
BIN
public/assets/app/media/img/bg/bg-3.jpg
Normal file
|
After Width: | Height: | Size: 239 KiB |
BIN
public/assets/app/media/img/bg/bg-4.jpg
Normal file
|
After Width: | Height: | Size: 451 KiB |
BIN
public/assets/app/media/img/bg/bg-5.jpg
Normal file
|
After Width: | Height: | Size: 358 KiB |
BIN
public/assets/app/media/img/blog/blog1.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
public/assets/app/media/img/blog/blog2.jpg
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
public/assets/app/media/img/blog/blog3.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
public/assets/app/media/img/blog/blog4.jpg
Normal file
|
After Width: | Height: | Size: 305 KiB |
BIN
public/assets/app/media/img/blog/blog5.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
public/assets/app/media/img/client-logos/logo1.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
public/assets/app/media/img/client-logos/logo2.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
public/assets/app/media/img/client-logos/logo3.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
public/assets/app/media/img/client-logos/logo4.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
public/assets/app/media/img/client-logos/logo5.png
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
public/assets/app/media/img/envato/screen1.jpg
Normal file
|
After Width: | Height: | Size: 142 KiB |
BIN
public/assets/app/media/img/envato/screen2.jpg
Normal file
|
After Width: | Height: | Size: 240 KiB |
BIN
public/assets/app/media/img/error/bg1.jpg
Normal file
|
After Width: | Height: | Size: 712 KiB |
BIN
public/assets/app/media/img/error/bg2.jpg
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
public/assets/app/media/img/error/bg3.jpg
Normal file
|
After Width: | Height: | Size: 365 KiB |
BIN
public/assets/app/media/img/error/bg4.jpg
Normal file
|
After Width: | Height: | Size: 278 KiB |
BIN
public/assets/app/media/img/error/bg5.jpg
Normal file
|
After Width: | Height: | Size: 206 KiB |
BIN
public/assets/app/media/img/error/bg6.jpg
Normal file
|
After Width: | Height: | Size: 205 KiB |
81
public/assets/app/media/img/files/css.svg
Normal file
|
|
@ -0,0 +1,81 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#0096E6;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M23.58,51.975c-0.374,0.364-0.798,0.638-1.271,0.82s-0.984,0.273-1.531,0.273
|
||||||
|
c-0.602,0-1.155-0.109-1.661-0.328s-0.948-0.542-1.326-0.971s-0.675-0.966-0.889-1.613c-0.214-0.647-0.321-1.395-0.321-2.242
|
||||||
|
s0.107-1.593,0.321-2.235c0.214-0.643,0.511-1.178,0.889-1.606s0.822-0.754,1.333-0.978s1.062-0.335,1.654-0.335
|
||||||
|
c0.547,0,1.058,0.091,1.531,0.273s0.897,0.456,1.271,0.82l-1.135,1.012c-0.228-0.265-0.48-0.456-0.759-0.574
|
||||||
|
s-0.567-0.178-0.868-0.178c-0.337,0-0.658,0.063-0.964,0.191s-0.579,0.344-0.82,0.649s-0.431,0.699-0.567,1.183
|
||||||
|
s-0.21,1.075-0.219,1.777c0.009,0.684,0.08,1.267,0.212,1.75s0.314,0.877,0.547,1.183s0.497,0.528,0.793,0.67
|
||||||
|
s0.608,0.212,0.937,0.212s0.636-0.06,0.923-0.178s0.549-0.31,0.786-0.574L23.58,51.975z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M31.633,50.238c0,0.364-0.075,0.718-0.226,1.06s-0.362,0.643-0.636,0.902s-0.61,0.467-1.012,0.622
|
||||||
|
s-0.856,0.232-1.367,0.232c-0.219,0-0.444-0.012-0.677-0.034s-0.467-0.062-0.704-0.116s-0.463-0.13-0.677-0.226
|
||||||
|
s-0.398-0.212-0.554-0.349l0.287-1.176c0.128,0.073,0.289,0.144,0.485,0.212s0.398,0.132,0.608,0.191s0.419,0.107,0.629,0.144
|
||||||
|
s0.405,0.055,0.588,0.055c0.556,0,0.982-0.13,1.278-0.39s0.444-0.645,0.444-1.155c0-0.31-0.104-0.574-0.314-0.793
|
||||||
|
s-0.472-0.417-0.786-0.595s-0.654-0.355-1.019-0.533s-0.706-0.388-1.025-0.629s-0.583-0.526-0.793-0.854s-0.314-0.738-0.314-1.23
|
||||||
|
c0-0.446,0.082-0.843,0.246-1.189s0.385-0.641,0.663-0.882s0.602-0.426,0.971-0.554s0.759-0.191,1.169-0.191
|
||||||
|
c0.419,0,0.843,0.039,1.271,0.116s0.774,0.203,1.039,0.376c-0.055,0.118-0.118,0.248-0.191,0.39s-0.142,0.273-0.205,0.396
|
||||||
|
c-0.063,0.123-0.118,0.226-0.164,0.308s-0.073,0.128-0.082,0.137c-0.055-0.027-0.116-0.063-0.185-0.109s-0.166-0.091-0.294-0.137
|
||||||
|
s-0.296-0.077-0.506-0.096s-0.479-0.014-0.807,0.014c-0.183,0.019-0.355,0.07-0.52,0.157s-0.31,0.193-0.438,0.321
|
||||||
|
s-0.228,0.271-0.301,0.431s-0.109,0.313-0.109,0.458c0,0.364,0.104,0.658,0.314,0.882s0.47,0.419,0.779,0.588
|
||||||
|
s0.647,0.333,1.012,0.492s0.704,0.354,1.019,0.581s0.576,0.513,0.786,0.854S31.633,49.7,31.633,50.238z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M39.043,50.238c0,0.364-0.075,0.718-0.226,1.06s-0.362,0.643-0.636,0.902s-0.61,0.467-1.012,0.622
|
||||||
|
s-0.856,0.232-1.367,0.232c-0.219,0-0.444-0.012-0.677-0.034s-0.467-0.062-0.704-0.116s-0.463-0.13-0.677-0.226
|
||||||
|
s-0.398-0.212-0.554-0.349l0.287-1.176c0.128,0.073,0.289,0.144,0.485,0.212s0.398,0.132,0.608,0.191s0.419,0.107,0.629,0.144
|
||||||
|
s0.405,0.055,0.588,0.055c0.556,0,0.982-0.13,1.278-0.39s0.444-0.645,0.444-1.155c0-0.31-0.104-0.574-0.314-0.793
|
||||||
|
s-0.472-0.417-0.786-0.595s-0.654-0.355-1.019-0.533s-0.706-0.388-1.025-0.629s-0.583-0.526-0.793-0.854s-0.314-0.738-0.314-1.23
|
||||||
|
c0-0.446,0.082-0.843,0.246-1.189s0.385-0.641,0.663-0.882s0.602-0.426,0.971-0.554s0.759-0.191,1.169-0.191
|
||||||
|
c0.419,0,0.843,0.039,1.271,0.116s0.774,0.203,1.039,0.376c-0.055,0.118-0.118,0.248-0.191,0.39s-0.142,0.273-0.205,0.396
|
||||||
|
s-0.118,0.226-0.164,0.308s-0.073,0.128-0.082,0.137c-0.055-0.027-0.116-0.063-0.185-0.109s-0.166-0.091-0.294-0.137
|
||||||
|
s-0.296-0.077-0.506-0.096s-0.479-0.014-0.807,0.014c-0.183,0.019-0.355,0.07-0.52,0.157s-0.31,0.193-0.438,0.321
|
||||||
|
s-0.228,0.271-0.301,0.431s-0.109,0.313-0.109,0.458c0,0.364,0.104,0.658,0.314,0.882s0.47,0.419,0.779,0.588
|
||||||
|
s0.647,0.333,1.012,0.492s0.704,0.354,1.019,0.581s0.576,0.513,0.786,0.854S39.043,49.7,39.043,50.238z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0096E6;" d="M19.5,19v-4c0-0.551,0.448-1,1-1c0.553,0,1-0.448,1-1s-0.447-1-1-1c-1.654,0-3,1.346-3,3v4
|
||||||
|
c0,1.103-0.897,2-2,2c-0.553,0-1,0.448-1,1s0.447,1,1,1c1.103,0,2,0.897,2,2v4c0,1.654,1.346,3,3,3c0.553,0,1-0.448,1-1
|
||||||
|
s-0.447-1-1-1c-0.552,0-1-0.449-1-1v-4c0-1.2-0.542-2.266-1.382-3C18.958,21.266,19.5,20.2,19.5,19z"/>
|
||||||
|
<path style="fill:#0096E6;" d="M39.5,21c-1.103,0-2-0.897-2-2v-4c0-1.654-1.346-3-3-3c-0.553,0-1,0.448-1,1s0.447,1,1,1
|
||||||
|
c0.552,0,1,0.449,1,1v4c0,1.2,0.542,2.266,1.382,3c-0.84,0.734-1.382,1.8-1.382,3v4c0,0.551-0.448,1-1,1c-0.553,0-1,0.448-1,1
|
||||||
|
s0.447,1,1,1c1.654,0,3-1.346,3-3v-4c0-1.103,0.897-2,2-2c0.553,0,1-0.448,1-1S40.053,21,39.5,21z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5 KiB |
71
public/assets/app/media/img/files/csv.svg
Normal file
|
|
@ -0,0 +1,71 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#F36FA0;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M21.58,51.975c-0.374,0.364-0.798,0.638-1.271,0.82c-0.474,0.183-0.984,0.273-1.531,0.273
|
||||||
|
c-0.602,0-1.155-0.109-1.661-0.328s-0.948-0.542-1.326-0.971c-0.378-0.429-0.675-0.966-0.889-1.613
|
||||||
|
c-0.214-0.647-0.321-1.395-0.321-2.242s0.107-1.593,0.321-2.235c0.214-0.643,0.51-1.178,0.889-1.606
|
||||||
|
c0.378-0.429,0.822-0.754,1.333-0.978c0.51-0.224,1.062-0.335,1.654-0.335c0.547,0,1.057,0.091,1.531,0.273
|
||||||
|
c0.474,0.183,0.897,0.456,1.271,0.82l-1.135,1.012c-0.228-0.265-0.481-0.456-0.759-0.574c-0.278-0.118-0.567-0.178-0.868-0.178
|
||||||
|
c-0.337,0-0.659,0.063-0.964,0.191c-0.306,0.128-0.579,0.344-0.82,0.649c-0.242,0.306-0.431,0.699-0.567,1.183
|
||||||
|
s-0.21,1.075-0.219,1.777c0.009,0.684,0.08,1.267,0.212,1.75c0.132,0.483,0.314,0.877,0.547,1.183s0.497,0.528,0.793,0.67
|
||||||
|
c0.296,0.142,0.608,0.212,0.937,0.212s0.636-0.06,0.923-0.178s0.549-0.31,0.786-0.574L21.58,51.975z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M29.633,50.238c0,0.364-0.075,0.718-0.226,1.06s-0.362,0.643-0.636,0.902s-0.611,0.467-1.012,0.622
|
||||||
|
c-0.401,0.155-0.857,0.232-1.367,0.232c-0.219,0-0.444-0.012-0.677-0.034s-0.467-0.062-0.704-0.116
|
||||||
|
c-0.237-0.055-0.463-0.13-0.677-0.226c-0.214-0.096-0.399-0.212-0.554-0.349l0.287-1.176c0.127,0.073,0.289,0.144,0.485,0.212
|
||||||
|
c0.196,0.068,0.398,0.132,0.608,0.191c0.209,0.06,0.419,0.107,0.629,0.144c0.209,0.036,0.405,0.055,0.588,0.055
|
||||||
|
c0.556,0,0.982-0.13,1.278-0.39c0.296-0.26,0.444-0.645,0.444-1.155c0-0.31-0.105-0.574-0.314-0.793
|
||||||
|
c-0.21-0.219-0.472-0.417-0.786-0.595s-0.654-0.355-1.019-0.533c-0.365-0.178-0.707-0.388-1.025-0.629
|
||||||
|
c-0.319-0.241-0.583-0.526-0.793-0.854c-0.21-0.328-0.314-0.738-0.314-1.23c0-0.446,0.082-0.843,0.246-1.189
|
||||||
|
s0.385-0.641,0.663-0.882c0.278-0.241,0.602-0.426,0.971-0.554s0.759-0.191,1.169-0.191c0.419,0,0.843,0.039,1.271,0.116
|
||||||
|
c0.428,0.077,0.774,0.203,1.039,0.376c-0.055,0.118-0.119,0.248-0.191,0.39c-0.073,0.142-0.142,0.273-0.205,0.396
|
||||||
|
c-0.064,0.123-0.119,0.226-0.164,0.308c-0.046,0.082-0.073,0.128-0.082,0.137c-0.055-0.027-0.116-0.063-0.185-0.109
|
||||||
|
s-0.167-0.091-0.294-0.137c-0.128-0.046-0.296-0.077-0.506-0.096c-0.21-0.019-0.479-0.014-0.807,0.014
|
||||||
|
c-0.183,0.019-0.355,0.07-0.52,0.157s-0.31,0.193-0.438,0.321c-0.128,0.128-0.228,0.271-0.301,0.431
|
||||||
|
c-0.073,0.159-0.109,0.313-0.109,0.458c0,0.364,0.104,0.658,0.314,0.882c0.209,0.224,0.469,0.419,0.779,0.588
|
||||||
|
c0.31,0.169,0.647,0.333,1.012,0.492c0.364,0.159,0.704,0.354,1.019,0.581s0.576,0.513,0.786,0.854
|
||||||
|
C29.528,49.261,29.633,49.7,29.633,50.238z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M34.035,53.055l-3.131-10.131h1.873l2.338,8.695l2.475-8.695h1.859l-3.281,10.131H34.035z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#C8BDB8;" d="M23.5,16v-4h-12v4v2v2v2v2v2v2v2v4h10h2h21v-4v-2v-2v-2v-2v-2v-4H23.5z M13.5,14h8v2h-8V14z
|
||||||
|
M13.5,18h8v2h-8V18z M13.5,22h8v2h-8V22z M13.5,26h8v2h-8V26z M21.5,32h-8v-2h8V32z M42.5,32h-19v-2h19V32z M42.5,28h-19v-2h19V28
|
||||||
|
z M42.5,24h-19v-2h19V24z M23.5,20v-2h19v2H23.5z"/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 3.9 KiB |
81
public/assets/app/media/img/files/doc.svg
Normal file
|
|
@ -0,0 +1,81 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#8697CB;" d="M18.5,13h-6c-0.552,0-1-0.448-1-1s0.448-1,1-1h6c0.552,0,1,0.448,1,1S19.052,13,18.5,13z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M21.5,18h-9c-0.552,0-1-0.448-1-1s0.448-1,1-1h9c0.552,0,1,0.448,1,1S22.052,18,21.5,18z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M25.5,18c-0.26,0-0.52-0.11-0.71-0.29c-0.18-0.19-0.29-0.45-0.29-0.71c0-0.26,0.11-0.52,0.29-0.71
|
||||||
|
c0.37-0.37,1.05-0.37,1.42,0c0.18,0.19,0.29,0.45,0.29,0.71c0,0.26-0.11,0.52-0.29,0.71C26.02,17.89,25.76,18,25.5,18z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M37.5,18h-8c-0.552,0-1-0.448-1-1s0.448-1,1-1h8c0.552,0,1,0.448,1,1S38.052,18,37.5,18z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M12.5,33c-0.26,0-0.52-0.11-0.71-0.29c-0.18-0.19-0.29-0.45-0.29-0.71c0-0.26,0.11-0.52,0.29-0.71
|
||||||
|
c0.37-0.37,1.05-0.37,1.42,0c0.18,0.19,0.29,0.44,0.29,0.71c0,0.26-0.11,0.52-0.29,0.71C13.02,32.89,12.76,33,12.5,33z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M24.5,33h-8c-0.552,0-1-0.448-1-1s0.448-1,1-1h8c0.552,0,1,0.448,1,1S25.052,33,24.5,33z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M43.5,18h-2c-0.552,0-1-0.448-1-1s0.448-1,1-1h2c0.552,0,1,0.448,1,1S44.052,18,43.5,18z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M34.5,23h-22c-0.552,0-1-0.448-1-1s0.448-1,1-1h22c0.552,0,1,0.448,1,1S35.052,23,34.5,23z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M43.5,23h-6c-0.552,0-1-0.448-1-1s0.448-1,1-1h6c0.552,0,1,0.448,1,1S44.052,23,43.5,23z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M16.5,28h-4c-0.552,0-1-0.448-1-1s0.448-1,1-1h4c0.552,0,1,0.448,1,1S17.052,28,16.5,28z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M30.5,28h-10c-0.552,0-1-0.448-1-1s0.448-1,1-1h10c0.552,0,1,0.448,1,1S31.052,28,30.5,28z"/>
|
||||||
|
<path style="fill:#8697CB;" d="M43.5,28h-9c-0.552,0-1-0.448-1-1s0.448-1,1-1h9c0.552,0,1,0.448,1,1S44.052,28,43.5,28z"/>
|
||||||
|
<path style="fill:#0096E6;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M23.5,47.682c0,0.829-0.089,1.538-0.267,2.126s-0.403,1.08-0.677,1.477s-0.581,0.709-0.923,0.937
|
||||||
|
s-0.672,0.398-0.991,0.513c-0.319,0.114-0.611,0.187-0.875,0.219C19.503,52.984,19.307,53,19.18,53h-3.814V42.924H18.4
|
||||||
|
c0.848,0,1.593,0.135,2.235,0.403s1.176,0.627,1.6,1.073s0.74,0.955,0.95,1.524C23.395,46.494,23.5,47.08,23.5,47.682z
|
||||||
|
M18.633,51.797c1.112,0,1.914-0.355,2.406-1.066s0.738-1.741,0.738-3.09c0-0.419-0.05-0.834-0.15-1.244
|
||||||
|
c-0.101-0.41-0.294-0.781-0.581-1.114s-0.677-0.602-1.169-0.807s-1.13-0.308-1.914-0.308h-0.957v7.629H18.633z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M33.475,47.914c0,0.848-0.107,1.595-0.321,2.242c-0.214,0.647-0.511,1.185-0.889,1.613
|
||||||
|
c-0.378,0.429-0.82,0.752-1.326,0.971s-1.06,0.328-1.661,0.328s-1.155-0.109-1.661-0.328s-0.948-0.542-1.326-0.971
|
||||||
|
c-0.378-0.429-0.675-0.966-0.889-1.613c-0.214-0.647-0.321-1.395-0.321-2.242s0.107-1.593,0.321-2.235
|
||||||
|
c0.214-0.643,0.51-1.178,0.889-1.606c0.378-0.429,0.82-0.754,1.326-0.978s1.06-0.335,1.661-0.335s1.155,0.111,1.661,0.335
|
||||||
|
s0.948,0.549,1.326,0.978c0.378,0.429,0.674,0.964,0.889,1.606C33.367,46.321,33.475,47.066,33.475,47.914z M29.236,51.729
|
||||||
|
c0.337,0,0.658-0.066,0.964-0.198c0.305-0.132,0.579-0.349,0.82-0.649c0.241-0.301,0.431-0.695,0.567-1.183
|
||||||
|
s0.209-1.082,0.219-1.784c-0.009-0.684-0.08-1.265-0.212-1.743c-0.132-0.479-0.314-0.873-0.547-1.183s-0.497-0.533-0.793-0.67
|
||||||
|
c-0.296-0.137-0.608-0.205-0.937-0.205c-0.337,0-0.659,0.063-0.964,0.191c-0.306,0.128-0.579,0.344-0.82,0.649
|
||||||
|
c-0.242,0.306-0.431,0.699-0.567,1.183s-0.21,1.075-0.219,1.777c0.009,0.684,0.08,1.267,0.212,1.75
|
||||||
|
c0.132,0.483,0.314,0.877,0.547,1.183s0.497,0.528,0.793,0.67C28.596,51.658,28.908,51.729,29.236,51.729z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M42.607,51.975c-0.374,0.364-0.798,0.638-1.271,0.82c-0.474,0.183-0.984,0.273-1.531,0.273
|
||||||
|
c-0.602,0-1.155-0.109-1.661-0.328s-0.948-0.542-1.326-0.971c-0.378-0.429-0.675-0.966-0.889-1.613
|
||||||
|
c-0.214-0.647-0.321-1.395-0.321-2.242s0.107-1.593,0.321-2.235c0.214-0.643,0.51-1.178,0.889-1.606
|
||||||
|
c0.378-0.429,0.822-0.754,1.333-0.978c0.51-0.224,1.062-0.335,1.654-0.335c0.547,0,1.057,0.091,1.531,0.273
|
||||||
|
c0.474,0.183,0.897,0.456,1.271,0.82l-1.135,1.012c-0.228-0.265-0.481-0.456-0.759-0.574c-0.278-0.118-0.567-0.178-0.868-0.178
|
||||||
|
c-0.337,0-0.659,0.063-0.964,0.191c-0.306,0.128-0.579,0.344-0.82,0.649c-0.242,0.306-0.431,0.699-0.567,1.183
|
||||||
|
s-0.21,1.075-0.219,1.777c0.009,0.684,0.08,1.267,0.212,1.75c0.132,0.483,0.314,0.877,0.547,1.183s0.497,0.528,0.793,0.67
|
||||||
|
c0.296,0.142,0.608,0.212,0.937,0.212s0.636-0.06,0.923-0.178s0.549-0.31,0.786-0.574L42.607,51.975z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.3 KiB |
57
public/assets/app/media/img/files/html.svg
Normal file
|
|
@ -0,0 +1,57 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#EC6630;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M17.455,42.924V53h-1.641v-4.539h-4.361V53H9.785V42.924h1.668v4.416h4.361v-4.416H17.455z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M27.107,42.924v1.121H24.1V53h-1.654v-8.955h-3.008v-1.121H27.107z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M36.705,42.924h1.668V53h-1.668v-6.932l-2.256,5.605H33l-2.27-5.605V53h-1.668V42.924h1.668
|
||||||
|
l2.994,6.891L36.705,42.924z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M42.57,42.924v8.832h4.635V53h-6.303V42.924H42.57z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#EC6630;" d="M23.207,16.293c-0.391-0.391-1.023-0.391-1.414,0l-6,6c-0.391,0.391-0.391,1.023,0,1.414l6,6
|
||||||
|
C21.988,29.902,22.244,30,22.5,30s0.512-0.098,0.707-0.293c0.391-0.391,0.391-1.023,0-1.414L17.914,23l5.293-5.293
|
||||||
|
C23.598,17.316,23.598,16.684,23.207,16.293z"/>
|
||||||
|
<path style="fill:#EC6630;" d="M41.207,22.293l-6-6c-0.391-0.391-1.023-0.391-1.414,0s-0.391,1.023,0,1.414L39.086,23
|
||||||
|
l-5.293,5.293c-0.391,0.391-0.391,1.023,0,1.414C33.988,29.902,34.244,30,34.5,30s0.512-0.098,0.707-0.293l6-6
|
||||||
|
C41.598,23.316,41.598,22.684,41.207,22.293z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
74
public/assets/app/media/img/files/javascript.svg
Normal file
|
|
@ -0,0 +1,74 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#EEAF4B;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M26.021,42.719v7.848c0,0.474-0.087,0.873-0.26,1.196c-0.174,0.323-0.406,0.583-0.697,0.779
|
||||||
|
c-0.292,0.196-0.627,0.333-1.005,0.41s-0.769,0.116-1.169,0.116c-0.201,0-0.436-0.021-0.704-0.062s-0.547-0.104-0.834-0.191
|
||||||
|
s-0.563-0.185-0.827-0.294c-0.265-0.109-0.488-0.232-0.67-0.369l0.697-1.107c0.091,0.063,0.221,0.13,0.39,0.198
|
||||||
|
s0.353,0.132,0.554,0.191c0.2,0.06,0.41,0.111,0.629,0.157s0.424,0.068,0.615,0.068c0.482,0,0.868-0.094,1.155-0.28
|
||||||
|
s0.439-0.504,0.458-0.95v-7.711H26.021z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M34.184,50.238c0,0.364-0.075,0.718-0.226,1.06s-0.362,0.643-0.636,0.902s-0.611,0.467-1.012,0.622
|
||||||
|
c-0.401,0.155-0.857,0.232-1.367,0.232c-0.219,0-0.444-0.012-0.677-0.034s-0.468-0.062-0.704-0.116
|
||||||
|
c-0.237-0.055-0.463-0.13-0.677-0.226s-0.399-0.212-0.554-0.349l0.287-1.176c0.127,0.073,0.289,0.144,0.485,0.212
|
||||||
|
s0.398,0.132,0.608,0.191c0.209,0.06,0.419,0.107,0.629,0.144c0.209,0.036,0.405,0.055,0.588,0.055c0.556,0,0.982-0.13,1.278-0.39
|
||||||
|
s0.444-0.645,0.444-1.155c0-0.31-0.105-0.574-0.314-0.793c-0.21-0.219-0.472-0.417-0.786-0.595s-0.654-0.355-1.019-0.533
|
||||||
|
c-0.365-0.178-0.707-0.388-1.025-0.629c-0.319-0.241-0.584-0.526-0.793-0.854c-0.21-0.328-0.314-0.738-0.314-1.23
|
||||||
|
c0-0.446,0.082-0.843,0.246-1.189s0.385-0.641,0.663-0.882s0.602-0.426,0.971-0.554s0.759-0.191,1.169-0.191
|
||||||
|
c0.419,0,0.843,0.039,1.271,0.116c0.428,0.077,0.774,0.203,1.039,0.376c-0.055,0.118-0.119,0.248-0.191,0.39
|
||||||
|
c-0.073,0.142-0.142,0.273-0.205,0.396c-0.064,0.123-0.119,0.226-0.164,0.308c-0.046,0.082-0.073,0.128-0.082,0.137
|
||||||
|
c-0.055-0.027-0.116-0.063-0.185-0.109s-0.167-0.091-0.294-0.137c-0.128-0.046-0.297-0.077-0.506-0.096
|
||||||
|
c-0.21-0.019-0.479-0.014-0.807,0.014c-0.183,0.019-0.355,0.07-0.52,0.157s-0.311,0.193-0.438,0.321
|
||||||
|
c-0.128,0.128-0.229,0.271-0.301,0.431c-0.073,0.159-0.109,0.313-0.109,0.458c0,0.364,0.104,0.658,0.314,0.882
|
||||||
|
c0.209,0.224,0.469,0.419,0.779,0.588c0.31,0.169,0.646,0.333,1.012,0.492c0.364,0.159,0.704,0.354,1.019,0.581
|
||||||
|
s0.576,0.513,0.786,0.854C34.078,49.261,34.184,49.7,34.184,50.238z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#EEAF4B;" d="M19.5,19v-4c0-0.551,0.448-1,1-1c0.553,0,1-0.448,1-1s-0.447-1-1-1c-1.654,0-3,1.346-3,3v4
|
||||||
|
c0,1.103-0.897,2-2,2c-0.553,0-1,0.448-1,1s0.447,1,1,1c1.103,0,2,0.897,2,2v4c0,1.654,1.346,3,3,3c0.553,0,1-0.448,1-1
|
||||||
|
s-0.447-1-1-1c-0.552,0-1-0.449-1-1v-4c0-1.2-0.542-2.266-1.382-3C18.958,21.266,19.5,20.2,19.5,19z"/>
|
||||||
|
<circle style="fill:#EEAF4B;" cx="27.5" cy="18.5" r="1.5"/>
|
||||||
|
<path style="fill:#EEAF4B;" d="M39.5,21c-1.103,0-2-0.897-2-2v-4c0-1.654-1.346-3-3-3c-0.553,0-1,0.448-1,1s0.447,1,1,1
|
||||||
|
c0.552,0,1,0.449,1,1v4c0,1.2,0.542,2.266,1.382,3c-0.84,0.734-1.382,1.8-1.382,3v4c0,0.551-0.448,1-1,1c-0.553,0-1,0.448-1,1
|
||||||
|
s0.447,1,1,1c1.654,0,3-1.346,3-3v-4c0-1.103,0.897-2,2-2c0.553,0,1-0.448,1-1S40.053,21,39.5,21z"/>
|
||||||
|
<path style="fill:#EEAF4B;" d="M27.5,24c-0.553,0-1,0.448-1,1v3c0,0.552,0.447,1,1,1s1-0.448,1-1v-3
|
||||||
|
C28.5,24.448,28.053,24,27.5,24z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4 KiB |
67
public/assets/app/media/img/files/jpg.svg
Normal file
|
|
@ -0,0 +1,67 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<circle style="fill:#F3D55B;" cx="18.931" cy="14.431" r="4.569"/>
|
||||||
|
<polygon style="fill:#26B99A;" points="6.5,39 17.5,39 49.5,39 49.5,28 39.5,18.5 29,30 23.517,24.517 "/>
|
||||||
|
<path style="fill:#14A085;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M21.426,42.65v7.848c0,0.474-0.087,0.873-0.26,1.196c-0.173,0.323-0.406,0.583-0.697,0.779
|
||||||
|
c-0.292,0.196-0.627,0.333-1.005,0.41C19.085,52.961,18.696,53,18.295,53c-0.201,0-0.436-0.021-0.704-0.062
|
||||||
|
c-0.269-0.041-0.547-0.104-0.834-0.191s-0.563-0.185-0.827-0.294c-0.265-0.109-0.488-0.232-0.67-0.369l0.697-1.107
|
||||||
|
c0.091,0.063,0.221,0.13,0.39,0.198c0.168,0.068,0.353,0.132,0.554,0.191c0.2,0.06,0.41,0.111,0.629,0.157
|
||||||
|
s0.424,0.068,0.615,0.068c0.483,0,0.868-0.094,1.155-0.28s0.439-0.504,0.458-0.95V42.65H21.426z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M25.514,52.932h-1.641V42.855h2.898c0.428,0,0.852,0.068,1.271,0.205
|
||||||
|
c0.419,0.137,0.795,0.342,1.128,0.615c0.333,0.273,0.602,0.604,0.807,0.991s0.308,0.822,0.308,1.306
|
||||||
|
c0,0.511-0.087,0.973-0.26,1.388c-0.173,0.415-0.415,0.764-0.725,1.046c-0.31,0.282-0.684,0.501-1.121,0.656
|
||||||
|
s-0.921,0.232-1.449,0.232h-1.217V52.932z M25.514,44.1v3.992h1.504c0.2,0,0.398-0.034,0.595-0.103
|
||||||
|
c0.196-0.068,0.376-0.18,0.54-0.335s0.296-0.371,0.396-0.649c0.1-0.278,0.15-0.622,0.15-1.032c0-0.164-0.023-0.354-0.068-0.567
|
||||||
|
c-0.046-0.214-0.139-0.419-0.28-0.615c-0.142-0.196-0.34-0.36-0.595-0.492C27.5,44.166,27.163,44.1,26.744,44.1H25.514z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M39.5,47.736v3.896c-0.21,0.265-0.444,0.48-0.704,0.649s-0.533,0.308-0.82,0.417
|
||||||
|
s-0.583,0.187-0.889,0.232C36.781,52.978,36.479,53,36.178,53c-0.602,0-1.155-0.109-1.661-0.328s-0.948-0.542-1.326-0.971
|
||||||
|
c-0.378-0.429-0.675-0.966-0.889-1.613c-0.214-0.647-0.321-1.395-0.321-2.242s0.107-1.593,0.321-2.235
|
||||||
|
c0.214-0.643,0.51-1.178,0.889-1.606c0.378-0.429,0.822-0.754,1.333-0.978c0.51-0.224,1.062-0.335,1.654-0.335
|
||||||
|
c0.547,0,1.057,0.091,1.531,0.273c0.474,0.183,0.897,0.456,1.271,0.82l-1.135,1.012c-0.219-0.265-0.47-0.456-0.752-0.574
|
||||||
|
c-0.283-0.118-0.574-0.178-0.875-0.178c-0.337,0-0.659,0.063-0.964,0.191c-0.306,0.128-0.579,0.344-0.82,0.649
|
||||||
|
c-0.242,0.306-0.431,0.699-0.567,1.183s-0.21,1.075-0.219,1.777c0.009,0.684,0.08,1.276,0.212,1.777
|
||||||
|
c0.132,0.501,0.314,0.911,0.547,1.23s0.497,0.556,0.793,0.711c0.296,0.155,0.608,0.232,0.937,0.232c0.1,0,0.234-0.007,0.403-0.021
|
||||||
|
c0.168-0.014,0.337-0.036,0.506-0.068c0.168-0.032,0.33-0.075,0.485-0.13c0.155-0.055,0.269-0.132,0.342-0.232v-2.488h-1.709
|
||||||
|
v-1.121H39.5z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
59
public/assets/app/media/img/files/mp4.svg
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<path style="fill:#FF5364;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M22.4,42.924h1.668V53H22.4v-6.932l-2.256,5.605h-1.449l-2.27-5.605V53h-1.668V42.924h1.668
|
||||||
|
l2.994,6.891L22.4,42.924z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M28.211,53H26.57V42.924h2.898c0.428,0,0.852,0.068,1.271,0.205
|
||||||
|
c0.419,0.137,0.795,0.342,1.128,0.615c0.333,0.273,0.602,0.604,0.807,0.991s0.308,0.822,0.308,1.306
|
||||||
|
c0,0.511-0.087,0.973-0.26,1.388c-0.173,0.415-0.415,0.764-0.725,1.046c-0.31,0.282-0.684,0.501-1.121,0.656
|
||||||
|
s-0.921,0.232-1.449,0.232h-1.217V53z M28.211,44.168v3.992h1.504c0.2,0,0.398-0.034,0.595-0.103
|
||||||
|
c0.196-0.068,0.376-0.18,0.54-0.335s0.296-0.371,0.396-0.649c0.1-0.278,0.15-0.622,0.15-1.032c0-0.164-0.023-0.354-0.068-0.567
|
||||||
|
c-0.046-0.214-0.139-0.419-0.28-0.615c-0.142-0.196-0.34-0.36-0.595-0.492c-0.255-0.132-0.593-0.198-1.012-0.198H28.211z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M38.479,50.648h-4.361V49.35l4.361-6.426h1.668v6.426h1.053v1.299h-1.053V53h-1.668V50.648z
|
||||||
|
M38.479,49.35v-4.512L35.58,49.35H38.479z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#C8BDB8;" d="M24.5,28c-0.166,0-0.331-0.041-0.481-0.123C23.699,27.701,23.5,27.365,23.5,27V13
|
||||||
|
c0-0.365,0.199-0.701,0.519-0.877c0.321-0.175,0.71-0.162,1.019,0.033l11,7C36.325,19.34,36.5,19.658,36.5,20
|
||||||
|
s-0.175,0.66-0.463,0.844l-11,7C24.874,27.947,24.687,28,24.5,28z M25.5,14.821v10.357L33.637,20L25.5,14.821z"/>
|
||||||
|
<path style="fill:#C8BDB8;" d="M28.5,35c-8.271,0-15-6.729-15-15s6.729-15,15-15s15,6.729,15,15S36.771,35,28.5,35z M28.5,7
|
||||||
|
c-7.168,0-13,5.832-13,13s5.832,13,13,13s13-5.832,13-13S35.668,7,28.5,7z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
69
public/assets/app/media/img/files/pdf.svg
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#CC4B4C;" d="M19.514,33.324L19.514,33.324c-0.348,0-0.682-0.113-0.967-0.326
|
||||||
|
c-1.041-0.781-1.181-1.65-1.115-2.242c0.182-1.628,2.195-3.332,5.985-5.068c1.504-3.296,2.935-7.357,3.788-10.75
|
||||||
|
c-0.998-2.172-1.968-4.99-1.261-6.643c0.248-0.579,0.557-1.023,1.134-1.215c0.228-0.076,0.804-0.172,1.016-0.172
|
||||||
|
c0.504,0,0.947,0.649,1.261,1.049c0.295,0.376,0.964,1.173-0.373,6.802c1.348,2.784,3.258,5.62,5.088,7.562
|
||||||
|
c1.311-0.237,2.439-0.358,3.358-0.358c1.566,0,2.515,0.365,2.902,1.117c0.32,0.622,0.189,1.349-0.39,2.16
|
||||||
|
c-0.557,0.779-1.325,1.191-2.22,1.191c-1.216,0-2.632-0.768-4.211-2.285c-2.837,0.593-6.15,1.651-8.828,2.822
|
||||||
|
c-0.836,1.774-1.637,3.203-2.383,4.251C21.273,32.654,20.389,33.324,19.514,33.324z M22.176,28.198
|
||||||
|
c-2.137,1.201-3.008,2.188-3.071,2.744c-0.01,0.092-0.037,0.334,0.431,0.692C19.685,31.587,20.555,31.19,22.176,28.198z
|
||||||
|
M35.813,23.756c0.815,0.627,1.014,0.944,1.547,0.944c0.234,0,0.901-0.01,1.21-0.441c0.149-0.209,0.207-0.343,0.23-0.415
|
||||||
|
c-0.123-0.065-0.286-0.197-1.175-0.197C37.12,23.648,36.485,23.67,35.813,23.756z M28.343,17.174
|
||||||
|
c-0.715,2.474-1.659,5.145-2.674,7.564c2.09-0.811,4.362-1.519,6.496-2.02C30.815,21.15,29.466,19.192,28.343,17.174z
|
||||||
|
M27.736,8.712c-0.098,0.033-1.33,1.757,0.096,3.216C28.781,9.813,27.779,8.698,27.736,8.712z"/>
|
||||||
|
<path style="fill:#CC4B4C;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M17.385,53h-1.641V42.924h2.898c0.428,0,0.852,0.068,1.271,0.205
|
||||||
|
c0.419,0.137,0.795,0.342,1.128,0.615c0.333,0.273,0.602,0.604,0.807,0.991s0.308,0.822,0.308,1.306
|
||||||
|
c0,0.511-0.087,0.973-0.26,1.388c-0.173,0.415-0.415,0.764-0.725,1.046c-0.31,0.282-0.684,0.501-1.121,0.656
|
||||||
|
s-0.921,0.232-1.449,0.232h-1.217V53z M17.385,44.168v3.992h1.504c0.2,0,0.398-0.034,0.595-0.103
|
||||||
|
c0.196-0.068,0.376-0.18,0.54-0.335c0.164-0.155,0.296-0.371,0.396-0.649c0.1-0.278,0.15-0.622,0.15-1.032
|
||||||
|
c0-0.164-0.023-0.354-0.068-0.567c-0.046-0.214-0.139-0.419-0.28-0.615c-0.142-0.196-0.34-0.36-0.595-0.492
|
||||||
|
c-0.255-0.132-0.593-0.198-1.012-0.198H17.385z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M32.219,47.682c0,0.829-0.089,1.538-0.267,2.126s-0.403,1.08-0.677,1.477s-0.581,0.709-0.923,0.937
|
||||||
|
s-0.672,0.398-0.991,0.513c-0.319,0.114-0.611,0.187-0.875,0.219C28.222,52.984,28.026,53,27.898,53h-3.814V42.924h3.035
|
||||||
|
c0.848,0,1.593,0.135,2.235,0.403s1.176,0.627,1.6,1.073s0.74,0.955,0.95,1.524C32.114,46.494,32.219,47.08,32.219,47.682z
|
||||||
|
M27.352,51.797c1.112,0,1.914-0.355,2.406-1.066s0.738-1.741,0.738-3.09c0-0.419-0.05-0.834-0.15-1.244
|
||||||
|
c-0.101-0.41-0.294-0.781-0.581-1.114s-0.677-0.602-1.169-0.807s-1.13-0.308-1.914-0.308h-0.957v7.629H27.352z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M36.266,44.168v3.172h4.211v1.121h-4.211V53h-1.668V42.924H40.9v1.244H36.266z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.7 KiB |
59
public/assets/app/media/img/files/xml.svg
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#F29C1F;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M19.379,48.105L21.936,53h-1.9l-1.6-3.801h-0.137L16.576,53h-1.9l2.557-4.895l-2.721-5.182h1.873
|
||||||
|
l1.777,4.102h0.137l1.928-4.102H22.1L19.379,48.105z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M31.998,42.924h1.668V53h-1.668v-6.932l-2.256,5.605h-1.449l-2.27-5.605V53h-1.668V42.924h1.668
|
||||||
|
l2.994,6.891L31.998,42.924z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M37.863,42.924v8.832h4.635V53h-6.303V42.924H37.863z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#F29C1F;" d="M15.5,24c-0.256,0-0.512-0.098-0.707-0.293c-0.391-0.391-0.391-1.023,0-1.414l6-6
|
||||||
|
c0.391-0.391,1.023-0.391,1.414,0s0.391,1.023,0,1.414l-6,6C16.012,23.902,15.756,24,15.5,24z"/>
|
||||||
|
<path style="fill:#F29C1F;" d="M21.5,30c-0.256,0-0.512-0.098-0.707-0.293l-6-6c-0.391-0.391-0.391-1.023,0-1.414
|
||||||
|
s1.023-0.391,1.414,0l6,6c0.391,0.391,0.391,1.023,0,1.414C22.012,29.902,21.756,30,21.5,30z"/>
|
||||||
|
<path style="fill:#F29C1F;" d="M33.5,30c-0.256,0-0.512-0.098-0.707-0.293c-0.391-0.391-0.391-1.023,0-1.414l6-6
|
||||||
|
c0.391-0.391,1.023-0.391,1.414,0s0.391,1.023,0,1.414l-6,6C34.012,29.902,33.756,30,33.5,30z"/>
|
||||||
|
<path style="fill:#F29C1F;" d="M39.5,24c-0.256,0-0.512-0.098-0.707-0.293l-6-6c-0.391-0.391-0.391-1.023,0-1.414
|
||||||
|
s1.023-0.391,1.414,0l6,6c0.391,0.391,0.391,1.023,0,1.414C40.012,23.902,39.756,24,39.5,24z"/>
|
||||||
|
<path style="fill:#F29C1F;" d="M24.5,32c-0.11,0-0.223-0.019-0.333-0.058c-0.521-0.184-0.794-0.755-0.61-1.276l6-17
|
||||||
|
c0.185-0.521,0.753-0.795,1.276-0.61c0.521,0.184,0.794,0.755,0.61,1.276l-6,17C25.298,31.744,24.912,32,24.5,32z"/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
58
public/assets/app/media/img/files/zip.svg
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<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 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
||||||
|
<g>
|
||||||
|
<path style="fill:#E9E9E0;" d="M36.985,0H7.963C7.155,0,6.5,0.655,6.5,1.926V55c0,0.345,0.655,1,1.463,1h40.074
|
||||||
|
c0.808,0,1.463-0.655,1.463-1V12.978c0-0.696-0.093-0.92-0.257-1.085L37.607,0.257C37.442,0.093,37.218,0,36.985,0z"/>
|
||||||
|
<polygon style="fill:#D9D7CA;" points="37.5,0.151 37.5,12 49.349,12 "/>
|
||||||
|
<path style="fill:#556080;" d="M48.037,56H7.963C7.155,56,6.5,55.345,6.5,54.537V39h43v15.537C49.5,55.345,48.845,56,48.037,56z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFFFFF;" d="M25.266,42.924v1.326l-4.799,7.205l-0.273,0.219h5.072V53h-6.699v-1.326l4.799-7.205l0.287-0.219
|
||||||
|
h-5.086v-1.326H25.266z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M29.271,53h-1.668V42.924h1.668V53z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M33.414,53h-1.641V42.924h2.898c0.428,0,0.852,0.068,1.271,0.205
|
||||||
|
c0.419,0.137,0.795,0.342,1.128,0.615c0.333,0.273,0.602,0.604,0.807,0.991s0.308,0.822,0.308,1.306
|
||||||
|
c0,0.511-0.087,0.973-0.26,1.388c-0.173,0.415-0.415,0.764-0.725,1.046c-0.31,0.282-0.684,0.501-1.121,0.656
|
||||||
|
s-0.921,0.232-1.449,0.232h-1.217V53z M33.414,44.168v3.992h1.504c0.2,0,0.398-0.034,0.595-0.103
|
||||||
|
c0.196-0.068,0.376-0.18,0.54-0.335s0.296-0.371,0.396-0.649c0.1-0.278,0.15-0.622,0.15-1.032c0-0.164-0.023-0.354-0.068-0.567
|
||||||
|
c-0.046-0.214-0.139-0.419-0.28-0.615c-0.142-0.196-0.34-0.36-0.595-0.492c-0.255-0.132-0.593-0.198-1.012-0.198H33.414z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#C8BDB8;" d="M28.5,24v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2
|
||||||
|
h-4v5c0,2.757,2.243,5,5,5s5-2.243,5-5v-5H28.5z M30.5,29c0,1.654-1.346,3-3,3s-3-1.346-3-3v-3h6V29z"/>
|
||||||
|
<path style="fill:#C8BDB8;" d="M26.5,30h2c0.552,0,1-0.447,1-1s-0.448-1-1-1h-2c-0.552,0-1,0.447-1,1S25.948,30,26.5,30z"/>
|
||||||
|
</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>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
53
public/assets/app/media/img/icons/exchange.svg
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?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">
|
||||||
|
<path style="fill:#5D9BEB;" d="M512,256.006C512,397.402,397.394,512.004,256.004,512C114.606,512.004,0,397.402,0,256.006
|
||||||
|
C-0.007,114.61,114.606,0,256.004,0C397.394,0,512,114.614,512,256.006z"/>
|
||||||
|
<path style="fill:#4988DB;" d="M510.768,280.99c-0.112-0.111-0.222-0.224-0.334-0.335c-0.542-0.548-138.178-138.186-138.725-138.725
|
||||||
|
C342.203,112.003,301.25,93.391,256,93.391c-89.665,0-162.609,72.946-162.609,162.609c0,45.246,18.611,86.197,48.537,115.705
|
||||||
|
c0.542,0.549,138.179,138.187,138.73,138.73c0.112,0.113,0.224,0.224,0.336,0.336C402.427,499.007,499.005,402.43,510.768,280.99z"
|
||||||
|
/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F4F6F9;" d="M277.21,305.489h-96.051l30.351-30.351c2.762-2.762,2.762-7.235,0-9.997
|
||||||
|
c-2.762-2.762-7.235-2.762-9.997,0l-42.419,42.419c-2.762,2.762-2.762,7.235,0,9.997l42.419,42.419
|
||||||
|
c1.381,1.381,3.189,2.071,4.998,2.071c1.809,0,3.618-0.69,4.998-2.071c2.762-2.762,2.762-7.235,0-9.997l-30.351-30.351h96.051
|
||||||
|
c3.908,0,7.07-3.166,7.07-7.07C284.279,308.655,281.118,305.489,277.21,305.489z"/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M310.489,152.022c-2.762-2.762-7.235-2.762-9.997,0c-2.762,2.762-2.762,7.235,0,9.997l30.351,30.351
|
||||||
|
h-96.051c-3.908,0-7.07,3.166-7.07,7.07s3.162,7.07,7.07,7.07h96.051l-30.351,30.351c-2.762,2.762-2.762,7.235,0,9.997
|
||||||
|
c1.381,1.381,3.189,2.071,4.998,2.071s3.618-0.69,4.998-2.071l42.419-42.419c2.762-2.762,2.762-7.235,0-9.997L310.489,152.022z"/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M256,93.392c-89.665,0-162.608,72.946-162.608,162.608S166.335,418.608,256,418.608
|
||||||
|
S418.608,345.662,418.608,256S345.665,93.392,256,93.392z M256,404.468c-81.863,0-148.468-66.602-148.468-148.468
|
||||||
|
S174.137,107.532,256,107.532S404.468,174.133,404.468,256S337.863,404.468,256,404.468z"/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
51
public/assets/app/media/img/icons/logout.svg
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
<?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.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
|
||||||
|
<path style="fill:#5D9BEB;" d="M0.001,256.006c0,141.395,114.606,255.998,255.996,255.994
|
||||||
|
c141.398,0.004,256.004-114.598,256.004-255.994C512.009,114.61,397.395,0,255.996,0C114.606,0,0.001,114.614,0.001,256.006z"/>
|
||||||
|
<path style="fill:#4988DB;" d="M504.406,317.975c-0.228-0.213-212.195-212.38-212.837-212.837c-0.455-0.641-0.992-1.175-1.633-1.632
|
||||||
|
c-1.281-1.796-3.279-3.044-5.655-3.044H100.461c-3.907,0-7.07,3.166-7.07,7.07v296.937c0,2.377,1.249,4.377,3.046,5.659
|
||||||
|
c0.457,0.641,92.388,92.572,93.028,93.028c0.026,0.035,0.065,0.055,0.09,0.09c21.194,5.68,43.453,8.756,66.441,8.756
|
||||||
|
C376.019,512.003,476.696,429.417,504.406,317.975z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F4F6F9;" d="M284.28,340.839c-3.908,0-7.07,3.166-7.07,7.07v49.489H107.532V114.602H277.21v49.489
|
||||||
|
c0,3.904,3.163,7.07,7.07,7.07c3.908,0,7.07-3.166,7.07-7.07v-56.559c0-3.904-3.162-7.07-7.07-7.07H100.462
|
||||||
|
c-3.908,0-7.07,3.166-7.07,7.07v296.938c0,3.904,3.163,7.07,7.07,7.07h183.819c3.908,0,7.07-3.166,7.07-7.07V347.91
|
||||||
|
C291.35,344.004,288.188,340.839,284.28,340.839z"/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M416.538,251.002l-70.7-70.7c-2.762-2.762-7.235-2.762-9.997,0c-2.762,2.762-2.762,7.235,0,9.997
|
||||||
|
l58.63,58.63H178.231c-3.908,0-7.07,3.166-7.07,7.07c0,3.904,3.163,7.07,7.07,7.07h216.24l-58.63,58.63
|
||||||
|
c-2.762,2.762-2.762,7.235,0,9.997c1.381,1.381,3.189,2.071,4.998,2.071s3.618-0.69,4.998-2.071l70.7-70.7
|
||||||
|
C419.3,258.237,419.3,253.763,416.538,251.002z"/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
55
public/assets/app/media/img/icons/question.svg
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
<?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">
|
||||||
|
<path style="fill:#5D9BEB;" d="M0,256.006C0,397.402,114.606,512.004,255.996,512C397.394,512.004,512,397.402,512,256.006
|
||||||
|
C512.009,114.61,397.394,0,255.996,0C114.606,0,0,114.614,0,256.006z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#4988DB;" d="M508.399,298.651c-0.342-0.339-176.863-176.847-177.353-177.353
|
||||||
|
c-18.14-19.633-45.642-32.186-76.388-32.186c-53.911,0-96.144,37.836-96.144,86.135c0,2.37,1.223,4.371,2.995,5.678
|
||||||
|
c0.427,0.579,90.045,90.322,90.318,90.59v68.825c0,2.372,1.223,4.372,2.995,5.679c0.427,0.579,129.424,129.575,130.002,130.002
|
||||||
|
c0.213,0.29,0.5,0.5,0.749,0.749C449.522,439.161,495.659,374.591,508.399,298.651z"/>
|
||||||
|
<path style="fill:#4988DB;" d="M269.753,399.274c-2.633-3.058-6.401-5.099-10.749-5.099c-7.936,0-14.355,6.434-14.355,14.355
|
||||||
|
c0,4.355,2.036,8.124,5.093,10.755c0.468,0.545,0.949,1.025,1.494,1.493c0.468,0.545,78.653,78.73,79.198,79.198
|
||||||
|
c0.243,0.284,0.518,0.521,0.777,0.777c9.97-3.059,19.653-6.755,29.063-10.958C359.994,489.507,270.299,399.744,269.753,399.274z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F4F6F9;" d="M259.004,394.175c-7.935,0-14.356,6.434-14.356,14.356c0,7.935,6.421,14.356,14.356,14.356
|
||||||
|
c7.921,0,14.356-6.421,14.356-14.356C273.36,400.609,266.925,394.175,259.004,394.175z"/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M254.658,89.114c-53.911,0-96.145,37.835-96.145,86.135c0,3.964,3.211,7.178,7.178,7.178
|
||||||
|
c3.967,0,7.178-3.214,7.178-7.178c0-40.25,35.924-71.779,81.789-71.779c45.788,0,84.474,33.658,84.474,73.493
|
||||||
|
c0,41.897-34.446,73.49-80.128,73.49c-3.968,0-7.178,3.214-7.178,7.178v82.711c0,3.968,3.211,7.178,7.178,7.178
|
||||||
|
c3.968,0,7.178-3.211,7.178-7.178v-75.772c49.503-3.309,87.306-40.596,87.306-87.607
|
||||||
|
C353.487,128.522,309.151,89.114,254.658,89.114z"/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
59
public/assets/app/media/img/icons/warning.svg
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?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">
|
||||||
|
<path style="fill:#47CEAC;" d="M512,256.006C512,397.402,397.394,512.004,256.004,512C114.606,512.004,0,397.402,0,256.006
|
||||||
|
C-0.007,114.61,114.606,0,256.004,0C397.394,0,512,114.614,512,256.006z"/>
|
||||||
|
<path style="fill:#36BB9A;" d="M511.712,267.373c-0.119-0.137-0.238-0.274-0.368-0.402
|
||||||
|
c-0.223-0.221-132.713-132.715-132.993-132.992c-0.222-0.22-0.47-0.403-0.693-0.621c-0.281-0.282-0.518-0.594-0.801-0.874
|
||||||
|
c-32.27-31.934-75.417-49.161-120.981-48.268c-46.031,0.791-89.349,19.387-121.969,52.361
|
||||||
|
c-32.838,33.193-50.485,76.668-49.694,122.415c0.799,46.023,18.887,88.827,50.934,120.528c0.226,0.223,0.477,0.41,0.703,0.631
|
||||||
|
c0.276,0.277,0.512,0.587,0.791,0.863c0.226,0.223,130.481,130.414,130.707,130.636c0.02,0.02,0.037,0.043,0.058,0.063
|
||||||
|
C399.729,505.913,505.926,399.705,511.712,267.373z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F4F6F9;" points="427.788,253.013 427.788,253.017 427.788,253.017 "/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M255.876,84.217c-46.032,0.791-89.349,19.387-121.969,52.361
|
||||||
|
c-32.838,33.193-50.485,76.668-49.694,122.415c0.799,46.025,18.886,88.828,50.934,120.529
|
||||||
|
c31.558,31.216,73.338,48.297,117.947,48.297c1.01,0,2.028-0.007,3.042-0.026c46.032-0.799,89.346-19.397,121.963-52.371
|
||||||
|
c32.842-33.191,50.484-76.661,49.691-122.404c-0.799-46.028-18.883-88.831-50.93-120.532
|
||||||
|
C344.588,100.55,301.441,83.323,255.876,84.217z M412.847,253.276c0.73,41.68-15.386,81.329-45.367,111.639
|
||||||
|
c-29.862,30.179-69.497,47.206-111.606,47.936c-41.633,0.828-80.833-14.885-110.218-43.953
|
||||||
|
c-29.261-28.94-45.773-68.066-46.502-110.166c-0.725-41.687,15.389-81.34,45.375-111.65
|
||||||
|
c29.862-30.179,69.497-47.202,111.606-47.924c0.933-0.018,1.868-0.026,2.798-0.026c40.641,0,78.691,15.553,107.42,43.971
|
||||||
|
c29.253,28.943,45.765,68.07,46.495,110.17C412.847,253.276,412.847,253.276,412.847,253.276z"/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M256,285.885c4.126,0,7.47-3.345,7.47-7.47V158.892c0-4.126-3.345-7.47-7.47-7.47
|
||||||
|
c-4.126,0-7.47,3.345-7.47,7.47v119.522C248.53,282.54,251.874,285.885,256,285.885z"/>
|
||||||
|
<path style="fill:#F4F6F9;" d="M256.007,315.765h-0.27c-8.241,0-14.821,6.954-14.675,15.195c0.139,8.17,6.798,14.686,14.93,14.686
|
||||||
|
h0.27c8.241,0,14.821-6.954,14.675-15.195C270.791,322.281,264.14,315.765,256.007,315.765z"/>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
BIN
public/assets/app/media/img/logos/logo-1.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
public/assets/app/media/img/logos/logo-2.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
public/assets/app/media/img/logos/logo-3.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
public/assets/app/media/img/misc/notification_bg.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/app/media/img/misc/quick_actions_bg.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
public/assets/app/media/img/misc/user_profile_bg.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/assets/app/media/img/products/product1.jpg
Normal file
|
After Width: | Height: | Size: 124 KiB |
BIN
public/assets/app/media/img/products/product10.jpg
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
public/assets/app/media/img/products/product11.jpg
Normal file
|
After Width: | Height: | Size: 168 KiB |
BIN
public/assets/app/media/img/products/product2.jpg
Normal file
|
After Width: | Height: | Size: 180 KiB |
BIN
public/assets/app/media/img/products/product3.jpg
Normal file
|
After Width: | Height: | Size: 125 KiB |
BIN
public/assets/app/media/img/products/product4.jpg
Normal file
|
After Width: | Height: | Size: 162 KiB |
BIN
public/assets/app/media/img/products/product5.jpg
Normal file
|
After Width: | Height: | Size: 155 KiB |
BIN
public/assets/app/media/img/products/product6.jpg
Normal file
|
After Width: | Height: | Size: 250 KiB |
BIN
public/assets/app/media/img/products/product7.jpg
Normal file
|
After Width: | Height: | Size: 244 KiB |
BIN
public/assets/app/media/img/products/product8.jpg
Normal file
|
After Width: | Height: | Size: 211 KiB |
BIN
public/assets/app/media/img/products/product9.jpg
Normal file
|
After Width: | Height: | Size: 226 KiB |
BIN
public/assets/app/media/img/users/100_1.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/app/media/img/users/100_10.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/app/media/img/users/100_11.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/app/media/img/users/100_12.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/app/media/img/users/100_13.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/assets/app/media/img/users/100_14.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/assets/app/media/img/users/100_2.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/app/media/img/users/100_3.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/app/media/img/users/100_4.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/app/media/img/users/100_5.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/assets/app/media/img/users/100_6.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/app/media/img/users/100_7.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/app/media/img/users/100_8.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/app/media/img/users/100_9.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/app/media/img/users/300_1.jpg
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
public/assets/app/media/img/users/300_10.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
public/assets/app/media/img/users/300_11.jpg
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
public/assets/app/media/img/users/300_12.jpg
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
public/assets/app/media/img/users/300_13.jpg
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
public/assets/app/media/img/users/300_14.jpg
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
public/assets/app/media/img/users/300_2.jpg
Normal file
|
After Width: | Height: | Size: 83 KiB |