feat: add S3-compatible storage provider (MinIO, Ceph, R2, etc.)
Adds a new 'S3-Compatible Storage' provider that works with any
S3-API-compatible object storage service, including MinIO, Ceph,
Cloudflare R2, Backblaze B2, and others.
Changes:
- New provider class: classes/providers/storage/s3-compatible-provider.php
- Provider key: s3compatible
- Reads user-configured endpoint URL from settings
- Uses path-style URL access (required by most S3-compatible services)
- Supports credentials via AS3CF_S3COMPAT_ACCESS_KEY_ID /
AS3CF_S3COMPAT_SECRET_ACCESS_KEY wp-config.php constants
- Disables AWS-specific features (Block Public Access, Object Ownership)
- New provider SVG icons (s3compatible.svg, -link.svg, -round.svg)
- Registered provider in main plugin class with endpoint setting support
- Updated StorageProviderSubPage to show endpoint URL input for S3-compatible
- Built pro settings bundle with rollup (Svelte 4.2.19)
- Added package.json and updated rollup.config.mjs for pro-only builds
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
node_modules/
|
||||
ui/build/
|
||||
*.log
|
||||
.DS_Store
|
||||
117
amazon-s3-and-cloudfront-pro.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: WP Offload Media
|
||||
Plugin URI: https://deliciousbrains.com/wp-offload-media/
|
||||
Update URI: https://deliciousbrains.com/wp-offload-media/
|
||||
Description: Speed up your WordPress site by offloading your media and assets to Amazon S3, DigitalOcean Spaces or Google Cloud Storage and a CDN.
|
||||
Author: Delicious Brains
|
||||
Version: 3.2.12
|
||||
Author URI: https://deliciousbrains.com/
|
||||
Update URI: false
|
||||
Network: True
|
||||
Text Domain: amazon-s3-and-cloudfront
|
||||
Domain Path: /languages/
|
||||
|
||||
// Copyright (c) 2015 Delicious Brains. All rights reserved.
|
||||
//
|
||||
// Released under the GPL license
|
||||
// http://www.opensource.org/licenses/gpl-license.php
|
||||
//
|
||||
// **********************************************************************
|
||||
// This program is distributed in the hope that it will be useful, but
|
||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// **********************************************************************
|
||||
//
|
||||
*/
|
||||
|
||||
// phpcs:disable SlevomatCodingStandard.Variables.UnusedVariable
|
||||
|
||||
if ( ! function_exists( 'as3cf_pro_init' ) ) {
|
||||
// Defines the path to the main plugin file.
|
||||
define( 'AS3CFPRO_FILE', __FILE__ );
|
||||
|
||||
// Defines the path to be used for includes.
|
||||
define( 'AS3CFPRO_PATH', plugin_dir_path( AS3CFPRO_FILE ) );
|
||||
|
||||
require_once AS3CFPRO_PATH . 'version.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-compatibility-check.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-pro-installer.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-pro-plugin-installer.php';
|
||||
|
||||
add_action( 'activated_plugin', array( 'AS3CF_Compatibility_Check', 'deactivate_other_instances' ) );
|
||||
|
||||
global $as3cfpro_compat_check;
|
||||
$as3cfpro_compat_check = new AS3CF_Pro_Installer( AS3CFPRO_FILE );
|
||||
|
||||
/**
|
||||
* @throws Exception
|
||||
*/
|
||||
function as3cf_pro_init() {
|
||||
if ( class_exists( 'Amazon_S3_And_CloudFront_Pro' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
global $as3cfpro_compat_check, $as3cf_compat_check;
|
||||
$as3cf_compat_check = $as3cfpro_compat_check;
|
||||
|
||||
if ( ! $as3cfpro_compat_check->is_compatible() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (
|
||||
method_exists( 'AS3CF_Compatibility_Check', 'is_plugin_active' ) &&
|
||||
$as3cfpro_compat_check->is_plugin_active( 'amazon-s3-and-cloudfront/wordpress-s3.php' )
|
||||
) {
|
||||
// Deactivate WP Offload Lite if activated.
|
||||
AS3CF_Compatibility_Check::deactivate_other_instances( 'amazon-s3-and-cloudfront-pro/amazon-s3-and-cloudfront-pro.php' );
|
||||
}
|
||||
|
||||
global $as3cf, $as3cfpro;
|
||||
|
||||
// Autoloader.
|
||||
require_once AS3CFPRO_PATH . 'wp-offload-media-autoloader.php';
|
||||
new WP_Offload_Media_Autoloader( 'WP_Offload_Media', AS3CFPRO_PATH );
|
||||
|
||||
// Lite files
|
||||
require_once AS3CFPRO_PATH . 'include/functions.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-utils.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-error.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-filter.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/filters/as3cf-local-to-s3.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/filters/as3cf-s3-to-local.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-notices.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-plugin-base.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/as3cf-plugin-compatibility.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/amazon-s3-and-cloudfront.php';
|
||||
// Pro files
|
||||
require_once AS3CFPRO_PATH . 'vendor/deliciousbrains/autoloader.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-pro-licences-updates.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/amazon-s3-and-cloudfront-pro.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-pro-plugin-compatibility.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-pro-utils.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-async-request.php';
|
||||
require_once AS3CFPRO_PATH . 'classes/pro/as3cf-background-process.php';
|
||||
|
||||
// Load settings and core components.
|
||||
$as3cf = new Amazon_S3_And_CloudFront_Pro( AS3CFPRO_FILE );
|
||||
$as3cfpro = $as3cf; // Pro global alias
|
||||
|
||||
// Initialize managers and their registered components.
|
||||
do_action( 'as3cf_init', $as3cf );
|
||||
do_action( 'as3cf_pro_init', $as3cf );
|
||||
|
||||
// Set up initialized components, e.g. add integration hooks.
|
||||
do_action( 'as3cf_setup', $as3cf );
|
||||
do_action( 'as3cf_pro_setup', $as3cf );
|
||||
|
||||
// Plugin is ready to rock, let 3rd parties know.
|
||||
do_action( 'as3cf_ready', $as3cf );
|
||||
do_action( 'as3cf_pro_ready', $as3cf );
|
||||
}
|
||||
|
||||
add_action( 'init', 'as3cf_pro_init' );
|
||||
|
||||
// If AWS still active need to be around to satisfy addon version checks until upgraded.
|
||||
add_action( 'aws_init', 'as3cf_pro_init', 11 );
|
||||
}
|
||||
59
assets/css/attachment.css
Normal file
@@ -0,0 +1,59 @@
|
||||
#s3-actions.postbox .inside {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
#s3-actions.postbox a, #s3-actions.postbox a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
#s3-actions.postbox .s3-details {
|
||||
padding: 6px 0;
|
||||
}
|
||||
#s3-actions.postbox .s3-details .misc-pub-section {
|
||||
clear: both;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#s3-actions.postbox .s3-details .misc-pub-section .s3-key {
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#s3-actions.postbox .s3-details .misc-pub-section .s3-value {
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
}
|
||||
#s3-actions.postbox .s3-details .misc-pub-section .s3-value .more-info {
|
||||
font-weight: lighter;
|
||||
}
|
||||
#s3-actions.postbox .s3-details .misc-pub-section input.error {
|
||||
color: #a00;
|
||||
}
|
||||
#s3-actions.postbox .s3-details .not-copied {
|
||||
color: #666;
|
||||
}
|
||||
#s3-actions.postbox .s3-actions {
|
||||
padding: 10px;
|
||||
clear: both;
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
#s3-actions.postbox .s3-actions .copy-action {
|
||||
text-align: right;
|
||||
float: right;
|
||||
line-height: 23px;
|
||||
}
|
||||
#s3-actions.postbox .s3-actions .remove-action {
|
||||
line-height: 28px;
|
||||
vertical-align: middle;
|
||||
text-align: left;
|
||||
float: left;
|
||||
}
|
||||
#s3-actions.postbox .s3-actions .remove-action a.local-warning {
|
||||
color: #a00;
|
||||
}
|
||||
#s3-actions.postbox .s3-actions .remove-action a.local-warning:hover {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=attachment.css.map */
|
||||
1
assets/css/attachment.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../sass/attachment.scss"],"names":[],"mappings":"AACC;EACC;EACA;;AAGD;EACC;;AAGD;EACC;;AAEA;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAGD;EACC;EACA;;AAEA;EACC;;AAIF;EACC;;AAIF;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;;AAEA;EACC;;AAEA;EACC","file":"attachment.css"}
|
||||
1
assets/css/attachment.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
#s3-actions.postbox .inside{margin:0;padding:0}#s3-actions.postbox a,#s3-actions.postbox a:hover{text-decoration:none}#s3-actions.postbox .s3-details{padding:6px 0}#s3-actions.postbox .s3-details .misc-pub-section{clear:both;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#s3-actions.postbox .s3-details .misc-pub-section .s3-key{display:inline-block;white-space:nowrap}#s3-actions.postbox .s3-details .misc-pub-section .s3-value{display:inline-block;font-weight:700}#s3-actions.postbox .s3-details .misc-pub-section .s3-value .more-info{font-weight:lighter}#s3-actions.postbox .s3-details .misc-pub-section input.error{color:#a00}#s3-actions.postbox .s3-details .not-copied{color:#666}#s3-actions.postbox .s3-actions{padding:10px;clear:both;border-top:1px solid #ddd;border-bottom:1px solid #ddd;background:#f5f5f5}#s3-actions.postbox .s3-actions .copy-action{text-align:right;float:right;line-height:23px}#s3-actions.postbox .s3-actions .remove-action{line-height:28px;vertical-align:middle;text-align:left;float:left}#s3-actions.postbox .s3-actions .remove-action a.local-warning{color:#a00}#s3-actions.postbox .s3-actions .remove-action a.local-warning:hover{color:red}
|
||||
894
assets/css/flexboxgrid.css
Normal file
@@ -0,0 +1,894 @@
|
||||
/* Uncomment and set these variables to customize the grid. */
|
||||
|
||||
.container-fluid {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
padding-right: 2rem;
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
.row {
|
||||
box-sizing: border-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-box;
|
||||
display: flex;
|
||||
-ms-flex: 0 1 auto;
|
||||
-webkit-box-flex: 0;
|
||||
flex: 0 1 auto;
|
||||
-ms-flex-direction: row;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
flex-direction: row;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
margin-right: -1rem;
|
||||
margin-left: -1rem;
|
||||
}
|
||||
|
||||
.row.reverse {
|
||||
-ms-flex-direction: row-reverse;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: reverse;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.col.reverse {
|
||||
-ms-flex-direction: column-reverse;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: reverse;
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
|
||||
.col-xs,
|
||||
.col-xs-1,
|
||||
.col-xs-2,
|
||||
.col-xs-3,
|
||||
.col-xs-4,
|
||||
.col-xs-5,
|
||||
.col-xs-6,
|
||||
.col-xs-7,
|
||||
.col-xs-8,
|
||||
.col-xs-9,
|
||||
.col-xs-10,
|
||||
.col-xs-11,
|
||||
.col-xs-12 {
|
||||
box-sizing: border-box;
|
||||
-ms-flex: 0 0 auto;
|
||||
-webkit-box-flex: 0;
|
||||
flex: 0 0 auto;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.col-xs {
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
-webkit-box-flex: 1;
|
||||
flex-grow: 1;
|
||||
-ms-flex-preferred-size: 0;
|
||||
flex-basis: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-xs-1 {
|
||||
-ms-flex-preferred-size: 8.333%;
|
||||
flex-basis: 8.333%;
|
||||
max-width: 8.333%;
|
||||
}
|
||||
|
||||
.col-xs-2 {
|
||||
-ms-flex-preferred-size: 16.667%;
|
||||
flex-basis: 16.667%;
|
||||
max-width: 16.667%;
|
||||
}
|
||||
|
||||
.col-xs-3 {
|
||||
-ms-flex-preferred-size: 25%;
|
||||
flex-basis: 25%;
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.col-xs-4 {
|
||||
-ms-flex-preferred-size: 33.333%;
|
||||
flex-basis: 33.333%;
|
||||
max-width: 33.333%;
|
||||
}
|
||||
|
||||
.col-xs-5 {
|
||||
-ms-flex-preferred-size: 41.667%;
|
||||
flex-basis: 41.667%;
|
||||
max-width: 41.667%;
|
||||
}
|
||||
|
||||
.col-xs-6 {
|
||||
-ms-flex-preferred-size: 50%;
|
||||
flex-basis: 50%;
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.col-xs-7 {
|
||||
-ms-flex-preferred-size: 58.333%;
|
||||
flex-basis: 58.333%;
|
||||
max-width: 58.333%;
|
||||
}
|
||||
|
||||
.col-xs-8 {
|
||||
-ms-flex-preferred-size: 66.667%;
|
||||
flex-basis: 66.667%;
|
||||
max-width: 66.667%;
|
||||
}
|
||||
|
||||
.col-xs-9 {
|
||||
-ms-flex-preferred-size: 75%;
|
||||
flex-basis: 75%;
|
||||
max-width: 75%;
|
||||
}
|
||||
|
||||
.col-xs-10 {
|
||||
-ms-flex-preferred-size: 83.333%;
|
||||
flex-basis: 83.333%;
|
||||
max-width: 83.333%;
|
||||
}
|
||||
|
||||
.col-xs-11 {
|
||||
-ms-flex-preferred-size: 91.667%;
|
||||
flex-basis: 91.667%;
|
||||
max-width: 91.667%;
|
||||
}
|
||||
|
||||
.col-xs-12 {
|
||||
-ms-flex-preferred-size: 100%;
|
||||
flex-basis: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-xs-offset-1 {
|
||||
margin-left: 8.333%;
|
||||
}
|
||||
|
||||
.col-xs-offset-2 {
|
||||
margin-left: 16.667%;
|
||||
}
|
||||
|
||||
.col-xs-offset-3 {
|
||||
margin-left: 25%;
|
||||
}
|
||||
|
||||
.col-xs-offset-4 {
|
||||
margin-left: 33.333%;
|
||||
}
|
||||
|
||||
.col-xs-offset-5 {
|
||||
margin-left: 41.667%;
|
||||
}
|
||||
|
||||
.col-xs-offset-6 {
|
||||
margin-left: 50%;
|
||||
}
|
||||
|
||||
.col-xs-offset-7 {
|
||||
margin-left: 58.333%;
|
||||
}
|
||||
|
||||
.col-xs-offset-8 {
|
||||
margin-left: 66.667%;
|
||||
}
|
||||
|
||||
.col-xs-offset-9 {
|
||||
margin-left: 75%;
|
||||
}
|
||||
|
||||
.col-xs-offset-10 {
|
||||
margin-left: 83.333%;
|
||||
}
|
||||
|
||||
.col-xs-offset-11 {
|
||||
margin-left: 91.667%;
|
||||
}
|
||||
|
||||
.start-xs {
|
||||
-ms-flex-pack: start;
|
||||
-webkit-box-pack: start;
|
||||
justify-content: flex-start;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.center-xs {
|
||||
-ms-flex-pack: center;
|
||||
-webkit-box-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.end-xs {
|
||||
-ms-flex-pack: end;
|
||||
-webkit-box-pack: end;
|
||||
justify-content: flex-end;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.top-xs {
|
||||
-ms-flex-align: start;
|
||||
-webkit-box-align: start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.middle-xs {
|
||||
-ms-flex-align: center;
|
||||
-webkit-box-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.bottom-xs {
|
||||
-ms-flex-align: end;
|
||||
-webkit-box-align: end;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.around-xs {
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.between-xs {
|
||||
-ms-flex-pack: justify;
|
||||
-webkit-box-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.first-xs {
|
||||
-ms-flex-order: -1;
|
||||
-webkit-box-ordinal-group: 0;
|
||||
order: -1;
|
||||
}
|
||||
|
||||
.last-xs {
|
||||
-ms-flex-order: 1;
|
||||
-webkit-box-ordinal-group: 2;
|
||||
order: 1;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 48em) {
|
||||
.container {
|
||||
width: 46rem;
|
||||
}
|
||||
|
||||
.col-sm,
|
||||
.col-sm-1,
|
||||
.col-sm-2,
|
||||
.col-sm-3,
|
||||
.col-sm-4,
|
||||
.col-sm-5,
|
||||
.col-sm-6,
|
||||
.col-sm-7,
|
||||
.col-sm-8,
|
||||
.col-sm-9,
|
||||
.col-sm-10,
|
||||
.col-sm-11,
|
||||
.col-sm-12 {
|
||||
box-sizing: border-box;
|
||||
-ms-flex: 0 0 auto;
|
||||
-webkit-box-flex: 0;
|
||||
flex: 0 0 auto;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.col-sm {
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
-webkit-box-flex: 1;
|
||||
flex-grow: 1;
|
||||
-ms-flex-preferred-size: 0;
|
||||
flex-basis: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-sm-1 {
|
||||
-ms-flex-preferred-size: 8.333%;
|
||||
flex-basis: 8.333%;
|
||||
max-width: 8.333%;
|
||||
}
|
||||
|
||||
.col-sm-2 {
|
||||
-ms-flex-preferred-size: 16.667%;
|
||||
flex-basis: 16.667%;
|
||||
max-width: 16.667%;
|
||||
}
|
||||
|
||||
.col-sm-3 {
|
||||
-ms-flex-preferred-size: 25%;
|
||||
flex-basis: 25%;
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.col-sm-4 {
|
||||
-ms-flex-preferred-size: 33.333%;
|
||||
flex-basis: 33.333%;
|
||||
max-width: 33.333%;
|
||||
}
|
||||
|
||||
.col-sm-5 {
|
||||
-ms-flex-preferred-size: 41.667%;
|
||||
flex-basis: 41.667%;
|
||||
max-width: 41.667%;
|
||||
}
|
||||
|
||||
.col-sm-6 {
|
||||
-ms-flex-preferred-size: 50%;
|
||||
flex-basis: 50%;
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.col-sm-7 {
|
||||
-ms-flex-preferred-size: 58.333%;
|
||||
flex-basis: 58.333%;
|
||||
max-width: 58.333%;
|
||||
}
|
||||
|
||||
.col-sm-8 {
|
||||
-ms-flex-preferred-size: 66.667%;
|
||||
flex-basis: 66.667%;
|
||||
max-width: 66.667%;
|
||||
}
|
||||
|
||||
.col-sm-9 {
|
||||
-ms-flex-preferred-size: 75%;
|
||||
flex-basis: 75%;
|
||||
max-width: 75%;
|
||||
}
|
||||
|
||||
.col-sm-10 {
|
||||
-ms-flex-preferred-size: 83.333%;
|
||||
flex-basis: 83.333%;
|
||||
max-width: 83.333%;
|
||||
}
|
||||
|
||||
.col-sm-11 {
|
||||
-ms-flex-preferred-size: 91.667%;
|
||||
flex-basis: 91.667%;
|
||||
max-width: 91.667%;
|
||||
}
|
||||
|
||||
.col-sm-12 {
|
||||
-ms-flex-preferred-size: 100%;
|
||||
flex-basis: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-sm-offset-1 {
|
||||
margin-left: 8.333%;
|
||||
}
|
||||
|
||||
.col-sm-offset-2 {
|
||||
margin-left: 16.667%;
|
||||
}
|
||||
|
||||
.col-sm-offset-3 {
|
||||
margin-left: 25%;
|
||||
}
|
||||
|
||||
.col-sm-offset-4 {
|
||||
margin-left: 33.333%;
|
||||
}
|
||||
|
||||
.col-sm-offset-5 {
|
||||
margin-left: 41.667%;
|
||||
}
|
||||
|
||||
.col-sm-offset-6 {
|
||||
margin-left: 50%;
|
||||
}
|
||||
|
||||
.col-sm-offset-7 {
|
||||
margin-left: 58.333%;
|
||||
}
|
||||
|
||||
.col-sm-offset-8 {
|
||||
margin-left: 66.667%;
|
||||
}
|
||||
|
||||
.col-sm-offset-9 {
|
||||
margin-left: 75%;
|
||||
}
|
||||
|
||||
.col-sm-offset-10 {
|
||||
margin-left: 83.333%;
|
||||
}
|
||||
|
||||
.col-sm-offset-11 {
|
||||
margin-left: 91.667%;
|
||||
}
|
||||
|
||||
.start-sm {
|
||||
-ms-flex-pack: start;
|
||||
-webkit-box-pack: start;
|
||||
justify-content: flex-start;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.center-sm {
|
||||
-ms-flex-pack: center;
|
||||
-webkit-box-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.end-sm {
|
||||
-ms-flex-pack: end;
|
||||
-webkit-box-pack: end;
|
||||
justify-content: flex-end;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.top-sm {
|
||||
-ms-flex-align: start;
|
||||
-webkit-box-align: start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.middle-sm {
|
||||
-ms-flex-align: center;
|
||||
-webkit-box-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.bottom-sm {
|
||||
-ms-flex-align: end;
|
||||
-webkit-box-align: end;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.around-sm {
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.between-sm {
|
||||
-ms-flex-pack: justify;
|
||||
-webkit-box-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.first-sm {
|
||||
-ms-flex-order: -1;
|
||||
-webkit-box-ordinal-group: 0;
|
||||
order: -1;
|
||||
}
|
||||
|
||||
.last-sm {
|
||||
-ms-flex-order: 1;
|
||||
-webkit-box-ordinal-group: 2;
|
||||
order: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 62em) {
|
||||
.container {
|
||||
width: 61rem;
|
||||
}
|
||||
|
||||
.col-md,
|
||||
.col-md-1,
|
||||
.col-md-2,
|
||||
.col-md-3,
|
||||
.col-md-4,
|
||||
.col-md-5,
|
||||
.col-md-6,
|
||||
.col-md-7,
|
||||
.col-md-8,
|
||||
.col-md-9,
|
||||
.col-md-10,
|
||||
.col-md-11,
|
||||
.col-md-12 {
|
||||
box-sizing: border-box;
|
||||
-ms-flex: 0 0 auto;
|
||||
-webkit-box-flex: 0;
|
||||
flex: 0 0 auto;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.col-md {
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
-webkit-box-flex: 1;
|
||||
flex-grow: 1;
|
||||
-ms-flex-preferred-size: 0;
|
||||
flex-basis: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-md-1 {
|
||||
-ms-flex-preferred-size: 8.333%;
|
||||
flex-basis: 8.333%;
|
||||
max-width: 8.333%;
|
||||
}
|
||||
|
||||
.col-md-2 {
|
||||
-ms-flex-preferred-size: 16.667%;
|
||||
flex-basis: 16.667%;
|
||||
max-width: 16.667%;
|
||||
}
|
||||
|
||||
.col-md-3 {
|
||||
-ms-flex-preferred-size: 25%;
|
||||
flex-basis: 25%;
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.col-md-4 {
|
||||
-ms-flex-preferred-size: 33.333%;
|
||||
flex-basis: 33.333%;
|
||||
max-width: 33.333%;
|
||||
}
|
||||
|
||||
.col-md-5 {
|
||||
-ms-flex-preferred-size: 41.667%;
|
||||
flex-basis: 41.667%;
|
||||
max-width: 41.667%;
|
||||
}
|
||||
|
||||
.col-md-6 {
|
||||
-ms-flex-preferred-size: 50%;
|
||||
flex-basis: 50%;
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.col-md-7 {
|
||||
-ms-flex-preferred-size: 58.333%;
|
||||
flex-basis: 58.333%;
|
||||
max-width: 58.333%;
|
||||
}
|
||||
|
||||
.col-md-8 {
|
||||
-ms-flex-preferred-size: 66.667%;
|
||||
flex-basis: 66.667%;
|
||||
max-width: 66.667%;
|
||||
}
|
||||
|
||||
.col-md-9 {
|
||||
-ms-flex-preferred-size: 75%;
|
||||
flex-basis: 75%;
|
||||
max-width: 75%;
|
||||
}
|
||||
|
||||
.col-md-10 {
|
||||
-ms-flex-preferred-size: 83.333%;
|
||||
flex-basis: 83.333%;
|
||||
max-width: 83.333%;
|
||||
}
|
||||
|
||||
.col-md-11 {
|
||||
-ms-flex-preferred-size: 91.667%;
|
||||
flex-basis: 91.667%;
|
||||
max-width: 91.667%;
|
||||
}
|
||||
|
||||
.col-md-12 {
|
||||
-ms-flex-preferred-size: 100%;
|
||||
flex-basis: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-md-offset-1 {
|
||||
margin-left: 8.333%;
|
||||
}
|
||||
|
||||
.col-md-offset-2 {
|
||||
margin-left: 16.667%;
|
||||
}
|
||||
|
||||
.col-md-offset-3 {
|
||||
margin-left: 25%;
|
||||
}
|
||||
|
||||
.col-md-offset-4 {
|
||||
margin-left: 33.333%;
|
||||
}
|
||||
|
||||
.col-md-offset-5 {
|
||||
margin-left: 41.667%;
|
||||
}
|
||||
|
||||
.col-md-offset-6 {
|
||||
margin-left: 50%;
|
||||
}
|
||||
|
||||
.col-md-offset-7 {
|
||||
margin-left: 58.333%;
|
||||
}
|
||||
|
||||
.col-md-offset-8 {
|
||||
margin-left: 66.667%;
|
||||
}
|
||||
|
||||
.col-md-offset-9 {
|
||||
margin-left: 75%;
|
||||
}
|
||||
|
||||
.col-md-offset-10 {
|
||||
margin-left: 83.333%;
|
||||
}
|
||||
|
||||
.col-md-offset-11 {
|
||||
margin-left: 91.667%;
|
||||
}
|
||||
|
||||
.start-md {
|
||||
-ms-flex-pack: start;
|
||||
-webkit-box-pack: start;
|
||||
justify-content: flex-start;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.center-md {
|
||||
-ms-flex-pack: center;
|
||||
-webkit-box-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.end-md {
|
||||
-ms-flex-pack: end;
|
||||
-webkit-box-pack: end;
|
||||
justify-content: flex-end;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.top-md {
|
||||
-ms-flex-align: start;
|
||||
-webkit-box-align: start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.middle-md {
|
||||
-ms-flex-align: center;
|
||||
-webkit-box-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.bottom-md {
|
||||
-ms-flex-align: end;
|
||||
-webkit-box-align: end;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.around-md {
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.between-md {
|
||||
-ms-flex-pack: justify;
|
||||
-webkit-box-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.first-md {
|
||||
-ms-flex-order: -1;
|
||||
-webkit-box-ordinal-group: 0;
|
||||
order: -1;
|
||||
}
|
||||
|
||||
.last-md {
|
||||
-ms-flex-order: 1;
|
||||
-webkit-box-ordinal-group: 2;
|
||||
order: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 75em) {
|
||||
.container {
|
||||
width: 71rem;
|
||||
}
|
||||
|
||||
.col-lg,
|
||||
.col-lg-1,
|
||||
.col-lg-2,
|
||||
.col-lg-3,
|
||||
.col-lg-4,
|
||||
.col-lg-5,
|
||||
.col-lg-6,
|
||||
.col-lg-7,
|
||||
.col-lg-8,
|
||||
.col-lg-9,
|
||||
.col-lg-10,
|
||||
.col-lg-11,
|
||||
.col-lg-12 {
|
||||
box-sizing: border-box;
|
||||
-ms-flex: 0 0 auto;
|
||||
-webkit-box-flex: 0;
|
||||
flex: 0 0 auto;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.col-lg {
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
-webkit-box-flex: 1;
|
||||
flex-grow: 1;
|
||||
-ms-flex-preferred-size: 0;
|
||||
flex-basis: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-lg-1 {
|
||||
-ms-flex-preferred-size: 8.333%;
|
||||
flex-basis: 8.333%;
|
||||
max-width: 8.333%;
|
||||
}
|
||||
|
||||
.col-lg-2 {
|
||||
-ms-flex-preferred-size: 16.667%;
|
||||
flex-basis: 16.667%;
|
||||
max-width: 16.667%;
|
||||
}
|
||||
|
||||
.col-lg-3 {
|
||||
-ms-flex-preferred-size: 25%;
|
||||
flex-basis: 25%;
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.col-lg-4 {
|
||||
-ms-flex-preferred-size: 33.333%;
|
||||
flex-basis: 33.333%;
|
||||
max-width: 33.333%;
|
||||
}
|
||||
|
||||
.col-lg-5 {
|
||||
-ms-flex-preferred-size: 41.667%;
|
||||
flex-basis: 41.667%;
|
||||
max-width: 41.667%;
|
||||
}
|
||||
|
||||
.col-lg-6 {
|
||||
-ms-flex-preferred-size: 50%;
|
||||
flex-basis: 50%;
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.col-lg-7 {
|
||||
-ms-flex-preferred-size: 58.333%;
|
||||
flex-basis: 58.333%;
|
||||
max-width: 58.333%;
|
||||
}
|
||||
|
||||
.col-lg-8 {
|
||||
-ms-flex-preferred-size: 66.667%;
|
||||
flex-basis: 66.667%;
|
||||
max-width: 66.667%;
|
||||
}
|
||||
|
||||
.col-lg-9 {
|
||||
-ms-flex-preferred-size: 75%;
|
||||
flex-basis: 75%;
|
||||
max-width: 75%;
|
||||
}
|
||||
|
||||
.col-lg-10 {
|
||||
-ms-flex-preferred-size: 83.333%;
|
||||
flex-basis: 83.333%;
|
||||
max-width: 83.333%;
|
||||
}
|
||||
|
||||
.col-lg-11 {
|
||||
-ms-flex-preferred-size: 91.667%;
|
||||
flex-basis: 91.667%;
|
||||
max-width: 91.667%;
|
||||
}
|
||||
|
||||
.col-lg-12 {
|
||||
-ms-flex-preferred-size: 100%;
|
||||
flex-basis: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.col-lg-offset-1 {
|
||||
margin-left: 8.333%;
|
||||
}
|
||||
|
||||
.col-lg-offset-2 {
|
||||
margin-left: 16.667%;
|
||||
}
|
||||
|
||||
.col-lg-offset-3 {
|
||||
margin-left: 25%;
|
||||
}
|
||||
|
||||
.col-lg-offset-4 {
|
||||
margin-left: 33.333%;
|
||||
}
|
||||
|
||||
.col-lg-offset-5 {
|
||||
margin-left: 41.667%;
|
||||
}
|
||||
|
||||
.col-lg-offset-6 {
|
||||
margin-left: 50%;
|
||||
}
|
||||
|
||||
.col-lg-offset-7 {
|
||||
margin-left: 58.333%;
|
||||
}
|
||||
|
||||
.col-lg-offset-8 {
|
||||
margin-left: 66.667%;
|
||||
}
|
||||
|
||||
.col-lg-offset-9 {
|
||||
margin-left: 75%;
|
||||
}
|
||||
|
||||
.col-lg-offset-10 {
|
||||
margin-left: 83.333%;
|
||||
}
|
||||
|
||||
.col-lg-offset-11 {
|
||||
margin-left: 91.667%;
|
||||
}
|
||||
|
||||
.start-lg {
|
||||
-ms-flex-pack: start;
|
||||
-webkit-box-pack: start;
|
||||
justify-content: flex-start;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.center-lg {
|
||||
-ms-flex-pack: center;
|
||||
-webkit-box-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.end-lg {
|
||||
-ms-flex-pack: end;
|
||||
-webkit-box-pack: end;
|
||||
justify-content: flex-end;
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.top-lg {
|
||||
-ms-flex-align: start;
|
||||
-webkit-box-align: start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.middle-lg {
|
||||
-ms-flex-align: center;
|
||||
-webkit-box-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.bottom-lg {
|
||||
-ms-flex-align: end;
|
||||
-webkit-box-align: end;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.around-lg {
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.between-lg {
|
||||
-ms-flex-pack: justify;
|
||||
-webkit-box-pack: justify;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.first-lg {
|
||||
-ms-flex-order: -1;
|
||||
-webkit-box-ordinal-group: 0;
|
||||
order: -1;
|
||||
}
|
||||
|
||||
.last-lg {
|
||||
-ms-flex-order: 1;
|
||||
-webkit-box-ordinal-group: 2;
|
||||
order: 1;
|
||||
}
|
||||
}
|
||||
1
assets/css/flexboxgrid.min.css
vendored
Normal file
128
assets/css/media.css
Normal file
@@ -0,0 +1,128 @@
|
||||
body.as3cf-pro .media-toolbar-mode-select {
|
||||
overflow: visible;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary {
|
||||
max-width: 100%;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons {
|
||||
margin-right: 10px;
|
||||
position: relative;
|
||||
display: none !important;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons.visible {
|
||||
display: inline-block !important;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons .button {
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
}
|
||||
@media screen and (max-width: 782px) {
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons .button {
|
||||
min-height: 40px;
|
||||
}
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action-default {
|
||||
width: calc(100% - 32px);
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle {
|
||||
width: 32px;
|
||||
position: relative;
|
||||
border-left: 1px solid rgba(255, 255, 255, 0.2);
|
||||
z-index: 2;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle::after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
vertical-align: 0.255em;
|
||||
border-top: 0.3em solid;
|
||||
border-right: 0.3em solid transparent;
|
||||
border-bottom: 0;
|
||||
border-left: 0.3em solid transparent;
|
||||
transition: 0.2s all ease;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle.opened::after {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__submenu {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
transform: translateY(33px);
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
@media screen and (max-width: 782px) {
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__submenu {
|
||||
transform: translateY(41px);
|
||||
}
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
text-align-last: left;
|
||||
border: none;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action:last-child {
|
||||
border: none;
|
||||
}
|
||||
body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.as3cfpro_remove a.local-warning {
|
||||
color: #a00;
|
||||
}
|
||||
.as3cfpro_remove a.local-warning:hover {
|
||||
color: #f00;
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.media-modal a.local-warning {
|
||||
color: #bc0b0b;
|
||||
}
|
||||
.media-modal a.local-warning:hover {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.attachment-info .attachment-s3-details {
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.table-view-list.media th.column-as3cf_bucket {
|
||||
width: 11%;
|
||||
}
|
||||
|
||||
.table-view-list.media th.column-as3cf_access {
|
||||
width: 8%;
|
||||
}
|
||||
|
||||
.table-view-list.media .row-actions span.as3cf-warning:before {
|
||||
background: url(../img/icon/error.svg) no-repeat;
|
||||
background-size: 18px;
|
||||
content: "";
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin: 1px 1px 0 -3px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.table-view-list.media .row-actions span.as3cf-warning {
|
||||
color: #50575e;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=media.css.map */
|
||||
1
assets/css/media.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../sass/media.scss"],"names":[],"mappings":"AACC;EACC;;AAGD;EACC;;AAEA;EACC;EACA;EACA;;AAEA;EACC;;AAGD;EACC;EACA;;AAEA;EAJD;IAKE;;;AAKH;EACC;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;;AAEA;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACC;;AAKH;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVD;IAWE;;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAGD;EACC;;;AAMJ;EACC;;AAEA;EACC;EACA;EACA;;;AAIF;EACC;;AAEA;EACC;;;AAIF;EACC;EACA;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGD;EACC","file":"media.css"}
|
||||
1
assets/css/media.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
body.as3cf-pro .media-toolbar-mode-select{overflow:visible}body.as3cf-pro .attachments-browser .media-toolbar-secondary{max-width:100%}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons{margin-right:10px;position:relative;display:none!important}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons.visible{display:inline-block!important}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons .button{margin:0;text-align:left}@media screen and (max-width:782px){body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons .button{min-height:40px}}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action-default{width:calc(100% - 32px);position:relative;z-index:2}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle{width:32px;position:relative;border-left:1px solid rgba(255,255,255,.2);z-index:2}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle:focus{box-shadow:none}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle::after{content:"";display:inline-block;width:0;height:0;vertical-align:.255em;border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent;transition:.2s all ease}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__toggle.opened::after{transform:rotate(180deg)}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__submenu{position:absolute;left:0;top:0;z-index:1;transform:translateY(33px);border-radius:3px;overflow:hidden;box-shadow:0 2px 5px 2px rgba(0,0,0,.3)}@media screen and (max-width:782px){body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__submenu{transform:translateY(41px)}}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action{display:block;width:100%;margin:0;border-radius:0;text-align-last:left;border:none;border-bottom:1px solid rgba(255,255,255,.2)}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action:last-child{border:none}body.as3cf-pro .attachments-browser .media-toolbar-secondary .offload-buttons__action:focus{box-shadow:none}.as3cfpro_remove a.local-warning{color:#a00}.as3cfpro_remove a.local-warning:hover{color:red;text-decoration:none;border:none}.media-modal a.local-warning{color:#bc0b0b}.media-modal a.local-warning:hover{color:red}.attachment-info .attachment-s3-details{font-weight:700;margin-bottom:5px}.table-view-list.media th.column-as3cf_bucket{width:11%}.table-view-list.media th.column-as3cf_access{width:8%}.table-view-list.media .row-actions span.as3cf-warning:before{background:url(../img/icon/error.svg) no-repeat;background-size:18px;content:"";display:block;width:18px;height:18px;margin:1px 1px 0 -3px;float:left}.table-view-list.media .row-actions span.as3cf-warning{color:#50575e}
|
||||
73
assets/css/modal.css
Normal file
@@ -0,0 +1,73 @@
|
||||
/**
|
||||
* Modals
|
||||
*/
|
||||
#as3cf-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
z-index: 999999;
|
||||
}
|
||||
|
||||
#as3cf-modal {
|
||||
display: none;
|
||||
position: relative;
|
||||
width: 600px;
|
||||
margin: 100px auto;
|
||||
padding: 30px;
|
||||
background-color: #eee;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
font-size: 14px;
|
||||
overflow: hidden;
|
||||
z-index: 100000;
|
||||
}
|
||||
#as3cf-modal .close-as3cf-modal {
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
font-family: "Times New Roman", serif;
|
||||
font-size: 26px;
|
||||
font-weight: 200;
|
||||
position: absolute;
|
||||
right: 18px;
|
||||
top: 18px;
|
||||
}
|
||||
#as3cf-modal .close-as3cf-modal:hover {
|
||||
color: #666;
|
||||
}
|
||||
#as3cf-modal h3 {
|
||||
margin: 0 0 20px;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
}
|
||||
#as3cf-modal .error,
|
||||
#as3cf-modal .notice,
|
||||
#as3cf-modal .updated {
|
||||
margin: 0 0 20px;
|
||||
}
|
||||
#as3cf-modal .actions {
|
||||
margin: 20px -30px -30px;
|
||||
padding: 20px 30px;
|
||||
border-top: none;
|
||||
background-color: #e3e3e3;
|
||||
overflow: hidden;
|
||||
}
|
||||
#as3cf-modal .actions .right {
|
||||
margin-left: 15px;
|
||||
}
|
||||
#as3cf-modal .actions .right:last-of-type {
|
||||
margin-left: 0;
|
||||
}
|
||||
#as3cf-modal .actions button {
|
||||
min-width: 90px;
|
||||
}
|
||||
|
||||
body.as3cf-modal-open {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=modal.css.map */
|
||||
1
assets/css/modal.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../sass/modal.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAGA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAIF;EACC;EACA;EACA;;AAGD;AAAA;AAAA;EAGC;;AAGD;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAEA;EACC;;AAIF;EACC;;;AAKH;EACC","file":"modal.css"}
|
||||
1
assets/css/modal.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
#as3cf-overlay{display:none;position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);overflow:hidden;overflow-y:auto;z-index:999999}#as3cf-modal{display:none;position:relative;width:600px;margin:100px auto;padding:30px;background-color:#eee;box-shadow:0 0 10px rgba(0,0,0,.5);font-size:14px;overflow:hidden;z-index:100000}#as3cf-modal .close-as3cf-modal{color:#999;cursor:pointer;font-family:"Times New Roman",serif;font-size:26px;font-weight:200;position:absolute;right:18px;top:18px}#as3cf-modal .close-as3cf-modal:hover{color:#666}#as3cf-modal h3{margin:0 0 20px;font-weight:400;line-height:1}#as3cf-modal .error,#as3cf-modal .notice,#as3cf-modal .updated{margin:0 0 20px}#as3cf-modal .actions{margin:20px -30px -30px;padding:20px 30px;border-top:none;background-color:#e3e3e3;overflow:hidden}#as3cf-modal .actions .right{margin-left:15px}#as3cf-modal .actions .right:last-of-type{margin-left:0}#as3cf-modal .actions button{min-width:90px}body.as3cf-modal-open{overflow:hidden}
|
||||
349
assets/css/normalize.css
vendored
Normal file
@@ -0,0 +1,349 @@
|
||||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the `main` element consistently in IE.
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background on active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57-
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers.
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE 10+.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10.
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10+.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
1
assets/css/normalize.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
|
||||
16
assets/css/notice.css
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Common as3cf-notice styles.
|
||||
*/
|
||||
.as3cf-notice p,
|
||||
.as3cf-compatibility-notice p {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent WP from adding the circular arrow icon to all P tags inside the notice html.
|
||||
*/
|
||||
.as3cf-licence-notice p:not(.as3cf-before):before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=notice.css.map */
|
||||
1
assets/css/notice.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../sass/notice.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAKC;AAAA;EACC;;;AAIF;AAAA;AAAA;AAGA;EACC","file":"notice.css"}
|
||||
1
assets/css/notice.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.as3cf-compatibility-notice p,.as3cf-notice p{max-width:800px}.as3cf-licence-notice p:not(.as3cf-before):before{display:none}
|
||||
10
assets/css/pro/settings.css
Normal file
@@ -0,0 +1,10 @@
|
||||
.notice-icon-wrapper.svelte-jtkdoa{display:inline-block;min-width:1.1875rem}.notice-icon.svelte-jtkdoa{margin-left:2px;margin-top:-1.5px;vertical-align:middle}
|
||||
.panel-row.svelte-41r5oq.svelte-41r5oq{position:relative}.header.svelte-41r5oq .gradient.svelte-41r5oq{position:absolute;width:144px;left:0;top:0;bottom:0;transform:matrix(-1, 0, 0, 1, 0, 0);border-top-right-radius:5px}
|
||||
.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}
|
||||
#as3cf-settings.wpome div.panel.settings .header img.svelte-cn9mf.svelte-cn9mf{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-cn9mf.svelte-cn9mf{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-cn9mf h3.svelte-cn9mf{margin-left:0;margin-bottom:0.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf.svelte-cn9mf{display:flex;align-items:center;font-size:0.75rem}.console-details.svelte-cn9mf .console.svelte-cn9mf{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf a[target="_blank"].console.svelte-cn9mf:after{margin-right:0}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf .region.svelte-cn9mf{flex:1 0 auto;color:var(--as3cf-color-gray-500);margin:0 0.5rem}
|
||||
div.check-again.svelte-1oue4lo.svelte-1oue4lo{display:flex;flex-direction:column;align-items:flex-end;white-space:nowrap;min-width:6rem;padding-left:0.5rem;color:var(--as3cf-color-gray-700)}#as3cf-settings .check-again.svelte-1oue4lo .last-update.svelte-1oue4lo{padding-right:2px;margin-top:2px}
|
||||
.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}
|
||||
#as3cf-settings.wpome div.panel.settings .header img.svelte-sglpwv.svelte-sglpwv{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-sglpwv.svelte-sglpwv{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-sglpwv h3.svelte-sglpwv{margin-left:0;margin-bottom:0.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv.svelte-sglpwv{display:flex;align-items:center;font-size:0.75rem}.console-details.svelte-sglpwv .console.svelte-sglpwv{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv a[target="_blank"].console.svelte-sglpwv:after{margin-right:0}
|
||||
#as3cf-settings.wpome div.panel.settings .header img.svelte-1m7cok0.svelte-1m7cok0{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.assets-details.svelte-1m7cok0.svelte-1m7cok0{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .assets-details.svelte-1m7cok0 h3.svelte-1m7cok0{margin-left:0;margin-bottom:0.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-1m7cok0.svelte-1m7cok0{display:flex;align-items:center;color:var(--as3cf-color-gray-600);font-size:0.75rem}
|
||||
.content.svelte-5j10or.svelte-5j10or{padding:1.875rem 2.25rem 1.5rem 2.25rem;display:flex;flex-direction:column}.heading.svelte-5j10or.svelte-5j10or{margin-top:1rem;font-weight:700;font-size:1.125rem;line-height:140%}.description.svelte-5j10or.svelte-5j10or{margin-top:1rem;color:rgba(56, 54, 55, 0.7)}.benefits.svelte-5j10or.svelte-5j10or{margin-top:1.7rem;color:rgba(56, 54, 55, 0.7)}.benefits.svelte-5j10or li.svelte-5j10or{display:flex;align-items:center}.benefits.svelte-5j10or img.svelte-5j10or{height:40px;margin-left:-5px;margin-right:10px}.call-to-action.svelte-5j10or.svelte-5j10or{margin-top:0.7rem}.call-to-action.svelte-5j10or .note.svelte-5j10or{text-align:center}
|
||||
.nav-status-wrapper.svelte-1i784er{position:relative}
|
||||
1
assets/css/pro/settings.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.notice-icon-wrapper.svelte-jtkdoa{display:inline-block;min-width:1.1875rem}.notice-icon.svelte-jtkdoa{margin-left:2px;margin-top:-1.5px;vertical-align:middle}.panel-row.svelte-41r5oq.svelte-41r5oq{position:relative}.header.svelte-41r5oq .gradient.svelte-41r5oq{position:absolute;width:144px;left:0;top:0;bottom:0;transform:matrix(-1,0,0,1,0,0);border-top-right-radius:5px}.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}#as3cf-settings.wpome div.panel.settings .header img.svelte-cn9mf.svelte-cn9mf{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-cn9mf.svelte-cn9mf{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-cn9mf h3.svelte-cn9mf{margin-left:0;margin-bottom:.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf.svelte-cn9mf{display:flex;align-items:center;font-size:.75rem}.console-details.svelte-cn9mf .console.svelte-cn9mf{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf a[target="_blank"].console.svelte-cn9mf:after{margin-right:0}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf .region.svelte-cn9mf{flex:1 0 auto;color:var(--as3cf-color-gray-500);margin:0 .5rem}div.check-again.svelte-1oue4lo.svelte-1oue4lo{display:flex;flex-direction:column;align-items:flex-end;white-space:nowrap;min-width:6rem;padding-left:.5rem;color:var(--as3cf-color-gray-700)}#as3cf-settings .check-again.svelte-1oue4lo .last-update.svelte-1oue4lo{padding-right:2px;margin-top:2px}.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}#as3cf-settings.wpome div.panel.settings .header img.svelte-sglpwv.svelte-sglpwv{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-sglpwv.svelte-sglpwv{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-sglpwv h3.svelte-sglpwv{margin-left:0;margin-bottom:.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv.svelte-sglpwv{display:flex;align-items:center;font-size:.75rem}.console-details.svelte-sglpwv .console.svelte-sglpwv{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv a[target="_blank"].console.svelte-sglpwv:after{margin-right:0}#as3cf-settings.wpome div.panel.settings .header img.svelte-1m7cok0.svelte-1m7cok0{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.assets-details.svelte-1m7cok0.svelte-1m7cok0{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .assets-details.svelte-1m7cok0 h3.svelte-1m7cok0{margin-left:0;margin-bottom:.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-1m7cok0.svelte-1m7cok0{display:flex;align-items:center;color:var(--as3cf-color-gray-600);font-size:.75rem}.content.svelte-5j10or.svelte-5j10or{padding:1.875rem 2.25rem 1.5rem 2.25rem;display:flex;flex-direction:column}.heading.svelte-5j10or.svelte-5j10or{margin-top:1rem;font-weight:700;font-size:1.125rem;line-height:140%}.description.svelte-5j10or.svelte-5j10or{margin-top:1rem;color:rgba(56,54,55,.7)}.benefits.svelte-5j10or.svelte-5j10or{margin-top:1.7rem;color:rgba(56,54,55,.7)}.benefits.svelte-5j10or li.svelte-5j10or{display:flex;align-items:center}.benefits.svelte-5j10or img.svelte-5j10or{height:40px;margin-left:-5px;margin-right:10px}.call-to-action.svelte-5j10or.svelte-5j10or{margin-top:.7rem}.call-to-action.svelte-5j10or .note.svelte-5j10or{text-align:center}.nav-status-wrapper.svelte-1i784er{position:relative}
|
||||
9
assets/css/settings.css
Normal file
@@ -0,0 +1,9 @@
|
||||
.notice-icon-wrapper.svelte-jtkdoa{display:inline-block;min-width:1.1875rem}.notice-icon.svelte-jtkdoa{margin-left:2px;margin-top:-1.5px;vertical-align:middle}
|
||||
.panel-row.svelte-41r5oq.svelte-41r5oq{position:relative}.header.svelte-41r5oq .gradient.svelte-41r5oq{position:absolute;width:144px;left:0;top:0;bottom:0;transform:matrix(-1, 0, 0, 1, 0, 0);border-top-right-radius:5px}
|
||||
.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}
|
||||
#as3cf-settings.wpome div.panel.settings .header img.svelte-cn9mf.svelte-cn9mf{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-cn9mf.svelte-cn9mf{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-cn9mf h3.svelte-cn9mf{margin-left:0;margin-bottom:0.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf.svelte-cn9mf{display:flex;align-items:center;font-size:0.75rem}.console-details.svelte-cn9mf .console.svelte-cn9mf{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf a[target="_blank"].console.svelte-cn9mf:after{margin-right:0}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf .region.svelte-cn9mf{flex:1 0 auto;color:var(--as3cf-color-gray-500);margin:0 0.5rem}
|
||||
div.check-again.svelte-1oue4lo.svelte-1oue4lo{display:flex;flex-direction:column;align-items:flex-end;white-space:nowrap;min-width:6rem;padding-left:0.5rem;color:var(--as3cf-color-gray-700)}#as3cf-settings .check-again.svelte-1oue4lo .last-update.svelte-1oue4lo{padding-right:2px;margin-top:2px}
|
||||
.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}
|
||||
#as3cf-settings.wpome div.panel.settings .header img.svelte-sglpwv.svelte-sglpwv{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-sglpwv.svelte-sglpwv{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-sglpwv h3.svelte-sglpwv{margin-left:0;margin-bottom:0.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv.svelte-sglpwv{display:flex;align-items:center;font-size:0.75rem}.console-details.svelte-sglpwv .console.svelte-sglpwv{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv a[target="_blank"].console.svelte-sglpwv:after{margin-right:0}
|
||||
.content.svelte-5j10or.svelte-5j10or{padding:1.875rem 2.25rem 1.5rem 2.25rem;display:flex;flex-direction:column}.heading.svelte-5j10or.svelte-5j10or{margin-top:1rem;font-weight:700;font-size:1.125rem;line-height:140%}.description.svelte-5j10or.svelte-5j10or{margin-top:1rem;color:rgba(56, 54, 55, 0.7)}.benefits.svelte-5j10or.svelte-5j10or{margin-top:1.7rem;color:rgba(56, 54, 55, 0.7)}.benefits.svelte-5j10or li.svelte-5j10or{display:flex;align-items:center}.benefits.svelte-5j10or img.svelte-5j10or{height:40px;margin-left:-5px;margin-right:10px}.call-to-action.svelte-5j10or.svelte-5j10or{margin-top:0.7rem}.call-to-action.svelte-5j10or .note.svelte-5j10or{text-align:center}
|
||||
.nav-status-wrapper.svelte-1i784er{position:relative}
|
||||
1
assets/css/settings.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.notice-icon-wrapper.svelte-jtkdoa{display:inline-block;min-width:1.1875rem}.notice-icon.svelte-jtkdoa{margin-left:2px;margin-top:-1.5px;vertical-align:middle}.panel-row.svelte-41r5oq.svelte-41r5oq{position:relative}.header.svelte-41r5oq .gradient.svelte-41r5oq{position:absolute;width:144px;left:0;top:0;bottom:0;transform:matrix(-1,0,0,1,0,0);border-top-right-radius:5px}.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}#as3cf-settings.wpome div.panel.settings .header img.svelte-cn9mf.svelte-cn9mf{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-cn9mf.svelte-cn9mf{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-cn9mf h3.svelte-cn9mf{margin-left:0;margin-bottom:.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf.svelte-cn9mf{display:flex;align-items:center;font-size:.75rem}.console-details.svelte-cn9mf .console.svelte-cn9mf{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf a[target="_blank"].console.svelte-cn9mf:after{margin-right:0}#as3cf-settings.wpome div.panel .console-details.svelte-cn9mf .region.svelte-cn9mf{flex:1 0 auto;color:var(--as3cf-color-gray-500);margin:0 .5rem}div.check-again.svelte-1oue4lo.svelte-1oue4lo{display:flex;flex-direction:column;align-items:flex-end;white-space:nowrap;min-width:6rem;padding-left:.5rem;color:var(--as3cf-color-gray-700)}#as3cf-settings .check-again.svelte-1oue4lo .last-update.svelte-1oue4lo{padding-right:2px;margin-top:2px}.toggler.svelte-k1tgof:not(.toggleDisabled){cursor:pointer}#as3cf-settings.wpome div.panel.settings .header img.svelte-sglpwv.svelte-sglpwv{width:var(--as3cf-settings-ctrl-width);height:var(--as3cf-settings-ctrl-width)}.provider-details.svelte-sglpwv.svelte-sglpwv{display:flex;flex-direction:column;flex:auto;margin-left:var(--as3cf-settings-option-indent);z-index:1}#as3cf-settings.wpome div.panel .provider-details.svelte-sglpwv h3.svelte-sglpwv{margin-left:0;margin-bottom:.5rem}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv.svelte-sglpwv{display:flex;align-items:center;font-size:.75rem}.console-details.svelte-sglpwv .console.svelte-sglpwv{flex:0 1 min-content;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#as3cf-settings.wpome div.panel .console-details.svelte-sglpwv a[target="_blank"].console.svelte-sglpwv:after{margin-right:0}.content.svelte-5j10or.svelte-5j10or{padding:1.875rem 2.25rem 1.5rem 2.25rem;display:flex;flex-direction:column}.heading.svelte-5j10or.svelte-5j10or{margin-top:1rem;font-weight:700;font-size:1.125rem;line-height:140%}.description.svelte-5j10or.svelte-5j10or{margin-top:1rem;color:rgba(56,54,55,.7)}.benefits.svelte-5j10or.svelte-5j10or{margin-top:1.7rem;color:rgba(56,54,55,.7)}.benefits.svelte-5j10or li.svelte-5j10or{display:flex;align-items:center}.benefits.svelte-5j10or img.svelte-5j10or{height:40px;margin-left:-5px;margin-right:10px}.call-to-action.svelte-5j10or.svelte-5j10or{margin-top:.7rem}.call-to-action.svelte-5j10or .note.svelte-5j10or{text-align:center}.nav-status-wrapper.svelte-1i784er{position:relative}
|
||||
2428
assets/css/style.css
Normal file
1
assets/css/style.css.map
Normal file
1
assets/css/style.min.css
vendored
Normal file
17
assets/img/brand/default.svg
Normal file
|
After Width: | Height: | Size: 26 KiB |
18
assets/img/brand/ome-branding-transparent.svg
Normal file
|
After Width: | Height: | Size: 26 KiB |
39
assets/img/brand/ome-medallion.svg
Normal file
|
After Width: | Height: | Size: 28 KiB |
19
assets/img/brand/upsell-bunny.svg
Normal file
|
After Width: | Height: | Size: 19 KiB |
3
assets/img/icon/arrow.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path d="M5.15926987,8.89259287 L10.0597436,13.8376187 C10.2747731,14.0541271 10.6231553,14.0541271 10.8387279,13.8376187 C11.0537574,13.6211102 11.0537574,13.2694438 10.8387279,13.0529354 L6.32695435,8.50027406 L10.8381849,3.94761276 C11.0532144,3.7311043 11.0532144,3.37943793 10.8381849,3.16238134 C10.6231553,2.94587289 10.2742301,2.94587289 10.0592006,3.16238134 L5.15872687,8.10736145 C4.94700063,8.32163174 4.94700063,8.67882502 5.15926987,8.89259287 Z" transform="rotate(-90 8 8.5)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 586 B |
8
assets/img/icon/assets-wizard.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="#0073AA">
|
||||
<path d="M10.907,14.113 L9.523,16.99 C9.48761969,17.0644807 9.41766207,17.1166161 9.33617558,17.1292295 C9.25468909,17.1418429 9.1722429,17.1132983 9.116,17.053 L8.229,16.108 C8.005872,15.8081283 7.644762,15.6433552 7.27203425,15.6713402 C6.8993065,15.6993252 6.56684917,15.9161725 6.391,16.246 L4.4,19.488 C4.30507424,19.6422939 4.30103074,19.8358643 4.38943043,19.9939877 C4.47783011,20.1521111 4.64484398,20.2500005 4.826,20.2500005 L14.172,20.2500005 C14.3375213,20.2502293 14.492429,20.1685289 14.5857169,20.0318002 C14.6790047,19.8950715 14.698581,19.7210367 14.638,19.567 L12.52,14.16 C12.4409592,13.7848359 12.1152412,13.5126297 11.7320039,13.5014629 C11.3487666,13.490296 11.0077514,13.7430747 10.907,14.113 Z"/>
|
||||
<path d="M18,12.5 C17.4477153,12.5 17,12.9477153 17,13.5 L17,21.5 C17,21.7761424 16.7761424,22 16.5,22 L2.5,22 C2.22385763,22 2,21.7761424 2,21.5 L2,7.5 C2,7.22385763 2.22385763,7 2.5,7 L6.5,7 C7.05228475,7 7.5,6.55228475 7.5,6 C7.5,5.44771525 7.05228475,5 6.5,5 L2,5 C0.8954305,5 0,5.8954305 0,7 L0,22 C0,23.1045695 0.8954305,24 2,24 L17,24 C18.1045695,24 19,23.1045695 19,22 L19,13.5 C19,12.9477153 18.5522847,12.5 18,12.5 Z"/>
|
||||
<circle cx="6.75" cy="11.75" r="1.75"/>
|
||||
<path d="M23.707 14.949C24.0973819 14.5585001 24.0973819 13.9254999 23.707 13.535L14.774 4.6C14.3827063 4.2095347 13.7489653 4.21020628 13.3585 4.60150002 12.9680347 4.99279376 12.9687063 5.62653468 13.36 6.017L22.293 14.949C22.6834999 15.3393819 23.3165001 15.3393819 23.707 14.949zM11.623 3.925C11.9171496 4.20937105 12.3849335 4.2055282 12.6743716 3.91636296 12.9638096 3.62719772 12.9680936 3.15941767 12.684 2.865L11.27 1.451C11.0817856 1.25594583 10.802971 1.17762391 10.5407178 1.24613713 10.2784646 1.31465034 10.0735854 1.51933652 10.0048249 1.78152495 9.93606442 2.04371338 10.0141234 2.32260179 10.209 2.511L11.623 3.925zM14.263 3.447C14.6689387 3.52493357 15.0620781 3.26194919 15.145 2.857L15.534.9C15.6168427.493794576 15.3547054.0973427427 14.9485.0145000329 14.5422946-.068342677 14.1458427.193794583 14.063.6L13.674 2.562C13.6339942 2.75753879 13.6736868 2.96095755 13.784269 3.12711246 13.8948512 3.29326738 14.067176 3.40841459 14.263 3.447L14.263 3.447zM15.944 3.514C15.5612667 3.67278187 15.3797181 4.11176667 15.5385 4.4945 15.6972819 4.87723333 16.1362667 5.05878187 16.519 4.9L18.366 4.135C18.7487333 3.97649428 18.9305057 3.53773333 18.772 3.155 18.6134943 2.77226667 18.1747333 2.59049428 17.792 2.749L15.944 3.514zM9.654 6.777L11.616 6.386C11.8814454 6.33635951 12.0997095 6.14784846 12.1874464 5.89245135 12.2751833 5.63705425 12.2188449 5.35420864 12.0399446 5.15192148 11.8610442 4.94963431 11.587207 4.85914209 11.323 4.915L9.361 5.306C9.16601849 5.34463349 8.99438995 5.45918713 8.88391472 5.62443107 8.77343949 5.78967501 8.73317885 5.99205577 8.772 6.187 8.85636644 6.5909766 9.24840881 6.85322717 9.654 6.777zM13.252 6.78C12.8689906 6.62197383 12.4303158 6.80352527 12.271 7.186L11.507 9.033C11.4044648 9.28058505 11.4418034 9.56406497 11.6049507 9.7766556 11.768098 9.98924624 12.0322682 10.09865 12.2979507 10.0636556 12.5636333 10.0286612 12.7904648 9.85458505 12.893 9.607L13.657 7.76C13.7334733 7.5763592 13.733752 7.36984018 13.6577746 7.18599364 13.5817972 7.0021471 13.4358055 6.85607658 13.252 6.78z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
9
assets/img/icon/assets.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="36" height="37" viewBox="0 0 36 37" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.5 18.4961L14 14.9961C14.3 14.6961 14.45 14.3294 14.45 13.8961C14.45 13.4628 14.3 13.0961 14 12.7961C13.7 12.4961 13.3333 12.3461 12.9 12.3461C12.4667 12.3461 12.1 12.4961 11.8 12.7961L7.15 17.4461C6.98333 17.6128 6.86667 17.7794 6.8 17.9461C6.73333 18.1128 6.7 18.2961 6.7 18.4961C6.7 18.6961 6.73333 18.8794 6.8 19.0461C6.86667 19.2128 6.98333 19.3794 7.15 19.5461L11.85 24.2461C12.15 24.5461 12.5167 24.6961 12.95 24.6961C13.3833 24.6961 13.75 24.5461 14.05 24.2461C14.35 23.9461 14.5 23.5794 14.5 23.1461C14.5 22.7128 14.35 22.3461 14.05 22.0461L10.5 18.4961ZM25.5 18.4961L21.95 22.0461C21.65 22.3461 21.5 22.7128 21.5 23.1461C21.5 23.5794 21.65 23.9461 21.95 24.2461C22.25 24.5461 22.6167 24.6961 23.05 24.6961C23.4833 24.6961 23.85 24.5461 24.15 24.2461L28.85 19.5461C29.0167 19.3794 29.1333 19.2128 29.2 19.0461C29.2667 18.8794 29.3 18.6961 29.3 18.4961C29.3 18.2961 29.2667 18.1128 29.2 17.9461C29.1333 17.7794 29.0167 17.6128 28.85 17.4461L24.15 12.7461C24.0167 12.5794 23.85 12.4628 23.65 12.3961C23.45 12.3294 23.25 12.2961 23.05 12.2961C22.85 12.2961 22.6583 12.3294 22.475 12.3961C22.2917 12.4628 22.1167 12.5794 21.95 12.7461C21.65 13.0461 21.5 13.4128 21.5 13.8461C21.5 14.2794 21.65 14.6461 21.95 14.9461L25.5 18.4961ZM3 36.4961C2.2 36.4961 1.5 36.1961 0.9 35.5961C0.3 34.9961 0 34.2961 0 33.4961V3.49609C0 2.69609 0.3 1.99609 0.9 1.39609C1.5 0.796094 2.2 0.496094 3 0.496094H33C33.8 0.496094 34.5 0.796094 35.1 1.39609C35.7 1.99609 36 2.69609 36 3.49609V33.4961C36 34.2961 35.7 34.9961 35.1 35.5961C34.5 36.1961 33.8 36.4961 33 36.4961H3ZM3 33.4961H33V3.49609H3V33.4961Z" fill="#87A2C2"/>
|
||||
<mask id="mask0_876_5189" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="36" height="37">
|
||||
<path d="M10.5 18.4961L14 14.9961C14.3 14.6961 14.45 14.3294 14.45 13.8961C14.45 13.4628 14.3 13.0961 14 12.7961C13.7 12.4961 13.3333 12.3461 12.9 12.3461C12.4667 12.3461 12.1 12.4961 11.8 12.7961L7.15 17.4461C6.98333 17.6128 6.86667 17.7794 6.8 17.9461C6.73333 18.1128 6.7 18.2961 6.7 18.4961C6.7 18.6961 6.73333 18.8794 6.8 19.0461C6.86667 19.2128 6.98333 19.3794 7.15 19.5461L11.85 24.2461C12.15 24.5461 12.5167 24.6961 12.95 24.6961C13.3833 24.6961 13.75 24.5461 14.05 24.2461C14.35 23.9461 14.5 23.5794 14.5 23.1461C14.5 22.7128 14.35 22.3461 14.05 22.0461L10.5 18.4961ZM25.5 18.4961L21.95 22.0461C21.65 22.3461 21.5 22.7128 21.5 23.1461C21.5 23.5794 21.65 23.9461 21.95 24.2461C22.25 24.5461 22.6167 24.6961 23.05 24.6961C23.4833 24.6961 23.85 24.5461 24.15 24.2461L28.85 19.5461C29.0167 19.3794 29.1333 19.2128 29.2 19.0461C29.2667 18.8794 29.3 18.6961 29.3 18.4961C29.3 18.2961 29.2667 18.1128 29.2 17.9461C29.1333 17.7794 29.0167 17.6128 28.85 17.4461L24.15 12.7461C24.0167 12.5794 23.85 12.4628 23.65 12.3961C23.45 12.3294 23.25 12.2961 23.05 12.2961C22.85 12.2961 22.6583 12.3294 22.475 12.3961C22.2917 12.4628 22.1167 12.5794 21.95 12.7461C21.65 13.0461 21.5 13.4128 21.5 13.8461C21.5 14.2794 21.65 14.6461 21.95 14.9461L25.5 18.4961ZM3 36.4961C2.2 36.4961 1.5 36.1961 0.9 35.5961C0.3 34.9961 0 34.2961 0 33.4961V3.49609C0 2.69609 0.3 1.99609 0.9 1.39609C1.5 0.796094 2.2 0.496094 3 0.496094H33C33.8 0.496094 34.5 0.796094 35.1 1.39609C35.7 1.99609 36 2.69609 36 3.49609V33.4961C36 34.2961 35.7 34.9961 35.1 35.5961C34.5 36.1961 33.8 36.4961 33 36.4961H3ZM3 33.4961H33V3.49609H3V33.4961Z" fill="#87A2C2"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_876_5189)">
|
||||
<rect x="4.91699" y="9.40381" width="26.4832" height="18.068" fill="#8AA4C4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
6
assets/img/icon/bucket-round.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#E4EAF1"/>
|
||||
<path fill="#87A2C2" fill-rule="nonzero" d="M27.5,18 L26,18 C25.8603036,15.5110271 24.5656512,11 21.0000303,11 C17.4344094,11 16.139757,15.5110271 16,18 L15,18 C15,18 14.5,18 14.5,18 C14.5,18 14,18 14,18.5 C14,19 14.5,19 14.5,19 C14.5,19 15,19 15,19 L15.8824161,26 L26.1175839,26 L27,19 L27.5,19 C27.7976351,19 28,18.7960737 28,18.5 C28,18.2039263 27.7976351,18 27.5,18 Z M17,18 C17.1205053,16.3757768 17.7470684,12 21,12 C24.2529316,12 24.8794947,16.3757768 25,18 L17,18 Z M16.1665769,28.5497889 C16.1938559,28.8051787 16.4247894,29 16.700845,29 L25.2990945,29 C25.5751502,29 25.8060231,28.8051787 25.8333626,28.5497889 L26,27 L16,27 L16.1665769,28.5497889 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 855 B |
3
assets/img/icon/bucket.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
||||
<path fill="#ACBDCB" d="M15.5,7 L14,7 C13.8603036,4.51102712 12.5656512,0 9.0000303,0 C5.43440937,0 4.13975697,4.51102712 4,7 L3,7 C3,7 2.5,7 2.5,7 C2.5,7 2,7 2,7.5 C2,8 2.5,8 2.5,8 C2.5,8 3,8 3,8 L3.88241609,15 L14.1175839,15 L15,8 L15.5,8 C15.7976351,8 16,7.79607366 16,7.5 C16,7.20392634 15.7976351,7 15.5,7 Z M5,7 C5.12050534,5.37577682 5.74706835,1 9,1 C12.2529316,1 12.8794947,5.37577682 13,7 L5,7 Z M4.16657695,17.5497889 C4.19385589,17.8051787 4.42478936,18 4.70084498,18 L13.2990945,18 C13.5751502,18 13.8060231,17.8051787 13.8333626,17.5497889 L14,16 L4,16 L4.16657695,17.5497889 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 688 B |
3
assets/img/icon/check.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8547 1.0848L10.9136 0.146569C10.7187 -0.0477426 10.4014 -0.0490232 10.205 0.143761L4.30235 5.93454L1.80554 3.44516C1.61065 3.25085 1.29338 3.24957 1.0969 3.44231L0.148199 4.37303C-0.0482736 4.56577 -0.0495681 4.87956 0.145359 5.07391L3.93621 8.85343C4.1311 9.04774 4.44838 9.04902 4.64485 8.85624L11.8519 1.78568C12.0483 1.5929 12.0495 1.27911 11.8547 1.0848Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 530 B |
3
assets/img/icon/close.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path fill="#ACBDCB" fill-rule="evenodd" d="M8,0 C12.418278,0 16,3.581722 16,8 C16,12.418278 12.418278,16 8,16 C3.581722,16 0,12.418278 0,8 C0,3.581722 3.581722,0 8,0 Z M5.87867966,4.46446609 C5.48815536,4.0739418 4.85499039,4.0739418 4.46446609,4.46446609 C4.0739418,4.85499039 4.0739418,5.48815536 4.46446609,5.87867966 L4.46446609,5.87867966 L6.58578644,8 L4.46446609,10.1213203 C4.0739418,10.5118446 4.0739418,11.1450096 4.46446609,11.5355339 C4.85499039,11.9260582 5.48815536,11.9260582 5.87867966,11.5355339 L5.87867966,11.5355339 L8,9.41421356 L10.1213203,11.5355339 C10.5118446,11.9260582 11.1450096,11.9260582 11.5355339,11.5355339 C11.9260582,11.1450096 11.9260582,10.5118446 11.5355339,10.1213203 L11.5355339,10.1213203 L9.41421356,8 L11.5355339,5.87867966 C11.9260582,5.48815536 11.9260582,4.85499039 11.5355339,4.46446609 C11.1450096,4.0739418 10.5118446,4.0739418 10.1213203,4.46446609 L10.1213203,4.46446609 L8,6.58578644 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
19
assets/img/icon/css.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1093_8925)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<path d="M27.875 9H12.125C11.5025 9 11 9.5025 11 10.125V25.875C11 26.49 11.5025 27 12.125 27H27.875C28.49 27 29 26.49 29 25.875V10.125C29 9.5025 28.49 9 27.875 9ZM16.625 23.157C16.88 23.157 17.0938 23.3595 17.0938 23.6257C17.0938 23.8807 16.8837 24.0945 16.625 24.0945C14.705 24.0945 13.1525 22.5345 13.1525 20.6258C13.1525 18.7058 14.705 17.1533 16.6175 17.157C16.8725 17.157 17.0825 17.3595 17.0825 17.6258C17.0825 17.8808 16.8725 18.0945 16.61 18.0945C15.2075 18.0945 14.075 19.227 14.075 20.6258C14.075 22.0208 15.2075 23.157 16.6025 23.157H16.625ZM19.1 19.8345L20.555 20.562C21.47 21.012 21.845 22.1295 21.3875 23.052C21.0725 23.682 20.42 24.087 19.715 24.0795H18.1025C17.84 24.0795 17.6337 23.8695 17.6337 23.6108C17.6337 23.3483 17.8363 23.142 18.1025 23.142H19.7075C20.21 23.142 20.6225 22.7295 20.6225 22.2195C20.6225 21.867 20.42 21.5445 20.105 21.387L18.6425 20.652C17.72 20.187 17.345 19.077 17.8025 18.1545C18.11 17.517 18.7625 17.1195 19.4675 17.1195H21.0725C21.3275 17.1195 21.5413 17.322 21.5413 17.5883C21.5413 17.8433 21.3313 18.057 21.0725 18.057H19.46C18.95 18.057 18.5375 18.4695 18.5375 18.9795C18.5375 19.3245 18.7325 19.6395 19.04 19.797L19.1 19.8345ZM23.6 19.8345L25.055 20.562C25.97 21.012 26.345 22.1295 25.8875 23.052C25.5725 23.682 24.92 24.087 24.215 24.0795H22.6025C22.34 24.0795 22.1337 23.8695 22.1337 23.6108C22.1337 23.3483 22.3363 23.142 22.6025 23.142H24.2075C24.71 23.142 25.1225 22.7295 25.1225 22.2195C25.1225 21.867 24.92 21.5445 24.605 21.387L23.1425 20.652C22.22 20.187 21.845 19.077 22.3025 18.1545C22.61 17.517 23.2625 17.1195 23.9675 17.1195H25.5725C25.8275 17.1195 26.0413 17.322 26.0413 17.5883C26.0413 17.8433 25.8313 18.057 25.5725 18.057H23.96C23.45 18.057 23.0375 18.4695 23.0375 18.9795C23.0375 19.3245 23.2325 19.6395 23.54 19.797L23.6 19.8345Z" fill="#87A2C2"/>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1093_8925" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1093_8925"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1093_8925" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
3
assets/img/icon/dot.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="6" height="6" viewBox="0 0 6 6" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="6" height="6" rx="3" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 148 B |
19
assets/img/icon/download.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1095_9132)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<path d="M25.8889 16.4444H22.7778V11H18.1111V16.4444H15L20.4444 21.8889L25.8889 16.4444ZM15 23.4444V25H25.8889V23.4444H15Z" fill="#87A2C2"/>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1095_9132" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1095_9132"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1095_9132" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
12
assets/img/icon/error.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 24 24">
|
||||
<defs>
|
||||
<circle id="license-unchecked-a" cx="8" cy="8" r="8"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(4 4)">
|
||||
<use fill="#dc3232" xlink:href="#license-unchecked-a"/>
|
||||
<g fill="#FFF" transform="translate(4 4)">
|
||||
<rect width="2" height="8" x="3" rx="1" transform="rotate(-45 4 4)"/>
|
||||
<rect width="2" height="8" x="3" rx="1" transform="rotate(-135 4 4)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 553 B |
19
assets/img/icon/fonts.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1093_8936)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<path d="M17.25 10.6667V13.4167H21.8333V24.4167H24.5833V13.4167H29.1667V10.6667H17.25ZM11.75 18H14.5V24.4167H17.25V18H20V15.25H11.75V18Z" fill="#87A2C2"/>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1093_8936" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1093_8936"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1093_8936" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
assets/img/icon/help.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<path fill="#ACBDCB" fill-rule="evenodd" d="M10,0 C15.5228475,0 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 C4.4771525,20 0,15.5228475 0,10 C0,4.4771525 4.4771525,0 10,0 Z M10,13.5 C9.44771525,13.5 9,13.9477153 9,14.5 C9,15.0522847 9.44771525,15.5 10,15.5 C10.5522847,15.5 11,15.0522847 11,14.5 C11,13.9477153 10.5522847,13.5 10,13.5 Z M10,5 C8.40169643,5 7.09629464,6.16509821 7.00509031,7.63541869 L7,7.8 L8.5,7.8 C8.5,7.03 9.175,6.4 10,6.4 C10.825,6.4 11.5,7.03 11.5,7.8 C11.5,8.136875 11.3736719,8.44695313 11.1561865,8.6880293 L11.0575,8.787 L10.1275,9.669 C9.6325,10.1374167 9.30765625,10.7646458 9.25695313,11.4590272 L9.25,11.65 L9.25,12 L10.75,12 C10.75,11.02 11.044,10.5888 11.52224,10.1202003 L11.6275,10.019 L12.3025,9.375 C12.73,8.976 13,8.416 13,7.8 C13,6.253 11.6575,5 10,5 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 897 B |
7
assets/img/icon/info.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="10" cy="10" r="10" fill="#ACBDCB"/>
|
||||
<circle cx="10" cy="6" r="1" fill="#FFF"/>
|
||||
<rect width="2" height="7" x="9" y="8.5" fill="#FFF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 294 B |
19
assets/img/icon/js.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1093_8932)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<path d="M27.875 9H12.125C11.5025 9 11 9.5025 11 10.125V25.875C11 26.49 11.5025 27 12.125 27H27.875C28.49 27 29 26.49 29 25.875V10.125C29 9.5025 28.49 9 27.875 9ZM19.3438 22.125C19.3438 23.205 18.4588 24.0938 17.375 24.0938C16.2875 24.0938 15.4062 23.2087 15.4062 22.125C15.4062 21.8625 15.6087 21.6562 15.875 21.6562C16.13 21.6562 16.3438 21.8588 16.3438 22.125C16.3438 22.6875 16.8012 23.1562 17.375 23.1562C17.9375 23.1562 18.4062 22.6912 18.4062 22.125V17.625C18.4062 17.3625 18.6087 17.1562 18.875 17.1562C19.13 17.1562 19.3438 17.3588 19.3438 17.625V22.125ZM21.3538 19.8375L22.8088 20.565C23.7238 21.015 24.0988 22.1325 23.6412 23.055C23.3263 23.685 22.6737 24.09 21.9688 24.0825H20.3563C20.0938 24.0825 19.8875 23.8725 19.8875 23.6138C19.8875 23.3513 20.09 23.145 20.3563 23.145H21.9613C22.4637 23.145 22.8763 22.7325 22.8763 22.2225C22.8763 21.87 22.6737 21.5475 22.3588 21.39L20.8962 20.655C19.9738 20.19 19.5988 19.08 20.0562 18.1575C20.3637 17.52 21.0162 17.1225 21.7213 17.1225H23.3263C23.5812 17.1225 23.795 17.325 23.795 17.5912C23.795 17.8462 23.585 18.06 23.3263 18.06H21.7137C21.2037 18.06 20.7913 18.4725 20.7913 18.9825C20.7913 19.3275 20.9862 19.6425 21.2938 19.8L21.3538 19.8375Z" fill="#87A2C2"/>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1093_8932" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1093_8932"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1093_8932" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
9
assets/img/icon/licence-checked.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<circle id="license-checked-a" cx="8" cy="8" r="8"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<use fill="#52AA59" xlink:href="#license-checked-a"/>
|
||||
<path fill="#FFF" fill-rule="nonzero" d="M7.62127743,10.7263442 C7.25857202,11.0912186 6.67005098,11.0912186 6.30752062,10.7263442 L4.27202906,8.67868044 C3.90932365,8.31398216 3.90932365,7.72194177 4.27202906,7.35724348 C4.63455942,6.9923691 5.22308046,6.9923691 5.58578587,7.35724348 L6.79853833,8.57707208 C6.89008993,8.66899507 7.03870812,8.66899507 7.13043478,8.57707208 L10.4142141,5.27365579 C10.7767445,4.9087814 11.3652655,4.9087814 11.7279709,5.27365579 C11.9021466,5.44887297 12,5.68660484 12,5.93437427 C12,6.1821437 11.9021466,6.41987556 11.7279709,6.59509274 L7.62127743,10.7263442 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 918 B |
10
assets/img/icon/notification-error.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_405_12502)">
|
||||
<path d="M14.022 3.08L9.26999 0.336C8.49398 -0.112 7.53399 -0.112 6.74998 0.336L2.006 3.08C1.23 3.528 0.75 4.36 0.75 5.264V10.736C0.75 11.632 1.23 12.464 2.006 12.92L6.75799 15.664C7.53399 16.112 8.49399 16.112 9.27799 15.664L14.03 12.92C14.806 12.472 15.286 11.64 15.286 10.736V5.264C15.278 4.36 14.798 3.536 14.022 3.08ZM7.41399 4.6C7.41399 4.272 7.68599 4 8.01399 4C8.34199 4 8.61399 4.272 8.61399 4.6V8.8C8.61399 9.128 8.34199 9.4 8.01399 9.4C7.68599 9.4 7.41399 9.128 7.41399 8.8V4.6ZM8.74999 11.704C8.70999 11.8 8.65399 11.888 8.58199 11.968C8.42999 12.12 8.22999 12.2 8.01399 12.2C7.90999 12.2 7.80598 12.176 7.70998 12.136C7.60598 12.096 7.52598 12.04 7.44598 11.968C7.37398 11.888 7.31798 11.8 7.26998 11.704C7.22998 11.608 7.21398 11.504 7.21398 11.4C7.21398 11.192 7.29398 10.984 7.44598 10.832C7.52598 10.76 7.60598 10.704 7.70998 10.664C8.00599 10.536 8.35799 10.608 8.58199 10.832C8.65399 10.912 8.70999 10.992 8.74999 11.096C8.78999 11.192 8.81399 11.296 8.81399 11.4C8.81399 11.504 8.78999 11.608 8.74999 11.704Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_405_12502">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
10
assets/img/icon/notification-info.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_405_12493)">
|
||||
<path d="M7.99992 0C3.57996 0 0 3.57996 0 7.99992C0 12.4132 3.57996 15.9998 7.99992 15.9998C12.4132 15.9998 15.9998 12.4132 15.9998 7.99992C15.9932 3.57996 12.4132 0 7.99992 0ZM8.16659 3.3333C8.71325 3.3333 9.16658 3.77996 9.16658 4.33329C9.16658 4.87995 8.71325 5.33328 8.16659 5.33328C7.61326 5.33328 7.1666 4.87995 7.1666 4.33329C7.1666 3.77996 7.61326 3.3333 8.16659 3.3333ZM9.66657 12.3332H6.99993C6.6266 12.3332 6.33327 12.0332 6.33327 11.6666C6.33327 11.2932 6.6266 10.9999 6.99993 10.9999H7.49993C7.58659 10.9999 7.66659 10.9199 7.66659 10.8332V7.83326C7.66659 7.73992 7.58659 7.66659 7.49993 7.66659H6.99993C6.6266 7.66659 6.33327 7.36659 6.33327 6.99993C6.33327 6.6266 6.6266 6.33327 6.99993 6.33327H7.66659C8.39992 6.33327 8.99991 6.9266 8.99991 7.66659V10.8332C8.99991 10.9199 9.07324 10.9999 9.16658 10.9999H9.66657C10.0332 10.9999 10.3332 11.2932 10.3332 11.6666C10.3332 12.0332 10.0332 12.3332 9.66657 12.3332Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_405_12493">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
assets/img/icon/notification-locked.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.6667 5.33333H11.9048V3.80952C11.9048 1.70667 10.1981 0 8.09524 0C5.99238 0 4.28571 1.70667 4.28571 3.80952V5.33333H3.52381C2.6819 5.33333 2 6.01524 2 6.85714V14.4762C2 15.3181 2.6819 16 3.52381 16H12.6667C13.5086 16 14.1905 15.3181 14.1905 14.4762V6.85714C14.1905 6.01524 13.5086 5.33333 12.6667 5.33333ZM8.09524 12.1905C7.25333 12.1905 6.57143 11.5086 6.57143 10.6667C6.57143 9.82476 7.25333 9.14286 8.09524 9.14286C8.93714 9.14286 9.61905 9.82476 9.61905 10.6667C9.61905 11.5086 8.93714 12.1905 8.09524 12.1905ZM10.4571 5.33333H5.73333V3.80952C5.73333 2.50667 6.79238 1.44762 8.09524 1.44762C9.3981 1.44762 10.4571 2.50667 10.4571 3.80952V5.33333Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 782 B |
10
assets/img/icon/notification-success.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="mask0_405_12519" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
|
||||
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_405_12519)">
|
||||
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="white"/>
|
||||
<path d="M5 8.24265L7 10.2426" stroke="#52AA59" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M7 10.2426L11.2426 6" stroke="#52AA59" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 759 B |
10
assets/img/icon/notification-warning.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_405_12496)">
|
||||
<path d="M15.4065 13.3332L9.17325 1.43332C8.82659 0.779993 8.01993 0.526662 7.37327 0.866658C7.1266 0.986657 6.93327 1.18666 6.80661 1.42665L0.573335 13.3265H0.566668C0.220005 13.9732 0.473336 14.7799 1.12666 15.1199C1.31333 15.2198 1.52666 15.2665 1.73999 15.2665H14.1999C14.9332 15.2665 15.5332 14.6665 15.5332 13.9332C15.5332 13.7132 15.4799 13.4999 15.3799 13.3132L15.4065 13.3332ZM7.3266 5.61528C7.3266 5.24195 7.61993 4.94862 7.99326 4.94862C8.35992 4.94862 8.65992 5.24195 8.65992 5.61528V9.61524C8.65992 9.9819 8.35992 10.2819 7.99326 10.2819C7.61993 10.2819 7.3266 9.9819 7.3266 9.61524V5.61528ZM8.02659 13.2885H8.00659C7.45993 13.2819 7.0066 12.8485 6.9866 12.3085C6.9666 11.7619 7.3866 11.3086 7.93326 11.2886C7.93326 11.2819 7.93993 11.2819 7.94659 11.2819H7.95993C8.49992 11.2819 8.95325 11.7086 8.97325 12.2552C8.99325 12.7952 8.56659 13.2485 8.02659 13.2752C8.01326 13.2752 8.00659 13.2752 7.99993 13.2752L8.02659 13.2885Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_405_12496">
|
||||
<rect width="16" height="16" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
12
assets/img/icon/offload-complete.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" viewBox="0 0 48 48">
|
||||
<defs>
|
||||
<circle id="offload-complete-a" cx="24" cy="24" r="20"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<mask id="offload-complete-b" fill="#fff">
|
||||
<use xlink:href="#offload-complete-a"/>
|
||||
</mask>
|
||||
<use fill="#52AA59" xlink:href="#offload-complete-a"/>
|
||||
<path fill="#FFF" fill-rule="nonzero" d="M23.3372355,28.543907 C22.702501,29.152031 21.6725892,29.152031 21.0381611,28.543907 L17.4760509,25.1311341 C16.8413164,24.5233036 16.8413164,23.5365696 17.4760509,22.9287391 C18.110479,22.3206152 19.1403908,22.3206152 19.7751253,22.9287391 L21.8974421,24.9617868 C22.0576574,25.1149918 22.3177392,25.1149918 22.4782609,24.9617868 L28.2248747,19.456093 C28.8593029,18.847969 29.8892147,18.847969 30.5239491,19.456093 C30.8287565,19.7481216 31,20.1443414 31,20.5572904 C31,20.9702395 30.8287565,21.3664593 30.5239491,21.6584879 L23.3372355,28.543907 Z" mask="url(#offload-complete-b)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
19
assets/img/icon/offload-remaining.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1095_9125)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2504 12.5H24.5004L20.0004 8L15.5004 12.5H17.7504V15.5H22.2504V12.5ZM15.125 26.75H24.875C25.4963 26.75 26 26.2463 26 25.625V18.875C26 18.2536 25.4963 17.75 24.875 17.75H15.125C14.5037 17.75 14 18.2536 14 18.875V25.625C14 26.2463 14.5037 26.75 15.125 26.75ZM15.3125 20.375C15.3125 19.6501 15.9001 19.0625 16.625 19.0625C17.3499 19.0625 17.9375 19.6501 17.9375 20.375C17.9375 21.0998 17.3499 21.6875 16.625 21.6875C15.9001 21.6875 15.3125 21.0998 15.3125 20.375ZM24.5 25.25H15.5V24.125L17.1761 22.4488C17.286 22.339 17.464 22.339 17.5739 22.4488L18.875 23.75L22.0511 20.5738C22.161 20.464 22.339 20.464 22.4489 20.5738L24.5 22.625V25.25Z" fill="#87A2C2"/>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1095_9125" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1095_9125"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1095_9125" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
25
assets/img/icon/provider/delivery/aws-round.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#FFD5D5"/>
|
||||
<g fill-rule="nonzero" transform="translate(13 10)">
|
||||
<polygon fill="#922317" points="14 8.5 16 9 12 9.5 10 9"/>
|
||||
<polyline fill="#BC3B2D" points="10 9 14 8.5 14 4.053 13.973 4 10 4.973 10 9"/>
|
||||
<polygon fill="#F96656" points="14 8.5 14 4 16 4.974 16 9"/>
|
||||
<polygon fill="#922317" points="2 8.5 0 9 4 9.5 6 9"/>
|
||||
<polygon fill="#BC3B2D" points="2 8.5 2 4 0 5 0 8.995"/>
|
||||
<polygon fill="#F96656" points="6 9 2 8.5 2 4 6 5"/>
|
||||
<polygon fill="#922317" points="4 7.5 8 6.5 12 7.5 8 8.5"/>
|
||||
<polygon fill="#BC3B2D" points="4 7.5 8 6.5 8 0 4 2"/>
|
||||
<polygon fill="#F96656" points="12 7.5 8 6.5 8 0 12 2"/>
|
||||
<polygon fill="#FF9489" points="14 12.5 16 13 12 13.5 10 13" transform="matrix(1 0 0 -1 0 26)"/>
|
||||
<polygon fill="#BC3B2D" points="10 18 14 17.5 14 13.053 13.973 13 10 13.973 10 18" transform="matrix(1 0 0 -1 0 31)"/>
|
||||
<polygon fill="#F96656" points="14 17.5 14 13 16 13.974 16 18" transform="matrix(1 0 0 -1 0 31)"/>
|
||||
<polygon fill="#FF9489" points="2 12.5 0 13 4 13.5 6 13" transform="matrix(1 0 0 -1 0 26)"/>
|
||||
<polygon fill="#BC3B2D" points="2 17.5 2 13 0 14 0 17.995" transform="matrix(1 0 0 -1 0 30.995)"/>
|
||||
<polygon fill="#F96656" points="6 18 2 17.5 2 13 6 14" transform="matrix(1 0 0 -1 0 31)"/>
|
||||
<polygon fill="#FF9489" points="4 14.5 8 13.5 12 14.5 8 15.5" transform="matrix(1 0 0 -1 0 29)"/>
|
||||
<polygon fill="#BC3B2D" points="4 22 8 21 8 14.5 4 16.5" transform="matrix(1 0 0 -1 0 36.5)"/>
|
||||
<polygon fill="#F96656" points="12 22 8 21 8 14.5 12 16.5" transform="matrix(1 0 0 -1 0 36.5)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
22
assets/img/icon/provider/delivery/aws.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" transform="translate(4 1)">
|
||||
<polygon fill="#922317" points="14 8.5 16 9 12 9.5 10 9"/>
|
||||
<polyline fill="#BC3B2D" points="10 9 14 8.5 14 4.053 13.973 4 10 4.973 10 9"/>
|
||||
<polygon fill="#F96656" points="14 8.5 14 4 16 4.974 16 9"/>
|
||||
<polygon fill="#922317" points="2 8.5 0 9 4 9.5 6 9"/>
|
||||
<polygon fill="#BC3B2D" points="2 8.5 2 4 0 5 0 8.995"/>
|
||||
<polygon fill="#F96656" points="6 9 2 8.5 2 4 6 5"/>
|
||||
<polygon fill="#922317" points="4 7.5 8 6.5 12 7.5 8 8.5"/>
|
||||
<polygon fill="#BC3B2D" points="4 7.5 8 6.5 8 0 4 2"/>
|
||||
<polygon fill="#F96656" points="12 7.5 8 6.5 8 0 12 2"/>
|
||||
<polygon fill="#FF9489" points="14 12.5 16 13 12 13.5 10 13" transform="matrix(1 0 0 -1 0 26)"/>
|
||||
<polygon fill="#BC3B2D" points="10 18 14 17.5 14 13.053 13.973 13 10 13.973 10 18" transform="matrix(1 0 0 -1 0 31)"/>
|
||||
<polygon fill="#F96656" points="14 17.5 14 13 16 13.974 16 18" transform="matrix(1 0 0 -1 0 31)"/>
|
||||
<polygon fill="#FF9489" points="2 12.5 0 13 4 13.5 6 13" transform="matrix(1 0 0 -1 0 26)"/>
|
||||
<polygon fill="#BC3B2D" points="2 17.5 2 13 0 14 0 17.995" transform="matrix(1 0 0 -1 0 30.995)"/>
|
||||
<polygon fill="#F96656" points="6 18 2 17.5 2 13 6 14" transform="matrix(1 0 0 -1 0 31)"/>
|
||||
<polygon fill="#FF9489" points="4 14.5 8 13.5 12 14.5 8 15.5" transform="matrix(1 0 0 -1 0 29)"/>
|
||||
<polygon fill="#BC3B2D" points="4 22 8 21 8 14.5 4 16.5" transform="matrix(1 0 0 -1 0 36.5)"/>
|
||||
<polygon fill="#F96656" points="12 22 8 21 8 14.5 12 16.5" transform="matrix(1 0 0 -1 0 36.5)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
6
assets/img/icon/provider/delivery/cdn-round.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#E4EAF1"/>
|
||||
<path fill="#87A2C2" fill-rule="nonzero" d="M28.6336125 18C28.7708599 18.0000972 28.8966404 17.9330839 28.9594346 17.8264083 29.0222289 17.7197326 29.0114871 17.591317 28.931609 17.49376L26.2957674 14.2681604C26.158177 14.0996802 25.9358588 13.9997735 25.6990421 14L21.8660891 14C21.6639037 14 21.5 14.1432692 21.5 14.3200003L21.5 17.6799999C21.5 17.856731 21.6639037 18 21.8660891 18L28.6336125 18zM28 19C28.5522847 19 29 19.4477153 29 20L29 28C29 28.5522847 28.5522847 29 28 29L14 29C13.4477153 29 13 28.5522847 13 28L13 20C13 19.4477153 13.4477153 19 14 19L28 19zM27 25L23 25 23 27 23.0045908 26.9571523C23.0244844 26.8857393 23.0979377 27 23 27L23 27 27 27C26.8880712 27 27 26.8507616 27 27L27 27 27 25zM20.5 14.3200003C20.5 14.1432692 20.3183644 14 20.0943055 14L16.6580727 14C16.395636 13.9997735 16.1492663 14.0996802 15.9967906 14.2681604L13.0757899 17.49376C12.9872702 17.591317 12.9753663 17.7197326 13.0449539 17.8264083 13.1145416 17.9330839 13.2539296 18.0000972 13.4060253 18L20.0943055 18C20.3183644 18 20.5 17.856731 20.5 17.6799999L20.5 14.3200003z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
assets/img/icon/provider/delivery/cdn.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="#87A2C2" d="M20.1091866 8C20.2555839 8.00009724 20.3897497 7.93308391 20.4567303 7.82640828 20.5237108 7.71973264 20.5122529 7.59131704 20.4270496 7.49375996L17.6154852 4.26816035C17.4687221 4.09968018 17.2315827 3.99977351 16.9789783 4L12.8904951 4C12.6748306 4 12.5 4.14326925 12.5 4.32000035L12.5 7.67999993C12.5 7.85673103 12.6748306 8 12.8904951 8L20.1091866 8zM19.5 9C20.0522847 9 20.5 9.44771525 20.5 10L20.5 19C20.5 19.5522847 20.0522847 20 19.5 20L4.5 20C3.94771525 20 3.5 19.5522847 3.5 19L3.5 10C3.5 9.44771525 3.94771525 9 4.5 9L19.5 9zM18.5 15L14.5 15 14.5 17 14.5045908 16.9571523C14.5244844 16.8857393 14.5979377 17 14.5 17L14.5 17 18.5 17C18.3880712 17 18.5 16.8507616 18.5 17L18.5 17 18.5 15zM11.5 4.32000035C11.5 4.14326925 11.3062553 4 11.0672592 4L7.40194421 4C7.12201171 3.99977351 6.85921734 4.09968018 6.69657663 4.26816035L3.58084255 7.49375996C3.48642152 7.59131704 3.47372401 7.71973264 3.54795088 7.82640828 3.62217774 7.93308391 3.77085829 8.00009724 3.9330936 8L11.0672592 8C11.3062553 8 11.5 7.85673103 11.5 7.67999993L11.5 4.32000035z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
10
assets/img/icon/provider/delivery/cloudflare-round.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#FFDDC0"/>
|
||||
<g fill-rule="nonzero" transform="translate(9 14)">
|
||||
<path fill="#FFF" d="M18.9709594,4.6306875 L18.4730531,4.4315625 C16.1329594,9.6969375 6.82367812,6.49584375 6.26352187,8.06221875 C6.17014687,9.12028125 11.3473031,8.26340625 15.0484594,8.44275 C16.1771156,8.49740625 16.7430844,9.34940625 16.2638344,10.738125 L17.2078031,10.7410312 C18.2967094,7.3464375 21.7718344,9.07884375 21.9170531,7.95853125 C21.6784594,7.2219375 17.9232094,7.95853125 18.9709594,4.6306875 Z"/>
|
||||
<path fill="#F4811F" d="M16.531125,10.1576531 C16.6804688,9.65974688 16.6306875,9.16184062 16.3817812,8.86305938 C16.1327813,8.56427813 15.7842188,8.36515313 15.3360938,8.31537188 L6.6721875,8.21571562 C6.62240625,8.21571562 6.572625,8.16593438 6.52284375,8.16593438 C6.4730625,8.11615313 6.4730625,8.06637188 6.52284375,8.01659063 C6.572625,7.91702812 6.62240625,7.86715313 6.72196875,7.86715313 L15.4356563,7.76759062 C16.4813438,7.71780937 17.5768125,6.87134063 17.9750625,5.87552813 L18.4730625,4.58093438 C18.4730625,4.53105937 18.5228438,4.48127813 18.4730625,4.43149688 C17.9252813,1.89209063 15.634875,-6.5625e-05 12.9460313,-6.5625e-05 C10.4564063,-6.5625e-05 8.31534375,1.59330937 7.5684375,3.83402813 C7.07053125,3.48546563 6.4730625,3.28624687 5.7759375,3.33612187 C4.58090625,3.43568438 3.634875,4.43149688 3.4854375,5.62652813 C3.43565625,5.92530937 3.4854375,6.22409062 3.5353125,6.52277813 C1.593375,6.57255937 0,8.16593438 0,10.1576531 C0,10.3567781 0,10.5062156 0.04978125,10.7053406 C0.04978125,10.8049969 0.14934375,10.8547781 0.19921875,10.8547781 L16.1825625,10.8547781 C16.282125,10.8547781 16.3817812,10.8049969 16.3817812,10.7053406 L16.531125,10.1576531 Z"/>
|
||||
<path fill="#FAAD3F" d="M19.2697125,4.5808875 L19.0207125,4.5808875 C18.9709313,4.5808875 18.92115,4.63066875 18.8713688,4.68045 L18.5228063,5.87548125 C18.3734625,6.3733875 18.4232438,6.8713875 18.6722438,7.170075 C18.92115,7.46885625 19.2697125,7.66798125 19.7178375,7.71785625 L21.5602125,7.81741875 C21.6099938,7.81741875 21.659775,7.8672 21.7095563,7.8672 C21.7593375,7.91698125 21.7593375,7.9667625 21.7095563,8.01654375 C21.659775,8.1162 21.6099938,8.16598125 21.5103375,8.16598125 L19.618275,8.26554375 C18.5725875,8.315325 17.4772125,9.16179375 17.0788688,10.1576063 L16.9792125,10.605825 C16.9294313,10.6556062 16.9792125,10.7551688 17.0788688,10.7551688 L23.6514938,10.7551688 C23.7510563,10.7551688 23.8008375,10.7053875 23.8008375,10.605825 C23.9004,10.2074813 23.9999625,9.75935625 23.9999625,9.3111375 C23.9999625,6.72195 21.8589,4.5808875 19.2697125,4.5808875"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
7
assets/img/icon/provider/delivery/cloudflare.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" transform="translate(0 5)">
|
||||
<path fill="#FFF" d="M18.9709594,4.6306875 L18.4730531,4.4315625 C16.1329594,9.6969375 6.82367812,6.49584375 6.26352187,8.06221875 C6.17014687,9.12028125 11.3473031,8.26340625 15.0484594,8.44275 C16.1771156,8.49740625 16.7430844,9.34940625 16.2638344,10.738125 L17.2078031,10.7410312 C18.2967094,7.3464375 21.7718344,9.07884375 21.9170531,7.95853125 C21.6784594,7.2219375 17.9232094,7.95853125 18.9709594,4.6306875 Z"/>
|
||||
<path fill="#F4811F" d="M16.531125,10.1576531 C16.6804688,9.65974688 16.6306875,9.16184062 16.3817812,8.86305938 C16.1327813,8.56427813 15.7842188,8.36515313 15.3360938,8.31537188 L6.6721875,8.21571562 C6.62240625,8.21571562 6.572625,8.16593438 6.52284375,8.16593438 C6.4730625,8.11615313 6.4730625,8.06637188 6.52284375,8.01659063 C6.572625,7.91702812 6.62240625,7.86715313 6.72196875,7.86715313 L15.4356563,7.76759062 C16.4813438,7.71780937 17.5768125,6.87134063 17.9750625,5.87552813 L18.4730625,4.58093438 C18.4730625,4.53105937 18.5228438,4.48127813 18.4730625,4.43149688 C17.9252813,1.89209063 15.634875,-6.5625e-05 12.9460313,-6.5625e-05 C10.4564063,-6.5625e-05 8.31534375,1.59330937 7.5684375,3.83402813 C7.07053125,3.48546563 6.4730625,3.28624687 5.7759375,3.33612187 C4.58090625,3.43568438 3.634875,4.43149688 3.4854375,5.62652813 C3.43565625,5.92530937 3.4854375,6.22409062 3.5353125,6.52277813 C1.593375,6.57255937 0,8.16593438 0,10.1576531 C0,10.3567781 0,10.5062156 0.04978125,10.7053406 C0.04978125,10.8049969 0.14934375,10.8547781 0.19921875,10.8547781 L16.1825625,10.8547781 C16.282125,10.8547781 16.3817812,10.8049969 16.3817812,10.7053406 L16.531125,10.1576531 Z"/>
|
||||
<path fill="#FAAD3F" d="M19.2697125,4.5808875 L19.0207125,4.5808875 C18.9709313,4.5808875 18.92115,4.63066875 18.8713688,4.68045 L18.5228063,5.87548125 C18.3734625,6.3733875 18.4232438,6.8713875 18.6722438,7.170075 C18.92115,7.46885625 19.2697125,7.66798125 19.7178375,7.71785625 L21.5602125,7.81741875 C21.6099938,7.81741875 21.659775,7.8672 21.7095563,7.8672 C21.7593375,7.91698125 21.7593375,7.9667625 21.7095563,8.01654375 C21.659775,8.1162 21.6099938,8.16598125 21.5103375,8.16598125 L19.618275,8.26554375 C18.5725875,8.315325 17.4772125,9.16179375 17.0788688,10.1576063 L16.9792125,10.605825 C16.9294313,10.6556062 16.9792125,10.7551688 17.0788688,10.7551688 L23.6514938,10.7551688 C23.7510563,10.7551688 23.8008375,10.7053875 23.8008375,10.605825 C23.9004,10.2074813 23.9999625,9.75935625 23.9999625,9.3111375 C23.9999625,6.72195 21.8589,4.5808875 19.2697125,4.5808875"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
7
assets/img/icon/provider/delivery/do-round.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#CDE6FF"/>
|
||||
<path fill="#0080FF" d="M20.991018,25.5 C24.1686008,25.5 26.3861811,22.3430894 25.1659222,18.9966179 C24.7122987,17.7521843 23.732563,16.771742 22.4889346,16.3176996 C19.1444868,15.1057191 15.9933165,17.5648144 15.9933165,20.7443199 L13,20.7443199 C13,15.6768859 17.8981261,11.7244241 23.2085984,13.3841347 C25.5260648,14.1135616 27.3780493,15.9576499 28.0980238,18.2768296 C29.7570415,23.5989101 26.0647097,28.5 20.991018,28.5 L20.991018,25.5 Z"/>
|
||||
<path fill="#0080FF" d="M18.5,26 L21.5,26 L21.5,23 L18.5003124,23 L18.5,26 Z M16,28.5 L18.5,28.5 L18.5,26 L16,26 L16,28.5 Z M14,26 L16,26 L16,24 L14,24 L14,26 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 809 B |
8
assets/img/icon/provider/delivery/do.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#0080FF" d="M12.5,18 C16.6001068,18 19.2724918,14.0555992 17.6979642,9.73757151 C17.1126434,8.13185074 15.8484684,6.86676389 14.2437866,6.28090265 C9.92837002,4.71705687 5.86234391,7.8900831 5.86234391,11.9926708 L2,11.9926708 C2,5.45404627 8.32016267,0.354095641 15.172385,2.49565767 C18.1626643,3.43685371 20.5523217,5.8163225 21.4813211,8.80881241 C23.621989,15.6760131 19.046699,22 12.5,22 L12.5,18 Z"/>
|
||||
<polygon fill="#0080FF" points="8.5 18 12.5 18 12.5 14 8.5 14"/>
|
||||
<polygon fill="#0080FF" points="5.5 21 8.5 21 8.5 18 5.5 18"/>
|
||||
<polygon fill="#0080FF" points="3 18 5.5 18 5.5 15.5 3 15.5"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 763 B |
11
assets/img/icon/provider/delivery/gcp-round.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="20.5" fill="#FFF" stroke="#E4E4E4"/>
|
||||
<g fill-rule="nonzero" transform="translate(12 14)">
|
||||
<path fill="#FF3E3A" d="M13.8910033,2.78928954 L14.5,2.01018449 C11.5196054,-0.949010824 6.28188717,-0.586342311 3.59518837,2.73744564 C2.84889539,3.66060415 2.2952392,4.8115227 2,6 L2.58577457,5.90987508 L5.85677799,5.32089305 L6,5 C7.45502876,3.25512368 10.3199956,3.01920567 12,4.50381918 L13.8910033,2.78928954 Z"/>
|
||||
<path fill="#1B95FF" d="M14.5,2 L12,4.5 C12.984163,5.27567565 13.5864176,6.19236274 13.5623882,7.41799649 L13.5623882,7.81706347 C14.7079665,7.81706347 15.6367573,8.7128767 15.6367573,9.81786898 C15.6367573,10.9229332 14.6455783,12 13.5,12 L9.5,12 L9,12 L9,15 L9.40790378,14.9998372 L13.5623882,14.9998372 C16.5421902,15.0222236 18.9766281,12.7328431 18.9998367,9.85861067 C19.0138663,8.11643568 18.1233584,6.48316913 16.6272635,5.50709621 C16.2455533,4.15124743 15.5896091,2.93237998 14.5,2 Z"/>
|
||||
<path fill="#0FB659" d="M9,14.999959 L9,11.9999993 L6,11.9999993 C4.5,11.9999993 4,11.4999993 4,11.4999993 L3,12.4999993 L2,13.4999993 L1.5,13.9999993 C2.38642684,14.605621 3.88926844,15.00434 5,14.9999993 L9,14.999959 Z"/>
|
||||
<path fill="#FFCD3E" d="M9.11757497e-05,10.0503409 C0.00933482501,11.5986523 0.271567664,13.0561397 1.5,14 L4,11.5 C3.0276098,11.0610873 2.56068341,9.97142684 3,9 C3.43924709,8.02857316 4.5277488,7.56115671 5.5,8 C5.92847442,8.19338268 6.30643937,8.57198892 6.5,9 L9,6.96809175 C8.0463751,5.72259616 6.56461118,4.99440793 4.99506733,5.00003234 C2.21981802,5.0165584 -0.0164500913,7.27771235 9.11757497e-05,10.0503409 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
8
assets/img/icon/provider/delivery/gcp.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#EA4335" fill-rule="nonzero" d="M17.4999789,5 C15.5,3.50287439 14,3 11.5,3 C10,3 6,4 5,10 C5,10 6.33333333,10 9,10 C9.5,7.00574877 12.5,5.5 15,8 L17.4999789,5 Z"/>
|
||||
<path fill="#4285F4" fill-rule="nonzero" d="M20,9 C19.5417503,7.33397632 18.8073189,6.14420224 17.5,5 L15,8 C16.3333333,9 16.8333333,10.3333333 16.5,12 C17.874749,12 19,13.1424489 19,14.5 C19,15.8575511 17.874749,17 16.5,17 L11.5,17 L11,17.5604053 L11,20.50924 L11.4967812,20.9998066 L16.475602,20.9998066 C20.0507752,21.0269848 22.9724775,18.0304482 23,14.5 C23.0165135,12.35564 21.7944672,10.1985586 20,9 Z"/>
|
||||
<path fill="#34A853" fill-rule="nonzero" d="M6.9578817,20.9999272 L12,20.9999272 L12,17 L8,17 C6.5,17 5.5,16 5.5,16 L5,16.5 L3.17698978,19.0999945 L3,19.5 C4.1385878,20.3080925 5.52942087,21.0064652 6.9578817,20.9999272 Z"/>
|
||||
<path fill="#FBBC05" fill-rule="nonzero" d="M7.00010877,8 C3.60719065,8.01960989 0.980526716,10.61033 1.00010877,14.0000463 C1.01185801,15.8924966 1.4975121,18.3470993 3.00010877,19.5000511 L5.50010877,16.0000463 C4.50010877,15.0000463 4.50010877,14.0000463 5.00010877,13.0000463 C5.50010877,12.0000463 6.81202174,11.4639579 8,12 C8.52349372,12.2360672 8.76251312,12.4770466 9.00010877,13.0000463 L11.5,10.5 C10.3355202,8.97664925 8.91784511,7.99222088 7.00010877,8 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
11
assets/img/icon/provider/delivery/keycdn.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1183_9705)">
|
||||
<path d="M3.83937 31.0401C4.21645 31.0556 4.59739 31.1078 4.95223 31.2383V31.2344L5.00638 31.2538L9.68792 26.6873L9.86002 26.9164C10.1027 27.2452 10.3609 27.5459 10.6335 27.8466L10.7331 27.9616C10.8046 28.0332 10.8617 28.1047 10.9332 28.1763L11.0493 28.2903L11.1624 28.4054L11.2629 28.505L11.377 28.62L11.4776 28.7196L11.6062 28.8347L11.7222 28.9352C13.8927 30.7827 16.6318 31.8288 19.4813 31.8987C21.828 31.9577 24.1443 31.3574 26.1671 30.1661L26.5248 30.5383C26.9406 30.9821 27.3699 31.4259 27.7856 31.8697C25.2962 33.47 22.3825 34.2833 19.4242 34.2037C16.0871 34.1239 12.8762 32.9122 10.3183 30.7674L10.3328 30.7384L7.32878 33.6999C7.55672 34.4537 7.5412 35.2602 7.28443 36.0047C7.02766 36.7492 6.54271 37.3938 5.89854 37.8468C5.25437 38.2998 4.48377 38.5382 3.69631 38.5281C2.90885 38.518 2.14463 38.2599 1.51231 37.7905C0.879986 37.321 0.411755 36.6642 0.174194 35.9134C-0.0633666 35.1625 -0.058163 34.3559 0.189065 33.6082C0.436293 32.8605 0.91296 32.2098 1.55129 31.7486C2.18961 31.2873 2.9571 31.0391 3.74462 31.0391H3.84131L3.83937 31.0401ZM32.4681 11.7251C33.9379 14.1466 34.6782 16.9407 34.6001 19.7723C34.5157 23.2294 33.2127 26.5456 30.9212 29.1354L30.9357 29.1499L32.7824 31.1117C33.5268 31.0111 34.2713 31.2683 34.7867 31.8126C35.2085 32.2596 35.4362 32.8553 35.4201 33.4697C35.404 34.0841 35.1453 34.6671 34.7006 35.0912C34.2537 35.5128 33.6582 35.7404 33.044 35.7242C32.4299 35.7081 31.8471 35.4496 31.423 35.0052C31.1701 34.7378 30.9848 34.4138 30.8825 34.0603C30.7803 33.7068 30.764 33.3339 30.8351 32.9729C29.756 31.819 28.6731 30.6688 27.5864 29.5221L27.3989 29.322L27.6135 29.1499C28.1734 28.707 28.6913 28.2135 29.1605 27.6754C31.1174 25.4784 32.2289 22.6567 32.296 19.7153C32.3581 17.496 31.8239 15.3007 30.749 13.3582L32.4681 11.7251ZM6.37738 2.97406C7.03485 2.9644 7.65364 3.22448 8.11193 3.69341C8.36464 3.96108 8.54974 4.28525 8.65183 4.63893C8.75391 4.99261 8.77002 5.36555 8.69882 5.72672L12.2501 9.44913L12.0345 9.62123C11.4766 10.065 10.9613 10.5514 10.4885 11.0957C8.77367 13.0262 7.69888 15.4405 7.41183 18.0066C7.12478 20.5727 7.63956 23.1648 8.88542 25.4265L7.18085 27.0876C5.692 24.6583 4.94592 21.8467 5.03441 18.9988C5.1079 15.552 6.45087 12.2221 8.70655 9.62897L6.75156 7.58889C6.38566 7.63925 6.01304 7.60177 5.6645 7.47954C5.31597 7.35731 5.00155 7.15385 4.74726 6.88598C4.32554 6.43892 4.09797 5.84308 4.11427 5.22872C4.13058 4.61435 4.38944 4.03143 4.83427 3.60736C5.19799 3.26603 5.66089 3.0493 6.15597 2.98857C6.22945 2.98083 6.3039 2.9789 6.37835 2.9731L6.37738 2.97406ZM36.2553 5.87569e-07C36.797 8.95004e-05 37.3323 0.117715 37.8241 0.344759C38.316 0.571803 38.7527 0.902861 39.1042 1.31509C39.4557 1.72731 39.7135 2.21089 39.86 2.73244C40.0064 3.254 40.0379 3.80112 39.9524 4.33604C39.8668 4.87097 39.6662 5.38096 39.3644 5.83083C39.0626 6.2807 38.6668 6.65973 38.2043 6.94177C37.7418 7.22381 37.2236 7.40213 36.6855 7.46445C36.1473 7.52676 35.6021 7.47158 35.0874 7.3027V7.30754L35.0293 7.28723L29.9466 12.1119L29.7745 11.8827C29.5037 11.525 29.2021 11.1672 28.8869 10.8385L28.8289 10.766L28.6722 10.6084L28.386 10.3222L28.2855 10.2362L28.1859 10.1511L28.0573 10.036L27.9568 9.94997L27.8272 9.83588C25.6662 8.01555 22.9498 6.98537 20.1252 6.91499C17.7622 6.85698 15.4572 7.44483 13.4538 8.6476L11.8208 6.94303C14.3102 5.34265 17.2239 4.52931 20.1822 4.60903C23.5222 4.68748 26.735 5.905 29.2881 8.05975H29.3171L32.6818 4.86428C32.5061 4.30337 32.4648 3.70897 32.5614 3.12917C32.658 2.54938 32.8898 2.00046 33.2379 1.52685C33.586 1.05324 34.0408 0.668226 34.5653 0.402972C35.0898 0.137719 35.6695 -0.00032866 36.2573 5.87569e-07H36.2553Z" fill="#2E3234"/>
|
||||
<path d="M19.9337 8.35938C20.3572 8.36131 20.7797 8.39418 21.1993 8.44253C27.2412 9.20151 31.5215 14.7136 30.777 20.7555C30.018 26.7984 24.506 31.0787 18.464 30.3342C12.4221 29.5752 8.14088 24.0622 8.88536 18.0212C9.60664 12.4163 14.3153 8.37871 19.9337 8.35938ZM19.7683 13.0912C17.3222 13.2875 15.5528 15.1371 15.49 17.5958C15.5287 19.3033 16.2654 20.5089 17.6616 21.4526L17.998 21.6353L17.1472 25.6372H22.8526L22.0028 21.6344C23.5691 20.828 24.4654 19.3477 24.5098 17.5958C24.477 15.0588 22.5142 13.1482 20.0004 13.0854L19.7683 13.0912ZM19.8534 13.067H19.8389H19.8534Z" fill="#047AED"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1183_9705">
|
||||
<rect width="40" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
6
assets/img/icon/provider/delivery/other-round.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#E4EAF1"/>
|
||||
<path fill="#87A2C2" fill-rule="nonzero" d="M28.6336125 18C28.7708599 18.0000972 28.8966404 17.9330839 28.9594346 17.8264083 29.0222289 17.7197326 29.0114871 17.591317 28.931609 17.49376L26.2957674 14.2681604C26.158177 14.0996802 25.9358588 13.9997735 25.6990421 14L21.8660891 14C21.6639037 14 21.5 14.1432692 21.5 14.3200003L21.5 17.6799999C21.5 17.856731 21.6639037 18 21.8660891 18L28.6336125 18zM28 19C28.5522847 19 29 19.4477153 29 20L29 28C29 28.5522847 28.5522847 29 28 29L14 29C13.4477153 29 13 28.5522847 13 28L13 20C13 19.4477153 13.4477153 19 14 19L28 19zM27 25L23 25 23 27 23.0045908 26.9571523C23.0244844 26.8857393 23.0979377 27 23 27L23 27 27 27C26.8880712 27 27 26.8507616 27 27L27 27 27 25zM20.5 14.3200003C20.5 14.1432692 20.3183644 14 20.0943055 14L16.6580727 14C16.395636 13.9997735 16.1492663 14.0996802 15.9967906 14.2681604L13.0757899 17.49376C12.9872702 17.591317 12.9753663 17.7197326 13.0449539 17.8264083 13.1145416 17.9330839 13.2539296 18.0000972 13.4060253 18L20.0943055 18C20.3183644 18 20.5 17.856731 20.5 17.6799999L20.5 14.3200003z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
3
assets/img/icon/provider/delivery/other.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="#87A2C2" d="M20.1091866 8C20.2555839 8.00009724 20.3897497 7.93308391 20.4567303 7.82640828 20.5237108 7.71973264 20.5122529 7.59131704 20.4270496 7.49375996L17.6154852 4.26816035C17.4687221 4.09968018 17.2315827 3.99977351 16.9789783 4L12.8904951 4C12.6748306 4 12.5 4.14326925 12.5 4.32000035L12.5 7.67999993C12.5 7.85673103 12.6748306 8 12.8904951 8L20.1091866 8zM19.5 9C20.0522847 9 20.5 9.44771525 20.5 10L20.5 19C20.5 19.5522847 20.0522847 20 19.5 20L4.5 20C3.94771525 20 3.5 19.5522847 3.5 19L3.5 10C3.5 9.44771525 3.94771525 9 4.5 9L19.5 9zM18.5 15L14.5 15 14.5 17 14.5045908 16.9571523C14.5244844 16.8857393 14.5979377 17 14.5 17L14.5 17 18.5 17C18.3880712 17 18.5 16.8507616 18.5 17L18.5 17 18.5 15zM11.5 4.32000035C11.5 4.14326925 11.3062553 4 11.0672592 4L7.40194421 4C7.12201171 3.99977351 6.85921734 4.09968018 6.69657663 4.26816035L3.58084255 7.49375996C3.48642152 7.59131704 3.47372401 7.71973264 3.54795088 7.82640828 3.62217774 7.93308391 3.77085829 8.00009724 3.9330936 8L11.0672592 8C11.3062553 8 11.5 7.85673103 11.5 7.67999993L11.5 4.32000035z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
11
assets/img/icon/provider/delivery/stackpath-round.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="20.5" fill="#FFF" stroke="#E4E4E4"/>
|
||||
<g fill="#000" fill-rule="nonzero" transform="translate(9 16)">
|
||||
<path d="M5.02924587,6.7488 C5.02924587,6.4312 4.92404587,6.1864 4.71364587,6.0124 C4.50324587,5.8392 4.12604587,5.656 3.58164587,5.462 C2.44364587,5.1032 1.60044587,4.7188 1.05204587,4.3084 C0.503245873,3.898 0.228845873,3.3056 0.228845873,2.53 C0.228845873,1.7752 0.555645873,1.1652 1.20924587,0.6992 C1.86324587,0.2332 2.69284587,0 3.69924587,0 C4.69764587,0 5.51524587,0.2564 6.15244587,0.77 C6.78924587,1.2832 7.09764587,1.9448 7.07684587,2.7524 L7.06444587,2.79 L5.03564587,2.79 C5.03564587,2.4312 4.91404587,2.1392 4.67044587,1.9144 C4.42684587,1.69 4.09084587,1.5776 3.66204587,1.5776 C3.24164587,1.5776 2.91164587,1.6704 2.67204587,1.856 C2.43324587,2.0416 2.31404587,2.2704 2.31404587,2.5424 C2.31404587,2.8064 2.43444587,3.018 2.67564587,3.1768 C2.91684587,3.3356 3.36924587,3.5344 4.03324587,3.7736 C5.05644587,4.0784 5.82644587,4.454 6.34404587,4.8996 C6.86124587,5.3448 7.12004587,5.9572 7.12004587,6.7368 C7.12004587,7.5288 6.81164587,8.1484 6.19524587,8.5956 C5.57924587,9.0428 4.76124587,9.2668 3.74284587,9.2668 C2.72044587,9.2668 1.83564587,9.0104 1.08964587,8.4968 C0.342845873,7.9832 -0.0199541268,7.244 0.000845873155,6.2792 L0.0132458732,6.242 L2.04844587,6.242 C2.04844587,6.7612 2.18884587,7.1328 2.46924587,7.3552 C2.74924587,7.578 3.17444587,7.6892 3.74324587,7.6892 C4.17644587,7.6892 4.49884587,7.6028 4.71164587,7.4296 C4.92324587,7.256 5.02924587,7.0292 5.02924587,6.7488"/>
|
||||
<polygon points="22.032 0 19 9.13 19.305 9.13 20.895 9.13 24 0"/>
|
||||
<polygon points="18.165 0 15 9.13 16.978 9.13 20.22 0"/>
|
||||
<path d="M11.1256,4.3704 L12.4208,4.3704 C12.8804,4.3704 13.2308,4.244 13.4708,3.9908 C13.7112,3.738 13.8312,3.4132 13.8312,3.016 C13.8312,2.6104 13.7112,2.2784 13.4708,2.0188 C13.2304,1.76 12.8804,1.6304 12.4208,1.6304 L11.1256,1.6304 L11.1256,4.3704 L11.1256,4.3704 Z M11.1256,6.0008 L11.1256,9.13 L9,9.13 L9,0 L12.4208,0 C13.5036,0 14.3624,0.2772 14.9976,0.8308 C15.6328,1.3852 15.9508,2.1092 15.9508,3.0036 C15.9508,3.9024 15.6328,4.6268 14.9976,5.1764 C14.3624,5.7264 13.5032,6.0008 12.4208,6.0008 L11.1256,6.0008 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
8
assets/img/icon/provider/delivery/stackpath.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g transform="translate(0 7)">
|
||||
<path d="M5.02924587,6.7488 C5.02924587,6.4312 4.92404587,6.1864 4.71364587,6.0124 C4.50324587,5.8392 4.12604587,5.656 3.58164587,5.462 C2.44364587,5.1032 1.60044587,4.7188 1.05204587,4.3084 C0.503245873,3.898 0.228845873,3.3056 0.228845873,2.53 C0.228845873,1.7752 0.555645873,1.1652 1.20924587,0.6992 C1.86324587,0.2332 2.69284587,0 3.69924587,0 C4.69764587,0 5.51524587,0.2564 6.15244587,0.77 C6.78924587,1.2832 7.09764587,1.9448 7.07684587,2.7524 L7.06444587,2.79 L5.03564587,2.79 C5.03564587,2.4312 4.91404587,2.1392 4.67044587,1.9144 C4.42684587,1.69 4.09084587,1.5776 3.66204587,1.5776 C3.24164587,1.5776 2.91164587,1.6704 2.67204587,1.856 C2.43324587,2.0416 2.31404587,2.2704 2.31404587,2.5424 C2.31404587,2.8064 2.43444587,3.018 2.67564587,3.1768 C2.91684587,3.3356 3.36924587,3.5344 4.03324587,3.7736 C5.05644587,4.0784 5.82644587,4.454 6.34404587,4.8996 C6.86124587,5.3448 7.12004587,5.9572 7.12004587,6.7368 C7.12004587,7.5288 6.81164587,8.1484 6.19524587,8.5956 C5.57924587,9.0428 4.76124587,9.2668 3.74284587,9.2668 C2.72044587,9.2668 1.83564587,9.0104 1.08964587,8.4968 C0.342845873,7.9832 -0.0199541268,7.244 0.000845873155,6.2792 L0.0132458732,6.242 L2.04844587,6.242 C2.04844587,6.7612 2.18884587,7.1328 2.46924587,7.3552 C2.74924587,7.578 3.17444587,7.6892 3.74324587,7.6892 C4.17644587,7.6892 4.49884587,7.6028 4.71164587,7.4296 C4.92324587,7.256 5.02924587,7.0292 5.02924587,6.7488"/>
|
||||
<polygon points="22.032 0 19 9.13 19.305 9.13 20.895 9.13 24 0"/>
|
||||
<polygon points="18.165 0 15 9.13 16.978 9.13 20.22 0"/>
|
||||
<path d="M11.1256,4.3704 L12.4208,4.3704 C12.8804,4.3704 13.2308,4.244 13.4708,3.9908 C13.7112,3.738 13.8312,3.4132 13.8312,3.016 C13.8312,2.6104 13.7112,2.2784 13.4708,2.0188 C13.2304,1.76 12.8804,1.6304 12.4208,1.6304 L11.1256,1.6304 L11.1256,4.3704 L11.1256,4.3704 Z M11.1256,6.0008 L11.1256,9.13 L9,9.13 L9,0 L12.4208,0 C13.5036,0 14.3624,0.2772 14.9976,0.8308 C15.6328,1.3852 15.9508,2.1092 15.9508,3.0036 C15.9508,3.9024 15.6328,4.6268 14.9976,5.1764 C14.3624,5.7264 13.5032,6.0008 12.4208,6.0008 L11.1256,6.0008 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
3
assets/img/icon/provider/storage/aws-link.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="#0073AA" d="M13.95,2.68421053 L17.55,1.34210526 L13.95,0 L10.35,1.34210526 L13.95,2.68421053 Z M14.4,3.57894737 L14.4,8.05263158 L18,6.71052632 L18,2.23684211 L14.4,3.57894737 Z M13.5,3.57894737 L9.9,2.23684211 L9.9,6.71052632 L13.5,8.05263158 L13.5,3.57894737 Z M4.05,2.68421053 L7.65,1.34210526 L4.05,0 L0.45,1.34210526 L4.05,2.68421053 Z M4.5,3.57894737 L4.5,8.05263158 L8.1,6.71052632 L8.1,2.23684211 L4.5,3.57894737 Z M3.6,3.57894737 L0,2.23684211 L0,6.71052632 L3.6,8.05263158 L3.6,3.57894737 Z M9,11.6315789 L12.6,10.2894737 L9,8.94736842 L5.4,10.2894737 L9,11.6315789 Z M9.45,12.5263158 L9.45,17 L13.05,15.6578947 L13.05,11.1842105 L9.45,12.5263158 Z M8.55,12.5263158 L4.95,11.1842105 L4.95,15.6578947 L8.55,17 L8.55,12.5263158 Z" transform="translate(3 4)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 873 B |
7
assets/img/icon/provider/storage/aws-round.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#FFD6C5"/>
|
||||
<path fill="#FA7460" fill-rule="nonzero" d="M12.5,3 L16,1.5 L12.5,0 L9,1.5 L12.5,3 Z M13,3.5 L13,7.5 L16,6.458125 L16,2.5 L13,3.5 Z M12,3.5 L9,2.5 L9,6.458125 L12,7.5 L12,3.5 Z M3.5,3 L7,1.5 L3.5,0 L0,1.5 L3.5,3 Z M4,3.541875 L4,7.5 L7,6.458125 L7,2.5 L4,3.541875 Z M3,3.541875 L9.09494702e-13,2.5 L9.09494702e-13,6.458125 L3,7.5 L3,3.541875 Z M8,10 L11.5,8.5 L8,7 L4.5,8.5 L8,10 Z M8.5,10.541875 L8.5,14.5 L11.5,13.458125 L11.5,9.5 L8.5,10.541875 Z M7.5,10.541875 L4.5,9.5 L4.5,13.458125 L7.5,14.5 L7.5,10.541875 Z" transform="translate(13 14)"/>
|
||||
<polygon points="20.5 40.542 17.5 39.5 17.5 43.458 20.5 44.5"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 808 B |
3
assets/img/icon/provider/storage/aws.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="#FA7460" d="M17.5,6 L21.5,4.5 L17.5,3 L13.5,4.5 L17.5,6 Z M18,7 L18,12 L22,10.5 L22,5.5 L18,7 Z M17,7 L13,5.5 L13,10.5 L17,12 L17,7 Z M6.5,6 L10.5,4.5 L6.5,3 L2.5,4.5 L6.5,6 Z M7,7 L7,12 L11,10.5 L11,5.5 L7,7 Z M6,7 L2,5.5 L2,10.5 L6,12 L6,7 Z M12,16 L16,14.5 L12,13 L8,14.5 L12,16 Z M12.5,17 L12.5,22 L16.5,20.5 L16.5,15.5 L12.5,17 Z M11.5,17 L7.5,15.5 L7.5,20.5 L11.5,22 L11.5,17 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 492 B |
8
assets/img/icon/provider/storage/do-link.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#0073AA" d="M12.5,18 C16.6001068,18 19.2724918,14.0555992 17.6979642,9.73757151 C17.1126434,8.13185074 15.8484684,6.86676389 14.2437866,6.28090265 C9.92837002,4.71705687 5.86234391,7.8900831 5.86234391,11.9926708 L2,11.9926708 C2,5.45404627 8.32016267,0.354095641 15.172385,2.49565767 C18.1626643,3.43685371 20.5523217,5.8163225 21.4813211,8.80881241 C23.621989,15.6760131 19.046699,22 12.5,22 L12.5,18 Z"/>
|
||||
<polygon fill="#0073AA" points="8.5 18 12.5 18 12.5 14 8.5 14"/>
|
||||
<polygon fill="#0073AA" points="5.5 21 8.5 21 8.5 18 5.5 18"/>
|
||||
<polygon fill="#0073AA" points="3 18 5.5 18 5.5 15.5 3 15.5"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 763 B |
7
assets/img/icon/provider/storage/do-round.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#CDE6FF"/>
|
||||
<path fill="#0080FF" d="M20.991018,25.5 C24.1686008,25.5 26.3861811,22.3430894 25.1659222,18.9966179 C24.7122987,17.7521843 23.732563,16.771742 22.4889346,16.3176996 C19.1444868,15.1057191 15.9933165,17.5648144 15.9933165,20.7443199 L13,20.7443199 C13,15.6768859 17.8981261,11.7244241 23.2085984,13.3841347 C25.5260648,14.1135616 27.3780493,15.9576499 28.0980238,18.2768296 C29.7570415,23.5989101 26.0647097,28.5 20.991018,28.5 L20.991018,25.5 Z"/>
|
||||
<path fill="#0080FF" d="M18.5,26 L21.5,26 L21.5,23 L18.5003124,23 L18.5,26 Z M16,28.5 L18.5,28.5 L18.5,26 L16,26 L16,28.5 Z M14,26 L16,26 L16,24 L14,24 L14,26 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 809 B |
8
assets/img/icon/provider/storage/do.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#0080FF" d="M12.5,18 C16.6001068,18 19.2724918,14.0555992 17.6979642,9.73757151 C17.1126434,8.13185074 15.8484684,6.86676389 14.2437866,6.28090265 C9.92837002,4.71705687 5.86234391,7.8900831 5.86234391,11.9926708 L2,11.9926708 C2,5.45404627 8.32016267,0.354095641 15.172385,2.49565767 C18.1626643,3.43685371 20.5523217,5.8163225 21.4813211,8.80881241 C23.621989,15.6760131 19.046699,22 12.5,22 L12.5,18 Z"/>
|
||||
<polygon fill="#0080FF" points="8.5 18 12.5 18 12.5 14 8.5 14"/>
|
||||
<polygon fill="#0080FF" points="5.5 21 8.5 21 8.5 18 5.5 18"/>
|
||||
<polygon fill="#0080FF" points="3 18 5.5 18 5.5 15.5 3 15.5"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 763 B |
7
assets/img/icon/provider/storage/gcp-link.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#0073AA" fill-rule="nonzero" d="M17.4999789 5C15.5 3.50287439 14 3 11.5 3 10 3 6 4 5 10 5 10 6.33333333 10 9 10 9.5 7.00574877 12.5 5.5 15 8L17.4999789 5zM20 9C19.5417503 7.33397632 18.8073189 6.14420224 17.5 5L15 8C16.3333333 9 16.8333333 10.3333333 16.5 12 17.874749 12 19 13.1424489 19 14.5 19 15.8575511 17.874749 17 16.5 17L11.5 17 11 17.5604053 11 20.50924 11.4967812 20.9998066 16.475602 20.9998066C20.0507752 21.0269848 22.9724775 18.0304482 23 14.5 23.0165135 12.35564 21.7944672 10.1985586 20 9z"/>
|
||||
<path fill="#0073AA" fill-rule="nonzero" d="M6.9578817,20.9999272 L12,20.9999272 L12,17 L8,17 C6.5,17 5.5,16 5.5,16 L5,16.5 L3.17698978,19.0999945 L3,19.5 C4.1385878,20.3080925 5.52942087,21.0064652 6.9578817,20.9999272 Z"/>
|
||||
<path fill="#0073AA" fill-rule="nonzero" d="M7.00010877,8 C3.60719065,8.01960989 0.980526716,10.61033 1.00010877,14.0000463 C1.01185801,15.8924966 1.4975121,18.3470993 3.00010877,19.5000511 L5.50010877,16.0000463 C4.50010877,15.0000463 4.50010877,14.0000463 5.00010877,13.0000463 C5.50010877,12.0000463 6.81202174,11.4639579 8,12 C8.52349372,12.2360672 8.76251312,12.4770466 9.00010877,13.0000463 L11.5,10.5 C10.3355202,8.97664925 8.91784511,7.99222088 7.00010877,8 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
11
assets/img/icon/provider/storage/gcp-round.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="20.5" fill="#FFF" stroke="#E4E4E4"/>
|
||||
<g fill-rule="nonzero" transform="translate(12 14)">
|
||||
<path fill="#FF3E3A" d="M13.8910033,2.78928954 L14.5,2.01018449 C11.5196054,-0.949010824 6.28188717,-0.586342311 3.59518837,2.73744564 C2.84889539,3.66060415 2.2952392,4.8115227 2,6 L2.58577457,5.90987508 L5.85677799,5.32089305 L6,5 C7.45502876,3.25512368 10.3199956,3.01920567 12,4.50381918 L13.8910033,2.78928954 Z"/>
|
||||
<path fill="#1B95FF" d="M14.5,2 L12,4.5 C12.984163,5.27567565 13.5864176,6.19236274 13.5623882,7.41799649 L13.5623882,7.81706347 C14.7079665,7.81706347 15.6367573,8.7128767 15.6367573,9.81786898 C15.6367573,10.9229332 14.6455783,12 13.5,12 L9.5,12 L9,12 L9,15 L9.40790378,14.9998372 L13.5623882,14.9998372 C16.5421902,15.0222236 18.9766281,12.7328431 18.9998367,9.85861067 C19.0138663,8.11643568 18.1233584,6.48316913 16.6272635,5.50709621 C16.2455533,4.15124743 15.5896091,2.93237998 14.5,2 Z"/>
|
||||
<path fill="#0FB659" d="M9,14.999959 L9,11.9999993 L6,11.9999993 C4.5,11.9999993 4,11.4999993 4,11.4999993 L3,12.4999993 L2,13.4999993 L1.5,13.9999993 C2.38642684,14.605621 3.88926844,15.00434 5,14.9999993 L9,14.999959 Z"/>
|
||||
<path fill="#FFCD3E" d="M9.11757497e-05,10.0503409 C0.00933482501,11.5986523 0.271567664,13.0561397 1.5,14 L4,11.5 C3.0276098,11.0610873 2.56068341,9.97142684 3,9 C3.43924709,8.02857316 4.5277488,7.56115671 5.5,8 C5.92847442,8.19338268 6.30643937,8.57198892 6.5,9 L9,6.96809175 C8.0463751,5.72259616 6.56461118,4.99440793 4.99506733,5.00003234 C2.21981802,5.0165584 -0.0164500913,7.27771235 9.11757497e-05,10.0503409 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
8
assets/img/icon/provider/storage/gcp.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#EA4335" fill-rule="nonzero" d="M17.4999789,5 C15.5,3.50287439 14,3 11.5,3 C10,3 6,4 5,10 C5,10 6.33333333,10 9,10 C9.5,7.00574877 12.5,5.5 15,8 L17.4999789,5 Z"/>
|
||||
<path fill="#4285F4" fill-rule="nonzero" d="M20,9 C19.5417503,7.33397632 18.8073189,6.14420224 17.5,5 L15,8 C16.3333333,9 16.8333333,10.3333333 16.5,12 C17.874749,12 19,13.1424489 19,14.5 C19,15.8575511 17.874749,17 16.5,17 L11.5,17 L11,17.5604053 L11,20.50924 L11.4967812,20.9998066 L16.475602,20.9998066 C20.0507752,21.0269848 22.9724775,18.0304482 23,14.5 C23.0165135,12.35564 21.7944672,10.1985586 20,9 Z"/>
|
||||
<path fill="#34A853" fill-rule="nonzero" d="M6.9578817,20.9999272 L12,20.9999272 L12,17 L8,17 C6.5,17 5.5,16 5.5,16 L5,16.5 L3.17698978,19.0999945 L3,19.5 C4.1385878,20.3080925 5.52942087,21.0064652 6.9578817,20.9999272 Z"/>
|
||||
<path fill="#FBBC05" fill-rule="nonzero" d="M7.00010877,8 C3.60719065,8.01960989 0.980526716,10.61033 1.00010877,14.0000463 C1.01185801,15.8924966 1.4975121,18.3470993 3.00010877,19.5000511 L5.50010877,16.0000463 C4.50010877,15.0000463 4.50010877,14.0000463 5.00010877,13.0000463 C5.50010877,12.0000463 6.81202174,11.4639579 8,12 C8.52349372,12.2360672 8.76251312,12.4770466 9.00010877,13.0000463 L11.5,10.5 C10.3355202,8.97664925 8.91784511,7.99222088 7.00010877,8 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
6
assets/img/icon/provider/storage/s3compatible-link.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="none">
|
||||
<rect x="14" y="22" width="52" height="36" rx="4" stroke="#3B5BDB" stroke-width="2.5"/>
|
||||
<ellipse cx="40" cy="22" rx="26" ry="7" fill="#3B5BDB"/>
|
||||
<ellipse cx="40" cy="22" rx="26" ry="7" fill="white" opacity="0.25"/>
|
||||
<text x="40" y="50" font-family="monospace,sans-serif" font-size="13" font-weight="700" fill="#3B5BDB" text-anchor="middle">S3</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 437 B |
7
assets/img/icon/provider/storage/s3compatible-round.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="none">
|
||||
<circle cx="40" cy="40" r="38" fill="#3B5BDB"/>
|
||||
<rect x="16" y="26" width="48" height="30" rx="3" fill="white" opacity="0.15"/>
|
||||
<rect x="16" y="26" width="48" height="30" rx="3" stroke="white" stroke-width="2"/>
|
||||
<ellipse cx="40" cy="26" rx="24" ry="6" fill="white"/>
|
||||
<text x="40" y="49" font-family="monospace,sans-serif" font-size="12" font-weight="700" fill="white" text-anchor="middle">S3</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 489 B |
8
assets/img/icon/provider/storage/s3compatible.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" fill="none">
|
||||
<rect width="80" height="80" rx="8" fill="#F0F4FF"/>
|
||||
<rect x="14" y="22" width="52" height="36" rx="4" fill="#3B5BDB" opacity="0.15"/>
|
||||
<rect x="14" y="22" width="52" height="36" rx="4" stroke="#3B5BDB" stroke-width="2.5"/>
|
||||
<ellipse cx="40" cy="22" rx="26" ry="7" fill="#3B5BDB"/>
|
||||
<ellipse cx="40" cy="22" rx="26" ry="7" fill="white" opacity="0.25"/>
|
||||
<text x="40" y="50" font-family="monospace,sans-serif" font-size="13" font-weight="700" fill="#3B5BDB" text-anchor="middle">S3</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 576 B |
3
assets/img/icon/refresh-disabled.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="11" height="12" viewBox="0 0 11 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.33333 11.3333C3.85556 11.3333 2.59722 10.8139 1.55833 9.77499C0.519444 8.7361 0 7.47777 0 5.99999C0 4.52221 0.519444 3.26388 1.55833 2.22499C2.59722 1.1861 3.85556 0.666656 5.33333 0.666656C6.27778 0.666656 7.10556 0.858323 7.81667 1.24166C8.52778 1.62499 9.14444 2.14999 9.66667 2.81666V1.16666C9.66667 1.02221 9.71389 0.902768 9.80833 0.808323C9.90278 0.713879 10.0222 0.666656 10.1667 0.666656C10.3111 0.666656 10.4306 0.713879 10.525 0.808323C10.6194 0.902768 10.6667 1.02221 10.6667 1.16666V4.39999C10.6667 4.54443 10.6194 4.66388 10.525 4.75832C10.4306 4.85277 10.3111 4.89999 10.1667 4.89999H6.93333C6.78889 4.89999 6.66944 4.85277 6.575 4.75832C6.48056 4.66388 6.43333 4.54443 6.43333 4.39999C6.43333 4.25555 6.48056 4.1361 6.575 4.04166C6.66944 3.94721 6.78889 3.89999 6.93333 3.89999H9.23333C8.81111 3.23332 8.27222 2.69443 7.61667 2.28332C6.96111 1.87221 6.2 1.66666 5.33333 1.66666C4.12222 1.66666 3.09722 2.0861 2.25833 2.92499C1.41944 3.76388 1 4.78888 1 5.99999C1 7.2111 1.41944 8.2361 2.25833 9.07499C3.09722 9.91388 4.12222 10.3333 5.33333 10.3333C6.2 10.3333 6.99444 10.1028 7.71667 9.64166C8.43889 9.18055 8.97778 8.5611 9.33333 7.78332C9.37778 7.69443 9.45 7.61666 9.55 7.54999C9.65 7.48332 9.75 7.44999 9.85 7.44999C10.0389 7.44999 10.175 7.5111 10.2583 7.63332C10.3417 7.75555 10.35 7.89999 10.2833 8.06666C9.87222 9.05555 9.21945 9.84721 8.325 10.4417C7.43056 11.0361 6.43333 11.3333 5.33333 11.3333Z" fill="#1D2939"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
3
assets/img/icon/refresh.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="11" height="12" viewBox="0 0 11 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.33333 11.3333C3.85556 11.3333 2.59722 10.8139 1.55833 9.77499C0.519444 8.7361 0 7.47777 0 5.99999C0 4.52221 0.519444 3.26388 1.55833 2.22499C2.59722 1.1861 3.85556 0.666656 5.33333 0.666656C6.27778 0.666656 7.10556 0.858323 7.81667 1.24166C8.52778 1.62499 9.14444 2.14999 9.66667 2.81666V1.16666C9.66667 1.02221 9.71389 0.902768 9.80833 0.808323C9.90278 0.713879 10.0222 0.666656 10.1667 0.666656C10.3111 0.666656 10.4306 0.713879 10.525 0.808323C10.6194 0.902768 10.6667 1.02221 10.6667 1.16666V4.39999C10.6667 4.54443 10.6194 4.66388 10.525 4.75832C10.4306 4.85277 10.3111 4.89999 10.1667 4.89999H6.93333C6.78889 4.89999 6.66944 4.85277 6.575 4.75832C6.48056 4.66388 6.43333 4.54443 6.43333 4.39999C6.43333 4.25555 6.48056 4.1361 6.575 4.04166C6.66944 3.94721 6.78889 3.89999 6.93333 3.89999H9.23333C8.81111 3.23332 8.27222 2.69443 7.61667 2.28332C6.96111 1.87221 6.2 1.66666 5.33333 1.66666C4.12222 1.66666 3.09722 2.0861 2.25833 2.92499C1.41944 3.76388 1 4.78888 1 5.99999C1 7.2111 1.41944 8.2361 2.25833 9.07499C3.09722 9.91388 4.12222 10.3333 5.33333 10.3333C6.2 10.3333 6.99444 10.1028 7.71667 9.64166C8.43889 9.18055 8.97778 8.5611 9.33333 7.78332C9.37778 7.69443 9.45 7.61666 9.55 7.54999C9.65 7.48332 9.75 7.44999 9.85 7.44999C10.0389 7.44999 10.175 7.5111 10.2583 7.63332C10.3417 7.75555 10.35 7.89999 10.2833 8.06666C9.87222 9.05555 9.21945 9.84721 8.325 10.4417C7.43056 11.0361 6.43333 11.3333 5.33333 11.3333Z" fill="#3F94BA"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
6
assets/img/icon/region-round.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="21" cy="21" r="21" fill="#E4EAF1"/>
|
||||
<path fill="#87A2C2" fill-rule="nonzero" d="M21,13 C16.5888208,13 13,16.5888209 13,21 C13,25.4111791 16.5897804,29 21,29 C25.4111788,29 29,25.4111791 29,21 C29.0009592,16.5888209 25.4121384,13 21,13 Z M23.3815588,27.5798509 C23.3946263,27.4503593 23.3022201,27.3143466 23.3022201,27.3143466 L23.9313288,26.4190844 C23.9313288,26.4190844 24.4428295,25.7800106 24.5063004,25.5247538 C24.5707047,25.2694969 25.2100807,24.9499601 25.5946396,24.2624434 C25.9782652,23.5749268 23.9938663,24.0034602 24.2402827,23.8562683 C24.4866991,23.7081448 23.8025202,23.5441842 23.0343356,23.3084908 C22.2670845,23.073729 21.9525302,22.0750599 21.9525302,22.0750599 C19.974665,21.3092893 21.5623708,24.6565079 21.5623708,24.6565079 C21.5623708,24.6565079 22.0878725,24.8381688 22.1606774,25.4138941 C22.2278819,25.956082 22.0402694,27.5668086 22.7160477,27.7838701 C22.1690779,27.9198829 21.6015734,28 21.0135342,28 C17.1464764,28 14,24.8595954 14,20.9990684 C14,20.3907373 14.0868058,19.8029013 14.2333489,19.2402183 C14.4573638,19.608198 14.8568571,20.2137344 15.5765051,21.202156 C17.1128742,23.3094224 18.0089339,22.5427203 19.6722448,23.7714932 C21.3364891,25.0002662 20.3760251,22.8622571 19.6722448,22.8706415 C18.9684646,22.8799574 18.4560304,21.3297844 18.4560304,21.3297844 C18.4560304,21.3297844 18.1358757,20.2435454 18.7117808,19.6873836 C19.2876858,19.1312217 19.4799653,19.7963801 19.9279952,19.6873836 C20.3760251,19.578387 20.6317755,18.9663295 20.439496,18.3906042 C20.2472165,17.8158105 19.7357157,18.8377695 19.415561,18.7101411 C19.0954064,18.5825126 19.2876858,18.1353474 20.9519301,17.7515305 C22.615241,17.3677136 21.4634309,16.7761512 21.4634309,16.7761512 C21.4634309,16.7761512 20.7596506,17.1124567 20.1193413,16.6652915 C19.4799653,16.2181262 19.6069071,17.4319936 18.9675312,16.2181262 C18.4681645,15.2697631 17.3872925,15.5073197 16.6088406,15.5576258 C17.8147877,14.5859729 19.3464898,14 21.0135342,14 C23.2163478,14 25.1830122,15.0210274 26.4701647,16.6121906 C25.8541236,16.6690178 24.8376558,16.8944637 24.6071071,17.7478041 L23.6951797,18.7921214 C22.5909727,20.0954219 24.1273418,21.0894331 24.4148277,21 C24.7032469,20.9096353 25.2306154,20.4783072 25.6142409,21.3894064 C25.9978665,22.2995741 25.9941329,24.1236359 26.2340156,24.4105669 C26.4738983,24.697498 27.1627442,23.9922811 27.0992733,22.841762 C27.2038136,22.4998669 27.7890526,22.0620176 28,21.5300772 C27.789986,24.327655 25.9259951,26.6659569 23.3815588,27.5798509 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
6
assets/img/icon/region.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="8" cy="8" r="7.5" stroke="#ACBDCB"/>
|
||||
<path fill="#87A2C2" fill-rule="nonzero" d="M8,0 C3.58882083,0 0,3.58882092 0,8 C0,12.4111791 3.58978041,16 8,16 C12.4111788,16 16,12.4111791 16,8 C16.0009592,3.58882092 12.4121384,0 8,0 Z M10.3815588,14.5798509 C10.3946263,14.4503593 10.3022201,14.3143466 10.3022201,14.3143466 L10.9313288,13.4190844 C10.9313288,13.4190844 11.4428295,12.7800106 11.5063004,12.5247538 C11.5707047,12.2694969 12.2100807,11.9499601 12.5946396,11.2624434 C12.9782652,10.5749268 10.9938663,11.0034602 11.2402827,10.8562683 C11.4866991,10.7081448 10.8025202,10.5441842 10.0343356,10.3084908 C9.26708447,10.073729 8.95253017,9.07505989 8.95253017,9.07505989 C6.97466498,8.30928933 8.56237082,11.6565079 8.56237082,11.6565079 C8.56237082,11.6565079 9.08787252,11.8381688 9.16067738,12.4138941 C9.22788186,12.956082 9.04026935,14.5668086 9.71604774,14.7838701 C9.16907794,14.9198829 8.60157344,15 8.01353424,15 C4.14647643,15 1,11.8595954 1,7.99906841 C1,7.39073729 1.08680579,6.80290125 1.23334889,6.24021826 C1.45736382,6.60819803 1.85685712,7.21373436 2.5765051,8.20215598 C4.11287419,10.3094224 5.00893393,9.54272026 6.67224482,10.7714932 C8.3364891,12.0002662 7.37602507,9.86225712 6.67224482,9.87064147 C5.96846456,9.87995741 5.4560304,8.3297844 5.4560304,8.3297844 C5.4560304,8.3297844 5.13587573,7.24354538 5.71178079,6.68738355 C6.28768585,6.13122172 6.47996533,6.79638009 6.9279952,6.68738355 C7.37602507,6.57838701 7.63177545,5.96632952 7.43949597,5.39060421 C7.24721648,4.81581049 6.73571571,5.8377695 6.41556104,5.71014107 C6.09540636,5.58251264 6.28768585,5.13534735 7.95193013,4.75153048 C9.61524102,4.3677136 8.4634309,3.77615118 8.4634309,3.77615118 C8.4634309,3.77615118 7.75965064,4.11245675 7.11934129,3.66529146 C6.47996533,3.21812616 6.60690713,4.43199361 5.96753117,3.21812616 C5.46816454,2.26976311 4.38729249,2.50731967 3.60884059,2.55762577 C4.81478765,1.58597285 6.34648977,1 8.01353424,1 C10.2163478,1 12.1830122,2.02102742 13.4701647,3.61219058 C12.8541236,3.66901783 11.8376558,3.89446367 11.6071071,4.7478041 L10.6951797,5.79212137 C9.59097273,7.09542188 11.1273418,8.08943306 11.4148277,8 C11.7032469,7.90963535 12.2306154,7.47830716 12.6142409,8.38940644 C12.9978665,9.29957413 12.9941329,11.1236359 13.2340156,11.4105669 C13.4738983,11.697498 14.1627442,10.9922811 14.0992733,9.84176204 C14.2038136,9.49986692 14.7890526,9.06201757 15,8.53007719 C14.789986,11.327655 12.9259951,13.6659569 10.3815588,14.5798509 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
19
assets/img/icon/remove-from-bucket.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1095_9136)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.9404 11.0763C20.426 10.7295 21.9248 11.5981 22.288 13.0165C23.0875 13.0721 23.8696 13.2661 24.5963 13.5891C24.9571 13.7506 25.1909 14.0931 25.2 14.4734C25.1954 14.7655 24.946 15 24.64 15H14.5601L14.5522 15C14.2429 14.9958 13.9957 14.7531 14.0001 14.4579C14.0251 14.0644 14.2813 13.7184 14.6614 13.5645C15.372 13.2606 16.1319 13.0752 16.9081 13.0165C17.1535 12.0585 17.9369 11.3105 18.9404 11.0763ZM18.144 12.909C19.1139 12.855 20.0862 12.855 21.056 12.909C20.7746 12.3843 20.2045 12.0587 19.5872 12.0702C18.9772 12.0618 18.4162 12.3879 18.144 12.909ZM15.1 15.8H24.1C24.2657 15.8 24.4 15.9373 24.4 16.1067V23.7734C24.4 24.4508 23.8627 25 23.2 25H16C15.3372 25 14.8 24.4508 14.8 23.7734V16.1067C14.8 15.9373 14.9343 15.8 15.1 15.8ZM18 23.4C18.2209 23.4 18.4 23.1878 18.4 22.9259V17.4741C18.4 17.2123 18.2209 17 18 17C17.7791 17 17.6 17.2123 17.6 17.4741V22.9259C17.6 23.1878 17.7791 23.4 18 23.4ZM21.2 23.4C21.4209 23.4 21.6 23.1878 21.6 22.9259V17.4741C21.6 17.2123 21.4209 17 21.2 17C20.9791 17 20.8 17.2123 20.8 17.4741V22.9259C20.8 23.1878 20.9791 23.4 21.2 23.4Z" fill="#87A2C2"/>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1095_9136" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1095_9136"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1095_9136" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
25
assets/img/icon/remove-from-server.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1132_9421)">
|
||||
<rect x="4" y="2" width="32" height="32" rx="6" fill="white" shape-rendering="crispEdges"/>
|
||||
<g clip-path="url(#clip0_1132_9421)">
|
||||
<path d="M13.9768 18.6524H25.4964C25.8499 18.6524 26.1364 18.359 26.1364 17.9971V17.3419C26.1364 16.4372 25.4201 15.7038 24.5365 15.7038H21.5471C21.502 15.7036 21.4589 15.684 21.4286 15.6497C21.3983 15.6154 21.3835 15.5697 21.3878 15.5236L21.7839 11.4677C21.8594 10.6701 21.4865 9.89773 20.8216 9.47494C20.1568 9.05214 19.3152 9.05214 18.6504 9.47494C17.9855 9.89773 17.6125 10.6701 17.6881 11.4677L18.0842 15.5236C18.0886 15.5697 18.074 15.6155 18.0439 15.6501C18.0138 15.6839 17.9714 15.7033 17.9268 15.7038H14.9368C14.0532 15.7038 13.3368 16.4372 13.3368 17.3419V17.9971C13.3368 18.359 13.6234 18.6524 13.9768 18.6524ZM20.3766 11.6086C20.3766 11.9704 20.0901 12.2638 19.7366 12.2638C19.3832 12.2638 19.0967 11.9704 19.0967 11.6086C19.0967 11.2467 19.3832 10.9533 19.7366 10.9533C20.0901 10.9533 20.3766 11.2467 20.3766 11.6086Z" fill="#87A2C2"/>
|
||||
<path d="M26.3719 23.8674C25.7998 22.9571 25.4958 21.8972 25.4965 20.8147V19.9629C25.4965 19.7819 25.3532 19.6353 25.1765 19.6353H14.2968C14.1201 19.6353 13.9768 19.7819 13.9768 19.9629V20.8147C13.9773 21.8974 13.6734 22.9574 13.1013 23.8681C12.9749 24.0698 12.9662 24.326 13.0785 24.5363C13.1907 24.7465 13.4062 24.8772 13.6402 24.8772H14.5963C15.3453 24.8779 16.0449 24.4947 16.4599 23.8563C16.5956 23.6486 16.7409 23.4225 16.8823 23.2011C16.9208 23.14 16.994 23.1123 17.0621 23.1329C17.1301 23.1535 17.1768 23.2175 17.1767 23.2902V24.2219C17.1767 24.5838 17.4632 24.8772 17.8167 24.8772H25.8331C26.0673 24.8774 26.283 24.7466 26.3953 24.5361C26.5076 24.3256 26.4987 24.0691 26.3719 23.8674Z" fill="#87A2C2"/>
|
||||
</g>
|
||||
<rect x="4.5" y="2.5" width="31" height="31" rx="5.5" stroke="#E1E5E9" shape-rendering="crispEdges"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1132_9421" x="0" y="0" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1132_9421"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1132_9421" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_1132_9421">
|
||||
<rect width="13.4737" height="16" fill="white" transform="translate(13 10)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
10
assets/img/icon/stars.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1093_8942)">
|
||||
<path d="M9.10625 7.02C9.23 6.64875 9.7475 6.64875 9.87125 7.02L10.5912 9.19125C10.9062 10.1587 11.6712 10.9237 12.6387 11.2387L14.8167 11.9587C15.188 12.0825 15.188 12.6 14.8167 12.7237L12.6342 13.4437C11.6555 13.7587 10.8905 14.5237 10.5755 15.4912L9.8375 17.6625C9.75875 17.865 9.53375 17.9887 9.32 17.9212C9.19625 17.8762 9.095 17.775 9.05 17.6512L8.31875 15.4687C7.9925 14.49 7.2275 13.725 6.26 13.41L4.0775 12.6787C3.86375 12.6 3.74 12.375 3.8075 12.1612C3.84125 12.0375 3.9425 11.9362 4.06625 11.8912L6.2375 11.16C7.205 10.8337 7.97 10.0687 8.285 9.10125L9.005 6.91875L9.10625 7.02ZM4.7525 1.28362H4.74125C4.775 1.14862 4.92125 1.08112 5.045 1.12612C5.1125 1.14862 5.16875 1.20487 5.19125 1.27237L5.61875 2.57737C5.81 3.15112 6.26 3.61237 6.845 3.8115L8.15225 4.24687V4.24125C8.276 4.275 8.3435 4.42125 8.2985 4.545C8.26475 4.6125 8.2085 4.66875 8.141 4.69125L6.83375 5.11875C6.24875 5.31 5.7875 5.76 5.59625 6.345L5.16762 7.65C5.12263 7.77375 4.97637 7.84125 4.85262 7.79625C4.77387 7.7625 4.71762 7.70625 4.69512 7.63875L4.24625 6.33375C4.04375 5.74875 3.59375 5.2875 3.00875 5.09625L1.6925 4.6575C1.5575 4.6125 1.49 4.46625 1.535 4.3425C1.5575 4.26375 1.61375 4.2075 1.68125 4.185L2.98625 3.74962L2.98512 3.7485C3.55887 3.546 4.02012 3.096 4.21137 2.511L4.64675 1.19475L4.7525 1.28362ZM12.695 0.101248C12.7175 0.011248 12.8075 -0.033752 12.8975 -2.04984e-06C12.9425 0.0112479 12.9762 0.0449979 12.9875 0.0899979L13.2687 0.960748C13.3925 1.34325 13.6962 1.65487 14.09 1.78425L14.9562 2.0745C15.035 2.097 15.08 2.187 15.0462 2.277C15.0237 2.322 14.99 2.35575 14.945 2.367L14.0675 2.65725C13.6737 2.781 13.37 3.08475 13.235 3.4785L12.9425 4.34925C12.9087 4.428 12.8187 4.473 12.7287 4.43925C12.6725 4.41675 12.6387 4.383 12.6275 4.338L12.335 3.46725C12.2 3.0735 11.8962 2.76975 11.5025 2.63475L10.625 2.34C10.535 2.30625 10.49 2.21625 10.5237 2.12625C10.535 2.07 10.5687 2.03625 10.6137 2.025L11.48 1.73475C11.8625 1.59975 12.1662 1.296 12.3012 0.911248L12.5825 0.041623L12.695 0.101248Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1093_8942">
|
||||
<rect width="18" height="18" fill="white" transform="translate(0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
3
assets/img/icon/subnav-arrow.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="13" viewBox="0 0 8 13">
|
||||
<polygon fill="#CAD0D6" points="0 11.467 4.947 6.5 0 1.533 1.527 0 8 6.5 1.527 13"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 176 B |
3
assets/img/icon/tab-notifier-error.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="13" height="14" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.3899 3.20037L7.46692 0.935095C6.8263 0.565255 6.03378 0.565255 5.38656 0.935095L1.47022 3.20037C0.829608 3.57021 0.43335 4.25706 0.43335 5.00334V9.52069C0.43335 10.2604 0.829608 10.9472 1.47022 11.3237L5.39317 13.5889C6.03378 13.9588 6.8263 13.9588 7.47352 13.5889L11.3965 11.3237C12.0371 10.9538 12.4333 10.267 12.4333 9.52069V5.00334C12.4267 4.25706 12.0305 3.57682 11.3899 3.20037ZM5.93472 4.45519C5.93472 4.18441 6.15926 3.95986 6.43004 3.95986C6.70082 3.95986 6.92536 4.18441 6.92536 4.45519V7.92244C6.92536 8.19322 6.70082 8.41777 6.43004 8.41777C6.15926 8.41777 5.93472 8.19322 5.93472 7.92244V4.45519ZM7.03764 10.3198C7.00461 10.3991 6.95838 10.4717 6.89895 10.5377C6.77346 10.6632 6.60836 10.7293 6.43004 10.7293C6.34418 10.7293 6.25833 10.7095 6.17908 10.6764C6.09322 10.6434 6.02718 10.5972 5.96114 10.5377C5.9017 10.4717 5.85547 10.3991 5.81584 10.3198C5.78282 10.2406 5.76961 10.1547 5.76961 10.0688C5.76961 9.89713 5.83565 9.72542 5.96114 9.59994C6.02718 9.5405 6.09322 9.49427 6.17908 9.46125C6.42344 9.35558 6.71403 9.41502 6.89895 9.59994C6.95838 9.66598 7.00461 9.73202 7.03764 9.81788C7.07066 9.89713 7.09047 9.98299 7.09047 10.0688C7.09047 10.1547 7.07066 10.2406 7.03764 10.3198Z" fill="#DA5A39"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
3
assets/img/icon/tab-notifier-warning.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.3106 10.7285L7.36421 1.28534C7.08912 0.76689 6.449 0.565859 5.93584 0.835663C5.7401 0.930888 5.58668 1.0896 5.48617 1.28005L0.539763 10.7232H0.534473C0.259379 11.2363 0.460409 11.8765 0.978856 12.1463C1.12698 12.2256 1.29627 12.2627 1.46556 12.2627H11.3531C11.935 12.2627 12.4111 11.7865 12.4111 11.2046C12.4111 11.03 12.3688 10.8607 12.2895 10.7126L12.3106 10.7285ZM5.89881 4.60392C5.89881 4.30767 6.13158 4.0749 6.42784 4.0749C6.7188 4.0749 6.95686 4.30767 6.95686 4.60392V7.77809C6.95686 8.06905 6.7188 8.30711 6.42784 8.30711C6.13158 8.30711 5.89881 8.06905 5.89881 7.77809V4.60392ZM6.45429 10.693H6.43842C6.00461 10.6877 5.64488 10.3439 5.629 9.91536C5.61313 9.48155 5.94642 9.12182 6.38022 9.10595C6.38022 9.10066 6.38551 9.10066 6.3908 9.10066H6.40138C6.8299 9.10066 7.18963 9.43923 7.20551 9.87304C7.22138 10.3015 6.8828 10.6613 6.45429 10.6824C6.44371 10.6824 6.43842 10.6824 6.43313 10.6824L6.45429 10.693Z" fill="#F49C53"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
16
assets/img/icon/tool-analyzerepair-active.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-analyzerepeair-active</title>
|
||||
<defs>
|
||||
<circle id="path-1" cx="21" cy="21" r="21"></circle>
|
||||
</defs>
|
||||
<g id="icon/tools/tool-analyzerepeair-active" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Oval" fill="#D6ECFF" xlink:href="#path-1"></use>
|
||||
<path d="M12.03594,20.7500586 C12.0636564,20.4295932 12.2755217,20.1542977 12.5782187,20.0445246 C12.8816689,19.9340762 13.2213463,20.0092592 13.4496306,20.2363086 L18.1203831,24.8891713 L23.2983169,23.255856 L24.9378064,18.0974969 L20.2669786,13.444259 C20.038393,13.2167594 19.9638297,12.8782861 20.0739424,12.576504 C20.1851849,12.2741215 20.4608432,12.0635043 20.7831978,12.0357421 C23.619843,11.7922605 26.3992477,12.8012274 28.4087671,14.8034793 C31.1609825,17.5455552 31.8898203,21.5497588 30.5991968,24.9628536 L30.8093863,25.1460932 L30.8093863,25.1460932 L46.6248149,40.0150458 L46.6248149,40.0150458 C48.458395,41.8417958 48.458395,44.8140725 46.6248149,46.6411227 C44.8465057,48.4123711 42.0077225,48.4451612 40.1656916,46.7798586 L39.9736151,46.5958779 L39.9736151,46.5958779 L25.3899313,30.9424474 C25.2569977,30.8094141 25.133554,30.6702282 25.01719,30.5273656 C21.5902894,31.8154547 17.5683885,31.0910875 14.813763,28.3472108 C12.8046954,26.3448088 11.7912367,23.5756461 12.03594,20.7500586 Z" id="Path" fill="#3E99E6" fill-rule="nonzero" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
16
assets/img/icon/tool-analyzerepair-default.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-analyzerepeair-default</title>
|
||||
<defs>
|
||||
<circle id="path-1" cx="21" cy="21" r="21"></circle>
|
||||
</defs>
|
||||
<g id="icon/tools/tool-analyzerepeair-default" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Oval" fill="#E4EAF1" xlink:href="#path-1"></use>
|
||||
<path d="M12.03594,20.7500586 C12.0636564,20.4295932 12.2755217,20.1542977 12.5782187,20.0445246 C12.8816689,19.9340762 13.2213463,20.0092592 13.4496306,20.2363086 L18.1203831,24.8891713 L23.2983169,23.255856 L24.9378064,18.0974969 L20.2669786,13.444259 C20.038393,13.2167594 19.9638297,12.8782861 20.0739424,12.576504 C20.1851849,12.2741215 20.4608432,12.0635043 20.7831978,12.0357421 C23.619843,11.7922605 26.3992477,12.8012274 28.4087671,14.8034793 C31.1609825,17.5455552 31.8898203,21.5497588 30.5991968,24.9628536 L30.8093863,25.1460932 L30.8093863,25.1460932 L46.6248149,40.0150458 L46.6248149,40.0150458 C48.458395,41.8417958 48.458395,44.8140725 46.6248149,46.6411227 C44.8465057,48.4123711 42.0077225,48.4451612 40.1656916,46.7798586 L39.9736151,46.5958779 L39.9736151,46.5958779 L25.3899313,30.9424474 C25.2569977,30.8094141 25.133554,30.6702282 25.01719,30.5273656 C21.5902894,31.8154547 17.5683885,31.0910875 14.813763,28.3472108 C12.8046954,26.3448088 11.7912367,23.5756461 12.03594,20.7500586 Z" id="Path" fill="#87A2C2" fill-rule="nonzero" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
18
assets/img/icon/tool-analyzerepair-paused.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-analyzerepeair-paused</title>
|
||||
<defs>
|
||||
<circle id="path-1" cx="21" cy="21" r="21"></circle>
|
||||
</defs>
|
||||
<g id="icon/tools/tool-analyzerepeair-paused" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Oval" fill="#E4EAF1" xlink:href="#path-1"></use>
|
||||
<path d="M12.03594,20.7500586 C12.0636564,20.4295932 12.2755217,20.1542977 12.5782187,20.0445246 C12.8816689,19.9340762 13.2213463,20.0092592 13.4496306,20.2363086 L18.1203831,24.8891713 L23.2983169,23.255856 L24.9378064,18.0974969 L20.2669786,13.444259 C20.038393,13.2167594 19.9638297,12.8782861 20.0739424,12.576504 C20.1851849,12.2741215 20.4608432,12.0635043 20.7831978,12.0357421 C23.619843,11.7922605 26.3992477,12.8012274 28.4087671,14.8034793 C31.1609825,17.5455552 31.8898203,21.5497588 30.5991968,24.9628536 L30.8093863,25.1460932 L30.8093863,25.1460932 L46.6248149,40.0150458 L46.6248149,40.0150458 C48.458395,41.8417958 48.458395,44.8140725 46.6248149,46.6411227 C44.8465057,48.4123711 42.0077225,48.4451612 40.1656916,46.7798586 L39.9736151,46.5958779 L39.9736151,46.5958779 L25.3899313,30.9424474 C25.2569977,30.8094141 25.133554,30.6702282 25.01719,30.5273656 C21.5902894,31.8154547 17.5683885,31.0910875 14.813763,28.3472108 C12.8046954,26.3448088 11.7912367,23.5756461 12.03594,20.7500586 Z" id="Path" fill="#87A2C2" fill-rule="nonzero" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
<rect id="Rectangle" fill="#2E689A" x="0" y="30" width="4" height="12" rx="2"></rect>
|
||||
<rect id="Rectangle" fill="#2E689A" x="6" y="30" width="4" height="12" rx="2"></rect>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
1
assets/img/icon/tool-analyzerepair-running-animated.svg
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
17
assets/img/icon/tool-clean-active.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-clean-active</title>
|
||||
<g id="icon/tools/tool-clean-active" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" fill="#D6ECFF" cx="21" cy="21" r="21"></circle>
|
||||
<g id="dust" transform="translate(6.000000, 14.000000)" fill="#3E99E6">
|
||||
<circle id="Oval" cx="3" cy="11" r="2"></circle>
|
||||
<circle id="Oval" cx="1.5" cy="4.5" r="1.5"></circle>
|
||||
<circle id="Oval" cx="28.5" cy="1.5" r="1.5"></circle>
|
||||
<circle id="Oval" cx="27.5" cy="11.5" r="2.5"></circle>
|
||||
</g>
|
||||
<g id="brush" transform="translate(13.000000, 11.000000)" fill="#3E99E6" fill-rule="nonzero">
|
||||
<path d="M1.1599776,11.2747591 L14.8395339,11.2747591 C15.2592567,11.2747591 15.5995093,10.9263939 15.5995093,10.4966637 L15.5995093,9.71856832 C15.5995093,8.64424277 14.7488779,7.77332983 13.6995709,7.77332983 L10.149726,7.77332983 C10.0960748,7.77314385 10.0449805,7.74983388 10.0089698,7.70911481 C9.97295917,7.66839574 9.95536184,7.61403262 9.96049218,7.5593536 L10.4309169,2.74294309 C10.5205907,1.79582335 10.0776705,0.878628413 9.28817054,0.376555034 C8.49867063,-0.125518345 7.49932096,-0.125518345 6.70982105,0.376555034 C5.92032113,0.878628413 5.47740088,1.79582335 5.56707467,2.74294309 L6.03749941,7.5593536 C6.04271689,7.61405947 6.02535765,7.66850734 5.98962096,7.70952601 C5.95393438,7.74965388 5.90354882,7.77276932 5.85054547,7.77332983 L2.29994063,7.77332983 C1.25063364,7.77332983 0.40000225,8.64424277 0.40000225,9.71856832 L0.40000225,10.4966637 C0.40000225,10.9263939 0.740254805,11.2747591 1.1599776,11.2747591 Z M8.75973112,2.9102336 C8.75973112,3.33996383 8.41947857,3.688329 7.99975577,3.688329 C7.58003297,3.688329 7.23978042,3.33996383 7.23978042,2.9102336 C7.23978042,2.48050338 7.58003297,2.13213821 7.99975577,2.13213821 C8.41947857,2.13213821 8.75973112,2.48050338 8.75973112,2.9102336 Z" id="Shape"></path>
|
||||
<path d="M15.8791802,17.4676204 C15.1997178,16.3865699 14.8387801,15.1280152 14.8395339,13.8424739 L14.8395339,12.8309499 C14.8395339,12.6160848 14.6694077,12.4419022 14.4595463,12.4419022 L1.53996528,12.4419022 C1.33010388,12.4419022 1.1599776,12.6160848 1.1599776,12.8309499 L1.1599776,13.8424739 C1.1605768,15.1282357 0.799657646,16.3869962 0.120331321,17.4683985 C-0.0297494642,17.7078976 -0.0401687719,18.0121736 0.0931613454,18.2618458 C0.226491463,18.511518 0.482303232,18.6667607 0.760230567,18.6666667 L1.89563374,18.6666667 C2.78506256,18.6675518 3.61585612,18.2124563 4.10868197,17.4543927 C4.26979674,17.2077365 4.44231115,16.9392936 4.6102657,16.6762974 C4.65599645,16.6038114 4.74290318,16.5708355 4.82372785,16.5953012 C4.90455252,16.619767 4.95997364,16.6958257 4.95985436,16.7821183 L4.95985436,17.88857 C4.95985436,18.3183002 5.30010692,18.6666667 5.71982971,18.6666667 L15.239281,18.6666667 C15.5174577,18.6669438 15.7735551,18.5115933 15.9069382,18.2616596 C16.0403213,18.0117259 16.029674,17.7071514 15.8791802,17.4676204 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
12
assets/img/icon/tool-clean-default.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-clean-default</title>
|
||||
<g id="icon/tools/tool-clean-default" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon/tool-remove-local-files" transform="translate(13.000000, 11.000000)"></g>
|
||||
<circle id="Oval" fill="#E4EAF1" cx="21" cy="21" r="21"></circle>
|
||||
<g id="brush" transform="translate(13.000000, 11.000000)" fill="#87A2C2" fill-rule="nonzero">
|
||||
<path d="M1.1599776,11.2747591 L14.8395339,11.2747591 C15.2592567,11.2747591 15.5995093,10.9263939 15.5995093,10.4966637 L15.5995093,9.71856832 C15.5995093,8.64424277 14.7488779,7.77332983 13.6995709,7.77332983 L10.149726,7.77332983 C10.0960748,7.77314385 10.0449805,7.74983388 10.0089698,7.70911481 C9.97295917,7.66839574 9.95536184,7.61403262 9.96049218,7.5593536 L10.4309169,2.74294309 C10.5205907,1.79582335 10.0776705,0.878628413 9.28817054,0.376555034 C8.49867063,-0.125518345 7.49932096,-0.125518345 6.70982105,0.376555034 C5.92032113,0.878628413 5.47740088,1.79582335 5.56707467,2.74294309 L6.03749941,7.5593536 C6.04271689,7.61405947 6.02535765,7.66850734 5.98962096,7.70952601 C5.95393438,7.74965388 5.90354882,7.77276932 5.85054547,7.77332983 L2.29994063,7.77332983 C1.25063364,7.77332983 0.40000225,8.64424277 0.40000225,9.71856832 L0.40000225,10.4966637 C0.40000225,10.9263939 0.740254805,11.2747591 1.1599776,11.2747591 Z M8.75973112,2.9102336 C8.75973112,3.33996383 8.41947857,3.688329 7.99975577,3.688329 C7.58003297,3.688329 7.23978042,3.33996383 7.23978042,2.9102336 C7.23978042,2.48050338 7.58003297,2.13213821 7.99975577,2.13213821 C8.41947857,2.13213821 8.75973112,2.48050338 8.75973112,2.9102336 Z" id="Shape"></path>
|
||||
<path d="M15.8791802,17.4676204 C15.1997178,16.3865699 14.8387801,15.1280152 14.8395339,13.8424739 L14.8395339,12.8309499 C14.8395339,12.6160848 14.6694077,12.4419022 14.4595463,12.4419022 L1.53996528,12.4419022 C1.33010388,12.4419022 1.1599776,12.6160848 1.1599776,12.8309499 L1.1599776,13.8424739 C1.1605768,15.1282357 0.799657646,16.3869962 0.120331321,17.4683985 C-0.0297494642,17.7078976 -0.0401687719,18.0121736 0.0931613454,18.2618458 C0.226491463,18.511518 0.482303232,18.6667607 0.760230567,18.6666667 L1.89563374,18.6666667 C2.78506256,18.6675518 3.61585612,18.2124563 4.10868197,17.4543927 C4.26979674,17.2077365 4.44231115,16.9392936 4.6102657,16.6762974 C4.65599645,16.6038114 4.74290318,16.5708355 4.82372785,16.5953012 C4.90455252,16.619767 4.95997364,16.6958257 4.95985436,16.7821183 L4.95985436,17.88857 C4.95985436,18.3183002 5.30010692,18.6666667 5.71982971,18.6666667 L15.239281,18.6666667 C15.5174577,18.6669438 15.7735551,18.5115933 15.9069382,18.2616596 C16.0403213,18.0117259 16.029674,17.7071514 15.8791802,17.4676204 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
14
assets/img/icon/tool-clean-paused.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-clean-paused</title>
|
||||
<g id="icon/tools/tool-clean-paused" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon/tool-remove-local-files" transform="translate(13.000000, 11.000000)"></g>
|
||||
<circle id="Oval" fill="#E4EAF1" cx="21" cy="21" r="21"></circle>
|
||||
<rect id="Rectangle" fill="#2E689A" x="0" y="30" width="4" height="12" rx="2"></rect>
|
||||
<rect id="Rectangle" fill="#2E689A" x="6" y="30" width="4" height="12" rx="2"></rect>
|
||||
<g id="brush" transform="translate(13.000000, 11.000000)" fill="#87A2C2" fill-rule="nonzero">
|
||||
<path d="M1.1599776,11.2747591 L14.8395339,11.2747591 C15.2592567,11.2747591 15.5995093,10.9263939 15.5995093,10.4966637 L15.5995093,9.71856832 C15.5995093,8.64424277 14.7488779,7.77332983 13.6995709,7.77332983 L10.149726,7.77332983 C10.0960748,7.77314385 10.0449805,7.74983388 10.0089698,7.70911481 C9.97295917,7.66839574 9.95536184,7.61403262 9.96049218,7.5593536 L10.4309169,2.74294309 C10.5205907,1.79582335 10.0776705,0.878628413 9.28817054,0.376555034 C8.49867063,-0.125518345 7.49932096,-0.125518345 6.70982105,0.376555034 C5.92032113,0.878628413 5.47740088,1.79582335 5.56707467,2.74294309 L6.03749941,7.5593536 C6.04271689,7.61405947 6.02535765,7.66850734 5.98962096,7.70952601 C5.95393438,7.74965388 5.90354882,7.77276932 5.85054547,7.77332983 L2.29994063,7.77332983 C1.25063364,7.77332983 0.40000225,8.64424277 0.40000225,9.71856832 L0.40000225,10.4966637 C0.40000225,10.9263939 0.740254805,11.2747591 1.1599776,11.2747591 Z M8.75973112,2.9102336 C8.75973112,3.33996383 8.41947857,3.688329 7.99975577,3.688329 C7.58003297,3.688329 7.23978042,3.33996383 7.23978042,2.9102336 C7.23978042,2.48050338 7.58003297,2.13213821 7.99975577,2.13213821 C8.41947857,2.13213821 8.75973112,2.48050338 8.75973112,2.9102336 Z" id="Shape"></path>
|
||||
<path d="M15.8791802,17.4676204 C15.1997178,16.3865699 14.8387801,15.1280152 14.8395339,13.8424739 L14.8395339,12.8309499 C14.8395339,12.6160848 14.6694077,12.4419022 14.4595463,12.4419022 L1.53996528,12.4419022 C1.33010388,12.4419022 1.1599776,12.6160848 1.1599776,12.8309499 L1.1599776,13.8424739 C1.1605768,15.1282357 0.799657646,16.3869962 0.120331321,17.4683985 C-0.0297494642,17.7078976 -0.0401687719,18.0121736 0.0931613454,18.2618458 C0.226491463,18.511518 0.482303232,18.6667607 0.760230567,18.6666667 L1.89563374,18.6666667 C2.78506256,18.6675518 3.61585612,18.2124563 4.10868197,17.4543927 C4.26979674,17.2077365 4.44231115,16.9392936 4.6102657,16.6762974 C4.65599645,16.6038114 4.74290318,16.5708355 4.82372785,16.5953012 C4.90455252,16.619767 4.95997364,16.6958257 4.95985436,16.7821183 L4.95985436,17.88857 C4.95985436,18.3183002 5.30010692,18.6666667 5.71982971,18.6666667 L15.239281,18.6666667 C15.5174577,18.6669438 15.7735551,18.5115933 15.9069382,18.2616596 C16.0403213,18.0117259 16.029674,17.7071514 15.8791802,17.4676204 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
1
assets/img/icon/tool-clean-running-animated.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
11
assets/img/icon/tool-download-active.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-download-active</title>
|
||||
<g id="icon/tools/tool-download-active" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" fill="#D6ECFF" cx="21" cy="21" r="21"></circle>
|
||||
<polygon id="Shape" fill="#3E99E6" fill-rule="nonzero" points="28 19 24 19 24 12 18 12 18 19 14 19 21 26"></polygon>
|
||||
<g id="Path-2" transform="translate(14.000000, 28.000000)" fill="#3E99E6" fill-rule="nonzero">
|
||||
<polygon id="Path" points="0 0 0 2 14 2 14 0"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 742 B |
8
assets/img/icon/tool-download-default.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-download-default</title>
|
||||
<g id="icon/tools/tool-download-default" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" fill="#E4EAF1" cx="21" cy="21" r="21"></circle>
|
||||
<path d="M28,19 L24,19 L24,12 L18,12 L18,19 L14,19 L21,26 L28,19 Z M14,28 L14,30 L28,30 L28,28 L14,28 Z" id="Shape" fill="#87A2C2" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 601 B |
10
assets/img/icon/tool-download-paused.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/tools/tool-download-paused</title>
|
||||
<g id="icon/tools/tool-download-paused" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" fill="#E4EAF1" cx="21" cy="21" r="21"></circle>
|
||||
<rect id="Rectangle" fill="#2E689A" x="1" y="30" width="4" height="12" rx="2"></rect>
|
||||
<rect id="Rectangle" fill="#2E689A" x="7" y="30" width="4" height="12" rx="2"></rect>
|
||||
<path d="M28,19 L24,19 L24,12 L18,12 L18,19 L14,19 L21,26 L28,19 Z M14,28 L14,30 L28,30 L28,28 L14,28 Z" id="Shape" fill="#87A2C2" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 787 B |