Set up editor style compilation

This commit is contained in:
Tautvidas Sipavičius
2015-08-17 17:53:23 +03:00
parent 42586a72e9
commit da371e33f4
184 changed files with 153 additions and 545 deletions

View File

@ -1,150 +1,151 @@
<?php
class RoboFile extends \Robo\Tasks {
private $css_files = array(
'assets/css/src/admin.styl',
'assets/css/src/public.styl',
'assets/css/src/rtl.styl'
);
private $js_files = array(
'assets/js/src/*.js',
'assets/js/src/*.jsx',
'assets/js/src/**/*.js',
'assets/js/src/**/*.jsx'
);
function install() {
$this->_exec('./composer.phar install');
$this->_exec('npm install');
}
function update() {
$this->say(getenv('WP_TEST_URL'));
$this->_exec('./composer.phar update');
$this->_exec('npm update');
}
function watch() {
$js_files = array();
array_map(function($path) use(&$js_files) {
$js_files = array_merge($js_files, glob($path));
}, $this->js_files);
$this->taskWatch()
->monitor($js_files, function() {
$this->compileJs();
})
->monitor($this->css_files, function() {
$this->compileCss();
})
->run();
}
function compileAll() {
$this->compileJs();
$this->compileCss();
}
function compileJs() {
$this->_exec('./node_modules/webpack/bin/webpack.js');
}
function compileCss() {
$this->_exec(join(' ', array(
'./node_modules/stylus/bin/stylus',
'--include ./node_modules',
'--include-css',
'-u nib',
join(' ', $this->css_files),
'-o assets/css/'
)));
}
function makepot() {
$this->_exec('grunt makepot'.
' --gruntfile '.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path '.__DIR__
);
}
function pushpot() {
$this->_exec('grunt pushpot'.
' --gruntfile '.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path '.__DIR__
);
}
function testUnit($file = null) {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build');
$this->_exec('vendor/bin/codecept run unit '.(($file) ? $file : ''));
}
function testAcceptance($file = null) {
$this->loadEnv();
$this->compileAll();
$this->_exec('vendor/bin/codecept build');
$this
->taskExec('phantomjs --webdriver=4444')
->background()
->run();
sleep(2);
$this->_exec('vendor/bin/codecept run acceptance '.(($file) ? $file : ''));
}
function testJavascript() {
$this->compileJs();
$this->_exec(join(' ', array(
'./node_modules/mocha/bin/mocha',
'-r tests/javascript/mochaTestHelper.js',
'tests/javascript/testBundles/**/*.js'
)));
}
function testAll() {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build');
$this->startPhantomJS();
$this->_exec('vendor/bin/codecept run');
}
function testDebug() {
$this->_exec('vendor/bin/codecept build');
$this->loadEnv();
$this->_exec('vendor/bin/codecept run unit --debug');
}
function testFailed() {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build');
$this->startPhantomJS();
$this->_exec('vendor/bin/codecept run -g failed');
}
protected function loadEnv() {
$dotenv = new Dotenv\Dotenv(__DIR__);
$dotenv->load();
$this
->taskWriteToFile('tests/acceptance.suite.yml')
->textFromFile('tests/acceptance.suite.src')
->run();
$this
->taskReplaceInFile('tests/acceptance.suite.yml')
->regex("/url.*/")
->to('url: ' . "'" . getenv('WP_TEST_URL'). "'")
->run();
}
protected function startPhantomJS() {
$this
->taskexec('phantomjs --webdriver=4444')
->background()
->run();
sleep(3);
}
}
<?php
class RoboFile extends \Robo\Tasks {
private $css_files = array(
'assets/css/src/admin.styl',
'assets/css/src/public.styl',
'assets/css/src/rtl.styl',
'assets/css/src/newsletter_editor/newsletter_editor.styl'
);
private $js_files = array(
'assets/js/src/*.js',
'assets/js/src/*.jsx',
'assets/js/src/**/*.js',
'assets/js/src/**/*.jsx'
);
function install() {
$this->_exec('./composer.phar install');
$this->_exec('npm install');
}
function update() {
$this->say(getenv('WP_TEST_URL'));
$this->_exec('./composer.phar update');
$this->_exec('npm update');
}
function watch() {
$js_files = array();
array_map(function($path) use(&$js_files) {
$js_files = array_merge($js_files, glob($path));
}, $this->js_files);
$this->taskWatch()
->monitor($js_files, function() {
$this->compileJs();
})
->monitor($this->css_files, function() {
$this->compileCss();
})
->run();
}
function compileAll() {
$this->compileJs();
$this->compileCss();
}
function compileJs() {
$this->_exec('./node_modules/webpack/bin/webpack.js');
}
function compileCss() {
$this->_exec(join(' ', array(
'./node_modules/stylus/bin/stylus',
'--include ./node_modules',
'--include-css',
'-u nib',
join(' ', $this->css_files),
'-o assets/css/'
)));
}
function makepot() {
$this->_exec('grunt makepot'.
' --gruntfile '.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path '.__DIR__
);
}
function pushpot() {
$this->_exec('grunt pushpot'.
' --gruntfile '.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path '.__DIR__
);
}
function testUnit($file = null) {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build');
$this->_exec('vendor/bin/codecept run unit '.(($file) ? $file : ''));
}
function testAcceptance($file = null) {
$this->loadEnv();
$this->compileAll();
$this->_exec('vendor/bin/codecept build');
$this
->taskExec('phantomjs --webdriver=4444')
->background()
->run();
sleep(2);
$this->_exec('vendor/bin/codecept run acceptance '.(($file) ? $file : ''));
}
function testJavascript() {
$this->compileJs();
$this->_exec(join(' ', array(
'./node_modules/mocha/bin/mocha',
'-r tests/javascript/mochaTestHelper.js',
'tests/javascript/testBundles/**/*.js'
)));
}
function testAll() {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build');
$this->startPhantomJS();
$this->_exec('vendor/bin/codecept run');
}
function testDebug() {
$this->_exec('vendor/bin/codecept build');
$this->loadEnv();
$this->_exec('vendor/bin/codecept run unit --debug');
}
function testFailed() {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build');
$this->startPhantomJS();
$this->_exec('vendor/bin/codecept run -g failed');
}
protected function loadEnv() {
$dotenv = new Dotenv\Dotenv(__DIR__);
$dotenv->load();
$this
->taskWriteToFile('tests/acceptance.suite.yml')
->textFromFile('tests/acceptance.suite.src')
->run();
$this
->taskReplaceInFile('tests/acceptance.suite.yml')
->regex("/url.*/")
->to('url: ' . "'" . getenv('WP_TEST_URL'). "'")
->run();
}
protected function startPhantomJS() {
$this
->taskexec('phantomjs --webdriver=4444')
->background()
->run();
sleep(3);
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1,15 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="76.5 166.5 459 459" enable-background="new 76.5 166.5 459 459" xml:space="preserve">
<path d="M191.25,281.25V625.5h229.5L535.5,510.75v-229.5H191.25z M415.893,448.536l-11.647,11.647
c-7.038,7.152-11.054,15.721-12.049,25.704c-0.976,10.002,1.224,19.087,6.599,27.272l-28.439,28.285l-37.446-37.446l-43.51,43.356
c-5.584,5.584-16.142,13.617-31.613,24.078c-15.492,10.461-24.633,14.286-27.425,11.494c-2.792-2.792,1.033-11.991,11.494-27.578
s18.437-26.125,23.925-31.613l43.356-43.356l-37.447-37.601l28.438-28.285c8.071,5.393,17.136,7.593,27.196,6.598
c10.06-0.994,18.59-5.049,25.628-12.201l11.646-11.647c7.153-7.038,11.208-15.587,12.202-25.627
c0.976-10.041-1.224-19.164-6.598-27.349l28.285-28.286l98.819,98.666l-28.439,28.286c-8.07-5.394-17.136-7.593-27.195-6.598
C431.632,437.31,423.045,441.384,415.893,448.536z M420.75,596.813V510.75h86.063L420.75,596.813z"/>
<g opacity="0.3">
<g>
<path d="M133.875,223.875v344.25h38.25v-306h306v-38.25H133.875z M420.75,166.5H76.5v344.25h38.25v-306h306V166.5z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,13 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 195.188 573.75 446.946" enable-background="new 0 195.188 573.75 446.946" xml:space="preserve">
<path d="M535.5,482.062h-20.655c-12.967,90.468-90.574,160.071-184.618,160.071c-94.068,0-171.65-69.604-184.646-160.071H38.25
c-21.133,0-38.25-17.117-38.25-38.25V233.438c0-21.133,17.117-38.25,38.25-38.25H535.5c21.114,0,38.25,17.117,38.25,38.25v210.375
C573.75,464.945,556.614,482.062,535.5,482.062z M463.889,382.016c0-11.045-9.259-20.009-20.703-20.009
c-11.419,0-19.677,8.964-19.677,20.009v43.34c0,3.682-4.095,6.67-7.884,6.67c-3.814,0-7.909-2.988-7.909-6.67v-50.01
c0-11.045-8.258-20.009-19.676-20.009s-18.677,8.964-18.677,20.009v50.01c0,3.682-5.097,6.67-8.909,6.67
c-3.815,0-9.671-2.988-9.671-6.67v-56.681c0-11.046-8.258-20.01-19.703-20.01c-11.418,0-18.702,8.964-18.702,20.01v56.681
c0,3.682-6.27,6.67-10.084,6.67c-3.815,0-11.458-2.988-11.458-6.67V288.64c0-11.046-8.258-20.01-19.677-20.01
s-17.715,8.964-17.715,20.01v173.413c0,3.685-11.419,6.67-15.233,6.67c-3.815,0-3.335-2.985-3.335-6.67v-85.532
c-2.16-0.747-15.794-2.269-18.222-2.269c-11.419,0-20.09,10.085-20.09,21.131v73.34c0,66.297,74.622,120.058,143.187,120.058
s124.138-53.761,124.138-120.058V382.016L463.889,382.016z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,5 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="124.312 348.188 382.5 114.75" enable-background="new 124.312 348.188 382.5 114.75" xml:space="preserve">
<rect x="124.312" y="348.188" width="382.5" height="38.25"/>
<rect x="124.312" y="424.688" width="382.5" height="38.25"/>
</svg>

Before

Width:  |  Height:  |  Size: 376 B

View File

@ -1,10 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="123.987 156.766 383.169 497.575" enable-background="new 123.987 156.766 383.169 497.575" xml:space="preserve">
<g>
<g>
<path d="M379.421,156.766H123.987v497.575h383.169V281.173L379.421,156.766z M449.438,577.688h-267.75v-38.25h267.75V577.688z
M449.438,482.063h-267.75v-38.25h267.75V482.063z M449.438,386.438h-267.75v-38.25h267.75V386.438z M373.454,289.531V186.677
l101.764,102.854H373.454z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 567 B

View File

@ -1,11 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="77.063 89.506 459 612" enable-background="new 77.063 89.506 459 612" xml:space="preserve">
<path opacity="0.3" enable-background="new " d="M516.938,89.506H96.188c-10.557,0-19.125,8.568-19.125,19.125v38.25
c0,10.557,8.568,19.125,19.125,19.125h420.75c10.558,0,19.125-8.568,19.125-19.125v-38.25
C536.063,98.074,527.494,89.506,516.938,89.506z"/>
<path opacity="0.3" enable-background="new " d="M516.938,205.131H96.188c-10.557,0-19.125,8.568-19.125,19.125v304.25
c0,10.557,8.568,19.125,19.125,19.125h420.75c10.558,0,19.125-8.568,19.125-19.125v-304.25
C536.063,213.699,527.494,205.131,516.938,205.131z"/>
<path d="M516.938,586.756H96.188c-10.557,0-19.125,8.567-19.125,19.125v76.5c0,10.557,8.568,19.125,19.125,19.125h420.75
c10.558,0,19.125-8.568,19.125-19.125v-76.5C536.063,595.323,527.494,586.756,516.938,586.756z"/>
</svg>

Before

Width:  |  Height:  |  Size: 978 B

View File

@ -1,23 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="19.125 166.5 573.75 459" enable-background="new 19.125 166.5 573.75 459" xml:space="preserve">
<g>
<g>
<path d="M19.125,376.875h267.75V166.5H19.125V376.875z M38.25,185.625h229.5V357.75H38.25V185.625z M57.375,338.625h191.25
l-191.25-114.75V338.625z M210.375,204.75c-10.461,0-19.45,3.768-26.966,11.284S172.125,232.539,172.125,243
s3.768,19.45,11.284,26.966s16.505,11.284,26.966,11.284s19.45-3.768,26.966-11.284s11.284-16.505,11.284-26.966
s-3.768-19.45-11.284-26.966S220.836,204.75,210.375,204.75z M516.375,281.25c10.461,0,19.45-3.768,26.966-11.284
c7.517-7.516,11.284-16.505,11.284-26.966s-3.768-19.45-11.284-26.966c-7.516-7.516-16.505-11.284-26.966-11.284
s-19.45,3.768-26.966,11.284c-7.517,7.516-11.284,16.505-11.284,26.966s3.768,19.45,11.284,26.966
C496.925,277.482,505.914,281.25,516.375,281.25z M325.125,166.5v210.375h267.75V166.5H325.125z M573.75,357.75h-229.5V185.625
h229.5V357.75z M363.375,223.875v114.75h191.25L363.375,223.875z M19.125,625.5h267.75V415.125H19.125V625.5z M38.25,434.25h229.5
v172.125H38.25V434.25z M210.375,453.375c-10.461,0-19.45,3.768-26.966,11.284c-7.516,7.516-11.284,16.505-11.284,26.966
s3.768,19.45,11.284,26.966c7.516,7.517,16.505,11.284,26.966,11.284s19.45-3.768,26.966-11.284
c7.516-7.516,11.284-16.505,11.284-26.966s-3.768-19.45-11.284-26.966C229.825,457.143,220.836,453.375,210.375,453.375z
M57.375,587.25h191.25L57.375,472.5V587.25z M516.375,453.375c-10.461,0-19.45,3.768-26.966,11.284
c-7.517,7.516-11.284,16.505-11.284,26.966s3.768,19.45,11.284,26.966c7.516,7.517,16.505,11.284,26.966,11.284
s19.45-3.768,26.966-11.284c7.517-7.516,11.284-16.505,11.284-26.966s-3.768-19.45-11.284-26.966
C535.825,457.143,526.836,453.375,516.375,453.375z M363.375,587.25h191.25L363.375,472.5V587.25z M325.125,625.5h267.75V415.125
h-267.75V625.5z M344.25,434.25h229.5v172.125h-229.5V434.25z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,11 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="77.063 89.506 459 612" enable-background="new 77.063 89.506 459 612" xml:space="preserve">
<path d="M516.938,89.506H96.188c-10.557,0-19.125,8.568-19.125,19.125v38.25c0,10.557,8.568,19.125,19.125,19.125h420.75
c10.558,0,19.125-8.568,19.125-19.125v-38.25C536.063,98.074,527.494,89.506,516.938,89.506z"/>
<path opacity="0.3" enable-background="new " d="M516.938,205.131H96.188c-10.557,0-19.125,8.568-19.125,19.125v304.25
c0,10.557,8.568,19.125,19.125,19.125h420.75c10.558,0,19.125-8.568,19.125-19.125v-304.25
C536.063,213.699,527.494,205.131,516.938,205.131z"/>
<path opacity="0.3" enable-background="new " d="M516.938,586.756H96.188c-10.557,0-19.125,8.567-19.125,19.125v76.5
c0,10.557,8.568,19.125,19.125,19.125h420.75c10.558,0,19.125-8.568,19.125-19.125v-76.5
C536.063,595.323,527.494,586.756,516.938,586.756z"/>
</svg>

Before

Width:  |  Height:  |  Size: 978 B

View File

@ -1,7 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="38.25 185.625 535.5 420.75" enable-background="new 38.25 185.625 535.5 420.75" xml:space="preserve">
<path d="M459,606.375H38.25v-306v-38.25v-76.5h535.5v420.75h-76.5H459z M535.5,223.875h-459v344.25h459V223.875z M114.75,529.875
v-229.5l382.5,229.5H114.75z M420.75,415.125c-20.903,0-38.881-7.516-53.933-22.567c-15.052-15.051-22.567-33.01-22.567-53.933
c0-20.904,7.516-38.881,22.567-53.933s33.029-22.567,53.933-22.567s38.881,7.516,53.933,22.567s22.567,33.029,22.567,53.933
c0,20.923-7.516,38.881-22.567,53.933C459.631,407.609,441.653,415.125,420.75,415.125z"/>
</svg>

Before

Width:  |  Height:  |  Size: 712 B

View File

@ -1,11 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="114.425 147.203 383.169 497.575" enable-background="new 114.425 147.203 383.169 497.575" xml:space="preserve">
<path d="M114.425,147.203v497.575h383.169V271.611L369.878,147.222H114.425V147.203z M363.892,177.114l101.764,102.854H363.892
V177.114z M389.021,527.235c-8.3,8.09-18.513,12.126-30.657,12.126c-14.478,0-25.972-4.036-34.482-12.126
c-8.3-8.3-12.45-18.245-12.45-29.854c0-11.609,4.15-21.458,12.45-29.549c12.125-11.818,27.464-15.032,45.977-9.639v-71.527
l-95.797,18.666v103.236c0,11.398-6.809,23.008-20.426,34.827c-6.598,5.393-16.811,8.09-30.657,8.09
c-12.125,0-22.357-4.15-30.658-12.432c-8.51-8.3-12.775-18.13-12.775-29.548c0-11.188,4.246-21.152,12.775-29.854
c8.3-8.09,18.513-12.125,30.658-12.125c9.371,0,15.759,0.727,19.163,2.181V364.903c0-9.333,3.825-14.727,11.494-16.161
c5.948-1.454,51.198-9.543,135.711-24.25c3.614-0.421,6.483,0.612,8.626,3.117c2.563,2.486,3.824,5.489,3.824,9.027V497.42
C401.797,508.569,397.532,518.534,389.021,527.235L389.021,527.235z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,10 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="133.875 223.875 344.25 344.25" enable-background="new 133.875 223.875 344.25 344.25" xml:space="preserve">
<path d="M133.875,223.875v344.25h229.5l114.75-114.75v-229.5H133.875z M358.518,391.161l-11.647,11.647
c-7.038,7.152-11.054,15.721-12.049,25.704c-0.976,10.002,1.224,19.087,6.599,27.272L312.98,484.07l-37.447-37.446l-43.509,43.356
c-5.584,5.584-16.142,13.617-31.613,24.078c-15.492,10.461-24.633,14.286-27.425,11.494c-2.792-2.792,1.033-11.991,11.494-27.578
s18.437-26.125,23.925-31.613l43.356-43.356l-37.447-37.6l28.439-28.286c8.07,5.393,17.136,7.592,27.195,6.598
c10.06-0.994,18.59-5.049,25.628-12.202l11.646-11.647c7.153-7.038,11.208-15.587,12.202-25.627
c0.976-10.041-1.224-19.164-6.598-27.349l28.285-28.286l98.819,98.666l-28.439,28.286c-8.07-5.393-17.136-7.592-27.195-6.598
C374.257,379.935,365.67,384.009,358.518,391.161z M363.375,539.438v-86.063h86.063L363.375,539.438z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,4 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="239.062 263.438 153 284.25" enable-background="new 239.062 263.438 153 284.25" xml:space="preserve">
<path d="M315.563,263.438l76.5,76.538h-153L315.563,263.438z M315.563,547.688l-76.5-76.537h153L315.563,547.688z"/>
</svg>

Before

Width:  |  Height:  |  Size: 363 B

View File

@ -1,6 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="143.342 252.486 325.183 286.798" enable-background="new 143.342 252.486 325.183 286.798" xml:space="preserve">
<path d="M337.154,398.353h-70.667l23.409-59.823c5.202-13.12,9.983-26.622,13.445-41.788h0.86
c2.161,15.166,6.503,29.089,11.265,41.788L337.154,398.353z M372.708,497.496h-24.71v41.788h120.526v-41.788h-24.289
l-100.139-245.01h-69.806l-106.66,245.01h-24.289v41.788h112.723v-41.788h-29.051l21.688-54.907H353.2L372.708,497.496z"/>
</svg>

Before

Width:  |  Height:  |  Size: 587 B

View File

@ -1,10 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="1.5 91.5 609 609" enable-background="new 1.5 91.5 609 609" xml:space="preserve">
<circle class="mailpoet_tool_icon_foreground" fill="#AA3333" cx="306" cy="396.5" r="269.5"/>
<path d="M306,91.5C137.829,91.5,1.5,227.829,1.5,396S137.829,700.5,306,700.5S610.5,564.171,610.5,396S474.171,91.5,306,91.5z
M134.688,453.103c-31.521,0-57.104-25.579-57.104-57.103c0-31.522,25.583-57.104,57.104-57.104s57.104,25.583,57.104,57.104
C191.792,427.521,166.21,453.103,134.688,453.103z M306,453.103c-31.521,0-57.104-25.579-57.104-57.103
c0-31.522,25.583-57.104,57.104-57.104c31.521,0,57.103,25.583,57.103,57.104C363.103,427.521,337.521,453.103,306,453.103z
M477.311,453.103c-31.521,0-57.104-25.579-57.104-57.103c0-31.522,25.582-57.104,57.104-57.104
c31.522,0,57.104,25.583,57.104,57.104C534.415,427.521,508.832,453.103,477.311,453.103z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1007 B

View File

@ -1,5 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 4 16" enable-background="new 0 0 4 16" xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2,0c1.104,0,2,0.896,2,2S3.104,4,2,4S0,3.104,0,2S0.896,0,2,0z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2,6c1.104,0,2,0.896,2,2s-0.896,2-2,2S0,9.104,0,8S0.896,6,2,6z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2,12c1.104,0,2,0.896,2,2s-0.896,2-2,2s-2-0.896-2-2S0.896,12,2,12z"/>
</svg>

Before

Width:  |  Height:  |  Size: 599 B

View File

@ -1,10 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="1.5 91.5 609 609" enable-background="new 1.5 91.5 609 609" xml:space="preserve">
<circle class="mailpoet_tool_icon_foreground" fill="#AA3333" cx="306.5" cy="396" r="269.5"/>
<path d="M1.5,396c0,168.171,136.329,304.5,304.5,304.5S610.5,564.171,610.5,396S474.171,91.5,306,91.5S1.5,227.829,1.5,396z
M363.103,567.313c0,31.521-25.579,57.104-57.103,57.104c-31.522,0-57.104-25.583-57.104-57.104
c0-31.521,25.583-57.104,57.104-57.104C337.521,510.208,363.103,535.79,363.103,567.313z M363.103,396
c0,31.521-25.579,57.104-57.103,57.104c-31.522,0-57.104-25.583-57.104-57.104s25.583-57.103,57.104-57.103
C337.521,338.897,363.103,364.479,363.103,396z M363.103,224.689c0,31.521-25.579,57.104-57.103,57.104
c-31.522,0-57.104-25.582-57.104-57.104c0-31.522,25.583-57.104,57.104-57.104C337.521,167.585,363.103,193.168,363.103,224.689z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1005 B

View File

@ -1,18 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="612px" height="612px" viewBox="-3.14 90 612 612" enable-background="new -3.14 90 612 612" xml:space="preserve">
<circle class="mailpoet_tool_icon_foreground" fill="#AA3333" cx="302.86" cy="396.5" r="269.5"/>
<g id="Layer_1_1_">
<g>
<path d="M302.86,327.403c-37.957,0-68.598,30.641-68.598,68.598s30.641,68.598,68.598,68.598
c37.958,0,68.598-30.641,68.598-68.598S340.817,327.403,302.86,327.403z"/>
<path d="M302.86,90c-168.999,0-306,137-306,306c0,168.999,137.001,306,306,306c169,0,306-137.003,306-306
C608.86,227.002,471.859,90,302.86,90z M497.219,430.298h-49.848c-3.888,16.006-10.062,30.87-18.521,44.132l35.214,35.213
l-48.018,48.019l-35.214-35.214c-13.261,8.229-28.125,14.404-43.672,18.062v49.851h-68.598v-49.851
c-15.549-3.657-30.411-9.833-43.672-18.062l-35.213,35.214l-48.478-48.477l35.213-35.213
c-8.232-13.263-14.405-28.126-18.064-43.674H108.5v-67.91h49.619c3.659-16.006,10.061-30.869,18.293-44.36l-35.213-35.213
l48.017-48.018l35.213,35.214c13.262-8.46,28.354-14.635,44.131-18.522v-49.848h68.598v49.848
c15.546,3.659,30.411,9.834,43.671,18.064l35.214-35.213l48.475,48.475l-35.213,35.213c8.231,13.491,14.636,28.354,18.293,44.36
h49.619L497.219,430.298L497.219,430.298z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,17 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16.018 16.014" enable-background="new 0 0 16.018 16.014" xml:space="preserve">
<path d="M16.018,9.185c0,0.157-0.126,0.344-0.292,0.375l-1.93,0.292c-0.114,0.334-0.24,0.647-0.406,0.95
c0.354,0.51,0.729,0.969,1.116,1.438c0.063,0.073,0.104,0.167,0.104,0.26s-0.031,0.167-0.094,0.24
c-0.25,0.333-1.658,1.866-2.012,1.866c-0.094,0-0.188-0.042-0.271-0.094l-1.439-1.125c-0.303,0.156-0.625,0.292-0.95,0.396
c-0.073,0.636-0.135,1.314-0.301,1.939c-0.042,0.167-0.188,0.292-0.376,0.292H6.851c-0.188,0-0.354-0.135-0.375-0.313l-0.292-1.918
c-0.323-0.104-0.636-0.229-0.938-0.385l-1.471,1.115c-0.073,0.063-0.166,0.094-0.261,0.094c-0.093,0-0.188-0.042-0.261-0.115
c-0.552-0.5-1.282-1.146-1.72-1.751C1.48,12.667,1.46,12.584,1.46,12.5c0-0.094,0.031-0.167,0.083-0.24
c0.355-0.479,0.74-0.938,1.095-1.428C2.461,10.499,2.315,10.154,2.21,9.8L0.302,9.519C0.125,9.487,0,9.321,0,9.143V6.829
c0-0.157,0.125-0.345,0.281-0.376l1.939-0.292c0.104-0.333,0.24-0.647,0.407-0.959c-0.354-0.501-0.729-0.97-1.116-1.439
C1.449,3.69,1.408,3.607,1.408,3.513c0-0.093,0.042-0.167,0.094-0.239C1.752,2.93,3.16,1.407,3.514,1.407
c0.095,0,0.188,0.042,0.271,0.104l1.439,1.115C5.527,2.471,5.85,2.335,6.173,2.231c0.073-0.636,0.135-1.314,0.302-1.939
C6.517,0.125,6.663,0,6.851,0h2.315c0.188,0,0.354,0.135,0.376,0.313l0.292,1.918c0.323,0.104,0.636,0.229,0.938,0.385l1.481-1.115
c0.063-0.063,0.156-0.094,0.25-0.094s0.188,0.042,0.261,0.104c0.553,0.51,1.283,1.157,1.721,1.772
c0.052,0.063,0.073,0.146,0.073,0.229c0,0.094-0.031,0.167-0.083,0.24c-0.355,0.479-0.741,0.938-1.096,1.428
c0.177,0.333,0.323,0.678,0.428,1.022l1.908,0.292c0.177,0.031,0.303,0.198,0.303,0.375V9.185z M8.008,5.338
c-1.47,0-2.669,1.199-2.669,2.669s1.2,2.669,2.669,2.669c1.47,0,2.67-1.199,2.67-2.669S9.479,5.338,8.008,5.338z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,18 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="612px" height="612px" viewBox="-3.14 90 612 612" enable-background="new -3.14 90 612 612" xml:space="preserve">
<circle class="mailpoet_tool_icon_foreground" fill="#AA3333" cx="302.86" cy="396.5" r="269.5"/>
<g id="Layer_1_1_">
<g>
<path d="M302.86,327.403c-37.957,0-68.598,30.641-68.598,68.598s30.641,68.598,68.598,68.598
c37.958,0,68.598-30.641,68.598-68.598S340.817,327.403,302.86,327.403z"/>
<path d="M302.86,90c-168.999,0-306,137-306,306c0,168.999,137.001,306,306,306c169,0,306-137.003,306-306
C608.86,227.002,471.859,90,302.86,90z M497.219,430.298h-49.848c-3.888,16.006-10.062,30.87-18.521,44.132l35.214,35.213
l-48.018,48.019l-35.214-35.214c-13.261,8.229-28.125,14.404-43.672,18.062v49.851h-68.598v-49.851
c-15.549-3.657-30.411-9.833-43.672-18.062l-35.213,35.214l-48.478-48.477l35.213-35.213
c-8.232-13.263-14.405-28.126-18.064-43.674H108.5v-67.91h49.619c3.659-16.006,10.061-30.869,18.293-44.36l-35.213-35.213
l48.017-48.018l35.213,35.214c13.262-8.46,28.354-14.635,44.131-18.522v-49.848h68.598v49.848
c15.546,3.659,30.411,9.834,43.671,18.064l35.214-35.213l48.475,48.475l-35.213,35.213c8.231,13.491,14.636,28.354,18.293,44.36
h49.619L497.219,430.298L497.219,430.298z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,12 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 16" enable-background="new 0 0 15 16" xml:space="preserve">
<path d="M14.991,3.666c0,0.187-0.149,0.332-0.34,0.332h-1.022v9.853c0,1.143-0.767,2.121-1.704,2.121H3.066
c-0.937,0-1.704-0.936-1.704-2.079V3.998H0.341C0.149,3.998,0,3.853,0,3.666V3c0-0.187,0.149-0.333,0.341-0.333h3.29l0.745-1.735
c0.214-0.509,0.853-0.925,1.417-0.925h3.407c0.564,0,1.203,0.416,1.416,0.925l0.745,1.735h3.29c0.191,0,0.34,0.146,0.34,0.333V3.666
z M5.452,5.661c0-0.187-0.149-0.333-0.341-0.333H4.429c-0.191,0-0.34,0.146-0.34,0.333v7.316c0,0.188,0.149,0.333,0.34,0.333h0.682
c0.191,0,0.341-0.146,0.341-0.333V5.661z M9.88,2.667L9.369,1.452C9.337,1.41,9.242,1.348,9.188,1.337H5.813
C5.75,1.348,5.664,1.41,5.632,1.452L5.111,2.667H9.88z M8.177,5.661c0-0.187-0.149-0.333-0.341-0.333H7.155
c-0.191,0-0.341,0.146-0.341,0.333v7.316c0,0.188,0.149,0.333,0.341,0.333h0.682c0.191,0,0.341-0.146,0.341-0.333V5.661z
M10.903,5.661c0-0.187-0.149-0.333-0.341-0.333H9.88c-0.191,0-0.34,0.146-0.34,0.333v7.316c0,0.188,0.149,0.333,0.34,0.333h0.682
c0.191,0,0.341-0.146,0.341-0.333V5.661z"/>
<rect id="_x3C_Slice_x3E_" fill="none" width="15" height="16"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,22 +0,0 @@
<svg class="mailpoet_tool_icon" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="611.631px" height="611.632px" viewBox="0 93.684 611.631 611.632" enable-background="new 0 93.684 611.631 611.632"
xml:space="preserve">
<circle class="mailpoet_tool_icon_foreground" fill="#AA3333" cx="306" cy="403.5" r="269.5"/>
<rect id="_x3C_Slice_x3E_" y="69.6" fill="none" width="612" height="652.8"/>
<g>
<path d="M314.959,324.106h-18.286c-5.128,0-9.156,3.92-9.156,8.942v196.446c0,5.049,4,8.939,9.156,8.939h18.313
c5.128,0,9.154-3.92,9.154-8.939V333.048h-0.025C324.115,328.026,320.114,324.106,314.959,324.106z"/>
<path d="M241.789,324.106h-18.313c-5.128,0-9.129,3.92-9.129,8.942v196.446c0,5.049,4.001,8.939,9.129,8.939h18.313
c5.129,0,9.156-3.92,9.156-8.939V333.048C250.945,328.026,246.944,324.106,241.789,324.106z"/>
<path d="M305.816,93.684C136.918,93.684,0,230.602,0,399.5c0,168.896,136.918,305.816,305.816,305.816
c168.896,0,305.815-136.919,305.815-305.816C611.633,230.602,474.714,93.684,305.816,93.684z M507.082,279.479
c0,5.021-4,8.915-9.129,8.915h-27.442v264.569c0,30.691-20.595,56.951-45.755,56.951H186.877c-25.16,0-45.755-25.133-45.755-55.824
V288.394h-27.416c-5.155,0-9.156-3.894-9.156-8.915v-17.883c0-5.021,4.001-8.942,9.156-8.942h88.342l20.004-46.587
c5.746-13.667,22.904-24.837,38.049-24.837h91.483c15.145,0,32.302,11.17,38.021,24.837l20.005,46.587h88.342
c5.129,0,9.129,3.92,9.129,8.942L507.082,279.479L507.082,279.479z"/>
<path d="M356.123,220.029c-0.859-1.128-3.41-2.792-4.861-3.088h-90.624c-1.691,0.295-4,1.96-4.86,3.088l-13.99,32.625h128.055
L356.123,220.029z"/>
<path d="M388.156,324.106h-18.313c-5.129,0-9.129,3.92-9.129,8.942v196.446c0,5.049,4,8.939,9.129,8.939h18.313
c5.129,0,9.157-3.92,9.157-8.939V333.048C397.313,328.026,393.313,324.106,388.156,324.106z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1016 B

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="96.191px" height="83.052px" viewBox="178.5 368.448 96.191 83.052" enable-background="new 178.5 368.448 96.191 83.052"
xml:space="preserve">
<g id="Layer_2">
</g>
<g id="Layer_1">
<polygon fill="none" points="206.548,426.416 206.548,405.566 202.318,403.02 202.318,430.646 248.198,430.646 241.175,426.416
"/>
<path fill="none" d="M202.318,392.581v0.82l50.753,30.561v-31.381H202.318z M240.383,413.728c-2.312,0-4.299-0.831-5.963-2.495
c-1.665-1.664-2.496-3.649-2.496-5.964c0-2.312,0.831-4.299,2.496-5.963c1.664-1.663,3.651-2.495,5.963-2.495
s4.299,0.83,5.963,2.495c1.665,1.664,2.496,3.651,2.496,5.963c0,2.314-0.831,4.3-2.496,5.964
C244.682,412.896,242.694,413.728,240.383,413.728z"/>
<polygon fill="#AAAAAA" points="202.318,392.581 253.071,392.581 253.071,423.962 257.301,426.508 257.301,388.352
198.089,388.352 198.089,390.854 202.318,393.401 "/>
<polygon fill="#AAAAAA" points="241.175,426.416 206.548,405.566 206.548,426.416 "/>
<path fill="#AAAAAA" d="M246.346,399.306c-1.664-1.665-3.651-2.495-5.963-2.495s-4.299,0.832-5.963,2.495
c-1.665,1.664-2.496,3.651-2.496,5.963c0,2.314,0.831,4.3,2.496,5.964c1.664,1.664,3.651,2.495,5.963,2.495
s4.299-0.831,5.963-2.495c1.665-1.664,2.496-3.649,2.496-5.964C248.842,402.957,248.011,400.97,246.346,399.306z"/>
<polygon fill="#AAAAAA" points="202.318,430.646 202.318,403.02 198.089,400.473 198.089,401.04 198.089,434.875 244.612,434.875
248.842,434.875 255.223,434.875 248.198,430.646 "/>
<path fill="#AAAAAA" d="M266.745,434.095c-0.552,0.917-1.743,1.214-2.66,0.661l-77.229-46.503c-0.917-0.553-1.213-1.744-0.66-2.661
l1.844-3.104c0.553-0.917,1.744-1.213,2.661-0.661l77.229,46.504c0.917,0.553,1.212,1.743,0.66,2.661L266.745,434.095z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,5 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="86.063 85.506 459 612" enable-background="new 86.063 85.506 459 612" xml:space="preserve">
<path d="M525.938,85.506h-420.75c-10.557,0-19.125,8.568-19.125,19.125v573.75c0,10.557,8.568,19.125,19.125,19.125h420.75
c10.558,0,19.125-8.568,19.125-19.125v-573.75C545.063,94.074,536.494,85.506,525.938,85.506z"/>
</svg>

Before

Width:  |  Height:  |  Size: 455 B

View File

@ -1,7 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="86.063 85.506 440.854 612" enable-background="new 86.063 85.506 440.854 612" xml:space="preserve">
<path d="M264.938,85.506h-159.75c-10.557,0-19.125,8.568-19.125,19.125v573.75c0,10.557,8.568,19.125,19.125,19.125h159.75
c10.557,0,19.125-8.568,19.125-19.125v-573.75C284.062,94.074,275.494,85.506,264.938,85.506z"/>
<path d="M507.792,85.506h-160.75c-10.558,0-19.125,8.568-19.125,19.125v573.75c0,10.557,8.567,19.125,19.125,19.125h160.75
c10.557,0,19.125-8.568,19.125-19.125v-573.75C526.917,94.074,518.349,85.506,507.792,85.506z"/>
</svg>

Before

Width:  |  Height:  |  Size: 680 B

View File

@ -1,9 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="86.063 85.506 439.937 612" enable-background="new 86.063 85.506 439.937 612" xml:space="preserve">
<path d="M192.938,85.506h-87.75c-10.557,0-19.125,8.568-19.125,19.125v573.75c0,10.557,8.568,19.125,19.125,19.125h87.75
c10.557,0,19.125-8.568,19.125-19.125v-573.75C212.062,94.074,203.494,85.506,192.938,85.506z"/>
<path d="M349.875,85.506h-87.75c-10.557,0-19.125,8.568-19.125,19.125v573.75c0,10.557,8.568,19.125,19.125,19.125h87.75
c10.557,0,19.125-8.568,19.125-19.125v-573.75C369,94.074,360.432,85.506,349.875,85.506z"/>
<path d="M506.875,85.506h-87.75c-10.557,0-19.125,8.568-19.125,19.125v573.75c0,10.557,8.568,19.125,19.125,19.125h87.75
c10.557,0,19.125-8.568,19.125-19.125v-573.75C526,94.074,517.432,85.506,506.875,85.506z"/>
</svg>

Before

Width:  |  Height:  |  Size: 883 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 767 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 397 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 909 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 679 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 933 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 692 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1011 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 914 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 549 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

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