diff --git a/Gruntfile.js b/Gruntfile.js index 51178b18530a2..d5b4ce3ade66f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,143 +1,423 @@ -// # Globbing -// for performance reasons we're only matching one level down: -// 'test/spec/{,*/}*.js' -// If you want to recursively match all subfolders, use: -// 'test/spec/**/*.js' +/** + * @copyright Copyright (c) 2015 X.commerce, Inc. (http://www.magentocommerce.com) + */ + +// For performance use one level down: 'name/{,*/}*.js' +// If you want to recursively match all subfolders, use: 'name/**/*.js' 'use strict'; module.exports = function (grunt) { - // Require - // -------------------------------------- + // Required plugins + // _____________________________________________ require('./dev/tools/grunt/tasks/mage-minify')(grunt); - // Time how long tasks take. Can help when optimizing build times + // Time how long tasks take. Can help when optimizing build times require('time-grunt')(grunt); - // Load grunt tasks automatically + // Load grunt tasks automatically require('load-grunt-tasks')(grunt); - // Configurable paths and file names - // -------------------------------------- - - var config = { - path: { - pub: 'pub', - var: 'var', - css: { - blank: 'pub/static/frontend/Magento/blank/en_US/css', - luma: 'pub/static/frontend/Magento/luma/en_US/css' - }, - less: { - lib: 'lib/web/css/', - blank: 'app/design/frontend/Magento/blank', - luma: 'app/design/frontend/luma' - }, - doc: 'lib/web/css/docs', - uglify: { - legacy: 'lib/web/legacy-build.min.js' - } + var svgo = require('imagemin-svgo'); + + // Configuration + // _____________________________________________ + + // Define Paths + // --------------------------------------------- + + var path = { + pub: 'pub/static/', + tmpLess: 'var/view_preprocessed/less/', + tmpSource: 'var/view_preprocessed/source/', + tmp: 'var', + css: { + setup: 'setup/pub/magento/setup/css' }, - doc: { - styleName: 'docs' + less: { + setup: 'setup/module/Magento/Setup/styles' + }, + uglify: { + legacy: 'lib/web/legacy-build.min.js' + }, + doc: 'lib/web/css/docs' + }; + + // Define Themes + // --------------------------------------------- + + var theme = { + blank: { + area: 'frontend', + name: 'Magento/blank', + locale: 'en_US', + files: [ + 'css/styles-m', + 'css/styles-l' + ] + }, + luma: { + area: 'frontend', + name: 'Magento/luma', + locale: 'en_US', + files: [ + 'css/styles-m', + 'css/styles-l' + ] + }, + backend: { + area: 'adminhtml', + name: 'Magento/backend', + locale: 'en_US', + files: [ + 'css/styles-old', + 'css/styles', + 'css/pages', + 'css/admin' + ] + } + }; + + // Define Combos for repetitive code + // --------------------------------------------- + + var combo = { + // Run php script for gathering less simlynks into pub directory + collector: function (themeName) { + var cmdPlus = (/^win/.test(process.platform) == true) ? ' & ' : ' && '; + var command = 'grunt --force clean:' + themeName + cmdPlus; + command = command + 'php -f dev/tools/Magento/Tools/Webdev/less.php --' + + ' --locale=' + theme[themeName].locale + + ' --area=' + theme[themeName].area + + ' --theme=' + theme[themeName].name + + ' --files=' + theme[themeName].files.join(','); + return command; + }, + autopath: function (themeName) { + return path.pub + + theme[themeName].area + '/' + + theme[themeName].name + '/' + + theme[themeName].locale + '/'; + }, + lessFiles: function (themeName) { + var lessStringArray = [], + cssStringArray = [], + lessFiles = {}, + i = 0; + for (i; i < theme[themeName].files.length; i++) { + cssStringArray[i] = path.pub + + theme[themeName].area + '/' + + theme[themeName].name + '/' + + theme[themeName].locale + '/' + + theme[themeName].files[i] + '.css'; + lessStringArray[i] = path.pub + + theme[themeName].area + '/' + + theme[themeName].name + '/' + + theme[themeName].locale + '/' + + theme[themeName].files[i] + '.less'; + + lessFiles[cssStringArray[i]] = lessStringArray[i]; + } + return lessFiles; } }; - // Define the configuration for all the tasks - // -------------------------------------- + // Tasks + // _____________________________________________ grunt.initConfig({ - // Project settings - config: config, + // Project settings + path: path, + theme: theme, + combo: combo, - // Watches files for changes and runs tasks based on the changed files - watch: { - less: { - files: [ - '<%= config.path.less.lib %>/{,*/}*.less', - '<%= config.path.less.blank %>/{,*/,*/*/,*/*/*/,*/*/*/*/}*.less', // ToDo UI: find out how to do it recursive - '<%= config.path.less.luma %>/{,*/,*/*/,*/*/*/,*/*/*/*/}*.less' - ], - tasks: ['styles'] + // Execution into cmd + // --------------------------------------------- + + exec: { + blank: { + cmd: function () { + return combo.collector('blank'); + } + }, + luma: { + cmd: function () { + return combo.collector('luma'); + } + }, + backend: { + cmd: function () { + return combo.collector('backend'); + } + }, + all: { + cmd: function () { + var command = '', + cmdPlus = (/^win/.test(process.platform) == true) ? ' & ' : ' && ', + themes = Object.keys(theme), + i = 0; + for (i; i < themes.length; i++) { + command += combo.collector(themes[i]) + cmdPlus; + } + return 'echo ' + command; + } } }, - // Empties folders to start fresh + // Cleanup temporary files + // --------------------------------------------- + clean: { var: { + force: true, files: [{ + force: true, dot: true, src: [ - '<%= config.path.var %>/cache/*', - '<%= config.path.var %>/generation/*', - '<%= config.path.var %>/log/*', - '<%= config.path.var %>/maps/*', - '<%= config.path.var %>/page_cache/*', - '<%= config.path.var %>/tmp/*', - '<%= config.path.var %>/view/*', - '<%= config.path.var %>/view_preprocessed/*' + '<%= path.tmp %>/cache/**/*', + '<%= path.tmp %>/generation/**/*', + '<%= path.tmp %>/log/**/*', + '<%= path.tmp %>/maps/**/*', + '<%= path.tmp %>/page_cache/**/*', + '<%= path.tmp %>/tmp/**/*', + '<%= path.tmp %>/view/**/*', + '<%= path.tmp %>/view_preprocessed/**/*' ] }] }, pub: { + force: true, + files: [{ + force: true, + dot: true, + src: [ + '<%= path.pub %>frontend/**/*', + '<%= path.pub %>adminhtml/**/*' + ] + }] + }, + styles: { + force: true, files: [{ + force: true, dot: true, src: [ - '<%= config.path.pub %>/static/frontend/*', - '<%= config.path.pub %>/static/adminhtml/*' + '<%= path.tmp %>/view_preprocessed/**/*', + '<%= path.tmp %>/cache/**/*', + '<%= path.pub %>frontend/**/*.less', + '<%= path.pub %>frontend/**/*.css', + '<%= path.pub %>adminhtml/**/*.less', + '<%= path.pub %>adminhtml/**/*.css' + ] + }] + }, + // Layout & templates cleanup + markup: { + force: true, + files: [{ + force: true, + dot: true, + src: [ + '<%= path.tmp %>/cache/**/*', + '<%= path.tmp %>/generation/**/*', + '<%= path.tmp %>/page_cache/**/*' + ] + }] + }, + js: { + force: true, + files: [{ + force: true, + dot: true, + src: [ + '<%= path.pub %>**/*.js', + '<%= path.pub %>**/*.html', + '<%= path.pub %>_requirejs/**/*' + ] + }] + }, + blank: { + force: true, + files: [{ + force: true, + dot: true, + src: [ + '<%= path.tmp %>/cache/**/*', + '<%= combo.autopath("blank", "pub") %>**/*', + '<%= combo.autopath("blank", "tmpLess") %>**/*', + '<%= combo.autopath("blank", "tmpSource") %>**/*' + ] + }] + }, + backend: { + force: true, + files: [{ + force: true, + dot: true, + src: [ + '<%= path.tmp %>/cache/**/*', + '<%= combo.autopath("backend", "pub") %>**/*', + '<%= combo.autopath("backend", "tmpLess") %>**/*', + '<%= combo.autopath("backend", "tmpSource") %>**/*' + ] + }] + }, + luma: { + force: true, + files: [{ + force: true, + dot: true, + src: [ + '<%= path.tmp %>/cache/**/*', + '<%= combo.autopath("luma", "pub") %>**/*', + '<%= combo.autopath("luma", "tmpLess") %>**/*', + '<%= combo.autopath("luma", "tmpSource") %>**/*' ] }] } }, - // Compiles Less to CSS and generates necessary files if requested + // Compiles Less to CSS and generates necessary files if requested + // --------------------------------------------- less: { options: { sourceMap: true, + strictImports: false, sourceMapRootpath: '/', dumpLineNumbers: false, // use 'comments' instead false to output line comments for source ieCompat: false }, + backend: { + files: combo.lessFiles('backend') + }, blank: { - files: { - '<%= config.path.css.blank %>/styles-m.css': '<%= config.path.css.blank %>/styles-m.less', - '<%= config.path.css.blank %>/styles-l.css': '<%= config.path.css.blank %>/styles-l.less' - } + files: combo.lessFiles('blank') }, luma: { + files: combo.lessFiles('luma') + }, + setup: { files: { - '<%= config.path.css.luma %>/styles-m.css': '<%= config.path.css.luma %>/styles-m.less', - '<%= config.path.css.luma %>/styles-l.css': '<%= config.path.css.luma %>/styles-l.less' + '<%= path.css.setup %>/setup.css': "<%= path.less.setup %>/setup.less" } }, documentation: { files: { - '<%= config.path.doc %>/<%= config.doc.styleName %>.css': '<%= config.path.doc %>/source/<%= config.doc.styleName %>.less' + '<%= path.doc %>/docs.css': "<%= path.doc %>/source/docs.less" } } }, - styledocco: { - documentation: { - options: { - name: 'Magento UI Library', - verbose: true, - include: [ - '<%= config.path.doc %>/<%= config.doc.styleName %>.css' - //'lib/web/jquery/jquery.min.js', - //'lib/web/jquery/jquery-ui.min', - //'<%= config.path.doc %>/source/js/dropdown.js' - ] - }, + // Styles minify + // --------------------------------------------- + + cssmin: { + options: { + report: 'gzip' + }, + setup: { files: { - '<%= config.path.doc %>': '<%= config.path.doc %>/source' // Todo UI: Check out JS for Styledocco + '<%= path.css.setup %>/setup.css': '<%= path.css.setup %>/setup.css' } } }, + // Styles autoprefixer + // --------------------------------------------- + + autoprefixer: { + options: { + browsers: [ + 'last 2 versions', + 'ie 9' + ] + }, + setup: { + src: '<%= path.css.setup %>/setup.css' + } + }, + + + // Watches files for changes and runs tasks based on the changed files + // --------------------------------------------- + + watch: { + backend: { + files: [ + '<%= combo.autopath("backend","pub") %>/**/*.less' + ], + tasks: 'less:backend' + }, + blank: { + files: [ + '<%= combo.autopath("blank","pub") %>/**/*.less' + ], + tasks: 'less:blank' + }, + luma: { + files: [ + '<%= combo.autopath("luma","pub") %>/**/*.less' + ], + tasks: 'less:luma' + }, + setup: { + files: '<%= path.less.setup %>/**/*.less', + tasks: 'less:setup' + } + }, + + // Images optimization + imagemin: { + png: { + options: { + optimizationLevel: 7 + }, + files: [ + { + expand: true, + src: ['**/*.png'], + ext: '.png' + } + ] + }, + jpg: { + options: { + progressive: true + }, + files: [ + { + expand: true, + src: ['**/*.jpg'], + ext: '.jpg' + } + ] + }, + gif: { + files: [ + { + expand: true, + src: ['**/*.gif'], + ext: '.gif' + } + ] + }, + svg: { + options: { + use: [svgo()] + }, + files: [ + { + expand: true, + src: ['**/*.svg'], + ext: '.svg' + } + ] + } + }, + 'mage-minify': { legacy: { options: { @@ -159,49 +439,79 @@ module.exports = function (grunt) { ] } } + }, + + // + + styledocco: { + documentation: { + options: { + name: 'Magento UI Library', + verbose: true, + include: [ + '<%= path.doc %>/docs.css' // Todo UI: Check out JS for Styledocco + //'lib/web/jquery/jquery.min.js', + //'lib/web/jquery/jquery-ui.min', + //'<%= path.doc %>/source/js/dropdown.js' + ] + }, + files: { + '<%= path.doc %>': '<%= path.doc %>/source' + } + } } + }); - /** - * Creates build of a legacy files. - * Mostly prototype dependant libraries. - */ - grunt.registerTask('legacy-build', [ - 'mage-minify:legacy' - ]); + // Assembling tasks + // _____________________________________________ - // Default task - // -------------------------------------- - grunt.registerTask('default', []); // ToDo UI: define default tasks + grunt.registerTask('default', function () { // ToDo UI: define default tasks + grunt.log.subhead('I\'m default task and at the moment I\'m empty, sorry :/'); + }); - // Clean var & pub folders - grunt.registerTask('cleanup', [ - 'clean:var', - 'clean:pub' - ]); + // Refresh magento frontend & backend + // --------------------------------------------- - // Compile all styles - // -------------------------------------- - grunt.registerTask('styles', [ + grunt.registerTask('refresh', [ + 'exec:all', 'less:blank', - 'less:luma' + 'less:luma', + 'less:backend' ]); - // Compile blank styles - grunt.registerTask('styles blank', [ - 'less:blank' - ]); + // Creates build of a legacy files. + // Mostly prototype dependant libraries. + // --------------------------------------------- - // Compile luma styles - grunt.registerTask('styles luma', [ - 'less:luma' + grunt.registerTask('legacy-build', [ + 'mage-minify:legacy' ]); - // Documentation - // -------------------------------------- + // Documentation + // --------------------------------------------- + grunt.registerTask('documentation', [ 'less:documentation', 'styledocco:documentation', - 'cleanup' + 'clean:var', + 'clean:pub' ]); + + // Production + // --------------------------------------------- + + grunt.registerTask('prod', function (component) { + if (component === 'setup') { + grunt.task.run([ + 'less:' + component, + 'autoprefixer:' + component, + 'cssmin:' + component + ]); + } + if (component == undefined) { + grunt.log.subhead('Tip: Please make sure that u specify prod subtask. By default prod task do nothing'); + } + }); + }; diff --git a/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php b/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php index acf12f85721bb..ccb8788dbb35b 100644 --- a/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php +++ b/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php @@ -100,7 +100,7 @@ protected function _prepareForm() 'label' => __('Date From'), 'title' => __('Date From'), 'name' => 'date_from', - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'date_format' => $dateFormat //'required' => true ] @@ -112,7 +112,7 @@ protected function _prepareForm() 'label' => __('Date To'), 'title' => __('Date To'), 'name' => 'date_to', - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'date_format' => $dateFormat //'required' => true ] diff --git a/app/code/Magento/Backend/Block/Widget/Form.php b/app/code/Magento/Backend/Block/Widget/Form.php index 2ffb4d23b9c57..ea31a1e977abc 100644 --- a/app/code/Magento/Backend/Block/Widget/Form.php +++ b/app/code/Magento/Backend/Block/Widget/Form.php @@ -226,7 +226,7 @@ protected function _applyTypeSpecificConfig($inputType, $element, \Magento\Eav\M $element->setCanBeEmpty(true); break; case 'date': - $element->setImage($this->getViewFileUrl('images/grid-cal.gif')); + $element->setImage($this->getViewFileUrl('images/grid-cal.png')); $element->setDateFormat($this->_localeDate->getDateFormatWithLongYear()); break; case 'multiline': diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php index 9510e30b9b165..fa7185cca11b7 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php @@ -99,7 +99,7 @@ public function getHtml() '", buttonImage: "' . $this->getViewFileUrl( - 'images/grid-cal.gif' + 'images/grid-cal.png' ) . '", buttonText: "' . $this->escapeHtml(__('Date selector')) . '", diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php index 0505ff14caa82..3ea98889419dc 100644 --- a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php +++ b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php @@ -139,7 +139,7 @@ public function getHtml() dateFormat: "' . $format . '", timeFormat: "' . $timeFormat . '", showsTime: ' . ($this->getColumn()->getFilterTime() ? 'true' : 'false') . ', - buttonImage: "' . $this->getViewFileUrl('images/grid-cal.gif') . '", + buttonImage: "' . $this->getViewFileUrl('images/grid-cal.png') . '", buttonText: "' . $this->escapeHtml(__('Date selector')) . '", from: { id: "' . $htmlId . '_from" diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/btn_bg.gif b/app/code/Magento/Backend/view/adminhtml/web/images/btn_bg.gif deleted file mode 100644 index 32d6ca84f3f54..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/btn_bg.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/btn_on_bg.gif b/app/code/Magento/Backend/view/adminhtml/web/images/btn_on_bg.gif deleted file mode 100644 index fc478689f9aa3..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/btn_on_bg.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/btn_over_bg.gif b/app/code/Magento/Backend/view/adminhtml/web/images/btn_over_bg.gif deleted file mode 100644 index 294ff2bfcff1a..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/btn_over_bg.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/dragable-handler-vertical.gif b/app/code/Magento/Backend/view/adminhtml/web/images/dragable-handler-vertical.gif deleted file mode 100644 index 62316025626b3..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/dragable-handler-vertical.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.gif b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.gif deleted file mode 100644 index 3f981daf8dd72..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.png b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.png new file mode 100644 index 0000000000000..a0e6f2545f8c1 Binary files /dev/null and b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.png differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.gif b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.gif deleted file mode 100644 index 62316025626b3..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.png b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.png new file mode 100644 index 0000000000000..ec7a8d1f175a1 Binary files /dev/null and b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.png differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/error_msg_icon.gif b/app/code/Magento/Backend/view/adminhtml/web/images/error_msg_icon.gif deleted file mode 100644 index 9db2351303341..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/error_msg_icon.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/fam_bullet_error.gif b/app/code/Magento/Backend/view/adminhtml/web/images/fam_bullet_error.gif deleted file mode 100644 index 0d3b48ab3d34d..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/fam_bullet_error.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/fam_bullet_success.gif b/app/code/Magento/Backend/view/adminhtml/web/images/fam_bullet_success.gif deleted file mode 100644 index f1be07354b508..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/fam_bullet_success.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png b/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png index 49f86d4c08400..784797b92c24e 100644 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png and b/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png b/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png index d2122cc1133fe..47b94524838b7 100644 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png and b/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png b/app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png index a355f94784148..23f218fa5981f 100644 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png and b/app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/note_msg_icon.gif b/app/code/Magento/Backend/view/adminhtml/web/images/note_msg_icon.gif deleted file mode 100644 index c9cacc27ae255..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/note_msg_icon.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/success_msg_icon.gif b/app/code/Magento/Backend/view/adminhtml/web/images/success_msg_icon.gif deleted file mode 100644 index 611faffbc5f42..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/success_msg_icon.gif and /dev/null differ diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/warning_msg_icon.gif b/app/code/Magento/Backend/view/adminhtml/web/images/warning_msg_icon.gif deleted file mode 100644 index c29d6cfcbf748..0000000000000 Binary files a/app/code/Magento/Backend/view/adminhtml/web/images/warning_msg_icon.gif and /dev/null differ diff --git a/app/code/Magento/Captcha/view/adminhtml/web/reload.png b/app/code/Magento/Captcha/view/adminhtml/web/reload.png index 2b1e64bc158ab..0ad46c613ccbc 100644 Binary files a/app/code/Magento/Captcha/view/adminhtml/web/reload.png and b/app/code/Magento/Captcha/view/adminhtml/web/reload.png differ diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php index a3e16b89f1dbc..771bb60d14eb3 100644 --- a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php +++ b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php @@ -123,7 +123,7 @@ protected function _prepareForm() 'name' => 'default_value_date', 'label' => __('Default Value'), 'title' => __('Default Value'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'value' => $attributeObject->getDefaultValue(), 'date_format' => $dateFormat ] diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php index 39cd0ec051cf8..302c92ff1de23 100644 --- a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php +++ b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php @@ -91,7 +91,7 @@ public function getCalendarDateHtml() )->setClass( 'product-custom-option datetime-picker input-text' )->setImage( - $this->getViewFileUrl('Magento_Core::calendar.gif') + $this->getViewFileUrl('Magento_Core::calendar.png') )->setDateFormat( $this->_localeDate->getDateFormat(\Magento\Framework\Stdlib\DateTime\TimezoneInterface::FORMAT_TYPE_SHORT) )->setValue( diff --git a/app/code/Magento/Catalog/etc/widget.xml b/app/code/Magento/Catalog/etc/widget.xml index 30fa88394f3c6..c2814299c3b15 100644 --- a/app/code/Magento/Catalog/etc/widget.xml +++ b/app/code/Magento/Catalog/etc/widget.xml @@ -8,7 +8,7 @@ + placeholder_image="Magento_Catalog::images/product_widget_new.png" ttl="86400"> List of Products that are set as New @@ -87,7 +87,7 @@ + placeholder_image="Magento_Catalog::images/product_widget_link.png"> Link to a Specified Product @@ -126,7 +126,7 @@ + placeholder_image="Magento_Catalog::images/category_widget_link.png"> Link to a Specified Category diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml index c8a0632bfdb29..c6f5aef39df66 100644 --- a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml +++ b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml @@ -26,7 +26,7 @@ getRoot()): ?>
-
+
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png index 4bdd5c961d452..da0790f1fada9 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png and b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif index 5b33f7e54f4e5..82d06cc97f0b9 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif and b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif index d9bb3c55f66d4..1612bcee36660 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif and b/app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.gif deleted file mode 100644 index 3a8e645f5c39b..0000000000000 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.gif and /dev/null differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.png b/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.png new file mode 100644 index 0000000000000..4b15458182559 Binary files /dev/null and b/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.gif deleted file mode 100644 index cbc0d1cc7728d..0000000000000 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.gif and /dev/null differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.png b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.png new file mode 100644 index 0000000000000..614ddd3632eb0 Binary files /dev/null and b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.gif deleted file mode 100644 index 749a40a0729f4..0000000000000 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.gif and /dev/null differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.png b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.png new file mode 100644 index 0000000000000..c2573967031e1 Binary files /dev/null and b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png index 954e22dbd99e8..c243bfa4f619f 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png index 64ece5707d91a..9e24b2eeeaed9 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png index abdc01082bf35..b10f59cd34249 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png index 42ccba269b6e9..8569c1bc9f4bf 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png index ede456f1793ab..734cb2c3c99e7 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png index b273ff111d219..362f289fce3a2 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png index a641a371afa0f..7b3d2e9353cbb 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png index 85e63e9f604ce..65d8d914c23b8 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png index e117effa3dca2..599fb0044dd47 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png index 42f8f992c727d..e921df9b5929d 100644 Binary files a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png and b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png differ diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/product.css b/app/code/Magento/Catalog/view/adminhtml/web/product/product.css index feb4a7d4bf1a0..f2b4a92fba00f 100644 --- a/app/code/Magento/Catalog/view/adminhtml/web/product/product.css +++ b/app/code/Magento/Catalog/view/adminhtml/web/product/product.css @@ -201,7 +201,7 @@ bottom: 5px; top: auto; margin: auto; - background: url(Magento_Backend::images/draggable-handle-bg.gif) no-repeat; + background: url(Magento_Backend::images/draggable-handle-bg.png) no-repeat; z-index: 2; } diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Main.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Main.php index b22840b7f547f..078549a12bf3e 100644 --- a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Main.php +++ b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Main.php @@ -196,7 +196,7 @@ protected function _prepareForm() 'name' => 'from_date', 'label' => __('From Date'), 'title' => __('From Date'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'input_format' => \Magento\Framework\Stdlib\DateTime::DATE_INTERNAL_FORMAT, 'date_format' => $dateFormat ] @@ -208,7 +208,7 @@ protected function _prepareForm() 'name' => 'to_date', 'label' => __('To Date'), 'title' => __('To Date'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'input_format' => \Magento\Framework\Stdlib\DateTime::DATE_INTERNAL_FORMAT, 'date_format' => $dateFormat ] diff --git a/app/code/Magento/CatalogSearch/Block/Advanced/Form.php b/app/code/Magento/CatalogSearch/Block/Advanced/Form.php index 2836c83442d93..51fd53bf652bf 100644 --- a/app/code/Magento/CatalogSearch/Block/Advanced/Form.php +++ b/app/code/Magento/CatalogSearch/Block/Advanced/Form.php @@ -356,7 +356,7 @@ public function getDateInput($attribute, $part = 'from') )->setValue( $value )->setImage( - $this->getViewFileUrl('Magento_Core::calendar.gif') + $this->getViewFileUrl('Magento_Core::calendar.png') )->setDateFormat( $this->_localeDate->getDateFormat(\Magento\Framework\Stdlib\DateTime\TimezoneInterface::FORMAT_TYPE_SHORT) )->setClass( diff --git a/app/code/Magento/CatalogWidget/etc/widget.xml b/app/code/Magento/CatalogWidget/etc/widget.xml index 2dca01fa5bd53..1b4a42bd9ef3d 100644 --- a/app/code/Magento/CatalogWidget/etc/widget.xml +++ b/app/code/Magento/CatalogWidget/etc/widget.xml @@ -8,7 +8,7 @@ + placeholder_image="Magento_CatalogWidget::images/products_list.png" ttl="86400"> List of Products diff --git a/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.gif b/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.gif deleted file mode 100644 index 6173e64aef9c6..0000000000000 Binary files a/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.gif and /dev/null differ diff --git a/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.png b/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.png new file mode 100644 index 0000000000000..3a33a55a7df00 Binary files /dev/null and b/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.png differ diff --git a/app/code/Magento/Centinel/view/frontend/templates/logo.phtml b/app/code/Magento/Centinel/view/frontend/templates/logo.phtml index da30f623ad030..03c8857cc460c 100644 --- a/app/code/Magento/Centinel/view/frontend/templates/logo.phtml +++ b/app/code/Magento/Centinel/view/frontend/templates/logo.phtml @@ -11,8 +11,8 @@
diff --git a/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.gif b/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.gif deleted file mode 100644 index 6d2625f8ebde9..0000000000000 Binary files a/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.gif and /dev/null differ diff --git a/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.png b/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.png index d8029b48647c7..54991ada1dd7b 100644 Binary files a/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.png and b/app/code/Magento/Centinel/view/frontend/web/images/sc_learn_62x34.png differ diff --git a/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.gif b/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.gif deleted file mode 100644 index a776803cd56dd..0000000000000 Binary files a/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.gif and /dev/null differ diff --git a/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.png b/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.png index a9629acb51ded..691741056a416 100644 Binary files a/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.png and b/app/code/Magento/Centinel/view/frontend/web/images/vbv_ltbg_71x57.png differ diff --git a/app/code/Magento/Checkout/view/frontend/web/cvv.gif b/app/code/Magento/Checkout/view/frontend/web/cvv.gif deleted file mode 100644 index 6d6e9f2907839..0000000000000 Binary files a/app/code/Magento/Checkout/view/frontend/web/cvv.gif and /dev/null differ diff --git a/app/code/Magento/Checkout/view/frontend/web/cvv.png b/app/code/Magento/Checkout/view/frontend/web/cvv.png new file mode 100644 index 0000000000000..59911fd45bdf1 Binary files /dev/null and b/app/code/Magento/Checkout/view/frontend/web/cvv.png differ diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/Tab/Design.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/Tab/Design.php index bd6dcaccd6970..bb7234a561fc5 100644 --- a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/Tab/Design.php +++ b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/Tab/Design.php @@ -125,7 +125,7 @@ protected function _prepareForm() [ 'name' => 'custom_theme_from', 'label' => __('Custom Design From'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'date_format' => $dateFormat, 'disabled' => $isElementDisabled, 'class' => 'validate-date validate-date-range date-range-custom_theme-from' @@ -138,7 +138,7 @@ protected function _prepareForm() [ 'name' => 'custom_theme_to', 'label' => __('Custom Design To'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'date_format' => $dateFormat, 'disabled' => $isElementDisabled, 'class' => 'validate-date validate-date-range date-range-custom_theme-to' diff --git a/app/code/Magento/Cms/etc/widget.xml b/app/code/Magento/Cms/etc/widget.xml index 7698bb835a209..b69e13fc5cb09 100644 --- a/app/code/Magento/Cms/etc/widget.xml +++ b/app/code/Magento/Cms/etc/widget.xml @@ -8,7 +8,7 @@ + placeholder_image="Magento_Cms::images/widget_page_link.png"> Link to a CMS Page @@ -43,7 +43,7 @@ + placeholder_image="Magento_Cms::images/widget_block.png"> Contents of a Static Block diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg b/app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg index 4537aa80b3190..2486ce6fc3064 100644 Binary files a/app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg and b/app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg differ diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.gif b/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.gif deleted file mode 100644 index 1cd9fe313690f..0000000000000 Binary files a/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.gif and /dev/null differ diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.png b/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.png new file mode 100644 index 0000000000000..05ce742bbc8b8 Binary files /dev/null and b/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.png differ diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.gif b/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.gif deleted file mode 100644 index 9206fb5f0e773..0000000000000 Binary files a/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.gif and /dev/null differ diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.png b/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.png new file mode 100644 index 0000000000000..c05065e92ef7e Binary files /dev/null and b/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.png differ diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png b/app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png index fc3fe113e23ad..0b22d2f629176 100644 Binary files a/app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png and b/app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png differ diff --git a/app/code/Magento/Core/view/adminhtml/web/calendar.gif b/app/code/Magento/Core/view/adminhtml/web/calendar.gif deleted file mode 100644 index d0235c7e023ca..0000000000000 Binary files a/app/code/Magento/Core/view/adminhtml/web/calendar.gif and /dev/null differ diff --git a/app/code/Magento/Core/view/adminhtml/web/calendar.png b/app/code/Magento/Core/view/adminhtml/web/calendar.png new file mode 100644 index 0000000000000..40bc9bbb41da2 Binary files /dev/null and b/app/code/Magento/Core/view/adminhtml/web/calendar.png differ diff --git a/app/code/Magento/Core/view/adminhtml/web/fam_book_open.png b/app/code/Magento/Core/view/adminhtml/web/fam_book_open.png index 7d863f949741f..5b4b38154b37f 100644 Binary files a/app/code/Magento/Core/view/adminhtml/web/fam_book_open.png and b/app/code/Magento/Core/view/adminhtml/web/fam_book_open.png differ diff --git a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/btn_bg.gif b/app/code/Magento/Core/view/adminhtml/web/prototype/magento/btn_bg.gif deleted file mode 100644 index 32d6ca84f3f54..0000000000000 Binary files a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/btn_bg.gif and /dev/null differ diff --git a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/content_bg.gif b/app/code/Magento/Core/view/adminhtml/web/prototype/magento/content_bg.gif deleted file mode 100644 index 2a8c1375eb0bd..0000000000000 Binary files a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/content_bg.gif and /dev/null differ diff --git a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/top_bg.gif b/app/code/Magento/Core/view/adminhtml/web/prototype/magento/top_bg.gif deleted file mode 100644 index c9a37315deca7..0000000000000 Binary files a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/top_bg.gif and /dev/null differ diff --git a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/window_close.png b/app/code/Magento/Core/view/adminhtml/web/prototype/magento/window_close.png index 6e2b6dfb1d098..8eec3e768bba0 100644 Binary files a/app/code/Magento/Core/view/adminhtml/web/prototype/magento/window_close.png and b/app/code/Magento/Core/view/adminhtml/web/prototype/magento/window_close.png differ diff --git a/app/code/Magento/Core/view/adminhtml/web/theme/default_preview.jpg b/app/code/Magento/Core/view/adminhtml/web/theme/default_preview.jpg index 8cf9655aa2dbe..cbb5fb103470f 100644 Binary files a/app/code/Magento/Core/view/adminhtml/web/theme/default_preview.jpg and b/app/code/Magento/Core/view/adminhtml/web/theme/default_preview.jpg differ diff --git a/app/code/Magento/Core/view/frontend/web/calendar.gif b/app/code/Magento/Core/view/frontend/web/calendar.gif deleted file mode 100644 index d0235c7e023ca..0000000000000 Binary files a/app/code/Magento/Core/view/frontend/web/calendar.gif and /dev/null differ diff --git a/app/code/Magento/Core/view/frontend/web/calendar.png b/app/code/Magento/Core/view/frontend/web/calendar.png new file mode 100644 index 0000000000000..40bc9bbb41da2 Binary files /dev/null and b/app/code/Magento/Core/view/frontend/web/calendar.png differ diff --git a/app/code/Magento/Core/view/frontend/web/fam_book_open.png b/app/code/Magento/Core/view/frontend/web/fam_book_open.png index 7d863f949741f..5b4b38154b37f 100644 Binary files a/app/code/Magento/Core/view/frontend/web/fam_book_open.png and b/app/code/Magento/Core/view/frontend/web/fam_book_open.png differ diff --git a/app/code/Magento/Core/view/frontend/web/translate_edit_icon.png b/app/code/Magento/Core/view/frontend/web/translate_edit_icon.png index dc568db6ffb79..1f4fde9627244 100644 Binary files a/app/code/Magento/Core/view/frontend/web/translate_edit_icon.png and b/app/code/Magento/Core/view/frontend/web/translate_edit_icon.png differ diff --git a/app/code/Magento/Core/view/frontend/web/translate_edit_icon_hover.png b/app/code/Magento/Core/view/frontend/web/translate_edit_icon_hover.png index 60fccfa9c1979..9361ec4f80040 100644 Binary files a/app/code/Magento/Core/view/frontend/web/translate_edit_icon_hover.png and b/app/code/Magento/Core/view/frontend/web/translate_edit_icon_hover.png differ diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php index 4676af0b22f7e..c973d31e69437 100644 --- a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php +++ b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php @@ -98,7 +98,7 @@ protected function _applyTypeSpecificConfigCustomer( $element->setCanBeEmpty(true); break; case 'date': - $element->setImage($this->getViewFileUrl('images/grid-cal.gif')); + $element->setImage($this->getViewFileUrl('images/grid-cal.png')); $element->setDateFormat($this->_localeDate->getDateFormatWithLongYear()); break; case 'multiline': diff --git a/app/code/Magento/Customer/Block/Widget/Dob.php b/app/code/Magento/Customer/Block/Widget/Dob.php index 212bb69fa6914..5c2b7fe97c962 100644 --- a/app/code/Magento/Customer/Block/Widget/Dob.php +++ b/app/code/Magento/Customer/Block/Widget/Dob.php @@ -138,7 +138,7 @@ public function getFieldHtml() 'class' => $this->getHtmlClass(), 'value' => $this->getValue(), 'date_format' => $this->getDateFormat(), - 'image' => $this->getViewFileUrl('Magento_Core::calendar.gif'), + 'image' => $this->getViewFileUrl('Magento_Core::calendar.png'), ]); return $this->dateElement->getHtml(); } diff --git a/app/code/Magento/DesignEditor/view/adminhtml/templates/editor/tools/files/content/uploader.phtml b/app/code/Magento/DesignEditor/view/adminhtml/templates/editor/tools/files/content/uploader.phtml index 5057f05b6fd11..adbd9bf729b80 100644 --- a/app/code/Magento/DesignEditor/view/adminhtml/templates/editor/tools/files/content/uploader.phtml +++ b/app/code/Magento/DesignEditor/view/adminhtml/templates/editor/tools/files/content/uploader.phtml @@ -23,10 +23,10 @@
diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/css/fonts/MUI-Icons.svg b/app/code/Magento/DesignEditor/view/adminhtml/web/css/fonts/MUI-Icons.svg index 3ec05eb706881..fbbadbc713446 100644 --- a/app/code/Magento/DesignEditor/view/adminhtml/web/css/fonts/MUI-Icons.svg +++ b/app/code/Magento/DesignEditor/view/adminhtml/web/css/fonts/MUI-Icons.svg @@ -1,671 +1 @@ - - - - -This is a custom SVG font generated by IcoMoon. -0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/css/styles.css b/app/code/Magento/DesignEditor/view/adminhtml/web/css/styles.css index 66863048bff89..8c1ff5df760e5 100644 --- a/app/code/Magento/DesignEditor/view/adminhtml/web/css/styles.css +++ b/app/code/Magento/DesignEditor/view/adminhtml/web/css/styles.css @@ -1208,7 +1208,7 @@ -------------------------------------- */ .vde-message { margin: -40px 0 46px; - background: url(Magento_DesignEditor::images/vde-message-bg.gif); + background: url(Magento_DesignEditor::images/vde-message-bg.jpg); border-bottom: 1px solid #43423D; border-radius: 5px; font: 14px/1.666 Helvetica, Arial, sans-serif; diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_down.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_down.png index 74b9101acd791..b4136d7482952 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_down.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_down.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_up.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_up.png index 002eeb9762fa6..b88e6ac24b1b1 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_up.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/arrow_up.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/block.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/block.png index 14fa330a3322b..930491ecfc694 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/block.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/block.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/button.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/button.png index 0bf9ef7d7dc3d..7b11dc36ab47b 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/button.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/button.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/button_hover.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/button_hover.png index 026f59ba94687..7b9d2dab62461 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/button_hover.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/button_hover.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/checked.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/checked.png index 52633ea72fe5d..c5caef732f44f 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/checked.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/checked.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/container.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/container.png index 2d38b19590241..f4fab89ea5fc6 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/container.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/container.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/container_hover.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/container_hover.png index 8d42bf0694de3..5b75ecdf7d0fb 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/container_hover.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/container_hover.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/gallery-image-base-label.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/gallery-image-base-label.png index ec81839557fdd..c143fafdfd073 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/gallery-image-base-label.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/gallery-image-base-label.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-error.gif b/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-error.gif deleted file mode 100644 index 9db2351303341..0000000000000 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-error.gif and /dev/null differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-error.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-error.png new file mode 100644 index 0000000000000..692f3aa55e69c Binary files /dev/null and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-error.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-success.gif b/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-success.gif deleted file mode 100644 index 611faffbc5f42..0000000000000 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-success.gif and /dev/null differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-success.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-success.png new file mode 100644 index 0000000000000..70f47aa154816 Binary files /dev/null and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/i_msg-success.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/jstree_plus_minus.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/jstree_plus_minus.png index af4d3ec39a3f6..cedc521f8358b 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/jstree_plus_minus.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/jstree_plus_minus.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/logo-store-designer.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/logo-store-designer.png index 2a0c6a6868a75..955dbfdacb9aa 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/logo-store-designer.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/logo-store-designer.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/stub.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/stub.png index 3c30037a3b332..36a9e54387ea8 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/stub.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/stub.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/theme-preview-back.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/theme-preview-back.png index b48f590770574..dd7cd2ef01ea0 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/theme-preview-back.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/theme-preview-back.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-message-bg.gif b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-message-bg.gif deleted file mode 100644 index cd8b5eb91e4b1..0000000000000 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-message-bg.gif and /dev/null differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-message-bg.jpg b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-message-bg.jpg new file mode 100644 index 0000000000000..69ab9a289dbea Binary files /dev/null and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-message-bg.jpg differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-panel-top-shadow.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-panel-top-shadow.png index 0c3736142df1f..bd1dd6c2ad477 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-panel-top-shadow.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-panel-top-shadow.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-image-settings-fill-frame.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-image-settings-fill-frame.png index 99272ad20f839..92775d391c058 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-image-settings-fill-frame.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-image-settings-fill-frame.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-main-tabs-icons-sprite.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-main-tabs-icons-sprite.png index be8290a8fa628..e82fbce510dce 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-main-tabs-icons-sprite.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-main-tabs-icons-sprite.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-panel-draggable-handler-bg.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-panel-draggable-handler-bg.png index 43bef6905237d..17c416a0b622a 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-panel-draggable-handler-bg.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-panel-draggable-handler-bg.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-edit-icon-sprite.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-edit-icon-sprite.png index dece7acd23a07..446dcfc89d346 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-edit-icon-sprite.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-edit-icon-sprite.png differ diff --git a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-menu-icon-sprite.png b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-menu-icon-sprite.png index 4370a97231cdf..61e14938fcae9 100644 Binary files a/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-menu-icon-sprite.png and b/app/code/Magento/DesignEditor/view/adminhtml/web/images/vde-tools-text-menu-icon-sprite.png differ diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php index e24bded921403..31b3af8f1b9bd 100644 --- a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php +++ b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php @@ -210,7 +210,7 @@ protected function _prepareForm() 'name' => 'default_value_date', 'label' => __('Default Value'), 'title' => __('Default Value'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'value' => $attributeObject->getDefaultValue(), 'date_format' => $dateFormat ] diff --git a/app/code/Magento/Email/Model/Template.php b/app/code/Magento/Email/Model/Template.php index e3b52978ca654..75969ae91239b 100644 --- a/app/code/Magento/Email/Model/Template.php +++ b/app/code/Magento/Email/Model/Template.php @@ -236,7 +236,7 @@ protected function _getLogoUrl($store) public function getDefaultEmailLogo() { return $this->_assetRepo->getUrlWithParams( - 'Magento_Email::logo_email.gif', + 'Magento_Email::logo_email.png', ['area' => \Magento\Framework\App\Area::AREA_FRONTEND] ); } diff --git a/app/code/Magento/Email/view/frontend/web/logo_email.gif b/app/code/Magento/Email/view/frontend/web/logo_email.gif deleted file mode 100644 index a4d941679e111..0000000000000 Binary files a/app/code/Magento/Email/view/frontend/web/logo_email.gif and /dev/null differ diff --git a/app/code/Magento/Email/view/frontend/web/logo_email.png b/app/code/Magento/Email/view/frontend/web/logo_email.png new file mode 100644 index 0000000000000..0a659fd813783 Binary files /dev/null and b/app/code/Magento/Email/view/frontend/web/logo_email.png differ diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php index c4f2d1ab861a7..f737cd87e3012 100644 --- a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php +++ b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php @@ -80,7 +80,7 @@ protected function _getDateFromToHtmlWithValue(Attribute $attribute, $value) 'date_format' => $this->_localeDate->getDateFormat( \Magento\Framework\Stdlib\DateTime\TimezoneInterface::FORMAT_TYPE_SHORT ), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), ]; /** @var $selectBlock \Magento\Framework\View\Element\Html\Date */ $dateBlock = $this->_layout->createBlock( @@ -379,6 +379,8 @@ public function getFilterElementName($attributeCode) * * @param Attribute $row * @return string|false + * + * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function getRowUrl($row) { diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php index 7675ac57c9a71..924206f42ec41 100644 --- a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php +++ b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php @@ -93,7 +93,7 @@ protected function _prepareForm() 'date_format' => $dateFormat, 'time_format' => $timeFormat, 'label' => __('Queue Date Start'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif') + 'image' => $this->getViewFileUrl('images/grid-cal.png') ] ); @@ -104,7 +104,7 @@ protected function _prepareForm() [ 'name' => 'stores[]', 'label' => __('Subscribers From'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'values' => $this->_systemStore->getStoreValuesForForm(), 'value' => $queue->getStores() ] @@ -127,7 +127,7 @@ protected function _prepareForm() 'date_format' => $dateFormat, 'time_format' => $timeFormat, 'label' => __('Queue Date Start'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif') + 'image' => $this->getViewFileUrl('images/grid-cal.png') ] ); @@ -138,7 +138,7 @@ protected function _prepareForm() [ 'name' => 'stores[]', 'label' => __('Subscribers From'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'required' => true, 'values' => $this->_systemStore->getStoreValuesForForm(), 'value' => $queue->getStores() diff --git a/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml b/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml index f551c252a4ce6..ae5b266a43545 100644 --- a/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml @@ -61,7 +61,7 @@
- getViewFileUrl('Magento_Checkout::cvv.gif') . '\" alt=\"' . __('Card Verification Number Visual Reference') . '\" title=\"' . __('Card Verification Number Visual Reference') . '\" />'; ?> + getViewFileUrl('Magento_Checkout::cvv.png') . '\" alt=\"' . __('Card Verification Number Visual Reference') . '\" title=\"' . __('Card Verification Number Visual Reference') . '\" />'; ?>
diff --git a/app/code/Magento/Persistent/Block/Header/Additional.php b/app/code/Magento/Persistent/Block/Header/Additional.php index a37d668073c21..1de972980c1c5 100644 --- a/app/code/Magento/Persistent/Block/Header/Additional.php +++ b/app/code/Magento/Persistent/Block/Header/Additional.php @@ -71,12 +71,7 @@ public function getHref() protected function _toHtml() { if ($this->_persistentSessionHelper->getSession()->getCustomerId()) { - $persistentName = $this->escapeHtml( - $this->_customerViewHelper->getCustomerName( - $this->customerRepository->getById($this->_persistentSessionHelper->getSession()->getCustomerId()) - ) - ); - return 'getLinkAttributes() . ' >' . __('(Not %1?)', $persistentName) + return 'getLinkAttributes() . ' >' . __('Not you?') . ''; } diff --git a/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php b/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php index 3399d0bd34b42..48e968de6798c 100644 --- a/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php +++ b/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php @@ -147,7 +147,7 @@ protected function _prepareForm() [ 'name' => 'from', 'date_format' => $dateFormat, - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'label' => __('From'), 'title' => __('From'), 'required' => true @@ -160,7 +160,7 @@ protected function _prepareForm() [ 'name' => 'to', 'date_format' => $dateFormat, - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'label' => __('To'), 'title' => __('To'), 'required' => true diff --git a/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml b/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml index 146ab829796fd..0525fdd38aad7 100644 --- a/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml +++ b/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml @@ -69,7 +69,7 @@ require([ $("#getSuffixId('period_date_range') ?>").dateRange({ dateFormat:"getDateFormat() ?>", - buttonImage:"getViewFileUrl('images/grid-cal.gif') ?>", + buttonImage:"getViewFileUrl('images/grid-cal.png') ?>", buttonText:"", from:{ id:"getSuffixId('period_date_from')?>" diff --git a/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif b/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif index 4df8f1c9aa1e7..39c431902f977 100644 Binary files a/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif and b/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif differ diff --git a/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif b/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif index 96fc18f8a2053..45e366ce02249 100644 Binary files a/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif and b/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif differ diff --git a/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php b/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php index 696fc409c69a7..d163cd98e1fc9 100644 --- a/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php +++ b/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php @@ -426,7 +426,7 @@ public function getValueElement() if (is_object($this->getAttributeObject())) { switch ($this->getAttributeObject()->getFrontendInput()) { case 'date': - $element->setImage($this->_assetRepo->getUrl('images/grid-cal.gif')); + $element->setImage($this->_assetRepo->getUrl('images/grid-cal.png')); break; default: break; diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php index db49cde19169e..79951197f43d1 100644 --- a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php +++ b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php @@ -204,7 +204,7 @@ protected function _addAttributesToForm($attributes, \Magento\Framework\Data\For $format = $this->_localeDate->getDateFormat( \Magento\Framework\Stdlib\DateTime\TimezoneInterface::FORMAT_TYPE_SHORT ); - $element->setImage($this->getViewFileUrl('images/grid-cal.gif')); + $element->setImage($this->getViewFileUrl('images/grid-cal.png')); $element->setDateFormat($format); } } diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Main.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Main.php index 3a786b66aef88..66a0d45ed5b02 100644 --- a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Main.php +++ b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Main.php @@ -265,7 +265,7 @@ protected function _prepareForm() 'name' => 'from_date', 'label' => __('From Date'), 'title' => __('From Date'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'input_format' => \Magento\Framework\Stdlib\DateTime::DATE_INTERNAL_FORMAT, 'date_format' => $dateFormat ] @@ -277,7 +277,7 @@ protected function _prepareForm() 'name' => 'to_date', 'label' => __('To Date'), 'title' => __('To Date'), - 'image' => $this->getViewFileUrl('images/grid-cal.gif'), + 'image' => $this->getViewFileUrl('images/grid-cal.png'), 'input_format' => \Magento\Framework\Stdlib\DateTime::DATE_INTERNAL_FORMAT, 'date_format' => $dateFormat ] diff --git a/app/code/Magento/Search/view/frontend/templates/form.mini.phtml b/app/code/Magento/Search/view/frontend/templates/form.mini.phtml index b12dc223dc58a..51a1aee6cd640 100644 --- a/app/code/Magento/Search/view/frontend/templates/form.mini.phtml +++ b/app/code/Magento/Search/view/frontend/templates/form.mini.phtml @@ -30,6 +30,9 @@ $helper = $this->helper('Magento\Search\Helper\Data'); placeholder="" class="input-text" maxlength="getMaxQueryLength();?>" + role="combobox" + aria-haspopup="false" + aria-autocomplete="both" autocomplete="off"/>
getChildHtml() ?> diff --git a/app/code/Magento/Search/view/frontend/web/form-mini.js b/app/code/Magento/Search/view/frontend/web/form-mini.js index 546a2b621b3c4..5c42e64b8f8e7 100644 --- a/app/code/Magento/Search/view/frontend/web/form-mini.js +++ b/app/code/Magento/Search/view/frontend/web/form-mini.js @@ -30,7 +30,7 @@ define([ minSearchLength: 2, responseFieldElements: 'ul li', selectClass: 'selected', - template: '
  • {{title}}{{num_of_results}}
  • ', + template: '
  • {{title}}
  • ', submitBtn: 'button[type="submit"]', searchLabel: '[data-role=minisearch-label]' }, @@ -55,6 +55,7 @@ define([ this.searchLabel.removeClass('active'); } this.autoComplete.hide(); + this._updateAriaHasPopup(false); }, this), 250); }, this)); @@ -66,7 +67,10 @@ define([ this.element.on('keydown', this._onKeyDown); this.element.on('input propertychange', this._onPropertyChange); - this.searchForm.on('submit', this._onSubmit); + this.searchForm.on('submit', $.proxy(function() { + this._onSubmit(); + this._updateAriaHasPopup(false); + }, this)); }, /** * @private @@ -84,6 +88,18 @@ define([ return this.responseList.indexList ? this.responseList.indexList.last() : false; }, + /** + * @private + * @param {Boolean} show Set attribute aria-haspopup to "true/false" for element. + */ + _updateAriaHasPopup: function(show) { + if (show) { + this.element.attr('aria-haspopup', 'true'); + } else { + this.element.attr('aria-haspopup', 'false'); + } + }, + /** * Clears the item selected from the suggestion list and resets the suggestion list. * @private @@ -108,9 +124,9 @@ define([ if (isEmpty(value)) { e.preventDefault(); } - + if (this.responseList.selected) { - this.element.val(this.responseList.selected.attr('title')); + this.element.val(this.responseList.selected.find('.qs-option-name').text()); } }, @@ -153,6 +169,8 @@ define([ this._getFirstVisibleElement().addClass(this.options.selectClass); this.responseList.selected = this._getFirstVisibleElement(); } + this.element.val(this.responseList.selected.find('.qs-option-name').text()); + this.element.attr('aria-activedescendant', this.responseList.selected.attr('id')); } break; case $.ui.keyCode.UP: @@ -165,6 +183,8 @@ define([ this._getLastElement().addClass(this.options.selectClass); this.responseList.selected = this._getLastElement(); } + this.element.val(this.responseList.selected.find('.qs-option-name').text()); + this.element.attr('aria-activedescendant', this.responseList.selected.attr('id')); } break; default: @@ -189,14 +209,15 @@ define([ }, source = this.options.template, template = Handlebars.compile(source), - dropdown = $('
      '), + dropdown = $('
        '), value = this.element.val(); this.submitBtn.disabled = isEmpty(value); if (value.length >= parseInt(this.options.minSearchLength, 10)) { $.get(this.options.url, {q: value}, $.proxy(function (data) { - $.each(data, function(index, element){ + $.each(data, function(index, element) { + element.index = index; var html = template(element); dropdown.append(html); }); @@ -206,7 +227,14 @@ define([ .find(this.options.responseFieldElements + ':visible'); this._resetResponseList(false); - + this.element.removeAttr('aria-activedescendant'); + + if (this.responseList.indexList.length) { + this._updateAriaHasPopup(true); + } else { + this._updateAriaHasPopup(false); + } + this.responseList.indexList .on('click', function (e) { this.responseList.selected = $(e.target); @@ -216,6 +244,7 @@ define([ this.responseList.indexList.removeClass(this.options.selectClass); $(e.target).addClass(this.options.selectClass); this.responseList.selected = $(e.target); + this.element.attr('aria-activedescendant', $(e.target).attr('id')); }.bind(this)) .on('mouseout', function (e) { if (!this._getLastElement() && this._getLastElement().hasClass(this.options.selectClass)) { @@ -227,6 +256,8 @@ define([ } else { this._resetResponseList(true); this.autoComplete.hide(); + this._updateAriaHasPopup(false); + this.element.removeAttr('aria-activedescendant'); } } }); diff --git a/app/code/Magento/Theme/Block/Html/Header/Logo.php b/app/code/Magento/Theme/Block/Html/Header/Logo.php index 8db2141c62d96..2956d9426b197 100644 --- a/app/code/Magento/Theme/Block/Html/Header/Logo.php +++ b/app/code/Magento/Theme/Block/Html/Header/Logo.php @@ -99,7 +99,7 @@ protected function _getLogoUrl() } elseif ($this->getLogoFile()) { $url = $this->getViewFileUrl($this->getLogoFile()); } else { - $url = $this->getViewFileUrl('images/logo.gif'); + $url = $this->getViewFileUrl('images/logo.svg'); } return $url; } diff --git a/app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png b/app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png index 8e55d39feb12a..1d350acbaabd1 100644 Binary files a/app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png and b/app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png differ diff --git a/app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif b/app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif index 3617bedc7ff42..63772fcdde34f 100644 Binary files a/app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif and b/app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif differ diff --git a/app/code/Magento/Theme/view/frontend/layout/default.xml b/app/code/Magento/Theme/view/frontend/layout/default.xml index c6769c7cfe7cf..35b28ffd0f583 100644 --- a/app/code/Magento/Theme/view/frontend/layout/default.xml +++ b/app/code/Magento/Theme/view/frontend/layout/default.xml @@ -33,7 +33,7 @@ contentarea - Skip to content + Skip to Content diff --git a/app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif b/app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif index 46b1a2267ba5a..078a87b3e62ef 100644 Binary files a/app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif and b/app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif differ diff --git a/app/code/Magento/Widget/view/adminhtml/web/placeholder.gif b/app/code/Magento/Widget/view/adminhtml/web/placeholder.gif index 9ba2251e0df59..7151648527652 100644 Binary files a/app/code/Magento/Widget/view/adminhtml/web/placeholder.gif and b/app/code/Magento/Widget/view/adminhtml/web/placeholder.gif differ diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml b/app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml index 5929c0bbc0a35..c9e46104eb566 100644 --- a/app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml +++ b/app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml @@ -14,10 +14,11 @@ - + + diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/layout/styles.xml b/app/design/adminhtml/Magento/backend/Magento_Backend/layout/styles.xml new file mode 100644 index 0000000000000..7fe3ce52af9f7 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/Magento_Backend/layout/styles.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento-small.png b/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento-small.png index b98a95fdb1ae3..09cd7afd62f7d 100644 Binary files a/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento-small.png and b/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento-small.png differ diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png b/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png index eeaa90eb9f04c..24640e7e37e3d 100644 Binary files a/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png and b/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png differ diff --git a/app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/module.less b/app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/module.less index 26c2ac0ee5d36..a051293f999ce 100644 --- a/app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/module.less +++ b/app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/module.less @@ -69,7 +69,7 @@ body { vertical-align: middle; width: 109px; height: 35px; - background-image: url("@{baseDir}images/logo.svg"); + background-image: url("@{baseDir}images/logo-admin.svg"); background-size: 109px 70px; background-repeat: no-repeat; } @@ -513,7 +513,7 @@ button { width: 30px; height: 35px; background-size: 109px 70px; - background: url("@{baseDir}images/logo.svg") no-repeat 0 -21px; + background: url("@{baseDir}images/logo-admin.svg") no-repeat 0 -21px; } } diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module.less new file mode 100644 index 0000000000000..fb9a294c356df --- /dev/null +++ b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module.less @@ -0,0 +1,6 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +//@import "formelements.less"; diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png b/app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png index 95ca1d889e664..ee23e18adf886 100644 Binary files a/app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png and b/app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png differ diff --git a/app/design/adminhtml/Magento/backend/web/css/admin.less b/app/design/adminhtml/Magento/backend/web/css/admin.less index e18d961cb1705..fca6307f8ac77 100644 --- a/app/design/adminhtml/Magento/backend/web/css/admin.less +++ b/app/design/adminhtml/Magento/backend/web/css/admin.less @@ -934,7 +934,7 @@ input.mage-error ~ .addafter { width: 8px; height: 14px; line-height: 14px; - background: url(Magento_Backend::images/draggable-handle-vertical.gif) no-repeat 0 0; + background: url(Magento_Backend::images/draggable-handle-vertical.png) no-repeat 0 0; cursor: ns-resize; color: #b2b0ad; } @@ -1406,10 +1406,6 @@ address { background-image: url(../images/fam_application_form_delete.png); } -.x-tree-node { - overflow: auto; -} - /* Styles for "js" tooltip with positionings -------------------------------------- */ @@ -2815,6 +2811,12 @@ address { padding: 0; } +.tree-wrapper { + width: 100%; + overflow: auto; + float: left; // Fixed Chrome scroll issue +} + .page-actions.fixed .page-actions-inner:before { content: attr(data-title); float: left; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_alerts.less b/app/design/adminhtml/Magento/backend/web/css/source/_alerts.less new file mode 100644 index 0000000000000..0632328650b10 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_alerts.less @@ -0,0 +1,81 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Variables +// _____________________________________________ + +// Colors +@alert__bg-color: @color-lazy-sunny; +@alert__color: @color-gray20; + +// Sizes +@alert__font-size: 1.9rem; + +// States +@alert-icon__info__color: @color-pure-blue; +@alert-icon__error__color: @color-phoenix; +@alert-icon__success__color: @color-green-apple; + +// +// Messages (Global) +// --------------------------------------------- + +.messages { + margin: 20px 0; + > .message:last-child { + margin-bottom: 0; + } +} + +.message { + background: @alert__bg-color; + color: @alert__color; + margin-bottom: 3.5rem; + padding: 1.8rem 4rem 1.8rem 1.9rem; + position: relative; + text-shadow: none; + + &:before { + background: none; + border: 0; + font-family: @icon-font-admin-name; + font-size: @alert__font-size; + font-style: @font-style-regular; + font-weight: @font-weight-regular; + height: auto; + left: 1.9rem; + line-height: inherit; + margin-top: -1.3rem; + position: absolute; + speak: none; + text-shadow: none; + top: 50%; + width: auto; + } + &-info, + &.info { + padding-left: 5rem; + &:before { + color: @alert-icon__info__color; + content: @icon-info; + } + } + &-error, + &.error { + padding-left: 5rem; + &:before { + color: @alert-icon__error__color; + content: @icon-error; + } + } + &.success { + padding-left: 5rem; + &:before { + color: @alert-icon__success__color; + content: @icon-check-mage; + } + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_buttons.less b/app/design/adminhtml/Magento/backend/web/css/source/_buttons.less new file mode 100644 index 0000000000000..904f945a9580c --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_buttons.less @@ -0,0 +1,214 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Variables +// _____________________________________________ + +// Sizes +@button-base__font-size: 1.4rem; +@button-base__padding-vertical: .55em; +@button-base__padding-horizontal: 1em; + +// Colors +@button-base__color: @color-brownie; +@button-base__bg-color: @color-gray89; + +@button-primary__color: @color-white; +@button-primary__bg-color: @color-phoenix; + +@button-secondary__color: @color-white; +@button-secondary__bg-color: @color-brownie; +@button-secondary__border-color: @color-brownie; + +@button-tertiary__color: @color-gray20; +@button-tertiary__bg-color: @color-gray89; +@button-tertiary__border-color: @color-dark-grayish; + +// States +@button-base__large__font-size: 1.6rem; +@button-base__large__padding-vertical: .7em; +@button-base__large__padding-horizontal: 1.45em; + +@button-base__hover__bg-color: darken(@button-base__bg-color, 3%); +@button-base__hover__box-shadow: 0 0 0 1px @color-dodger-blue; +@button-base__active__bg-color: darken(@button-base__bg-color, 5%); + +@button-primary__hover__bg-color: @color-phoenix-brown; +@button-primary__hover__border-color: @color-phoenix-brown; + +@button-secondary__hover__bg-color: @color-very-dark-gray-black2; +@button-secondary__active__bg-color: @color-very-dark-gray-black2; + +@button-tertiary__hover_bg-color: @color-lighter-grayish; +@button-tertiary__hover__border-color: @color-gray56; + +// +// Common +// _____________________________________________ + +.action { + background: @button-base__bg-color; + border: 1px solid transparent; + color: @button-base__color; + display: inline-block; + font-family: @font-family-base; + font-size: @button-base__font-size; + font-weight: @font-weight-regular; + padding: @button-base__padding-vertical @button-base__padding-horizontal; + text-align: center; + vertical-align: middle; + &:hover { + background-color: @button-base__hover__bg-color; + .css(box-shadow, @button-base__hover__box-shadow); + color: @button-base__color; + text-decoration: none; + } + &:active { + background-color: @button-base__active__bg-color; + } + &[disabled], + &.disabled { + cursor: default; + opacity: @opacity-disabled; + pointer-events: none; + } +} + +.action-large { + font-size: @button-base__large__font-size; + padding: @button-base__large__padding-vertical @button-base__large__padding-horizontal; +} + +// +// Buttons +// _____________________________________________ + +// +// Link button +// --------------------------------------------- + +.action-link { + background-color: transparent; + border: none; + color: @color-link; + font-family: @font-family-base; + font-size: 1.4rem; + &:hover, + &:active { + background-color: transparent; + border-color: transparent; + color: @color-link-hover; + text-decoration: underline; + } +} + +// +// Primary button +// --------------------------------------------- + +.action-primary { + background-color: @button-primary__bg-color; + color: @button-primary__color; + text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); + &:hover, + &:active { + background-color: @button-primary__hover__bg-color; + border-color: @button-primary__hover__border-color; + color: @button-primary__color; + } + &.disabled, + &[disabled] { + cursor: default; + opacity: @opacity-disabled; + pointer-events: none; + } +} + +// +// Secondary button +// --------------------------------------------- + +.action-secondary { + background-color: @button-secondary__bg-color; + border-color: @button-secondary__border-color; + color: @button-secondary__color; + text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); + &:hover, + &:active { + background-color: @button-secondary__hover__bg-color; + color: @button-secondary__color; + } + &:active { + background-color: @button-secondary__active__bg-color; + } +} + +// +// Default button +// --------------------------------------------- + +.action-reset { + background-color: transparent; + border-color: transparent; + color: @color-gray20; + &:hover, + &:active { + background-color: transparent; + } +} + +// +// Tertiary button +// --------------------------------------------- + +.action-tertiary { + background: @button-tertiary__bg-color; + border-color: @button-tertiary__border-color; + color: @button-tertiary__color; + &:hover, + &:active { + background-color: @button-tertiary__hover_bg-color; + border-color: @button-tertiary__hover__border-color; + } +} + +// +// Split button +// --------------------------------------------- + +.actions-split { + .dropdown-split( + @_toggle-selector: ~".action-toggle", + @_button-selector: ~".action-default", + @_options-selector : ~".dropdown-menu", + @_dropdown-split-button-border-radius-fix: true, + @_dropdown-split-list-min-width: 175px, + @_icon-font-size: 40px, + @_icon-font-line-height: 14px, + @_icon-font-vertical-align: middle + ); + &:hover { + &:not(.disabled) { + .css(box-shadow, @button-base__hover__box-shadow); + } + } + vertical-align: middle; + button { + margin-left: 0; + &.action-toggle { + border-left: 1px solid #c34706; + padding: @button-base__padding-vertical 0; + } + &.action-large { + &.action-toggle { + padding: @button-base__large__padding-vertical 0; + } + } + &:hover { + box-shadow: none; + } + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_components.less b/app/design/adminhtml/Magento/backend/web/css/source/_components.less new file mode 100644 index 0000000000000..3fb515d0badf5 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_components.less @@ -0,0 +1,12 @@ +/** + * @category design + * Copyright © 2015 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +// +// Components +// _____________________________________________ + +@import 'components/_navigation'; +@import 'components/_spinner'; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_extend.less b/app/design/adminhtml/Magento/backend/web/css/source/_extend.less new file mode 100644 index 0000000000000..e5acb06f41c5a --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_extend.less @@ -0,0 +1,35 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// LESS Extend +// --------------------------------------------- + +// Buttons +button { + &:extend(.action all); + + &.primary { + &:extend(.action-primary all); + } + + &.secondary { + &:extend(.action-secondary all); + } + + &.tertiary { + &:extend(.action-tertiary all); + } +} + +// Validation +.validation-symbol { + &:after { + content: '*'; + color: @validation-color; + font-weight: @font-weight-regular; + margin-left: 3px; + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_forms.less b/app/design/adminhtml/Magento/backend/web/css/source/_forms.less new file mode 100644 index 0000000000000..875ca7f32f409 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_forms.less @@ -0,0 +1,6 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +@import 'forms/_forms'; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_grid.less b/app/design/adminhtml/Magento/backend/web/css/source/_grid.less new file mode 100644 index 0000000000000..e9b779adb27f4 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_grid.less @@ -0,0 +1,59 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Variables +// _____________________________________________ + +// +// Grid +// --------------------------------------------- + +// Number of columns in the grid. + +@grid-columns: 12; +@grid-gutter-width: 0; + +// +// Grid system +// _____________________________________________ + +// +// Row +// --------------------------------------------- + +// Rows contain and clear the floats of your columns. +.row { + .make-row(); +} + +// +// Columns +// --------------------------------------------- + +// Common styles for small and large grid columns +.make-grid-columns(); + +// Extra small grid +// Columns, offsets, pushes, and pulls for extra small devices like smartphones. +.make-grid(xs); + +// Small grid +// Columns, offsets, pushes, and pulls for the small device range, from phones to tablets. +.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-m) { + .make-grid(m); +} + +// Medium grid +// Columns, offsets, pushes, and pulls for the desktop device range. +.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-l) { + .make-grid(l); +} + +// Large grid +// Columns, offsets, pushes, and pulls for the large desktop device range. +.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-xl) { + .make-grid(xl); +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_icons.less b/app/design/adminhtml/Magento/backend/web/css/source/_icons.less new file mode 100644 index 0000000000000..ef33b725e4688 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_icons.less @@ -0,0 +1,300 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Variables +// _____________________________________________ + +// +// Icons +// --------------------------------------------- + +@icon-info: '\e61a'; +@icon-error: '\e632'; +@icon-check-mage: '\e62d'; + +// +// Admin Theme Icons +// --------------------------------------------- + +.font-face( + @family-name: @icon-font-admin-name, + @font-path: @icon-font-admin-path, + @font-weight: normal, + @font-style: normal +); + +// +// Blank Theme Icons +// --------------------------------------------- + +.font-face( + @family-name: @icon-font-blank-name, + @font-path: @icon-font-blank-path, + @font-weight: normal, + @font-style: normal +); + +// +// MUI Icons +// --------------------------------------------- + +.font-face( + @family-name: @icon-font-mui-name, + @font-path: @icon-font-mui-path, + @font-weight: normal, + @font-style: normal +); + +// Use the following CSS code if you want to use data attributes for inserting your icons +[data-icon]:before { + content: attr(data-icon); + font-family: @icon-font-admin-name; + -webkit-font-smoothing: antialiased; + font-weight: normal; + speak: none; +} + +// Use the following CSS code if you want to have a class per icon +[class^='icon-']:before, +[class*=' icon-']:before { + font-family: @icon-font-admin-name; + -webkit-font-smoothing: antialiased; + font-style: normal; + font-weight: normal; + speak: none; +} + +.icon-info:before { + content: @icon-info; +} + +.icon-lock:before { + content: '\e61b'; +} + +.icon-loop:before { + content: '\e61c'; +} + +.icon-plus:before { + content: '\e61d'; +} + +.icon-recover:before { + content: '\e61e'; +} + +.icon-refresh:before { + content: '\e61f'; +} + +.icon-remove-small:before { + content: '\e620'; +} + +.icon-retweet:before { + content: '\e621'; +} + +.icon-unlocked:before { + content: '\e622'; +} + +.icon-warning:before { + content: '\e623'; +} + +.icon-arrow-left:before { + content: '\e624'; +} + +.icon-arrow-right:before { + content: '\e625'; +} + +.icon-back-arrow:before { + content: '\e626'; +} + +.icon-calendar:before { + content: '\e627'; +} + +.icon-caret-down:before { + content: '\e628'; +} + +.icon-caret-left:before { + content: '\e629'; +} + +.icon-caret-right:before { + content: '\e62a'; +} + +.icon-caret-up:before { + content: '\e62b'; +} + +.icon-ccw:before { + content: '\e62c'; +} + +.icon-check-mage:before { + content: @icon-check-mage; +} + +.icon-clock:before { + content: '\e62e'; +} + +.icon-close-mage:before { + content: '\e62f'; +} + +.icon-delete:before { + content: '\e630'; +} + +.icon-edit:before { + content: '\e631'; +} + +.icon-error:before { + content: @icon-error; +} + +.icon-help:before { + content: '\e633'; +} + +.icon-history:before { + content: '\e634'; +} + +.icon-icon-gripper:before { + content: '\e617'; +} + +.icon-icon-forward:before { + content: '\e618'; +} + +.icon-icon-backward:before { + content: '\e619'; +} + +.icon-icon-expand-close:before { + content: '\e615'; +} + +.icon-icon-expand-open:before { + content: '\e616'; +} + +.icon-icon-system-config:before { + content: '\e610'; +} + +.icon-icon-home:before { + content: '\e611'; +} + +.icon-icon-lego:before { + content: '\e612'; +} + +.icon-icon-tool:before { + content: '\e613'; +} + +.icon-icon-upgrade:before { + content: '\e614'; +} + +.icon-notification:before { + content: '\e607'; +} + +.icon-product:before { + content: '\e608'; +} + +.icon-logo:before { + content: '\e606'; +} + +.icon-account:before { + content: '\e600'; +} + +.icon-arrowdown:before { + content: '\e601'; +} + +.icon-cms:before { + content: '\e602'; +} + +.icon-customers:before { + content: '\e603'; +} + +.icon-dashboard:before { + content: '\e604'; +} + +.icon-filter:before { + content: '\e605'; +} + +.icon-promotions:before { + content: '\e609'; +} + +.icon-reports:before { + content: '\e60a'; +} + +.icon-sales:before { + content: '\e60b'; +} + +.icon-search:before { + content: '\e60c'; +} + +.icon-stores:before { + content: '\e60d'; +} + +.icon-systems:before { + content: '\e60e'; +} + +.icon-views:before { + content: '\e60f'; +} + +.icon-import:before { + content: '\e636'; +} + +.icon-export:before { + content: '\e635'; +} + +.icon-enable:before { + content: '\e637'; +} + +.icon-not-installed:before { + content: '\e638'; +} + +.icon-disabled:before { + content: '\e639'; +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_lists.less b/app/design/adminhtml/Magento/backend/web/css/source/_lists.less new file mode 100644 index 0000000000000..d3480a9027fd2 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_lists.less @@ -0,0 +1,63 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +ul, +ol, +dl { + margin-top: 0; +} + +ul, +ol { + nav & { + list-style: none none; + margin: 0; + padding: 0; + } +} + +.list { + margin-bottom: 1rem; + padding-left: 0; + > li { + margin-bottom: .5rem; + ul { + padding-left: 1rem; + padding-top: .5rem; + } + } + &-reset { + list-style: none; + } +} + +// Definition list +.list-definition { + margin: 0 0 3rem; + padding: 0; + > dt { + clear: left; + float: left; + } + > dd { + margin-bottom: 1em; + margin-left: 20rem; + } +} + +// +// Mobile +// _____________________________________________ + +.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen-m) { + .list-definition { + > dt { + float: none; + } + > dd { + margin-left: 0; + } + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_reset.less b/app/design/adminhtml/Magento/backend/web/css/source/_reset.less new file mode 100644 index 0000000000000..a2e1aab935687 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_reset.less @@ -0,0 +1,36 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +.normalize(); + +* { + box-sizing: border-box; + &:focus { + box-shadow: none; + outline: 0; + } +} + +.keyfocus * { + &:focus { + box-shadow: @focus-box-shadow; + } +} + +img, +video, +embed, +object { + max-width: 100%; +} + +// ToDo UI: experimantal, need to test on webkit +.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-m) { + html { + margin-left: ~'calc(100vw - 100%)'; + margin-right: 0; + overflow: auto; + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_responsive.less b/app/design/adminhtml/Magento/backend/web/css/source/_responsive.less new file mode 100644 index 0000000000000..ae3b990cbdeb5 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_responsive.less @@ -0,0 +1,66 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Media variables, that can be used for splitting styles into several files +// _____________________________________________ + +// Sets whether to output common styles (true|false) +@media-common: true; +// Sets target device for styles output ('all' | 'desktop' | 'mobile') +@media-target: 'all'; + +// +// Media width mixin used to group styles output based on media queries +// _____________________________________________ + +.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen-s) { +} + +// +// Style groups for 'mobile' devices +// _____________________________________________ + +& when (@media-target = 'desktop'), +(@media-target = 'all') { + @media all and (max-width: (@screen-l - 1)) { + .media-width('max', @screen-l); + } + + @media all and (min-width: @screen-m) { + .media-width('min', @screen-m); + } + + @media all and (min-width: @screen-l) { + .media-width('min', @screen-l); + } + + @media all and (min-width: @screen-xl) { + .media-width('min', @screen-xl); + } +} + +// +// Style groups for 'desktop' devices +// _____________________________________________ + +& when (@media-target = 'mobile'), +(@media-target = 'all') { + @media all and (min-width: @screen-s) { + .media-width('min', @screen-s); + } + + @media all and (max-width: (@screen-m - 1)) { + .media-width('max', @screen-m); + } + + @media all and (max-width: (@screen-s - 1)) { + .media-width('max', @screen-s); + } + + @media all and (max-width: (@screen-xs - 1)) { + .media-width('max', @screen-xs); + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_sources.less b/app/design/adminhtml/Magento/backend/web/css/source/_sources.less new file mode 100644 index 0000000000000..a9ec8b707d379 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_sources.less @@ -0,0 +1,33 @@ +/** + * @category design + * Copyright © 2015 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +// +// Local backend lib +// _____________________________________________ + +@import '_reset'; +@import '_utilities'; +@import '_typography'; +@import '_icons'; +@import '_lists'; +@import '_buttons'; +@import '_forms'; +@import '_tables'; +@import '_alerts'; +@import '_grid'; +@import '_extend'; + +// +// Components +// _____________________________________________ + +@import '_components'; + +// +// Media queries collector +// _____________________________________________ + +@import '_responsive'; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_tables.less b/app/design/adminhtml/Magento/backend/web/css/source/_tables.less new file mode 100644 index 0000000000000..78ffa6bcabffe --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_tables.less @@ -0,0 +1,65 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Variables +// _____________________________________________ + +@base-table-color: @color-very-dark-gray-black; +@base-table-border-th-color: @color-gray80; +@base-table-border-td-color: @color-gray89; +@base-table-background-tfoot: @color-white-fog; + +// +// Tables +// _____________________________________________ + +table { + color: @base-table-color; + > caption { + margin-bottom: 5px; + } + tfoot { + background: @base-table-background-tfoot; + th, + td { + text-align: left; + } + } + th { + background: transparent; + border-bottom: 1px solid @base-table-border-th-color; + border-top: 1px solid @base-table-border-th-color; + font-weight: 700; + padding: 10px 15px; + text-align: left; + } + td { + border-bottom: 1px solid @base-table-border-td-color; + padding: 10px 15px; + vertical-align: top; + } + tbody { + td { + &:first-child { + input[type='checkbox'] { + margin: 0; + } + } + } + tr { + &:last-child { + td { + border-bottom-color: transparent; + } + } + } + } + th { + &.required { + &:extend(.validation-symbol all); + } + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_theme.less b/app/design/adminhtml/Magento/backend/web/css/source/_theme.less new file mode 100644 index 0000000000000..25305cd2f17cd --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_theme.less @@ -0,0 +1,93 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Colors +// --------------------------------------------- + +@color-light-brownie: #676056; +@color-dark-gray: #808080; +@color-very-dark-gray: #666; +@color-very-dark-gray2: #555; +@color-lighter-grayish: #cacaca; +@color-lighter-gray: #e9e9e9; +@color-dark-grayish-orange: #afadac; +@color-dark-grayish: #aeaeae; +@color-gray20: #333; +@color-gray52: #858585; +@color-gray56: #8f8f8f; +@color-gray60: #999; +@color-gray65: #a6a6a6; +@color-gray68: #adadad; +@color-gray75: #bfbfbf; +@color-gray80: #ccc; +@color-gray82: #d1d1d1; +@color-gray83: #d4d4d4; +@color-gray84: #d6d6d6; +@color-gray85: #d9d9d9; +@color-gray89: #e3e3e3; +@color-gray98: #fafafa; +@color-very-light-gray: #fcfcfc; +@color-white: #fff; +@color-white-smoke: #f5f5f5; +@color-white-fog: #f8f8f8; +@color-lazy-sun: #fff8d6; +@color-lazy-sunny: #fff1ad; +@color-pure-blue: #007bdb; +@color-dodger-blue: #008bdb; +@color-green-apple: #79a22e; +@color-brownie: #514943; +@color-dark-brown: #4a3f39; +@color-dark-brownie: #41362f; +@color-very-dark-gray-black: #303030; +@color-very-dark-gray-black2: #35302c; +@color-very-dark-grayish-orange: #373330; +@color-phoenix: #eb5202; +@color-phoenix-brown: #b84002; +@color-phoenix-brownie: #ae3d01; +@color-tomato-brick: #e22626; + +// +// Typography +// --------------------------------------------- + +// Font +@color-base: @color-gray19; +@font-family-base: 'Open Sans', @font-family-sans-serif; +@font-family-console: 'Courier New', Courier, monospace; +@font-size-base: 1.4rem; +@font-size-small: @font-size-base * .85; +@font-style-regular: normal; +@font-weight-light: 300; +@font-weight-regular: 400; +@font-weight-semibold: 600; +@font-weight-bold: 700; +@line-height-base: 1.4; +@color-link: @color-pure-blue; +@color-link-hover: @color-pure-blue; + +// Focus +@color-focus: @color-dodger-blue; +@focus-box-shadow: 0 0 0 1px @color-focus; + +// Disabled +@opacity-disabled: .7; + +// Admin Font Icons +@icon-font-admin-name: 'UX-Icons'; +@icon-font-admin-path: '@{baseDir}fonts/@{icon-font-admin-name}/@{icon-font-admin-name}'; + +// Legacy Font Icons +@icon-font-blank-name: 'icons-blank-theme'; +@icon-font-blank-path: '@{baseDir}fonts/Blank-Theme-Icons/Blank-Theme-Icons'; +@icon-font-mui-name: 'MUI-Icons'; +@icon-font-mui-path: '@{baseDir}fonts/@{icon-font-mui-name}/@{icon-font-mui-name}'; + + +// +// Validation +// --------------------------------------------- + +@validation-color: @color-tomato-brick; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_typography.less b/app/design/adminhtml/Magento/backend/web/css/source/_typography.less new file mode 100644 index 0000000000000..a19537bf444d2 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_typography.less @@ -0,0 +1,109 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +.font-face( + @family-name: 'Open Sans', + @font-path: '@{baseDir}fonts/opensans/light/opensans-300', + @font-weight: @font-weight-light, + @font-style: normal +); + +.font-face( + @family-name: 'Open Sans', + @font-path: '@{baseDir}fonts/opensans/regular/opensans-400', + @font-weight: @font-weight-regular, + @font-style: normal +); + +.font-face( + @family-name: 'Open Sans', + @font-path: '@{baseDir}fonts/opensans/semibold/opensans-600', + @font-weight: @font-weight-semibold, + @font-style: normal +); + +.font-face( + @family-name: 'Open Sans', + @font-path: '@{baseDir}fonts/opensans/bold/opensans-700', + @font-weight: @font-weight-bold, + @font-style: normal +); + +html { + font-size: 62.5%; +} + +body { + .typography( + @_font-size: @font-size-base, + @_color: @color-base, + @_font-family: @font-family-base, + @_font-weight: @font-weight-base, + @_line-height: @line-height-base, + @_font-style: @font-style-base + ); +} + +// +// Headings +// --------------------------------------------- + +h1 { + .typography( + @_font-size: 2.8rem, + @_color: @color-dark-brownie, + @_font-weight: @font-weight-regular, + @_line-height: 3.4rem, + @_font-family: false, + @_font-style: false + ); + margin: 0 0 2rem; +} + +h2 { + .typography( + @_font-size: 2rem, + @_color: @color-dark-brownie, + @_font-weight: @font-weight-regular, + @_line-height: 2.5rem, + @_font-family: false, + @_font-style: false + ); + margin: 0 0 2rem; +} + +h3 { + .typography( + @_font-size: 1.7rem, + @_color: @color-dark-brownie, + @_font-weight: @font-weight-semibold, + @_line-height: 2.2rem, + @_font-family: false, + @_font-style: false + ); + margin: 0 0 2rem; +} + +h4, +h5, +h6 { + font-weight: @font-weight-semibold; + margin-top: 0; +} + +// Text +p { + margin: 0 0 1.5rem; +} + +// Links +a { + color: @color-link; + text-decoration: none; + &:hover { + color: @color-link-hover; + text-decoration: underline; + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_utilities.less b/app/design/adminhtml/Magento/backend/web/css/source/_utilities.less new file mode 100644 index 0000000000000..f4d55da12cb09 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/_utilities.less @@ -0,0 +1,9 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +@import 'utilities/_grid-framework'; +@import 'utilities/_grid'; +@import 'utilities/_animations'; +@import 'utilities/_spinner'; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/abstract.less b/app/design/adminhtml/Magento/backend/web/css/source/abstract.less index b0e6b8af5ce0d..bd10565ed8469 100644 --- a/app/design/adminhtml/Magento/backend/web/css/source/abstract.less +++ b/app/design/adminhtml/Magento/backend/web/css/source/abstract.less @@ -57,7 +57,7 @@ } } -// Table columns widths +// Table columns widths .col-50 { width: 50px; } diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_navigation.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_navigation.less new file mode 100644 index 0000000000000..1eed11f4d86f3 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/components/_navigation.less @@ -0,0 +1,12 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Global Navigation +// --------------------------------------------- + +.navigation { + +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_spinner.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_spinner.less new file mode 100644 index 0000000000000..5b2dfe33f82d0 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/components/_spinner.less @@ -0,0 +1,67 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Variables +// _____________________________________________ + +@spinner-base-size: 4rem; + +// Size of spinner +@spinner-border-radius: 6px; +@spinner-spin-count: 8; +@spinner-first-color: @color-brownie; +@spinner-second-color: @color-white; +@spinner-keyframe-name: fade; +@spinner-animation-step: .09s; +@spinner-animation-duration: @spinner-animation-step * @spinner-spin-count; +@spinner-animation-transform: scale(.4); +@spinner-animation-iteration-count: infinite; +@spinner-animation-direction: linear; +@spinner-rotate: 0; + +// Degree for one elem +@spinner-rotate-step: 45; + +// One step in degree +@spinner-delay: .9; + +// +// Spinner +// _____________________________________________ + +// Base spinner + +.spinner { + ._spinner-loop ( + @spinner-spin-count, + @spinner-rotate, + @spinner-delay + ); + ._spinner-keyframes(); + display: inline-block; + font-size: @spinner-base-size; + height: 1em; + margin-right: 1.5rem; + position: relative; + width: 1em; + > span { + ._spinner_transform(); + background-color: @spinner-second-color; + border-radius: @spinner-border-radius; + clip: rect(0 1em/3.5 .1em 0); + height: .1em; + margin-top: 1em / 2; + position: absolute; + width: 1em; + } + + .ie9 & { + background: url('@{baseDir}images/ajax-loader.gif') no-repeat center; + > span { + display: none; + } + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/_forms.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/_forms.less new file mode 100644 index 0000000000000..4356272546c8a --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/forms/_forms.less @@ -0,0 +1,704 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Main Forms File +// _____________________________________________ + +// +// Variables +// --------------------------------------------- + +@field-control__border-color: @color-gray68; +@field-control__color: @color-very-dark-gray-black; +@field-control__bg-color: @color-white; +@field-control-addon__color: @color-gray52; + +@field-scope__color: @color-dark-gray; +@field-divider__color: @color-gray80; +@field-label__color: @color-very-dark-gray-black; +@field-date-icon__color: @color-brownie; +@field-note__color: @color-very-dark-gray-black; + +@field-tooltip-icon__bg-color: @color-brownie; +@field-tooltip-content__bg-color: @color-lazy-sun; +@field-tooltip-content__border-color: @color-gray68; + +@field-error__color: @color-very-dark-gray2; +@field-error__bg-color: @color-lazy-sun; +@field-error__border-color: @color-tomato-brick; + +// States +@field-control__focus__border-color: @color-pure-blue; +@field-control__disabled__bg-color: @color-lighter-gray; +@field-label__required__color: @color-phoenix; +@field-label__disabled__color: @color-gray60; + +// +// Fieldset +// --------------------------------------------- + +.fieldset { + .form-fieldset(); +} +fieldset.field [class^='fields-group-'] .field .control { + margin: 0 0 0 20px; + width: auto; +} +.fieldset-wrapper > .fieldset-wrapper-title, +.fieldset > .legend { + border-bottom: 1px solid #cac3b4; + box-sizing: border-box; + float: left; + margin: 0 0 18px; + padding: 0; + position: static; + width: 100%; +} +.fieldset-wrapper > .fieldset-wrapper-title { + float: none; +} + +// +// Form inline +// --------------------------------------------- + +.form-inline { + .label, + .control { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + float: left; + margin: 0; + width: 55%; + } + .label { + padding: 5px 15px 0 0; + text-align: right; + width: 45%; + } + .no-label { + .control { + margin-left: 20%; + width: 60%; + } + } + .field-service { + box-sizing: border-box; + color: #999; + float: left; + font-size: 12px; + letter-spacing: .05em; + padding: 7px 0 0 15px; + width: 20%; + .checkbox { + margin: 0; + vertical-align: middle; + } + } + .field-service[value-scope]:before { + content: attr(value-scope) !important; + display: block; + margin-bottom: 5px; + white-space: nowrap; + } + .choice { + position: relative; + z-index: 1; + .control { + left: 45%; + margin-top: 4px; + position: absolute; + width: auto; + } + .tooltip { + margin-left: 20px; + margin-top: 7px; + position: relative; + z-index: 1; + } + } + .with-tooltip:not(.choice) { + padding-top: 20px; + } +} + +// +// Controls +// --------------------------------------------- + +.control { + *:first-child { + margin-bottom: 0; + } + > input { + width: 100%; + } + > input[type="button"], + > input[type="radio"], + > input[type="checkbox"], + > input[type="file"]{ + width: auto; + } + > input.hasDatepicker { + width: 160px; + } + > table { + width: 100%; + } + .input-file { + margin-top: 4px; + } + .hasDatepicker + img { + margin: -3px 0 0 5px; + vertical-align: middle; + } + .control-value { + display: inline-block; + padding: 6px 0 0; + vertical-align: top; + } + .control-value.special { + font-weight: bold; + } + .nested { + padding: 0; + } +} + +// Field Tooltip +.field-tooltip { + display: inline-block; + margin-top: 5px; + overflow: visible; + position: relative; + vertical-align: top; + width: 0; + z-index: 1; + .field-choice & { + margin-top: 10px; + } + &:hover { + z-index: 99; + } + &-action { + color: @field-tooltip-icon__bg-color; + cursor: pointer; + display: inline-block; + font-family: @icon-font-admin-name; + margin-left: 18px; + margin-top: -6px; + position: relative; + z-index: 2; + &:hover { + color: @field-tooltip-icon__bg-color; + text-decoration: none; + } + &:before { + content: '\e633'; + font-size: 22px; + } + span { + .visually-hidden(); + } + } + .control-text:focus + &-content, + &:hover &-content { + display: block; + } + &-content { + @_shadow: 0 2px 8px 0 rgba(0, 0, 0, .3); + .css(box-shadow, @_shadow); + background: @field-tooltip-content__bg-color; + border: 1px solid @field-tooltip-content__border-color; + border-radius: 1px; + bottom: 42px; + display: none; + padding: 15px 25px; + position: absolute; + right: -66px; + width: 320px; + z-index: 1; + &:after, + &:before { + .arrow(down,16px,@field-tooltip-content__border-color); + content: ''; + display: block; + position: absolute; + right: 20px; + top: 100%; + z-index: 3; + } + &:after { + border-top-color: @field-tooltip-content__bg-color; + margin-top: -1px; + z-index: 4; + } + } +} + +// Form Field +.form__field { + .clearfix(); + position: relative; + z-index: 1; + &:hover { + z-index: 2; + } + .control & { + position: static; + } + &.field-error { + .control [class*='control-'] { + border-color: @field-error__border-color; + &:before { + border-color: @field-error__border-color; + } + } + } + .mage-error { + background: @field-error__bg-color; + border: 1px solid @field-error__border-color; + box-sizing: border-box; + color: @field-error__color; + display: block; + font-size: 12px; + font-weight: 500; + margin: 2px 0 0; + max-width: 380px; + padding: 6px 10px 10px; + } + .control-addon { + + .mage-error { + .no-flexbox.no-flexboxlegacy & { + display: inline-block; + width: 100%; + } + } + } +} + +.form__field[data-config-scope]:before { + color: @field-scope__color; + content: attr(data-config-scope); + display: inline-block; + position: absolute; + right: 0; + top: 6px; +} +.control .form__field[data-config-scope]:nth-child(n+2):before { + content: ''; +} + +.form__field.field-disabled { + > .label { + color: @field-label__disabled__color; + } + &.field .control [class*='control-'][disabled] { + background-color: @field-control__disabled__bg-color; + border-color: @field-control__border-color; + color: @field-control__color; + opacity: .5; + } +} + +.control-fields { + .label ~ .control { + width: 100%; + } +} + +.form__field { + border: 0; + padding: 0; + .note { + color: @field-note__color; + margin: 10px 0 0; + max-width: 380px; + padding: 0; + &:before { + display: none; + } + } + &.form__field { + margin-bottom: 0; + & + & { + margin-top: 15px; + } + &:not(.choice) ~ .choice { + margin-left: 20px; + margin-top: 5px; + } + &.choice ~ .choice { + margin-top: 9px; + } + & ~ .choice:last-child { + margin-bottom: 8px; + } + } + .fieldset > & { + margin-bottom: 30px; + } + + .label { + color: @field-label__color; + } + &:not(.choice) > .label { + font-size: 14px; + font-weight: 600; + line-height: 33px; + padding-right: 30px; + padding-top: 0; + white-space: nowrap; + width: 30%; + &:before { + content: '.'; + margin-left: -7px; + overflow: hidden; + visibility: hidden; + width: 0; + } + span { + display: inline-block; + line-height: 1.2; + vertical-align: middle; + white-space: normal; + } + } + &.required > .label { + span:after { + color: @field-label__required__color; + content: '*'; + display: inline; + font-size: 16px; + font-weight: 500; + margin-left: 10px; + margin-top: 2px; + position: absolute; + z-index: 1; + } + &:after { + content: ''; + margin-left: 0; + } + } + .control { + &-file { + margin-top: 6px; + } + &-select { + line-height: 33px; + } + &-select:not([multiple]), + &-text { + height: 33px; + max-width: 380px; + } + &-addon { + max-width: 380px; + } + &-textarea, + &-select, + &-text { + background-color: @field-control__bg-color; + border: 1px solid @field-control__border-color; + border-radius: 1px; + color: @field-control__color; + font-size: 15px; + font-weight: 500; + min-width: 11em; + padding: 0 10px; + &:focus { + border-color: @field-control__focus__border-color; + box-shadow: none; + outline: 0; + } + } + &-text { + line-height: auto; + } + &-textarea { + line-height: 1.18em; + padding-bottom: 6px; + padding-top: 6px; + } + &-select[multiple], + &-textarea { + height: ~"calc(6 * 1.2em + 14px)"; + width: 100%; + } + &-value { + display: inline-block; + padding: 6px 10px; + } + &-fields { + .form__field:nth-child(n+2):not(.choice) { + > .label { + .visually-hidden; + } + } + } + &-select { + padding: 0; + option { + box-sizing: border-box; + display: block; + padding: 4px 10px; + } + optgroup { + display: block; + font-style: normal; + font-weight: 600; + line-height: 33px; + list-style: inside; + padding: 4px 10px; + } + } + } + .control-range { + & > .form__field:nth-child(2) { + &:before { + content: ':'; + content: '\2014'; + display: inline-block; + float: left; + line-height: 33px; + margin-left: -25px; + text-align: center; + width: 20px; + } + } + } + &.choice { + padding-left: 26px; + padding-right: 0; + padding-top: 8px; + position: relative; + z-index: 1; + .label { + display: inline; + float: none; + font-weight: 500; + line-height: 18px; + padding: 0; + } + input { + margin-top: 3px !important; + position: absolute; + top: 8px; + &[disabled] + .label { + cursor: not-allowed; + opacity: .5; + } + } + .control > & { + max-width: 380px; + &:nth-child(1):nth-last-child(2), + &:nth-child(2):nth-last-child(1) { + display: inline-block; + & + .choice { + margin-left: 41px; + margin-top: 0; + } + & + .choice:before { + background: @field-divider__color; + content: ''; + display: inline-block; + height: 20px; + left: -20px; + position: absolute; + top: 8px; + width: 1px; + } + } + } + .label { + cursor: pointer; + } + .label:before { + .url('images/choice_bkg.png', 'Magento_Ui'); + background: url('@{url}') no-repeat -100% -100%; + border: 1px solid @field-control__border-color; + border-radius: 2px; + content: ''; + height: 14px; + left: 0; + position: absolute; + top: 10px; + width: 14px; + z-index: 1; + } + input:focus + .label:before { + border-color: @field-control__focus__border-color; + outline: 0; + } + .control { + &-radio + .label:before { + border-radius: 8px; + } + &-radio:checked + .label:before { + background-position: -26px -1px; + } + &-checkbox:checked + .label:before { + background-position: -1px -1px; + } + } + input { + opacity: 0; + } + .fieldset > & { + margin-left: 30%; + } + } + .control { + &-after, + &-before { + border: 0; + box-sizing: border-box; + color: @field-control-addon__color; + display: inline-block; + font-size: 15px; + font-weight: 300; + height: 33px; + line-height: 33px; + padding: 0 3px; + } + .no-flexbox.no-flexboxlegacy &-before, + .no-flexbox.no-flexboxlegacy &-addon { + float: left; + white-space: nowrap; + } + &-addon { + display: inline-flex; + flex-flow: row nowrap; + max-width: 380px; + position: relative; + width: 100%; + z-index: 1; + > * { + position: relative; + z-index: 1; + } + .control-text[disabled][type], + .control-select[disabled][type], + .control-select, + .control-text { + background: transparent!important; + border: 0; + flex: 1; + order: 1; + vertical-align: top; + width: auto; + &:focus { + box-shadow: none; + & + label:before { + border-color: @field-control__focus__border-color; + outline: 0; + } + } + & + label { + padding-left: 10px; + position: static!important; + z-index: 0; + > * { + position: relative; + vertical-align: top; + z-index: 2; + } + } + & + label:before { + background: @color-white; + border: 1px solid @field-control__border-color; + border-radius: 1px; + box-sizing: border-box; + content: ''; + display: block; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: 0; + } + &[disabled] + label:before { + background: @field-control__disabled__bg-color; + opacity: .5; + } + } + } + &-after { + order: 3; + &:last-child { + padding-right: 10px; + } + } + &-before { + order: 0; + } + + &-some { + display: flex; + } + } + [class*='control-grouped'] { + box-sizing: border-box; + display: table; + table-layout: fixed; + width: 100%; + & > .form__field { + display: table-cell; + vertical-align: top; + width: 50%; + > .control { + float: none; + width: 100%; + } + &:nth-child(n+2) { + padding-left: 20px; + &:not(.choice) .label { + .visually-hidden(); + } + } + } + } + [required] { + box-shadow: none; + } +} + +fieldset.form__field { + position: relative; + [class*='control-grouped'], + .control-fields { + & > .form__field:first-child { + & > .label { + cursor: pointer; + left: 0; + opacity: 0; + position: absolute; + top: 0; + width: 30%; + } + } + } +} + +.control-text + .ui-datepicker-trigger { + .button-reset(); + display: inline-block; + margin-left: -40px; + .icon-font( + @icon-calendar, + @_icon-font-size: 38px, + @_icon-font-line-height: 33px, + @_icon-font-text-hide: true, + @_icon-font-position: after, + @_icon-font-color: @field-date-icon__color + ); + img { + display: none; + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/theme.less b/app/design/adminhtml/Magento/backend/web/css/source/theme.less index 00beea33c0d61..70566b2686261 100644 --- a/app/design/adminhtml/Magento/backend/web/css/source/theme.less +++ b/app/design/adminhtml/Magento/backend/web/css/source/theme.less @@ -3,11 +3,14 @@ // * See COPYING.txt for license details. // */ -// Override default variables +// +// Override default variables +// _____________________________________________ + @font-family-base: 'Open Sans', @font-family-sans-serif; @col-layout-bg: #f6f3eb; -// Introduce new theme specific variables +// Introduce new theme specific variables @layout-min-width: 960px; @layout-max-width: 1300px; @@ -20,18 +23,18 @@ @color-link: #026294; -@page-main-action-color: #645D53; +@page-main-action-color: #645d53; @dropdown-split-actions-padding: ''; @dropdown-split-toggle-actions-padding: 6px 5px; @dropdown-split-toggle-icon-font-line-height: 14px; -// Default = secondary button +// Default = secondary button @button-padding: 6px 13px; @button-font-weight: 500; @button-font-size: 13px; @button-line-height: @button-font-size + 1; -@button-color: #645D53; +@button-color: #645d53; @button-background: #f2ebde; @button-border: 1px solid #ada89e; @button-background-hover: #cac3b4; @@ -41,10 +44,10 @@ @button-color-active: ''; @button-border-active: 1px solid #989287; -// Primary button +// Primary button @button-primary-background: #007dbd; @button-primary-border: 1px solid #0a6c9f; -@button-primary-color: #fff; +@button-primary-color: @color-white; @button-primary-background-hover: #026294; @button-primary-border-hover: 1px solid #026294; @button-primary-color-hover: ''; @@ -54,23 +57,26 @@ @responsive: false; // -// Form elements -//-------------------------------------- -@form-element-bg: #fff; +// Form elements +// --------------------------------------------- + +@form-element-bg: @color-white; // -// Validation -//-------------------------------------- +// Validation +// --------------------------------------------- + @validation-color: #e22626; @validation-color-rgba: rgba(226, 38, 38, .6); @validation-bg: #f9d4d4; @validation-border: 1px dashed @validation-color; -@validation-color-light: #f9d4d4; // for asterisk on elements of grid tables +@validation-color-light: #f9d4d4; // For asterisk on elements of grid tables // -// Grid -//-------------------------------------- -@grid-frame-bg: #fff; +// Grid +// --------------------------------------------- + +@grid-frame-bg: @color-white; @grid-controls-border: #989287; @grid-headings-color: #f7f3eb; @@ -86,7 +92,7 @@ @grid-massaction-border: 1px solid #f2ebde; @grid-td-color: @color-middle; -@grid-td-light: #fff; +@grid-td-light: @color-white; @grid-td-dark: #f7f3eb; @grid-td-border: @grid-headings-border; @grid-td-bg-hover: #f2ebde; @@ -106,14 +112,13 @@ @grid-severity-minor-bg: #feeee1; @grid-severity-minor-border: @grid-severity-minor-color; -// Pager +// Pager @pager-actions-color: @primary3; @pager-actions-color-hover: @primary5; -// Data-table +// Data-table @data-table-th-border-color: #c9c2b8; @data-table-td-border-color: #eae8e4; @data-table-td-bg: @grid-td-light; @data-table-td-bg-odd: #fbfaf6; - @data-table-td-bg-hover: #f7f3eb; diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_animations.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_animations.less new file mode 100644 index 0000000000000..22c4c15685751 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_animations.less @@ -0,0 +1,56 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// Animations + +.animation(@animation) { + -webkit-animation: @animation; + -o-animation: @animation; + animation: @animation; +} + +.animation-name(@name) { + -webkit-animation-name: @name; + animation-name: @name; +} + +.animation-duration(@duration) { + -webkit-animation-duration: @duration; + animation-duration: @duration; +} + +.animation-timing-function(@timing-function) { + -webkit-animation-timing-function: @timing-function; + animation-timing-function: @timing-function; +} + +.animation-delay(@delay) { + -webkit-animation-delay: @delay; + animation-delay: @delay; +} + +.animation-iteration-count(@iteration-count) { + -webkit-animation-iteration-count: @iteration-count; + animation-iteration-count: @iteration-count; +} + +.animation-direction(@direction) { + -webkit-animation-direction: @direction; + animation-direction: @direction; +} + +.animation-fill-mode(@fill-mode) { + -webkit-animation-fill-mode: @fill-mode; + animation-fill-mode: @fill-mode; +} + +// Backface visibility +// Prevent browsers from flickering when using CSS 3D transforms. Default value is 'visible', but can be changed to 'hidden' + +.backface-visibility(@visibility) { + -webkit-backface-visibility: @visibility; + -moz-backface-visibility: @visibility; + backface-visibility: @visibility; +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid-framework.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid-framework.less new file mode 100644 index 0000000000000..f8e535f0099ca --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid-framework.less @@ -0,0 +1,117 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Framework grid generation +// _____________________________________________ + +.make-grid-columns() { + + // Common styles for all sizes of grid columns, widths 1-12 + + .col(@index) { + // Initial + @item: ~'.col-xs-@{index}, .col-m-@{index}, .col-l-@{index}, .col-xl-@{index}'; + .col((@index + 1), @item); + } + + .col(@index, @list) when (@index =< @grid-columns) { + // General; '=<' isn't a typo + @item: ~'.col-xs-@{index}, .col-m-@{index}, .col-l-@{index}, .col-xl-@{index}'; + .col((@index + 1), ~'@{list}, @{item}'); + } + + .col(@index, @list) when (@index > @grid-columns) { + // Terminal + @{list} { + position: relative; + // Prevent columns from collapsing when empty + min-height: 1px; + // Inner gutter via padding + padding-left: (@grid-gutter-width / 2); + padding-right: (@grid-gutter-width / 2); + } + } + + .col(1); // Kickstart it +} + +.float-grid-columns(@class) { + + .col(@index) { + // Initial + @item: ~'.col-@{class}-@{index}'; + .col((@index + 1), @item); + } + + .col(@index, @list) when (@index =< @grid-columns) { + // General + @item: ~'.col-@{class}-@{index}'; + .col((@index + 1), ~'@{list}, @{item}'); + } + + .col(@index, @list) when (@index > @grid-columns) { + // Terminal + @{list} { + float: left; + } + } + + .col(1); // Kickstart it +} + +.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) { + .col-@{class}-@{index} { + width: percentage((@index / @grid-columns)); + } +} + +.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) { + .col-@{class}-push-@{index} { + left: percentage((@index / @grid-columns)); + } +} + +.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) { + .col-@{class}-push-0 { + left: auto; + } +} + +.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) { + .col-@{class}-pull-@{index} { + right: percentage((@index / @grid-columns)); + } +} + +.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) { + .col-@{class}-pull-0 { + right: auto; + } +} + +.calc-grid-column(@index, @class, @type) when (@type = offset) { + .col-@{class}-offset-@{index} { + margin-left: percentage((@index / @grid-columns)); + } +} + +// Basic looping in LESS + +.loop-grid-columns(@index, @class, @type) when (@index >= 0) { + .calc-grid-column(@index, @class, @type); + // Next iteration + .loop-grid-columns((@index - 1), @class, @type); +} + +// Create grid for specific class + +.make-grid(@class) { + .float-grid-columns(@class); + .loop-grid-columns(@grid-columns, @class, width); + .loop-grid-columns(@grid-columns, @class, pull); + .loop-grid-columns(@grid-columns, @class, push); + .loop-grid-columns(@grid-columns, @class, offset); +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid.less new file mode 100644 index 0000000000000..caa79cd74e35c --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid.less @@ -0,0 +1,157 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +// +// Grid system +// _____________________________________________ + +// +// Generate semantic grid columns with these mixins. +// --------------------------------------------- + +// Centered container element + +.container-fixed(@gutter: @grid-gutter-width) { + margin-right: auto; + margin-left: auto; + padding-left: (@gutter / 2); + padding-right: (@gutter / 2); + .clearer(); +} + +// Creates a wrapper for a series of columns + +.make-row(@gutter: @grid-gutter-width) { + margin-left: (@gutter / -2); + margin-right: (@gutter / -2); + .clearer(); +} + +// +// Generate the extra small columns +// --------------------------------------------- + +.make-xs-column(@columns; @gutter: @grid-gutter-width) { + position: relative; + float: left; + width: percentage((@columns / @grid-columns)); + min-height: 1px; + padding-left: (@gutter / 2); + padding-right: (@gutter / 2); +} + +.make-xs-column-offset(@columns) { + margin-left: percentage((@columns / @grid-columns)); +} + +.make-xs-column-push(@columns) { + left: percentage((@columns / @grid-columns)); +} + +.make-xs-column-pull(@columns) { + right: percentage((@columns / @grid-columns)); +} + +// +// Generate the small columns +// --------------------------------------------- + +.make-m-column(@columns; @gutter: @grid-gutter-width) { + position: relative; + min-height: 1px; + padding-left: (@gutter / 2); + padding-right: (@gutter / 2); + + .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-m) { + float: left; + width: percentage((@columns / @grid-columns)); + } +} + +.make-m-column-offset(@columns) { + .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-m) { + margin-left: percentage((@columns / @grid-columns)); + } +} + +.make-m-column-push(@columns) { + .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-m) { + left: percentage((@columns / @grid-columns)); + } +} + +.make-m-column-pull(@columns) { + .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-m) { + right: percentage((@columns / @grid-columns)); + } +} + +// +// Generate the medium columns +// --------------------------------------------- + +.make-l-column(@columns; @gutter: @grid-gutter-width) { + position: relative; + min-height: 1px; + padding-left: (@gutter / 2); + padding-right: (@gutter / 2); + + .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-l) { + float: left; + width: percentage((@columns / @grid-columns)); + } +} + +.make-l-column-offset(@columns) { + .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-l) { + margin-left: percentage((@columns / @grid-columns)); + } +} + +.make-l-column-push(@columns) { + @media (min-width: @screen-l) { + left: percentage((@columns / @grid-columns)); + } +} + +.make-l-column-pull(@columns) { + @media (min-width: @screen-l) { + right: percentage((@columns / @grid-columns)); + } +} + +// +// Generate the large columns +// --------------------------------------------- + +.make-xl-column(@columns; @gutter: @grid-gutter-width) { + position: relative; + min-height: 1px; + padding-left: (@gutter / 2); + padding-right: (@gutter / 2); + + @media (min-width: @screen-xl) { + float: left; + width: percentage((@columns / @grid-columns)); + } +} + +.make-xl-column-offset(@columns) { + @media (min-width: @screen-xl) { + margin-left: percentage((@columns / @grid-columns)); + } +} + +.make-xl-column-push(@columns) { + @media (min-width: @screen-xl) { + left: percentage((@columns / @grid-columns)); + } +} + +.make-xl-column-pull(@columns) { + @media (min-width: @screen-xl) { + right: percentage((@columns / @grid-columns)); + } +} diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_spinner.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_spinner.less new file mode 100644 index 0000000000000..8fb5a6f3e89d8 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_spinner.less @@ -0,0 +1,91 @@ +// /** +// * Copyright © 2015 Magento. All rights reserved. +// * See COPYING.txt for license details. +// */ + +._spinner-keyframes() { + @-moz-keyframes @spinner-keyframe-name { + 0% { + background-color: @spinner-first-color; + } + 100% { + background-color: @spinner-second-color; + } + } + @-webkit-keyframes @spinner-keyframe-name { + 0% { + background-color: @spinner-first-color; + } + 100% { + background-color: @spinner-second-color; + } + } + @-ms-keyframes @spinner-keyframe-name { + 0% { + background-color: @spinner-first-color; + } + 100% { + background-color: @spinner-second-color; + } + } + @keyframes @spinner-keyframe-name { + 0% { + background-color: @spinner-first-color; + } + 100% { + background-color: @spinner-second-color; + } + } +} + +._spinner-loop( + @_spinner-spin-count: @spinner-spin-count, + @_spinner-rotate: @spinner-rotate, + @_spinner-delay: @spinner-delay +) when (@_spinner-spin-count > 0) { + ._spinner-loop( + (@_spinner-spin-count - 1), + (@_spinner-rotate - @spinner-rotate-step), + (@_spinner-delay - @spinner-animation-step) + ); + > span { + &:nth-child(@{_spinner-spin-count}) { + -webkit-animation-delay: @_spinner-delay; + -moz-animation-delay: @_spinner-delay; + -ms-animation-delay: @_spinner-delay; + animation-delay: @_spinner-delay; + + -webkit-transform: ~'rotate(@{_spinner-rotate}deg)'; + -moz-transform: ~'rotate(@{_spinner-rotate}deg)'; + -ms-transform: ~'rotate(@{_spinner-rotate}deg)'; + transform: ~'rotate(@{_spinner-rotate}deg)'; + } + } +} + +._spinner_transform() { + -webkit-transform: @spinner-animation-transform; + -moz-transform: @spinner-animation-transform; + -ms-transform: @spinner-animation-transform; + transform: @spinner-animation-transform; + + -webkit-animation-name: @spinner-keyframe-name; + -moz-animation-name: @spinner-keyframe-name; + -ms-animation-name: @spinner-keyframe-name; + animation-name: @spinner-keyframe-name; + + -webkit-animation-duration: @spinner-animation-duration; + -moz-animation-duration: @spinner-animation-duration; + -ms-animation-duration: @spinner-animation-duration; + animation-duration: @spinner-animation-duration; + + -webkit-animation-iteration-count: @spinner-animation-iteration-count; + -moz-animation-iteration-count: @spinner-animation-iteration-count; + -ms-animation-iteration-count: @spinner-animation-iteration-count; + animation-iteration-count: @spinner-animation-iteration-count; + + -webkit-animation-direction: @spinner-animation-direction; + -moz-animation-direction: @spinner-animation-direction; + -ms-animation-direction: @spinner-animation-direction; + animation-direction: @spinner-animation-direction; +} diff --git a/app/design/adminhtml/Magento/backend/web/css/styles-old.less b/app/design/adminhtml/Magento/backend/web/css/styles-old.less new file mode 100644 index 0000000000000..f5b4a53888e70 --- /dev/null +++ b/app/design/adminhtml/Magento/backend/web/css/styles-old.less @@ -0,0 +1,25 @@ +/** + * Copyright © 2015 Magento. All rights reserved. + * See COPYING.txt for license details. + */ + +/* Magento/backend */ + +//.magento-reset(); // Reset default styles with magento_reset + +// Import theme vars overrides and mixins +@import "source/lib/lib.less"; // Import all lib files +@import "../less/styles/vars.less"; +@import "source/theme"; // import theme styles +@import "source/table"; // import theme styles +@import "source/icons"; + +@baseDir: "../"; //default + +@import "source/navigation"; // import theme navigation +@import "source/dashboard"; // import theme navigation + +// Magento Import instructions +//@magento_import "source/module.less"; // import theme styles + +@import (reference) "source/abstract"; // import theme styles diff --git a/app/design/adminhtml/Magento/backend/web/css/styles.less b/app/design/adminhtml/Magento/backend/web/css/styles.less index f5b4a53888e70..006006473aeaa 100644 --- a/app/design/adminhtml/Magento/backend/web/css/styles.less +++ b/app/design/adminhtml/Magento/backend/web/css/styles.less @@ -3,23 +3,9 @@ * See COPYING.txt for license details. */ -/* Magento/backend */ - -//.magento-reset(); // Reset default styles with magento_reset - -// Import theme vars overrides and mixins -@import "source/lib/lib.less"; // Import all lib files -@import "../less/styles/vars.less"; -@import "source/theme"; // import theme styles -@import "source/table"; // import theme styles -@import "source/icons"; - -@baseDir: "../"; //default - -@import "source/navigation"; // import theme navigation -@import "source/dashboard"; // import theme navigation +@import 'source/lib/lib.less'; // Import all lib files +@import 'source/_theme.less'; // Import theme variables +@import 'source/_sources.less'; // Import theme files // Magento Import instructions -//@magento_import "source/module.less"; // import theme styles - -@import (reference) "source/abstract"; // import theme styles +//@magento_import "source/_module.less"; // import theme styles diff --git a/app/design/adminhtml/Magento/backend/web/fonts/icons/admin-icons.svg b/app/design/adminhtml/Magento/backend/web/fonts/icons/admin-icons.svg index 5c68a1ff608df..8483be975550a 100644 --- a/app/design/adminhtml/Magento/backend/web/fonts/icons/admin-icons.svg +++ b/app/design/adminhtml/Magento/backend/web/fonts/icons/admin-icons.svg @@ -1,146 +1 @@ - - - - -This is a custom SVG font generated by IcoMoon. -0 - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif b/app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif index efb7ba7704944..6f7e682717516 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif and b/app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif b/app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif index b525a23bdbb3f..900778fc70475 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif and b/app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/body-bg.jpg b/app/design/adminhtml/Magento/backend/web/images/body-bg.jpg index 9e684f9b2154e..57e936249cadf 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/body-bg.jpg and b/app/design/adminhtml/Magento/backend/web/images/body-bg.jpg differ diff --git a/app/design/adminhtml/Magento/backend/web/images/cancel_icon.gif b/app/design/adminhtml/Magento/backend/web/images/cancel_icon.gif deleted file mode 100644 index 1fd7cfd6a23b7..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/cancel_icon.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/edit_icon.gif b/app/design/adminhtml/Magento/backend/web/images/edit_icon.gif deleted file mode 100644 index 8b277aa621877..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/edit_icon.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png b/app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png index cd305ec83b6a7..99a573e57aae1 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png and b/app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_bin.gif b/app/design/adminhtml/Magento/backend/web/images/fam_bin.gif deleted file mode 100644 index 3cf0aaf9be82f..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_bin.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif b/app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif index d72c413e8ef94..b5219e4c0377e 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif and b/app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_leaf.png b/app/design/adminhtml/Magento/backend/web/images/fam_leaf.png index 9cd988dfb177b..e36df9a71cfb3 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_leaf.png and b/app/design/adminhtml/Magento/backend/web/images/fam_leaf.png differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_link.gif b/app/design/adminhtml/Magento/backend/web/images/fam_link.gif index 42467ac442ae2..5ede7182774d9 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_link.gif and b/app/design/adminhtml/Magento/backend/web/images/fam_link.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_package_go.gif b/app/design/adminhtml/Magento/backend/web/images/fam_package_go.gif deleted file mode 100644 index 70f05046d8d74..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_package_go.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_refresh.gif b/app/design/adminhtml/Magento/backend/web/images/fam_refresh.gif deleted file mode 100644 index 14b878b452a21..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/fam_refresh.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/grid-cal.gif b/app/design/adminhtml/Magento/backend/web/images/grid-cal.gif deleted file mode 100644 index c8cd40cdf593f..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/grid-cal.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/grid-cal.png b/app/design/adminhtml/Magento/backend/web/images/grid-cal.png new file mode 100644 index 0000000000000..15b3ed03af371 Binary files /dev/null and b/app/design/adminhtml/Magento/backend/web/images/grid-cal.png differ diff --git a/app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png b/app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png index d7e92ab993518..bc4b39d552b9f 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png and b/app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png differ diff --git a/app/design/adminhtml/Magento/backend/web/images/ico_success.gif b/app/design/adminhtml/Magento/backend/web/images/ico_success.gif deleted file mode 100644 index f1bce8e97421c..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/ico_success.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/pager_arrow_left_off.gif b/app/design/adminhtml/Magento/backend/web/images/pager_arrow_left_off.gif deleted file mode 100644 index e057ce0e30cc4..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/pager_arrow_left_off.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/pager_arrow_right_off.gif b/app/design/adminhtml/Magento/backend/web/images/pager_arrow_right_off.gif deleted file mode 100644 index 95f17d5face7d..0000000000000 Binary files a/app/design/adminhtml/Magento/backend/web/images/pager_arrow_right_off.gif and /dev/null differ diff --git a/app/design/adminhtml/Magento/backend/web/images/process_spinner.gif b/app/design/adminhtml/Magento/backend/web/images/process_spinner.gif index 0ebe4d8430c58..678f35d268af5 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/process_spinner.gif and b/app/design/adminhtml/Magento/backend/web/images/process_spinner.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif b/app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif index 673d31ad5e03c..5d9cf36333e79 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif and b/app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif b/app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif index 4032f76a2027f..d44e6e745014d 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif and b/app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif b/app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif index 45c61c3247ae6..263e7962c44cf 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif and b/app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif b/app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif index 9f2f4edf9ced7..be4c96655aa07 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif and b/app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/images/select-bg.svg b/app/design/adminhtml/Magento/backend/web/images/select-bg.svg index fd9a1c5e42870..a9e66e7b472dd 100644 --- a/app/design/adminhtml/Magento/backend/web/images/select-bg.svg +++ b/app/design/adminhtml/Magento/backend/web/images/select-bg.svg @@ -1,9 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png b/app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png index 42f5ac5496fbe..753b23a6e6c5d 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png and b/app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png differ diff --git a/app/design/adminhtml/Magento/backend/web/images/switcher.png b/app/design/adminhtml/Magento/backend/web/images/switcher.png index 686f8c5a15235..1488d105783c0 100644 Binary files a/app/design/adminhtml/Magento/backend/web/images/switcher.png and b/app/design/adminhtml/Magento/backend/web/images/switcher.png differ diff --git a/app/design/adminhtml/Magento/backend/web/less/styles/debug.less b/app/design/adminhtml/Magento/backend/web/less/styles/debug.less index b13b32cd15996..097b5e7de5091 100644 --- a/app/design/adminhtml/Magento/backend/web/less/styles/debug.less +++ b/app/design/adminhtml/Magento/backend/web/less/styles/debug.less @@ -603,6 +603,16 @@ line-height: 28px; } +.rule-tree .fieldset { + min-width: 0; // Fixed Chrome fieldset issue +} + +@-moz-document url-prefix() { // Fixed Firefox fieldset issue + .rule-tree .fieldset { + display: table-cell; + } +} + .rule-tree ul { list-style: none; padding-left: 16px; @@ -676,6 +686,7 @@ border: solid 1px #CCC; margin: 20px; padding: 15px 10px 5px; + overflow: auto; } .rule-param-wait { diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif index d9bb3c55f66d4..1612bcee36660 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif and b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif index 5b33f7e54f4e5..82d06cc97f0b9 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif and b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif index 2c09be409ab89..0b13e560655bc 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif and b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif index 1db51bc179425..579f187dc0341 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif and b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg index c70ae7529e9af..37cd996019767 100644 --- a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg +++ b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg @@ -1,39 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png index 5b12d1ab8cad6..c587f1731c53f 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png and b/app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/rating-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/rating-bg.png index e952b0fa4f1ad..c8375ccfb837d 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/rating-bg.png and b/app/design/adminhtml/Magento/backend/web/mui/images/rating-bg.png differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png index 4331b917d955d..45a0b8d86f3b9 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png and b/app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png differ diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png index 54e2a1b950414..e857c6f99e85d 100644 Binary files a/app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png and b/app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png differ diff --git a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/listings.less b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/listings.less index 152942e367a27..eb4f1e1c21ef0 100644 --- a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/listings.less +++ b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/listings.less @@ -60,7 +60,7 @@ } &-info { - width: 150px; + width: 152px; max-width: 100%; .page-products & { width: 240px; @@ -316,8 +316,8 @@ .page-layout-3columns .products-grid .product-item { width: 100%/4 } .page-products .products-grid .product-items { margin: 0; } .page-products .products-grid .product-item { - width: 23%; - margin-left: calc(~"(100% - 4 * 23%) / 3"); + width: 23.233%; + margin-left: calc(~"(100% - 4 * 23.233%) / 3"); padding: 0; &:nth-child(4n+1) { margin-left: 0; diff --git a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/widgets.less b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/widgets.less index c7a7e0b1cb814..b3f6a23021ee3 100644 --- a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/widgets.less +++ b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/widgets.less @@ -82,8 +82,8 @@ .page-layout-3columns .block.widget .products-grid .product-item { width: 100%/4 } .block.widget .products-grid .product-items { margin: 0; } .block.widget .products-grid .product-item { - width: 24%; - margin-left: calc(~"(100% - 4 * 24%) / 3"); + width: 24.439%; + margin-left: calc(~"(100% - 4 * 24.439%) / 3"); padding: 0; &:nth-child(4n+1) { margin-left: 0; diff --git a/app/design/frontend/Magento/blank/Magento_Theme/web/css/source/module.less b/app/design/frontend/Magento/blank/Magento_Theme/web/css/source/module.less index f6f63a35b0b3c..eee98c2152a6d 100644 --- a/app/design/frontend/Magento/blank/Magento_Theme/web/css/source/module.less +++ b/app/design/frontend/Magento/blank/Magento_Theme/web/css/source/module.less @@ -82,7 +82,20 @@ body { } .action.skip { - &:extend(.abs-visually-hidden all); + &:not(:focus) { + &:extend(.abs-visually-hidden all); + } + &:focus { + position: absolute; + z-index: 15; + box-sizing: border-box; + width: 100%; + left: 0; + top: 0; + text-align: center; + .css(background, @color-gray94); + .css(padding, @indent-s-base); + } } // @@ -248,6 +261,11 @@ body { a { line-height: 1.4; } + &.welcome { + a { + .css(padding-left, @indent-xs-base); + } + } } margin-left: auto; } diff --git a/app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/module.less b/app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/module.less index 77738d0046d93..9c9d876289c36 100644 --- a/app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/module.less +++ b/app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/module.less @@ -289,8 +289,8 @@ .media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen-l) { .wishlist-index-index .products-grid .product-items { margin: 0; } .wishlist-index-index .products-grid .product-item { - width: 24%; - margin-left: calc(~"(100% - 4 * 24%) / 3"); + width: 24.439%; + margin-left: calc(~"(100% - 4 * 24.439%) / 3"); padding: 0; &:nth-child(4n+1) { margin-left: 0; diff --git a/app/design/frontend/Magento/blank/etc/view.xml b/app/design/frontend/Magento/blank/etc/view.xml index e6c4001adbc73..ea97d035d5b5a 100644 --- a/app/design/frontend/Magento/blank/etc/view.xml +++ b/app/design/frontend/Magento/blank/etc/view.xml @@ -152,9 +152,9 @@ 100 thumbnail - 235 + 152 1 - 290 + 188 thumbnail 100 diff --git a/app/design/frontend/Magento/blank/media/preview.jpg b/app/design/frontend/Magento/blank/media/preview.jpg index 21b164c0fff65..517c41a290881 100644 Binary files a/app/design/frontend/Magento/blank/media/preview.jpg and b/app/design/frontend/Magento/blank/media/preview.jpg differ diff --git a/app/design/frontend/Magento/blank/web/css/print.less b/app/design/frontend/Magento/blank/web/css/print.less index c574ff4e25b77..4691451fecc96 100644 --- a/app/design/frontend/Magento/blank/web/css/print.less +++ b/app/design/frontend/Magento/blank/web/css/print.less @@ -3,6 +3,12 @@ * See COPYING.txt for license details. */ +// Import vars +@import "source/lib/lib.less"; // Import all lib files +@import "source/theme.less"; // import theme styles + +@baseDir: "../"; //default + // Magento/blank .page-print { .logo { @@ -12,7 +18,8 @@ } } @media print { - *{background: transparent !important; + * { + background: transparent !important; color: black !important; text-shadow: none !important; -webkit-filter: none !important; // Use in 41 Chrome diff --git a/app/design/frontend/Magento/blank/web/css/styles.less b/app/design/frontend/Magento/blank/web/css/styles.less index 3f8398a9e231b..3bbafdc2ed8da 100644 --- a/app/design/frontend/Magento/blank/web/css/styles.less +++ b/app/design/frontend/Magento/blank/web/css/styles.less @@ -9,8 +9,6 @@ @import "source/lib/lib.less"; // Import all lib files @import "source/theme.less"; // import theme styles -@baseDir: "../"; //default - @import (reference) "source/abstract.less"; // import theme abstract @import "source/typography.less"; // import theme typography @import "source/layout.less"; // import theme page layout diff --git a/app/design/frontend/Magento/blank/web/images/logo.gif b/app/design/frontend/Magento/blank/web/images/logo.gif deleted file mode 100644 index 121e72ed586c9..0000000000000 Binary files a/app/design/frontend/Magento/blank/web/images/logo.gif and /dev/null differ diff --git a/app/design/frontend/Magento/blank/web/images/logo.svg b/app/design/frontend/Magento/blank/web/images/logo.svg new file mode 100644 index 0000000000000..0bcad31bf5851 --- /dev/null +++ b/app/design/frontend/Magento/blank/web/images/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/listings.less b/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/listings.less index 19e47cb9d3cd3..c6d10b7a17fbd 100644 --- a/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/listings.less +++ b/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/listings.less @@ -58,7 +58,7 @@ } &-info { - width: 150px; + width: 152px; max-width: 100%; .page-products & { width: 240px; @@ -317,8 +317,8 @@ .page-layout-3columns .products-grid .product-item { width: 100%/4 } .page-products .products-grid .product-items { margin: 0; } .page-products .products-grid .product-item { - width: 24%; - margin-left: calc(~"(100% - 4 * 24%) / 3"); + width: 24.439%; + margin-left: calc(~"(100% - 4 * 24.439%) / 3"); padding: 0; &:nth-child(4n+1) { margin-left: 0; diff --git a/app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml b/app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml index 676e1a330e2f5..4169143857a1b 100644 --- a/app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml +++ b/app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml @@ -20,7 +20,7 @@ - images/logo.png + images/logo.svg diff --git a/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module.less b/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module.less index b53d9390f9d54..99bf41877dc91 100644 --- a/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module.less +++ b/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module.less @@ -153,7 +153,21 @@ } } - .action.skip:extend(.abs-visually-hidden all) { + .action.skip { + &:not(:focus) { + &:extend(.abs-visually-hidden all); + } + &:focus { + position: absolute; + z-index: 15; + box-sizing: border-box; + width: 100%; + left: 0; + top: 0; + text-align: center; + .css(background, @color-gray94); + .css(padding, @indent-s-base); + } } // @@ -489,6 +503,12 @@ display: inline-block; line-height: 1.4; } + &.welcome { + a { + .css(color, @color-white); + .css(padding-left, @indent-xs-base); + } + } } > .authorization-link:after { content: 'or'; diff --git a/app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/module.less b/app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/module.less index 41133bfc5d5b6..7d83906078434 100644 --- a/app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/module.less +++ b/app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/module.less @@ -328,7 +328,7 @@ margin: 0; } .product-item { - width: 24%; + width: 24.439%; margin-left: calc(~"(100% - 4 * 24%) / 3"); margin-bottom: @indent-base; padding: 0; diff --git a/app/design/frontend/Magento/luma/etc/view.xml b/app/design/frontend/Magento/luma/etc/view.xml index b48058162975f..51d346347bb6d 100644 --- a/app/design/frontend/Magento/luma/etc/view.xml +++ b/app/design/frontend/Magento/luma/etc/view.xml @@ -157,9 +157,9 @@ 100 thumbnail - 235 + 200 1 - 290 + 248 thumbnail 100 diff --git a/app/design/frontend/Magento/luma/media/preview.jpg b/app/design/frontend/Magento/luma/media/preview.jpg index 2d9e666fda117..f8cbe92056149 100644 Binary files a/app/design/frontend/Magento/luma/media/preview.jpg and b/app/design/frontend/Magento/luma/media/preview.jpg differ diff --git a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg index 43891eead5a54..171e99f646167 100644 --- a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg +++ b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg @@ -1,52 +1 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/app/design/frontend/Magento/luma/web/images/logo.png b/app/design/frontend/Magento/luma/web/images/logo.png deleted file mode 100644 index 966a6812aebb8..0000000000000 Binary files a/app/design/frontend/Magento/luma/web/images/logo.png and /dev/null differ diff --git a/app/design/frontend/Magento/luma/web/images/logo.svg b/app/design/frontend/Magento/luma/web/images/logo.svg new file mode 100644 index 0000000000000..907218053a05c --- /dev/null +++ b/app/design/frontend/Magento/luma/web/images/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/design/frontend/Magento/luma/web/images/select-bg.svg b/app/design/frontend/Magento/luma/web/images/select-bg.svg index 0724721f465b2..4b1159fb8b6f7 100644 --- a/app/design/frontend/Magento/luma/web/images/select-bg.svg +++ b/app/design/frontend/Magento/luma/web/images/select-bg.svg @@ -1,13 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg index ad6b747f73dd9..ed6e4decf1509 100644 Binary files a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg and b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg differ diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Service/V1/DownloadableLink/_files/test_image.jpg b/dev/tests/api-functional/testsuite/Magento/Downloadable/Service/V1/DownloadableLink/_files/test_image.jpg index ad6b747f73dd9..ed6e4decf1509 100644 Binary files a/dev/tests/api-functional/testsuite/Magento/Downloadable/Service/V1/DownloadableLink/_files/test_image.jpg and b/dev/tests/api-functional/testsuite/Magento/Downloadable/Service/V1/DownloadableLink/_files/test_image.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_asc.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_asc.gif index 1136ddcfd69a9..b9a4d696fd75a 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_asc.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_asc.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_desc.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_desc.gif index d6349fefe91c4..8991f5e17af42 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_desc.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_sort_desc.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_bg.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_bg.gif index 8ccc66e7ba9e9..6dcc5834638b4 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_bg.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_bg.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_onclick_bg.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_onclick_bg.gif index 3bf5e263bdbfc..c353da5a2772e 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_onclick_bg.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/grid_th_onclick_bg.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left.gif index c0bb54f39b37b..619f74852cc4f 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left_off.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left_off.gif index e057ce0e30cc4..7a3ba040acd1a 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left_off.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_left_off.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right.gif index f464481ba14c8..e7e62bc7a5602 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right_off.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right_off.gif index 95f17d5face7d..048f6cbfb218d 100644 Binary files a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right_off.gif and b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/test_default/web/images/pager_arrow_right_off.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php index 78cc393dfc7d6..b66e4f7690c0a 100644 --- a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php +++ b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php @@ -226,9 +226,9 @@ protected function expectedValidate() return [ 'type' => 'image/jpeg', 'title' => 'test.jpg', - 'quote_path' => 'pub/media/custom_options/quote/t/e/9c198b6663f1e032365b8cfedfe7ad77.jpg', - 'order_path' => 'pub/media/custom_options/order/t/e/9c198b6663f1e032365b8cfedfe7ad77.jpg', - 'size' => '6747', + 'quote_path' => 'pub/media/custom_options/quote/t/e/e1d601731b4b1a84163cd0e9370a4fcb.jpg', + 'order_path' => 'pub/media/custom_options/order/t/e/e1d601731b4b1a84163cd0e9370a4fcb.jpg', + 'size' => '3300', 'width' => 136, 'height' => 131, ]; diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg index bdda86b647e7f..0816984ee3606 100644 Binary files a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg and b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg index 47792ebf84d18..77fcd7e97aa1f 100644 Binary files a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg and b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg index 68703aea8c413..da7cabce83e37 100644 Binary files a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg and b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg index 96cf7efc025ea..9dc91b1380990 100644 Binary files a/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg and b/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png index 7ce5b2c120990..682f708907516 100644 Binary files a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png and b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg index 3c9b11dae2719..75a4298e8cf90 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/1.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/1.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/1.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/1.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/body.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/body.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/body.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/css/body.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/h1.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/h1.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/h1.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/h1.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/images/h2.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/images/h2.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/images/h2.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/images/h2.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive2.gif b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive2.gif index 6d3c22c4c4270..14cc3b724458c 100644 Binary files a/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive2.gif and b/dev/tests/integration/testsuite/Magento/Core/Model/_files/design/frontend/Vendor/default/web/recursive2.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php index a1f054261ad1d..5ffaed0005fad 100644 --- a/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php +++ b/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php @@ -174,7 +174,7 @@ public function testGetDefaultEmailLogo() \Magento\Framework\App\Area::AREA_FRONTEND )->load(); $this->assertStringEndsWith( - 'static/frontend/Magento/blank/en_US/Magento_Email/logo_email.gif', + 'static/frontend/Magento/blank/en_US/Magento_Email/logo_email.png', $this->_model->getDefaultEmailLogo() ); } diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png index d3cb969ffe6b7..78ecf286fe5a3 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png and b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg index 68703aea8c413..da7cabce83e37 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg and b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif index 7d81ad503381e..9829d4d3f8921 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif and b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg index 3b35b36596083..fb127a41875b5 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg and b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png index dc8b7d7598ee6..183540ce7ea4e 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png and b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png index 49f86d4c08400..784797b92c24e 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png and b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png index c95d0d9132dc2..2c62225329223 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png and b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png differ diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png index 8714f9f01c0ff..ca7bfd5e5558b 100644 Binary files a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png and b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png differ diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php index f48e20989150b..ff9acf37d526a 100644 --- a/dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php +++ b/dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php @@ -54,28 +54,7 @@ public function setUp() public function testToHtml() { $this->_customerSession->loginById(1); - /** @var \Magento\Customer\Helper\View $customerViewHelper */ - $customerViewHelper = $this->_objectManager->create( - 'Magento\Customer\Helper\View' - ); - - /** @var \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository */ - $customerRepository = $this->_objectManager->create( - 'Magento\Customer\Api\CustomerRepositoryInterface' - ); - /** @var \Magento\Framework\Escaper $escaper */ - $escaper = $this->_objectManager->create( - 'Magento\Framework\Escaper' - ); - $persistentName = $escaper->escapeHtml( - $customerViewHelper->getCustomerName( - $customerRepository->getById( - $this->_persistentSessionHelper->getSession()->getCustomerId() - ) - ) - ); - - $translation = __('(Not %1?)', $persistentName); + $translation = __('Not you?'); $this->assertStringMatchesFormat( '%A%A_block->getHref() . '"%A>' . $translation . '%A%A', diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png b/dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png index 7ce5b2c120990..682f708907516 100644 Binary files a/dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png and b/dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png differ diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png b/dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png index 7ce5b2c120990..682f708907516 100644 Binary files a/dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png and b/dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png differ diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml index c13d1819e8115..fa2654f048efe 100644 --- a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml +++ b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml @@ -8,7 +8,7 @@ + placeholder_image="Magento_Catalog::images/product_widget_new.png"> List of Products that are set as New diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php index 20c5789434249..6e1d778a16363 100644 --- a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php +++ b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php @@ -7,7 +7,7 @@ 'new_products' => [ '@' => ['type' => 'Magento\Sales\Block\Widget\Guest\Form'], 'is_email_compatible' => '1', - 'placeholder_image' => 'Magento_Catalog::images/product_widget_new.gif', + 'placeholder_image' => 'Magento_Catalog::images/product_widget_new.png', 'name' => 'Orders and Returns', 'description' => 'Orders and Returns Search Form', 'parameters' => [ diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php index df4ca61d0c880..4487a18c2ccad 100644 --- a/dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php +++ b/dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php @@ -60,7 +60,7 @@ public function getPlaceholderImageUrlDataProvider() return [ 'custom image' => [ 'Magento\Catalog\Block\Product\Widget\NewWidget', - 'Magento_Catalog/images/product_widget_new.gif', + 'Magento_Catalog/images/product_widget_new.png', ], 'default image' => ['non_existing_widget_type', 'Magento_Widget/placeholder.gif'] ]; diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.gif b/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.gif deleted file mode 100644 index 1141f164c7dc4..0000000000000 Binary files a/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.gif and /dev/null differ diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.png b/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.png new file mode 100644 index 0000000000000..c2573967031e1 Binary files /dev/null and b/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.png differ diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml index a895ab1029a64..b72e898175c30 100644 --- a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml +++ b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml @@ -8,7 +8,7 @@ + placeholder_image="Magento_Catalog::images/product_widget_new.png" translate="label description"> List of Products that are set as New @@ -76,7 +76,7 @@ + placeholder_image="Magento_Catalog::images/product_widget_link.png" translate="label description"> Link to a Specified Product @@ -108,7 +108,7 @@ + placeholder_image="Magento_Catalog::images/category_widget_link.png" translate="label description"> Link to a Specified Category diff --git a/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/somefile.png b/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/somefile.png index 50b15f6ec595b..551553888c745 100644 Binary files a/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/somefile.png and b/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/somefile.png differ diff --git a/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/watermark/somefile.png b/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/watermark/somefile.png index 50b15f6ec595b..551553888c745 100644 Binary files a/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/watermark/somefile.png and b/dev/tests/unit/testsuite/Magento/Catalog/_files/catalog/product/watermark/somefile.png differ diff --git a/dev/tests/unit/testsuite/Magento/Customer/Model/Metadata/Form/_files/logo.gif b/dev/tests/unit/testsuite/Magento/Customer/Model/Metadata/Form/_files/logo.gif index a4d941679e111..b404af6133629 100644 Binary files a/dev/tests/unit/testsuite/Magento/Customer/Model/Metadata/Form/_files/logo.gif and b/dev/tests/unit/testsuite/Magento/Customer/Model/Metadata/Form/_files/logo.gif differ diff --git a/dev/tests/unit/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php b/dev/tests/unit/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php index 2b7241c10ef7b..41518982f168d 100644 --- a/dev/tests/unit/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php +++ b/dev/tests/unit/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php @@ -257,7 +257,6 @@ public function testToHtml($customerId) $cacheData = false; $idQueryParam = 'id-query-param'; $sessionId = 'session-id'; - $customerName = 'customer-name'; $this->additional->setData('cache_lifetime', 789); $this->additional->setData('cache_key', 'cache-key'); @@ -312,33 +311,7 @@ public function testToHtml($customerId) ->willReturn($customerId); if ($customerId) { - - $customerMock = $this->getMockForAbstractClass( - 'Magento\Customer\Api\Data\CustomerInterface', - [], - '', - false, - true, - true, - [] - ); - - $this->customerRepositoryMock->expects($this->once()) - ->method('getById') - ->with($customerId) - ->willReturn($customerMock); - - $this->customerViewHelperMock->expects($this->once()) - ->method('getCustomerName') - ->with($customerMock) - ->willReturn($customerName); - - $this->escaperMock->expects($this->at(0)) - ->method('escapeHtml') - ->with($customerName) - ->willReturn($customerName); - - $this->assertEquals('(Not customer-name?)', $this->additional->toHtml()); + $this->assertEquals('Not you?', $this->additional->toHtml()); } else { $this->assertEquals('', $this->additional->toHtml()); } diff --git a/dev/tests/unit/testsuite/Magento/Theme/Block/Html/_files/logo/default/image.gif b/dev/tests/unit/testsuite/Magento/Theme/Block/Html/_files/logo/default/image.gif index 3fe49d2660832..ab08c0618d8fa 100644 Binary files a/dev/tests/unit/testsuite/Magento/Theme/Block/Html/_files/logo/default/image.gif and b/dev/tests/unit/testsuite/Magento/Theme/Block/Html/_files/logo/default/image.gif differ diff --git a/dev/tests/unit/testsuite/Magento/Widget/Model/Widget/InstanceTest.php b/dev/tests/unit/testsuite/Magento/Widget/Model/Widget/InstanceTest.php index 2c9ddbc0ca4b5..8ea738935f519 100644 --- a/dev/tests/unit/testsuite/Magento/Widget/Model/Widget/InstanceTest.php +++ b/dev/tests/unit/testsuite/Magento/Widget/Model/Widget/InstanceTest.php @@ -96,7 +96,7 @@ public function testGetWidgetConfigAsArray() 'name' => 'CMS Page Link', 'description' => 'Link to a CMS Page', 'is_email_compatible' => 'true', - 'placeholder_image' => 'Magento_Cms::images/widget_page_link.gif', + 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png', 'parameters' => [ 'page_id' => [ '@' => ['type' => 'complex'], @@ -172,7 +172,7 @@ public function testGetWidgetTemplatesValueOnly() 'name' => 'CMS Page Link', 'description' => 'Link to a CMS Page', 'is_email_compatible' => 'true', - 'placeholder_image' => 'Magento_Cms::images/widget_page_link.gif', + 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png', 'parameters' => [ 'template' => [ 'values' => [ @@ -206,7 +206,7 @@ public function testGetWidgetTemplatesNoTemplate() 'name' => 'CMS Page Link', 'description' => 'Link to a CMS Page', 'is_email_compatible' => 'true', - 'placeholder_image' => 'Magento_Cms::images/widget_page_link.gif', + 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png', 'parameters' => [], ]; $this->_widgetModelMock->expects( @@ -244,7 +244,7 @@ public function testGetWidgetSupportedContainersNoContainer() 'name' => 'CMS Page Link', 'description' => 'Link to a CMS Page', 'is_email_compatible' => 'true', - 'placeholder_image' => 'Magento_Cms::images/widget_page_link.gif', + 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png', ]; $this->_widgetModelMock->expects( $this->once() @@ -302,7 +302,7 @@ public function testGetWidgetSupportedTemplatesByContainersNoSupportedContainers 'name' => 'CMS Page Link', 'description' => 'Link to a CMS Page', 'is_email_compatible' => 'true', - 'placeholder_image' => 'Magento_Cms::images/widget_page_link.gif', + 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png', 'parameters' => [ 'template' => [ 'values' => [ diff --git a/dev/tests/unit/testsuite/Magento/Widget/Model/_files/mappedConfigArray1.php b/dev/tests/unit/testsuite/Magento/Widget/Model/_files/mappedConfigArray1.php index 9e4b9116a47d8..4640f12ac0289 100644 --- a/dev/tests/unit/testsuite/Magento/Widget/Model/_files/mappedConfigArray1.php +++ b/dev/tests/unit/testsuite/Magento/Widget/Model/_files/mappedConfigArray1.php @@ -8,7 +8,7 @@ 'name' => 'CMS Page Link', 'description' => 'Link to a CMS Page', 'is_email_compatible' => '1', - 'placeholder_image' => 'Magento_Cms::images/widget_page_link.gif', + 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png', 'parameters' => [ 'page_id' => [ '@' => ['type' => 'complex'], diff --git a/lib/web/css/docs/responsive.html b/lib/web/css/docs/responsive.html index f3fa9d734c7cc..c19a53b699363 100644 --- a/lib/web/css/docs/responsive.html +++ b/lib/web/css/docs/responsive.html @@ -73,10 +73,10 @@

        Gathering

        Responsive breakpoints

        In Magento UI library there are predefined variables for breakpoints.

          @screen-xxs: 320px;
        -  @screen-xs: 400px;
        +  @screen-xs: 480px;
           @screen-s: 640px;
           @screen-m: 768px;
        -  @screen-l: 1000px;
        +  @screen-l: 1024px;
           @screen-xl: 1440px;

         

        diff --git a/lib/web/css/docs/source/responsive.less b/lib/web/css/docs/source/responsive.less index 486a4b9a6896b..df4d746e41b11 100644 --- a/lib/web/css/docs/source/responsive.less +++ b/lib/web/css/docs/source/responsive.less @@ -99,10 +99,10 @@ // In Magento UI library there are predefined variables for breakpoints. // ```css // @screen-xxs: 320px; -// @screen-xs: 400px; +// @screen-xs: 480px; // @screen-s: 640px; // @screen-m: 768px; -// @screen-l: 1000px; +// @screen-l: 1024px; // @screen-xl: 1440px; // ``` //   diff --git a/lib/web/css/source/lib/typography.less b/lib/web/css/source/lib/typography.less index f0bc7226c65ec..967d19b80bd36 100644 --- a/lib/web/css/source/lib/typography.less +++ b/lib/web/css/source/lib/typography.less @@ -23,7 +23,15 @@ } // Rem font size -.font-size(@sizeValue) when not (ispercentage(@sizeValue)) and not (@sizeValue = false) { +.font-size(@sizeValue) when not (ispercentage(@sizeValue)) and not (@sizeValue = false) and (isunit(@sizeValue, rem)) { + font-size: @sizeValue; +} + +.font-size(@sizeValue) when not (ispercentage(@sizeValue)) and not (@sizeValue = false) and (isunit(@sizeValue, em)) { + font-size: @sizeValue; +} + +.font-size(@sizeValue) when not (ispercentage(@sizeValue)) and not (@sizeValue = false) and (isunit(@sizeValue, px)) { .to-rem(@sizeValue); font-size: @valueRem; } @@ -55,11 +63,11 @@ } .text-hide() { + background-color: transparent; + border: 0; font: ~"0/0" a; color: transparent; text-shadow: none; - background-color: transparent; - border: 0; } // Optional hyphenation @@ -67,7 +75,7 @@ word-wrap: break-word; -webkit-hyphens: @mode; -moz-hyphens: @mode; - -ms-hyphens: @mode; // IE10+ + -ms-hyphens: @mode; // IE10+ hyphens: @mode; } @@ -156,7 +164,8 @@ // // Base typography -//-------------------------------------- +// --------------------------------------------- + .typography-base() { html { .css(font-size, @font-size-root); @@ -179,7 +188,7 @@ } } - // Abbreviations and acronyms + // Abbreviations and acronyms abbr[title] { cursor: help; .css(border-bottom, 1px dotted @abbr-border-color); @@ -233,7 +242,8 @@ // // Headings -//-------------------------------------- +// --------------------------------------------- + .typography-headings() { h1 { .heading(h1); @@ -273,7 +283,8 @@ // // Links -// -------------------------------------------------- +// --------------------------------------------- + .typography-links() { a, .alink { @@ -283,7 +294,8 @@ // // Unordered and Ordered lists -// -------------------------------------------------- +// --------------------------------------------- + .typography-lists() { ul, ol { @@ -330,7 +342,8 @@ // // Code (inline and block) -// -------------------------------------------------- +// --------------------------------------------- + .typography-code() { code, kbd, @@ -339,7 +352,7 @@ .css(font-family, @font-family-monospace); } - // Inline code + // Inline code code { .css(background, @code-bg); .css(color, @code-color); @@ -348,7 +361,7 @@ white-space: nowrap; } - // User input typically entered via keyboard + // User input typically entered via keyboard kbd { .css(background, @kbd-bg); .css(color, @kbd-color); @@ -356,7 +369,7 @@ .css(padding, @code-padding); } - // Blocks of code + // Blocks of code pre { .css(background, @pre-bg); .css(border, @pre-border-width solid @pre-border-color); @@ -381,7 +394,8 @@ // // Blockquotes -// -------------------------------------------------- +// --------------------------------------------- + .typography-blockquote() { blockquote { .css(border-left, @blockquote-border-width solid @blockquote-border-color); @@ -417,7 +431,7 @@ } } - // Quotes + // Quotes blockquote:before, blockquote:after { content: ""; @@ -432,7 +446,7 @@ content: none; } - // Undo browser default styling + // Undo browser default styling cite { .css(font-style, @cite-font-style); } diff --git a/lib/web/css/source/lib/utilities.less b/lib/web/css/source/lib/utilities.less index 7fbed1aee6c76..bb222930367a4 100644 --- a/lib/web/css/source/lib/utilities.less +++ b/lib/web/css/source/lib/utilities.less @@ -4,8 +4,9 @@ // */ // -// Convert to rem -//-------------------------------------- +// Convert to rem +// --------------------------------------------- + .to-rem( @_value ) when not (@_value = false) and not (@_value = '') { @@ -13,33 +14,34 @@ } .visibility-hidden() { - visibility: hidden; height: 0; + visibility: hidden; } .visually-hidden() { - position: absolute; - width: 1px; + border: 0; + clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; - padding: 0; overflow: hidden; - clip: rect(0,0,0,0); - border: 0; + padding: 0; + position: absolute; + width: 1px; } .visually-hidden-reset() { - position: static; - width: auto; + clip: auto; height: auto; margin: 0; overflow: visible; - clip: auto; + position: static; + width: auto; } // -// Clearfix -//-------------------------------------- +// Clearfix +// --------------------------------------------- + .clearfix() { &:before, &:after { @@ -59,13 +61,14 @@ } // -// Gradient -//-------------------------------------- +// Gradient +// --------------------------------------------- + #gradient { - // Horizontal gradient, from left to right - // Creates two color stops, start and end, by specifying a color and position for each color stop. - // Color stops are not available in IE9 and below. - // Filters are enabled + // Horizontal gradient, from left to right + // Creates two color stops, start and end, by specifying a color and position for each color stop. + // Color stops are not available in IE9 and below. + // Filters are enabled .horizontal( @_start-color; @_end-color; @@ -74,15 +77,15 @@ ) when not (@disable-filters) { background-color: @_end-color; background-repeat: repeat-x; - background-image: -webkit-linear-gradient(left, color-stop(@_start-color @_start-percent), color-stop(@_end-color @_end-percent)); // Safari 5.1-6, Chrome 10+ + background-image: -webkit-linear-gradient(left, color-stop(@_start-color @_start-percent), color-stop(@_end-color @_end-percent)); // Safari 5.1-6, Chrome 10+ background-image: linear-gradient(to right, @_start-color @_start-percent, @_end-color @_end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)", @_start-color, @_end-color)); // IE9 and down + filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)", @_start-color, @_end-color)); // IE9 and down } - // Horizontal gradient, from left to right - // Creates two color stops, start and end, by specifying a color and position for each color stop. - // Color stops are not available in IE9 and below. - // Filters are disabled + // Horizontal gradient, from left to right + // Creates two color stops, start and end, by specifying a color and position for each color stop. + // Color stops are not available in IE9 and below. + // Filters are disabled .horizontal( @_start-color; @_end-color; @@ -91,14 +94,14 @@ ) when (@disable-filters) { background-color: @_end-color; background-repeat: repeat-x; - background-image: -webkit-linear-gradient(left, color-stop(@_start-color @_start-percent), color-stop(@_end-color @_end-percent)); // Safari 5.1-6, Chrome 10+ + background-image: -webkit-linear-gradient(left, color-stop(@_start-color @_start-percent), color-stop(@_end-color @_end-percent)); // Safari 5.1-6, Chrome 10+ background-image: linear-gradient(to right, @_start-color @_start-percent, @_end-color @_end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ } - // Vertical gradient, from top to bottom - // Creates two color stops, start and end, by specifying a color and position for each color stop. - // Color stops are not available in IE9 and below. -// Filters are enabled + // Vertical gradient, from top to bottom + // Creates two color stops, start and end, by specifying a color and position for each color stop. + // Color stops are not available in IE9 and below. + // Filters are enabled .vertical( @_start-color; @_end-color; @@ -107,15 +110,15 @@ ) when not (@disable-filters) { background-color: @_end-color; background-repeat: repeat-x; - background-image: -webkit-linear-gradient(top, @_start-color @_start-percent, @_end-color @_end-percent); // Safari 5.1-6, Chrome 10+ - background-image: linear-gradient(to bottom, @_start-color @_start-percent, @_end-color @_end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)", @_start-color, @_end-color)); // IE9 and down + background-image: -webkit-linear-gradient(top, @_start-color @_start-percent, @_end-color @_end-percent); // Safari 5.1-6, Chrome 10+ + background-image: linear-gradient(to bottom, @_start-color @_start-percent, @_end-color @_end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ + filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)", @_start-color, @_end-color)); // IE9 and down } - // Vertical gradient, from top to bottom - // Creates two color stops, start and end, by specifying a color and position for each color stop. - // Color stops are not available in IE9 and below. - // Filters are disabled + // Vertical gradient, from top to bottom + // Creates two color stops, start and end, by specifying a color and position for each color stop. + // Color stops are not available in IE9 and below. + // Filters are disabled .vertical( @_start-color; @_end-color; @@ -124,15 +127,16 @@ ) when (@disable-filters) { background-color: @_end-color; background-repeat: repeat-x; - background-image: -webkit-linear-gradient(top, @_start-color @_start-percent, @_end-color @_end-percent); // Safari 5.1-6, Chrome 10+ - background-image: linear-gradient(to bottom, @_start-color @_start-percent, @_end-color @_end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ + background-image: -webkit-linear-gradient(top, @_start-color @_start-percent, @_end-color @_end-percent); // Safari 5.1-6, Chrome 10+ + background-image: linear-gradient(to bottom, @_start-color @_start-percent, @_end-color @_end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ } } // -// Custom background gradient -//-------------------------------------- -// Pager gradient - horizontal +// Custom background gradient +// --------------------------------------------- + +// Pager gradient - horizontal .background-gradient( @_background-gradient-start-color, @_background-gradient-end-color, @@ -142,7 +146,7 @@ #gradient > .horizontal(@_background-gradient-start-color, @_background-gradient-end-color); } -// Pager gradient - vertical +// Pager gradient - vertical .background-gradient( @_background-gradient-start-color, @_background-gradient-end-color, @@ -153,17 +157,19 @@ } // -// Rotate -//-------------------------------------- +// Rotate +// --------------------------------------------- + .rotate(@_rotation) { - -webkit-transform: rotate(@_rotation); // Use in 8 Safari - -ms-transform: rotate(@_rotation); // Use in 9 IE + -webkit-transform: rotate(@_rotation); // Use in 8 Safari + -ms-transform: rotate(@_rotation); // Use in 9 IE transform: rotate(@_rotation); } // -// Remove spaces between elements with display: inline-block -//-------------------------------------- +// Remove spaces between elements with display: inline-block +// --------------------------------------------- + .inline-block-space-container() { font-size: 0; line-height: 0; @@ -181,8 +187,9 @@ } // -// Add any css property -//-------------------------------------- +// Add any css property +// --------------------------------------------- + .css( @_property, @_value, @@ -214,8 +221,9 @@ } // -// Add url to property -//-------------------------------------- +// Add url to property +// --------------------------------------------- + // usage: // .column.left { // .url('images/fallback.png'); @@ -247,16 +255,17 @@ } // -// Arrow -//-------------------------------------- +// Arrow +// --------------------------------------------- + .arrow( @_position, @_size, @_color ) { - width: 0; - height: 0; border: @_size solid transparent; + height: 0; + width: 0; ._abbor_el(@_position, @_color); } @@ -289,8 +298,8 @@ } // -// Input placeholder -//-------------------------------------- +// Input placeholder +// --------------------------------------------- .input-placeholder( @_input-placeholder-color: @form-element-input-placeholder-color, @@ -315,8 +324,8 @@ } // -// Flex layout -//-------------------------------------- +// Flex layout +// --------------------------------------------- .vendor-prefix-display ( @_value: flex @@ -330,21 +339,21 @@ @_value: 0 ) { -webkit-flex-grow: @_value; - flex-grow: @_value; + flex-grow: @_value; } .vendor-prefix-flex-shrink ( @_value: 1 ) { -webkit-flex-shrink: @_value; - flex-shrink: @_value; + flex-shrink: @_value; } .vendor-prefix-flex-basis ( @_value: auto ) { -webkit-flex-basis: @_value; - flex-basis: @_value; + flex-basis: @_value; } .vendor-prefix-flex-wrap ( @@ -369,3 +378,19 @@ -webkit-order: @_value; order: @_value; } + +.vendor-box-align ( + @_value: stretch +) { + -webkit-align-items: @_value; + -ms-align-items: @_value; + align-items: @_value; +} + +.vendor-prefix-appearance ( + @value: none +) { + -webkit-appearance: @value; + -moz-appearance: @value; + appearance: @value; +} diff --git a/lib/web/css/source/lib/variables.less b/lib/web/css/source/lib/variables.less index 8cdde46a4fbe0..e1533cf2b545b 100644 --- a/lib/web/css/source/lib/variables.less +++ b/lib/web/css/source/lib/variables.less @@ -7,6 +7,9 @@ // Variables list // _____________________________________________ +// Base directory path +@baseDir: "../"; + // // Typography // --------------------------------------------- @@ -382,10 +385,10 @@ @responsive: true; // Theme is responsive [true|false] @screen-xxs: 320px; -@screen-xs: 400px; +@screen-xs: 480px; @screen-s: 640px; @screen-m: 768px; -@screen-l: 1000px; +@screen-l: 1024px; @screen-xl: 1440px; // diff --git a/lib/web/css/styles.less b/lib/web/css/styles.less index ccd743db21a4d..c6d5a8a1e960c 100644 --- a/lib/web/css/styles.less +++ b/lib/web/css/styles.less @@ -7,4 +7,3 @@ @import "source/lib/lib.less"; // Import all lib files @import "source/theme.less"; // import theme styles @import "source/lib/responsive.less"; // import responsive styles -@baseDir: "../"; //default diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif b/lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif index 9ed8d815fdecf..39fcf1b679d5b 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif b/lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif index c61d29f20d534..b766e7ffdf57a 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif b/lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif index 7de443ff52dfd..e459194a7eba9 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif b/lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif index 7b9b048c26fcc..05aecddaca7a1 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif b/lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif index c605caeebe57c..a9ba10bf0e344 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/close.gif b/lib/web/extjs/resources/images/aero/basic-dialog/close.gif index 4278db9835cf5..6eb59dea1c25c 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/close.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/close.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif b/lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif index ac8dec9846a06..82d7a98ab1fd8 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif index d7a3b369b04c0..b2ae18fb075a7 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif index 48877e748d8fd..aaa302fced4a7 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif b/lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif index 96a6be88ce993..ed1cd14f09d7b 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/expand.gif b/lib/web/extjs/resources/images/aero/basic-dialog/expand.gif index ebeef99b66afe..4d50cb9efc609 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/expand.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/expand.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif index adf0d2dafda08..6c5a7983f2d48 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif index c13c9cdc05617..98ed102c15904 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif index 743ab0aff4378..e96888b790aed 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif index d59eafc2076a5..da16b74b4ee1d 100644 Binary files a/lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif and b/lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/gradient-bg.gif b/lib/web/extjs/resources/images/aero/gradient-bg.gif index 8134e4994f2a3..c7a66929406c0 100644 Binary files a/lib/web/extjs/resources/images/aero/gradient-bg.gif and b/lib/web/extjs/resources/images/aero/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif b/lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif index 5286f58f6f798..3d2c53e3fbae6 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif and b/lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/grid-hrow.gif b/lib/web/extjs/resources/images/aero/grid/grid-hrow.gif index ac2654983b38a..5540c5d18c19b 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/grid-hrow.gif and b/lib/web/extjs/resources/images/aero/grid/grid-hrow.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/grid-split.gif b/lib/web/extjs/resources/images/aero/grid/grid-split.gif index 8f07dc120904c..45cf309c8315b 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/grid-split.gif and b/lib/web/extjs/resources/images/aero/grid/grid-split.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif b/lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif index d0972638e8305..3b694ad2d82c8 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif and b/lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif b/lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif index 76c0bd4dec42f..92fefa45de653 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif and b/lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/sort_asc.gif b/lib/web/extjs/resources/images/aero/grid/sort_asc.gif index 67a2a4c669fc5..956fdb30a57e2 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/sort_asc.gif and b/lib/web/extjs/resources/images/aero/grid/sort_asc.gif differ diff --git a/lib/web/extjs/resources/images/aero/grid/sort_desc.gif b/lib/web/extjs/resources/images/aero/grid/sort_desc.gif index 34db47c3b1eec..bfbb60b89bd8e 100644 Binary files a/lib/web/extjs/resources/images/aero/grid/sort_desc.gif and b/lib/web/extjs/resources/images/aero/grid/sort_desc.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/collapse.gif b/lib/web/extjs/resources/images/aero/layout/collapse.gif index cbd6e081cf7a2..7cc6c017fdf30 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/collapse.gif and b/lib/web/extjs/resources/images/aero/layout/collapse.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/expand.gif b/lib/web/extjs/resources/images/aero/layout/expand.gif index 8103c0dd7bee8..6c001d2c94321 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/expand.gif and b/lib/web/extjs/resources/images/aero/layout/expand.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/gradient-bg.gif b/lib/web/extjs/resources/images/aero/layout/gradient-bg.gif index d311e7de678b9..412dc54a40597 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/gradient-bg.gif and b/lib/web/extjs/resources/images/aero/layout/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/ns-collapse.gif b/lib/web/extjs/resources/images/aero/layout/ns-collapse.gif index f2ad235dad390..e4d169101e590 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/ns-collapse.gif and b/lib/web/extjs/resources/images/aero/layout/ns-collapse.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/ns-expand.gif b/lib/web/extjs/resources/images/aero/layout/ns-expand.gif index 0817ec66fd410..ba634992d09d7 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/ns-expand.gif and b/lib/web/extjs/resources/images/aero/layout/ns-expand.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/panel-close.gif b/lib/web/extjs/resources/images/aero/layout/panel-close.gif index 4e96481a1fdb1..9c1fb8040aa3d 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/panel-close.gif and b/lib/web/extjs/resources/images/aero/layout/panel-close.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif index 89eb514b5d8e1..322e5011ed130 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif and b/lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif index f4c44ce09ad34..1a0d0ab8c795b 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif and b/lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/tab-close-on.gif b/lib/web/extjs/resources/images/aero/layout/tab-close-on.gif index 556e905b11cdd..ff0213f7f2536 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/tab-close-on.gif and b/lib/web/extjs/resources/images/aero/layout/tab-close-on.gif differ diff --git a/lib/web/extjs/resources/images/aero/layout/tab-close.gif b/lib/web/extjs/resources/images/aero/layout/tab-close.gif index 0a6f0198775da..7d6c9b3bbe1a8 100644 Binary files a/lib/web/extjs/resources/images/aero/layout/tab-close.gif and b/lib/web/extjs/resources/images/aero/layout/tab-close.gif differ diff --git a/lib/web/extjs/resources/images/aero/menu/checked.gif b/lib/web/extjs/resources/images/aero/menu/checked.gif index fad5893727ee8..076577a14da24 100644 Binary files a/lib/web/extjs/resources/images/aero/menu/checked.gif and b/lib/web/extjs/resources/images/aero/menu/checked.gif differ diff --git a/lib/web/extjs/resources/images/aero/menu/item-over.gif b/lib/web/extjs/resources/images/aero/menu/item-over.gif index 0167839324698..cfa555e05c009 100644 Binary files a/lib/web/extjs/resources/images/aero/menu/item-over.gif and b/lib/web/extjs/resources/images/aero/menu/item-over.gif differ diff --git a/lib/web/extjs/resources/images/aero/menu/menu.gif b/lib/web/extjs/resources/images/aero/menu/menu.gif index 30a2c4b6c0458..a3c395fea3a72 100644 Binary files a/lib/web/extjs/resources/images/aero/menu/menu.gif and b/lib/web/extjs/resources/images/aero/menu/menu.gif differ diff --git a/lib/web/extjs/resources/images/aero/menu/unchecked.gif b/lib/web/extjs/resources/images/aero/menu/unchecked.gif index 43823e52db80e..dcac5dedc52c2 100644 Binary files a/lib/web/extjs/resources/images/aero/menu/unchecked.gif and b/lib/web/extjs/resources/images/aero/menu/unchecked.gif differ diff --git a/lib/web/extjs/resources/images/aero/qtip/bg.gif b/lib/web/extjs/resources/images/aero/qtip/bg.gif index 5c0e8c92a810d..adecdba6ef109 100644 Binary files a/lib/web/extjs/resources/images/aero/qtip/bg.gif and b/lib/web/extjs/resources/images/aero/qtip/bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/s.gif b/lib/web/extjs/resources/images/aero/s.gif index 1d11fa9ada9e9..18c3624492584 100644 Binary files a/lib/web/extjs/resources/images/aero/s.gif and b/lib/web/extjs/resources/images/aero/s.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif index eac9662eade56..9bbc15671fbfd 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif and b/lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/e-handle.gif b/lib/web/extjs/resources/images/aero/sizer/e-handle.gif index f2c9f538243ec..e55ca760d3869 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/e-handle.gif and b/lib/web/extjs/resources/images/aero/sizer/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif index c9c041c45f673..407410a0782a9 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif and b/lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/ne-handle.gif b/lib/web/extjs/resources/images/aero/sizer/ne-handle.gif index 942ae825357eb..95070e5177354 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/ne-handle.gif and b/lib/web/extjs/resources/images/aero/sizer/ne-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif index 23fced98bfa4e..9b581cfd3ea16 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif and b/lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/nw-handle.gif b/lib/web/extjs/resources/images/aero/sizer/nw-handle.gif index d39b0c38d8994..e4dca4e5e70f9 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/nw-handle.gif and b/lib/web/extjs/resources/images/aero/sizer/nw-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif index ddc2e18ce48da..5a96b7b8ed076 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif and b/lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/s-handle.gif b/lib/web/extjs/resources/images/aero/sizer/s-handle.gif index 827c3330a989b..3c630e9892e7d 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/s-handle.gif and b/lib/web/extjs/resources/images/aero/sizer/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif index 1a678e67fd6ed..df88fd56d347a 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif and b/lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/se-handle.gif b/lib/web/extjs/resources/images/aero/sizer/se-handle.gif index 69b5a9ed5b134..aa8fb6e184d0e 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/se-handle.gif and b/lib/web/extjs/resources/images/aero/sizer/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif index 937102c6b23e5..e88ccc100c28d 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif and b/lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/aero/sizer/sw-handle.gif b/lib/web/extjs/resources/images/aero/sizer/sw-handle.gif index b9e2f563a037e..771f360eb5f71 100644 Binary files a/lib/web/extjs/resources/images/aero/sizer/sw-handle.gif and b/lib/web/extjs/resources/images/aero/sizer/sw-handle.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif index d057f6ccccd45..db8c3e8ac4417 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif index 94deb880211bf..5cad56ff80b60 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif index ac54928763352..1b7b6bf2c13bb 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif index 622812a916625..c15856d36da49 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif index 560c4d9048fe2..e8f71e3ad5075 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif index 287d3162fd916..e30038f020069 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png b/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png index fa8ab3f462f07..2cf56db07e352 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png and b/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png differ diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif index 5eaba1eaa3308..8ea4d324cbe0a 100644 Binary files a/lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif and b/lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/toolbar/bg.gif b/lib/web/extjs/resources/images/aero/toolbar/bg.gif index 03cf427a2610c..09ce6f0c4849e 100644 Binary files a/lib/web/extjs/resources/images/aero/toolbar/bg.gif and b/lib/web/extjs/resources/images/aero/toolbar/bg.gif differ diff --git a/lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif index 19bbef3c687f1..3b25d064d3cb3 100644 Binary files a/lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif and b/lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif b/lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif index f90d5df4455c3..c8553371d1532 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif and b/lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif b/lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif index 8527cbc0c3631..78877922acc58 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif and b/lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/close.gif b/lib/web/extjs/resources/images/default/basic-dialog/close.gif index 988ee82cac466..06bc827eadefa 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/close.gif and b/lib/web/extjs/resources/images/default/basic-dialog/close.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/default/basic-dialog/collapse.gif index 13ff5deb74d7a..e707dea51de0b 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/collapse.gif and b/lib/web/extjs/resources/images/default/basic-dialog/collapse.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif index dde28262ece20..974a65fbeaf75 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif and b/lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/expand.gif b/lib/web/extjs/resources/images/default/basic-dialog/expand.gif index 4b423f06bec11..82c5fe9cf576e 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/expand.gif and b/lib/web/extjs/resources/images/default/basic-dialog/expand.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif index 42da1ea1aa432..58b8a3b569db2 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif and b/lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/progress.gif b/lib/web/extjs/resources/images/default/basic-dialog/progress.gif index 0c3a53714cfb1..c41f3750b997a 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/progress.gif and b/lib/web/extjs/resources/images/default/basic-dialog/progress.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/progress2.gif b/lib/web/extjs/resources/images/default/basic-dialog/progress2.gif index 0b3fcd264e886..ac970220ca738 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/progress2.gif and b/lib/web/extjs/resources/images/default/basic-dialog/progress2.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif index c17db09702d8e..7b6294aa0419a 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif and b/lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif index f730f604387bd..e714e717044c9 100644 Binary files a/lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif and b/lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/box/corners-blue.gif b/lib/web/extjs/resources/images/default/box/corners-blue.gif index fa419b50abe50..540b14b87a05c 100644 Binary files a/lib/web/extjs/resources/images/default/box/corners-blue.gif and b/lib/web/extjs/resources/images/default/box/corners-blue.gif differ diff --git a/lib/web/extjs/resources/images/default/box/corners.gif b/lib/web/extjs/resources/images/default/box/corners.gif index 8aa8cae5c83d8..c9f23ed37a35d 100644 Binary files a/lib/web/extjs/resources/images/default/box/corners.gif and b/lib/web/extjs/resources/images/default/box/corners.gif differ diff --git a/lib/web/extjs/resources/images/default/box/l-blue.gif b/lib/web/extjs/resources/images/default/box/l-blue.gif index 5ed7f0043b6b0..ba7018077d919 100644 Binary files a/lib/web/extjs/resources/images/default/box/l-blue.gif and b/lib/web/extjs/resources/images/default/box/l-blue.gif differ diff --git a/lib/web/extjs/resources/images/default/box/l.gif b/lib/web/extjs/resources/images/default/box/l.gif index 0160f97fe7540..c7512b7919fea 100644 Binary files a/lib/web/extjs/resources/images/default/box/l.gif and b/lib/web/extjs/resources/images/default/box/l.gif differ diff --git a/lib/web/extjs/resources/images/default/box/r-blue.gif b/lib/web/extjs/resources/images/default/box/r-blue.gif index 3ea5cae3b7b57..e118a4a5ca960 100644 Binary files a/lib/web/extjs/resources/images/default/box/r-blue.gif and b/lib/web/extjs/resources/images/default/box/r-blue.gif differ diff --git a/lib/web/extjs/resources/images/default/box/r.gif b/lib/web/extjs/resources/images/default/box/r.gif index 34237f6292a7d..47300c04b9a64 100644 Binary files a/lib/web/extjs/resources/images/default/box/r.gif and b/lib/web/extjs/resources/images/default/box/r.gif differ diff --git a/lib/web/extjs/resources/images/default/box/tb-blue.gif b/lib/web/extjs/resources/images/default/box/tb-blue.gif index 562fecca87176..45690dd14d393 100644 Binary files a/lib/web/extjs/resources/images/default/box/tb-blue.gif and b/lib/web/extjs/resources/images/default/box/tb-blue.gif differ diff --git a/lib/web/extjs/resources/images/default/box/tb.gif b/lib/web/extjs/resources/images/default/box/tb.gif index 435889bffe0a3..b01b698129232 100644 Binary files a/lib/web/extjs/resources/images/default/box/tb.gif and b/lib/web/extjs/resources/images/default/box/tb.gif differ diff --git a/lib/web/extjs/resources/images/default/dd/drop-add.gif b/lib/web/extjs/resources/images/default/dd/drop-add.gif index b22cd1448efa1..2d27631008ec0 100644 Binary files a/lib/web/extjs/resources/images/default/dd/drop-add.gif and b/lib/web/extjs/resources/images/default/dd/drop-add.gif differ diff --git a/lib/web/extjs/resources/images/default/dd/drop-no.gif b/lib/web/extjs/resources/images/default/dd/drop-no.gif index 08d083355ff1b..cca836a969036 100644 Binary files a/lib/web/extjs/resources/images/default/dd/drop-no.gif and b/lib/web/extjs/resources/images/default/dd/drop-no.gif differ diff --git a/lib/web/extjs/resources/images/default/dd/drop-yes.gif b/lib/web/extjs/resources/images/default/dd/drop-yes.gif index 8aacb307e89d6..48d74798e3f46 100644 Binary files a/lib/web/extjs/resources/images/default/dd/drop-yes.gif and b/lib/web/extjs/resources/images/default/dd/drop-yes.gif differ diff --git a/lib/web/extjs/resources/images/default/editor/tb-sprite.gif b/lib/web/extjs/resources/images/default/editor/tb-sprite.gif index cea03d4d2a929..874205903d9ba 100644 Binary files a/lib/web/extjs/resources/images/default/editor/tb-sprite.gif and b/lib/web/extjs/resources/images/default/editor/tb-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/form/clear-trigger.gif b/lib/web/extjs/resources/images/default/form/clear-trigger.gif index da78d45b32144..61fec75b55145 100644 Binary files a/lib/web/extjs/resources/images/default/form/clear-trigger.gif and b/lib/web/extjs/resources/images/default/form/clear-trigger.gif differ diff --git a/lib/web/extjs/resources/images/default/form/date-trigger.gif b/lib/web/extjs/resources/images/default/form/date-trigger.gif index e2aedc518b497..3c3fc9007c3d3 100644 Binary files a/lib/web/extjs/resources/images/default/form/date-trigger.gif and b/lib/web/extjs/resources/images/default/form/date-trigger.gif differ diff --git a/lib/web/extjs/resources/images/default/form/error-tip-corners.gif b/lib/web/extjs/resources/images/default/form/error-tip-corners.gif index 6ea4c3838768c..1e0571d42cd28 100644 Binary files a/lib/web/extjs/resources/images/default/form/error-tip-corners.gif and b/lib/web/extjs/resources/images/default/form/error-tip-corners.gif differ diff --git a/lib/web/extjs/resources/images/default/form/exclamation.gif b/lib/web/extjs/resources/images/default/form/exclamation.gif index fabf616f7791a..33500d69fee41 100644 Binary files a/lib/web/extjs/resources/images/default/form/exclamation.gif and b/lib/web/extjs/resources/images/default/form/exclamation.gif differ diff --git a/lib/web/extjs/resources/images/default/form/search-trigger.gif b/lib/web/extjs/resources/images/default/form/search-trigger.gif index db8802beb370d..3f8bca46b0c3b 100644 Binary files a/lib/web/extjs/resources/images/default/form/search-trigger.gif and b/lib/web/extjs/resources/images/default/form/search-trigger.gif differ diff --git a/lib/web/extjs/resources/images/default/form/text-bg.gif b/lib/web/extjs/resources/images/default/form/text-bg.gif index 4179607cc1e94..3a991fe9874fb 100644 Binary files a/lib/web/extjs/resources/images/default/form/text-bg.gif and b/lib/web/extjs/resources/images/default/form/text-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/form/trigger-tpl.gif b/lib/web/extjs/resources/images/default/form/trigger-tpl.gif index e3701a383107e..96b42afa3b48a 100644 Binary files a/lib/web/extjs/resources/images/default/form/trigger-tpl.gif and b/lib/web/extjs/resources/images/default/form/trigger-tpl.gif differ diff --git a/lib/web/extjs/resources/images/default/form/trigger.gif b/lib/web/extjs/resources/images/default/form/trigger.gif index b220bbed3cad3..461cd1e0b76bf 100644 Binary files a/lib/web/extjs/resources/images/default/form/trigger.gif and b/lib/web/extjs/resources/images/default/form/trigger.gif differ diff --git a/lib/web/extjs/resources/images/default/gradient-bg.gif b/lib/web/extjs/resources/images/default/gradient-bg.gif index 8134e4994f2a3..c7a66929406c0 100644 Binary files a/lib/web/extjs/resources/images/default/gradient-bg.gif and b/lib/web/extjs/resources/images/default/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/arrow-left-white.gif b/lib/web/extjs/resources/images/default/grid/arrow-left-white.gif index 63088f56e1c33..fd95035d094c2 100644 Binary files a/lib/web/extjs/resources/images/default/grid/arrow-left-white.gif and b/lib/web/extjs/resources/images/default/grid/arrow-left-white.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/arrow-right-white.gif b/lib/web/extjs/resources/images/default/grid/arrow-right-white.gif index e9e06789044ea..b5243976cffd4 100644 Binary files a/lib/web/extjs/resources/images/default/grid/arrow-right-white.gif and b/lib/web/extjs/resources/images/default/grid/arrow-right-white.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/col-move-bottom.gif b/lib/web/extjs/resources/images/default/grid/col-move-bottom.gif index cc1e473ecc1a4..48371848f3ad1 100644 Binary files a/lib/web/extjs/resources/images/default/grid/col-move-bottom.gif and b/lib/web/extjs/resources/images/default/grid/col-move-bottom.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/col-move-top.gif b/lib/web/extjs/resources/images/default/grid/col-move-top.gif index 58ff32cc8fa2a..6b34b032baca1 100644 Binary files a/lib/web/extjs/resources/images/default/grid/col-move-top.gif and b/lib/web/extjs/resources/images/default/grid/col-move-top.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/dirty.gif b/lib/web/extjs/resources/images/default/grid/dirty.gif index 4f217a4795996..fa56d5ae94dda 100644 Binary files a/lib/web/extjs/resources/images/default/grid/dirty.gif and b/lib/web/extjs/resources/images/default/grid/dirty.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/done.gif b/lib/web/extjs/resources/images/default/grid/done.gif index a937cb22c84a2..b623435f6ce0c 100644 Binary files a/lib/web/extjs/resources/images/default/grid/done.gif and b/lib/web/extjs/resources/images/default/grid/done.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/drop-no.gif b/lib/web/extjs/resources/images/default/grid/drop-no.gif index 31a332bf78624..40e3b2d091957 100644 Binary files a/lib/web/extjs/resources/images/default/grid/drop-no.gif and b/lib/web/extjs/resources/images/default/grid/drop-no.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/drop-yes.gif b/lib/web/extjs/resources/images/default/grid/drop-yes.gif index 926010e172a26..25e9f1fd89b3c 100644 Binary files a/lib/web/extjs/resources/images/default/grid/drop-yes.gif and b/lib/web/extjs/resources/images/default/grid/drop-yes.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/footer-bg.gif b/lib/web/extjs/resources/images/default/grid/footer-bg.gif index 126120f71eef8..1f5849102ce15 100644 Binary files a/lib/web/extjs/resources/images/default/grid/footer-bg.gif and b/lib/web/extjs/resources/images/default/grid/footer-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif b/lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif index 862094e6803f5..5bae37006728a 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif and b/lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid-blue-split.gif b/lib/web/extjs/resources/images/default/grid/grid-blue-split.gif index 5286f58f6f798..3d2c53e3fbae6 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid-blue-split.gif and b/lib/web/extjs/resources/images/default/grid/grid-blue-split.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid-hrow.gif b/lib/web/extjs/resources/images/default/grid/grid-hrow.gif index 6374104207364..c29c2a029a089 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid-hrow.gif and b/lib/web/extjs/resources/images/default/grid/grid-hrow.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid-loading.gif b/lib/web/extjs/resources/images/default/grid/grid-loading.gif index d112c54013e1e..06f773d36fa5f 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid-loading.gif and b/lib/web/extjs/resources/images/default/grid/grid-loading.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid-split.gif b/lib/web/extjs/resources/images/default/grid/grid-split.gif index c76a16e95997a..2b1944a218181 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid-split.gif and b/lib/web/extjs/resources/images/default/grid/grid-split.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif b/lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif index d0972638e8305..3b694ad2d82c8 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif and b/lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif b/lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif index 21126075e7397..a2584fa93da68 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif and b/lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif b/lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif index f9c07af1347fc..aec7da9e3a4f8 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif and b/lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid3-hrow.gif b/lib/web/extjs/resources/images/default/grid/grid3-hrow.gif index 2c9533a17fcc2..bcf5abc9dc807 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid3-hrow.gif and b/lib/web/extjs/resources/images/default/grid/grid3-hrow.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif b/lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif index 0b4d6ca3bf28b..d319bf2e71e51 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif and b/lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif b/lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif index 1dfe9a69eae13..9a4d1a0e9620a 100644 Binary files a/lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif and b/lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/hd-pop.gif b/lib/web/extjs/resources/images/default/grid/hd-pop.gif index eb8ba79679eab..aee8ce90fff7a 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hd-pop.gif and b/lib/web/extjs/resources/images/default/grid/hd-pop.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-asc.gif b/lib/web/extjs/resources/images/default/grid/hmenu-asc.gif index 8917e0eee0cdf..90cf2ef8f34c2 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hmenu-asc.gif and b/lib/web/extjs/resources/images/default/grid/hmenu-asc.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-desc.gif b/lib/web/extjs/resources/images/default/grid/hmenu-desc.gif index f26b7c2fc5836..b94d06b71ee5c 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hmenu-desc.gif and b/lib/web/extjs/resources/images/default/grid/hmenu-desc.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-lock.gif b/lib/web/extjs/resources/images/default/grid/hmenu-lock.gif index 1596126108fd9..9bbdf5ab7b31b 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hmenu-lock.gif and b/lib/web/extjs/resources/images/default/grid/hmenu-lock.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-lock.png b/lib/web/extjs/resources/images/default/grid/hmenu-lock.png index 8b81e7ff28410..dc25572c1775e 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hmenu-lock.png and b/lib/web/extjs/resources/images/default/grid/hmenu-lock.png differ diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif b/lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif index af59cf92a4222..d9c6088f69e27 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif and b/lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-unlock.png b/lib/web/extjs/resources/images/default/grid/hmenu-unlock.png index 9dd5df34b70b9..1da1158e7a686 100644 Binary files a/lib/web/extjs/resources/images/default/grid/hmenu-unlock.png and b/lib/web/extjs/resources/images/default/grid/hmenu-unlock.png differ diff --git a/lib/web/extjs/resources/images/default/grid/invalid_line.gif b/lib/web/extjs/resources/images/default/grid/invalid_line.gif index fb7e0f34d6231..24476f38ecf4c 100644 Binary files a/lib/web/extjs/resources/images/default/grid/invalid_line.gif and b/lib/web/extjs/resources/images/default/grid/invalid_line.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/loading.gif b/lib/web/extjs/resources/images/default/grid/loading.gif index e846e1d6c5879..2d92030529ba5 100644 Binary files a/lib/web/extjs/resources/images/default/grid/loading.gif and b/lib/web/extjs/resources/images/default/grid/loading.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/mso-hd.gif b/lib/web/extjs/resources/images/default/grid/mso-hd.gif index 669f3cf089a61..2b1306928027c 100644 Binary files a/lib/web/extjs/resources/images/default/grid/mso-hd.gif and b/lib/web/extjs/resources/images/default/grid/mso-hd.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/nowait.gif b/lib/web/extjs/resources/images/default/grid/nowait.gif index 4c5862cd554d7..164884b36daf7 100644 Binary files a/lib/web/extjs/resources/images/default/grid/nowait.gif and b/lib/web/extjs/resources/images/default/grid/nowait.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-first-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-first-disabled.gif index 1e02c419f5e73..cd5509597718f 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-first-disabled.gif and b/lib/web/extjs/resources/images/default/grid/page-first-disabled.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-first.gif b/lib/web/extjs/resources/images/default/grid/page-first.gif index d84f41a91fca3..e92a78e0dc823 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-first.gif and b/lib/web/extjs/resources/images/default/grid/page-first.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-last-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-last-disabled.gif index 869706777ce1e..b07f0aeb1b353 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-last-disabled.gif and b/lib/web/extjs/resources/images/default/grid/page-last-disabled.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-last.gif b/lib/web/extjs/resources/images/default/grid/page-last.gif index 3df5c2ba50b14..5fc627dc5b4d2 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-last.gif and b/lib/web/extjs/resources/images/default/grid/page-last.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-next-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-next-disabled.gif index 90a7756f6fd77..c7ac4c326b3ab 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-next-disabled.gif and b/lib/web/extjs/resources/images/default/grid/page-next-disabled.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-next.gif b/lib/web/extjs/resources/images/default/grid/page-next.gif index 9601635301325..b5ba666b39352 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-next.gif and b/lib/web/extjs/resources/images/default/grid/page-next.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif index 37154d62406dd..fa9929e41e0c6 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif and b/lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/page-prev.gif b/lib/web/extjs/resources/images/default/grid/page-prev.gif index eb70cf8f6a3b7..92968789a4b44 100644 Binary files a/lib/web/extjs/resources/images/default/grid/page-prev.gif and b/lib/web/extjs/resources/images/default/grid/page-prev.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/pick-button.gif b/lib/web/extjs/resources/images/default/grid/pick-button.gif index 6957924a8bf01..8dece33010b76 100644 Binary files a/lib/web/extjs/resources/images/default/grid/pick-button.gif and b/lib/web/extjs/resources/images/default/grid/pick-button.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/refresh.gif b/lib/web/extjs/resources/images/default/grid/refresh.gif index 254203b52ee25..36f49ebedbc30 100644 Binary files a/lib/web/extjs/resources/images/default/grid/refresh.gif and b/lib/web/extjs/resources/images/default/grid/refresh.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/row-check-sprite.gif b/lib/web/extjs/resources/images/default/grid/row-check-sprite.gif index 610116465e7e3..856f9e06334c1 100644 Binary files a/lib/web/extjs/resources/images/default/grid/row-check-sprite.gif and b/lib/web/extjs/resources/images/default/grid/row-check-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif b/lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif index 6f4d874f57b16..16f6f3c79b06f 100644 Binary files a/lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif and b/lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/row-over.gif b/lib/web/extjs/resources/images/default/grid/row-over.gif index b288e38739ad9..9ea07d0c11a5a 100644 Binary files a/lib/web/extjs/resources/images/default/grid/row-over.gif and b/lib/web/extjs/resources/images/default/grid/row-over.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/row-sel.gif b/lib/web/extjs/resources/images/default/grid/row-sel.gif index 98209e6e7f1ea..58a1e0983052a 100644 Binary files a/lib/web/extjs/resources/images/default/grid/row-sel.gif and b/lib/web/extjs/resources/images/default/grid/row-sel.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/sort_asc.gif b/lib/web/extjs/resources/images/default/grid/sort_asc.gif index e12e0b6f8edf5..8d71926d7b807 100644 Binary files a/lib/web/extjs/resources/images/default/grid/sort_asc.gif and b/lib/web/extjs/resources/images/default/grid/sort_asc.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/sort_desc.gif b/lib/web/extjs/resources/images/default/grid/sort_desc.gif index b9a69c64e6aa2..76dd531ee31fa 100644 Binary files a/lib/web/extjs/resources/images/default/grid/sort_desc.gif and b/lib/web/extjs/resources/images/default/grid/sort_desc.gif differ diff --git a/lib/web/extjs/resources/images/default/grid/wait.gif b/lib/web/extjs/resources/images/default/grid/wait.gif index 471c1a4f93f2c..37d2b5c70aba4 100644 Binary files a/lib/web/extjs/resources/images/default/grid/wait.gif and b/lib/web/extjs/resources/images/default/grid/wait.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/collapse.gif b/lib/web/extjs/resources/images/default/layout/collapse.gif index d87b0a9ddd133..66f5b738cfc43 100644 Binary files a/lib/web/extjs/resources/images/default/layout/collapse.gif and b/lib/web/extjs/resources/images/default/layout/collapse.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/expand.gif b/lib/web/extjs/resources/images/default/layout/expand.gif index 7b6e1c1ef82bc..ea72ccb6c83fb 100644 Binary files a/lib/web/extjs/resources/images/default/layout/expand.gif and b/lib/web/extjs/resources/images/default/layout/expand.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/gradient-bg.gif b/lib/web/extjs/resources/images/default/layout/gradient-bg.gif index 8134e4994f2a3..c7a66929406c0 100644 Binary files a/lib/web/extjs/resources/images/default/layout/gradient-bg.gif and b/lib/web/extjs/resources/images/default/layout/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/ns-collapse.gif b/lib/web/extjs/resources/images/default/layout/ns-collapse.gif index df2a77e9cc50c..6b4bd894eaf5d 100644 Binary files a/lib/web/extjs/resources/images/default/layout/ns-collapse.gif and b/lib/web/extjs/resources/images/default/layout/ns-collapse.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/ns-expand.gif b/lib/web/extjs/resources/images/default/layout/ns-expand.gif index 77ab9dad29482..f1fef95837f09 100644 Binary files a/lib/web/extjs/resources/images/default/layout/ns-expand.gif and b/lib/web/extjs/resources/images/default/layout/ns-expand.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/panel-close.gif b/lib/web/extjs/resources/images/default/layout/panel-close.gif index 2bdd6239987b9..83ded471c4da1 100644 Binary files a/lib/web/extjs/resources/images/default/layout/panel-close.gif and b/lib/web/extjs/resources/images/default/layout/panel-close.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/default/layout/panel-title-bg.gif index d1daef54c578c..7292d56b0852e 100644 Binary files a/lib/web/extjs/resources/images/default/layout/panel-title-bg.gif and b/lib/web/extjs/resources/images/default/layout/panel-title-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif index 8c2c83d82536f..2b230116bcab5 100644 Binary files a/lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif and b/lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/stick.gif b/lib/web/extjs/resources/images/default/layout/stick.gif index 5a1e8ba19fb5b..2da4d69b73740 100644 Binary files a/lib/web/extjs/resources/images/default/layout/stick.gif and b/lib/web/extjs/resources/images/default/layout/stick.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/stuck.gif b/lib/web/extjs/resources/images/default/layout/stuck.gif index 0a8de4db9d6d2..125ccc4ca536d 100644 Binary files a/lib/web/extjs/resources/images/default/layout/stuck.gif and b/lib/web/extjs/resources/images/default/layout/stuck.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/tab-close-on.gif b/lib/web/extjs/resources/images/default/layout/tab-close-on.gif index eacea39b62334..cc74cc0ff53e5 100644 Binary files a/lib/web/extjs/resources/images/default/layout/tab-close-on.gif and b/lib/web/extjs/resources/images/default/layout/tab-close-on.gif differ diff --git a/lib/web/extjs/resources/images/default/layout/tab-close.gif b/lib/web/extjs/resources/images/default/layout/tab-close.gif index 45db61e6000be..d953d74106546 100644 Binary files a/lib/web/extjs/resources/images/default/layout/tab-close.gif and b/lib/web/extjs/resources/images/default/layout/tab-close.gif differ diff --git a/lib/web/extjs/resources/images/default/menu/checked.gif b/lib/web/extjs/resources/images/default/menu/checked.gif index 091268bfe3763..19475dd385fdb 100644 Binary files a/lib/web/extjs/resources/images/default/menu/checked.gif and b/lib/web/extjs/resources/images/default/menu/checked.gif differ diff --git a/lib/web/extjs/resources/images/default/menu/group-checked.gif b/lib/web/extjs/resources/images/default/menu/group-checked.gif index d30b3e5a8f138..70ff145ebfcea 100644 Binary files a/lib/web/extjs/resources/images/default/menu/group-checked.gif and b/lib/web/extjs/resources/images/default/menu/group-checked.gif differ diff --git a/lib/web/extjs/resources/images/default/menu/menu-parent.gif b/lib/web/extjs/resources/images/default/menu/menu-parent.gif index 1e375622ff951..2e914b1bf3d46 100644 Binary files a/lib/web/extjs/resources/images/default/menu/menu-parent.gif and b/lib/web/extjs/resources/images/default/menu/menu-parent.gif differ diff --git a/lib/web/extjs/resources/images/default/menu/menu.gif b/lib/web/extjs/resources/images/default/menu/menu.gif index e3d7dfaacf852..c0da7b913e25a 100644 Binary files a/lib/web/extjs/resources/images/default/menu/menu.gif and b/lib/web/extjs/resources/images/default/menu/menu.gif differ diff --git a/lib/web/extjs/resources/images/default/menu/unchecked.gif b/lib/web/extjs/resources/images/default/menu/unchecked.gif index 70ba3c49e2029..02eb755e9bbe5 100644 Binary files a/lib/web/extjs/resources/images/default/menu/unchecked.gif and b/lib/web/extjs/resources/images/default/menu/unchecked.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/corners-sprite.gif b/lib/web/extjs/resources/images/default/panel/corners-sprite.gif index c013275f9aed7..07e983a8f9886 100644 Binary files a/lib/web/extjs/resources/images/default/panel/corners-sprite.gif and b/lib/web/extjs/resources/images/default/panel/corners-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/left-right.gif b/lib/web/extjs/resources/images/default/panel/left-right.gif index 5db0cbf563576..ec26b4c3532cd 100644 Binary files a/lib/web/extjs/resources/images/default/panel/left-right.gif and b/lib/web/extjs/resources/images/default/panel/left-right.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif b/lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif index e6478670e37ea..4ad2ea5640c0f 100644 Binary files a/lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif and b/lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/tool-sprites.gif b/lib/web/extjs/resources/images/default/panel/tool-sprites.gif index 5a5d4c78fd9e2..e1af7068d8cc4 100644 Binary files a/lib/web/extjs/resources/images/default/panel/tool-sprites.gif and b/lib/web/extjs/resources/images/default/panel/tool-sprites.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/top-bottom.gif b/lib/web/extjs/resources/images/default/panel/top-bottom.gif index 2485c592a4868..70d409f16256e 100644 Binary files a/lib/web/extjs/resources/images/default/panel/top-bottom.gif and b/lib/web/extjs/resources/images/default/panel/top-bottom.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif b/lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif index 66cc4f1fae285..835eb584beffb 100644 Binary files a/lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif and b/lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/white-left-right.gif b/lib/web/extjs/resources/images/default/panel/white-left-right.gif index d82c33784d106..cbee8cc70e873 100644 Binary files a/lib/web/extjs/resources/images/default/panel/white-left-right.gif and b/lib/web/extjs/resources/images/default/panel/white-left-right.gif differ diff --git a/lib/web/extjs/resources/images/default/panel/white-top-bottom.gif b/lib/web/extjs/resources/images/default/panel/white-top-bottom.gif index fe7dd1c1ebedc..d98b6b21bc390 100644 Binary files a/lib/web/extjs/resources/images/default/panel/white-top-bottom.gif and b/lib/web/extjs/resources/images/default/panel/white-top-bottom.gif differ diff --git a/lib/web/extjs/resources/images/default/qtip/bg.gif b/lib/web/extjs/resources/images/default/qtip/bg.gif index 43488afdbd492..05c859632ae9f 100644 Binary files a/lib/web/extjs/resources/images/default/qtip/bg.gif and b/lib/web/extjs/resources/images/default/qtip/bg.gif differ diff --git a/lib/web/extjs/resources/images/default/qtip/close.gif b/lib/web/extjs/resources/images/default/qtip/close.gif index 69ab915e4dd19..d52dc77d9bc70 100644 Binary files a/lib/web/extjs/resources/images/default/qtip/close.gif and b/lib/web/extjs/resources/images/default/qtip/close.gif differ diff --git a/lib/web/extjs/resources/images/default/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/default/qtip/tip-sprite.gif index 36a5e1df22af8..1e20e45f63014 100644 Binary files a/lib/web/extjs/resources/images/default/qtip/tip-sprite.gif and b/lib/web/extjs/resources/images/default/qtip/tip-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/s.gif b/lib/web/extjs/resources/images/default/s.gif index 1d11fa9ada9e9..18c3624492584 100644 Binary files a/lib/web/extjs/resources/images/default/s.gif and b/lib/web/extjs/resources/images/default/s.gif differ diff --git a/lib/web/extjs/resources/images/default/shadow-c.png b/lib/web/extjs/resources/images/default/shadow-c.png index ffc42bd2982e3..30be92909dcff 100644 Binary files a/lib/web/extjs/resources/images/default/shadow-c.png and b/lib/web/extjs/resources/images/default/shadow-c.png differ diff --git a/lib/web/extjs/resources/images/default/shadow-lr.png b/lib/web/extjs/resources/images/default/shadow-lr.png index bb88b6f2be887..23fcf4ae1763d 100644 Binary files a/lib/web/extjs/resources/images/default/shadow-lr.png and b/lib/web/extjs/resources/images/default/shadow-lr.png differ diff --git a/lib/web/extjs/resources/images/default/shadow.png b/lib/web/extjs/resources/images/default/shadow.png index 75c0eba3e101e..6f59e2dfef169 100644 Binary files a/lib/web/extjs/resources/images/default/shadow.png and b/lib/web/extjs/resources/images/default/shadow.png differ diff --git a/lib/web/extjs/resources/images/default/shared/calendar.gif b/lib/web/extjs/resources/images/default/shared/calendar.gif index 133cf232b243b..d83ce38be89c6 100644 Binary files a/lib/web/extjs/resources/images/default/shared/calendar.gif and b/lib/web/extjs/resources/images/default/shared/calendar.gif differ diff --git a/lib/web/extjs/resources/images/default/shared/glass-bg.gif b/lib/web/extjs/resources/images/default/shared/glass-bg.gif index 26fbbae3bc6d2..507b3b05640d1 100644 Binary files a/lib/web/extjs/resources/images/default/shared/glass-bg.gif and b/lib/web/extjs/resources/images/default/shared/glass-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/shared/left-btn.gif b/lib/web/extjs/resources/images/default/shared/left-btn.gif index a0ddd9ee8203b..635ec571f0882 100644 Binary files a/lib/web/extjs/resources/images/default/shared/left-btn.gif and b/lib/web/extjs/resources/images/default/shared/left-btn.gif differ diff --git a/lib/web/extjs/resources/images/default/shared/right-btn.gif b/lib/web/extjs/resources/images/default/shared/right-btn.gif index dee63e2113fcc..217de27b87bff 100644 Binary files a/lib/web/extjs/resources/images/default/shared/right-btn.gif and b/lib/web/extjs/resources/images/default/shared/right-btn.gif differ diff --git a/lib/web/extjs/resources/images/default/shared/warning.gif b/lib/web/extjs/resources/images/default/shared/warning.gif index 806d4bc09385a..f01eb214eadaf 100644 Binary files a/lib/web/extjs/resources/images/default/shared/warning.gif and b/lib/web/extjs/resources/images/default/shared/warning.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif index b5486c1a95bcc..0c83531f5cc38 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif and b/lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/e-handle.gif b/lib/web/extjs/resources/images/default/sizer/e-handle.gif index 00ba835008517..53927b73d482e 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/e-handle.gif and b/lib/web/extjs/resources/images/default/sizer/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif index 04e5ecf7d3837..5b3ff39d4a370 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif and b/lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/ne-handle.gif b/lib/web/extjs/resources/images/default/sizer/ne-handle.gif index 09405c7ac7b32..c0ed859fbf563 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/ne-handle.gif and b/lib/web/extjs/resources/images/default/sizer/ne-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif index 6e49d6967c08d..c11fb611ac1ef 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif and b/lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/nw-handle.gif b/lib/web/extjs/resources/images/default/sizer/nw-handle.gif index 2fcea8a9285dc..d3e749f18783f 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/nw-handle.gif and b/lib/web/extjs/resources/images/default/sizer/nw-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif index 4eb5f0fccb6d0..0fd88bc8ccd65 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif and b/lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/s-handle.gif b/lib/web/extjs/resources/images/default/sizer/s-handle.gif index bf069c243a3f5..27b316350314e 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/s-handle.gif and b/lib/web/extjs/resources/images/default/sizer/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif index c4c1087868afa..542698cfe27c3 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif and b/lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/se-handle.gif b/lib/web/extjs/resources/images/default/sizer/se-handle.gif index 972055e7b297a..169a4da7c5d10 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/se-handle.gif and b/lib/web/extjs/resources/images/default/sizer/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/square.gif b/lib/web/extjs/resources/images/default/sizer/square.gif index 14ce6f7251071..985fed66ae126 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/square.gif and b/lib/web/extjs/resources/images/default/sizer/square.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif index 77224b0c06f16..c4362348a6176 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif and b/lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/default/sizer/sw-handle.gif b/lib/web/extjs/resources/images/default/sizer/sw-handle.gif index 3ca0ed96df205..7a61d7ed87767 100644 Binary files a/lib/web/extjs/resources/images/default/sizer/sw-handle.gif and b/lib/web/extjs/resources/images/default/sizer/sw-handle.gif differ diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif index 6c1d8f413fab5..3761c7082ed1f 100644 Binary files a/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif and b/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif index 768b0e0b42f0a..3165dcd75760b 100644 Binary files a/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif and b/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif index e36ad2015f109..70473974a8349 100644 Binary files a/lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif and b/lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif index b538273da697f..26b65ba6382f5 100644 Binary files a/lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif and b/lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/default/tabs/tab-sprite.gif index ac89148b64f04..72af34137b63e 100644 Binary files a/lib/web/extjs/resources/images/default/tabs/tab-sprite.gif and b/lib/web/extjs/resources/images/default/tabs/tab-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif b/lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif index b0e24b55e7ee5..2f8a8a111b706 100644 Binary files a/lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif and b/lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif differ diff --git a/lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif b/lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif index 8acb4608d8f76..bcbcf5bfb77d1 100644 Binary files a/lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif and b/lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif differ diff --git a/lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif b/lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif index ee2dd9860c799..e45386dbb28cb 100644 Binary files a/lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif and b/lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/toolbar/gray-bg.gif b/lib/web/extjs/resources/images/default/toolbar/gray-bg.gif index bd49438f33937..1e2f385e4187c 100644 Binary files a/lib/web/extjs/resources/images/default/toolbar/gray-bg.gif and b/lib/web/extjs/resources/images/default/toolbar/gray-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/toolbar/tb-bg.gif b/lib/web/extjs/resources/images/default/toolbar/tb-bg.gif index 4969e4efeb378..bdf54311a3b65 100644 Binary files a/lib/web/extjs/resources/images/default/toolbar/tb-bg.gif and b/lib/web/extjs/resources/images/default/toolbar/tb-bg.gif differ diff --git a/lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif index c33b81f5b01cc..c6299f2a2541e 100644 Binary files a/lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif and b/lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/drop-add.gif b/lib/web/extjs/resources/images/default/tree/drop-add.gif index b22cd1448efa1..2d27631008ec0 100644 Binary files a/lib/web/extjs/resources/images/default/tree/drop-add.gif and b/lib/web/extjs/resources/images/default/tree/drop-add.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/drop-between.gif b/lib/web/extjs/resources/images/default/tree/drop-between.gif index 5c6c09d987cf7..646bb620510d2 100644 Binary files a/lib/web/extjs/resources/images/default/tree/drop-between.gif and b/lib/web/extjs/resources/images/default/tree/drop-between.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/drop-no.gif b/lib/web/extjs/resources/images/default/tree/drop-no.gif index 9d9c6a9ce1307..6d660b366d0a6 100644 Binary files a/lib/web/extjs/resources/images/default/tree/drop-no.gif and b/lib/web/extjs/resources/images/default/tree/drop-no.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/drop-over.gif b/lib/web/extjs/resources/images/default/tree/drop-over.gif index 30d1ca7107816..a7333c0e6a4a1 100644 Binary files a/lib/web/extjs/resources/images/default/tree/drop-over.gif and b/lib/web/extjs/resources/images/default/tree/drop-over.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/drop-under.gif b/lib/web/extjs/resources/images/default/tree/drop-under.gif index 85f66b1e584ae..13d6aab3e2ad0 100644 Binary files a/lib/web/extjs/resources/images/default/tree/drop-under.gif and b/lib/web/extjs/resources/images/default/tree/drop-under.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/drop-yes.gif b/lib/web/extjs/resources/images/default/tree/drop-yes.gif index 8aacb307e89d6..48d74798e3f46 100644 Binary files a/lib/web/extjs/resources/images/default/tree/drop-yes.gif and b/lib/web/extjs/resources/images/default/tree/drop-yes.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif index 928779e92361a..325d3f35b93b7 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif and b/lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif index 9a8d727d70ff5..ca9fb4ed778b1 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif and b/lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif index 9f7f69880f48d..112679dea603c 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif and b/lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif index 5943a01bcd390..7af2fa71b6ecd 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif and b/lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end.gif b/lib/web/extjs/resources/images/default/tree/elbow-end.gif index f24ddee799cce..3d45129a46e6d 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-end.gif and b/lib/web/extjs/resources/images/default/tree/elbow-end.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-line.gif b/lib/web/extjs/resources/images/default/tree/elbow-line.gif index 75e6da4f8eab0..f6a0ad13983ba 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-line.gif and b/lib/web/extjs/resources/images/default/tree/elbow-line.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif index 928779e92361a..325d3f35b93b7 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif and b/lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-minus.gif b/lib/web/extjs/resources/images/default/tree/elbow-minus.gif index 97dcc7110f13c..240b324bd39fe 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-minus.gif and b/lib/web/extjs/resources/images/default/tree/elbow-minus.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif index 9f7f69880f48d..112679dea603c 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif and b/lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow-plus.gif b/lib/web/extjs/resources/images/default/tree/elbow-plus.gif index 698de4793c59b..0a91fafb3aaf2 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow-plus.gif and b/lib/web/extjs/resources/images/default/tree/elbow-plus.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/elbow.gif b/lib/web/extjs/resources/images/default/tree/elbow.gif index b8f42083895bb..452356d2b3591 100644 Binary files a/lib/web/extjs/resources/images/default/tree/elbow.gif and b/lib/web/extjs/resources/images/default/tree/elbow.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/folder-open.gif b/lib/web/extjs/resources/images/default/tree/folder-open.gif index 56ba737bcc773..8b94266dc26d7 100644 Binary files a/lib/web/extjs/resources/images/default/tree/folder-open.gif and b/lib/web/extjs/resources/images/default/tree/folder-open.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/folder.gif b/lib/web/extjs/resources/images/default/tree/folder.gif index 20412f7c1ba83..36fe8dc39d4c6 100644 Binary files a/lib/web/extjs/resources/images/default/tree/folder.gif and b/lib/web/extjs/resources/images/default/tree/folder.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/leaf.gif b/lib/web/extjs/resources/images/default/tree/leaf.gif index 445769d3f863f..10cd19cf5ba81 100644 Binary files a/lib/web/extjs/resources/images/default/tree/leaf.gif and b/lib/web/extjs/resources/images/default/tree/leaf.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/loading.gif b/lib/web/extjs/resources/images/default/tree/loading.gif index e846e1d6c5879..2d92030529ba5 100644 Binary files a/lib/web/extjs/resources/images/default/tree/loading.gif and b/lib/web/extjs/resources/images/default/tree/loading.gif differ diff --git a/lib/web/extjs/resources/images/default/tree/s.gif b/lib/web/extjs/resources/images/default/tree/s.gif index 1d11fa9ada9e9..18c3624492584 100644 Binary files a/lib/web/extjs/resources/images/default/tree/s.gif and b/lib/web/extjs/resources/images/default/tree/s.gif differ diff --git a/lib/web/extjs/resources/images/default/window/corners-sprite.gif b/lib/web/extjs/resources/images/default/window/corners-sprite.gif index 1039c4dacb553..08db1f1c481dd 100644 Binary files a/lib/web/extjs/resources/images/default/window/corners-sprite.gif and b/lib/web/extjs/resources/images/default/window/corners-sprite.gif differ diff --git a/lib/web/extjs/resources/images/default/window/left-right.gif b/lib/web/extjs/resources/images/default/window/left-right.gif index 150aad8c5996c..762c42ce0d007 100644 Binary files a/lib/web/extjs/resources/images/default/window/left-right.gif and b/lib/web/extjs/resources/images/default/window/left-right.gif differ diff --git a/lib/web/extjs/resources/images/default/window/top-bottom.gif b/lib/web/extjs/resources/images/default/window/top-bottom.gif index f7adcd726c22a..5d49fe953aa50 100644 Binary files a/lib/web/extjs/resources/images/default/window/top-bottom.gif and b/lib/web/extjs/resources/images/default/window/top-bottom.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif index 694afddf85f21..36aa0e559375e 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif index 9f59edc05fca4..fcfdc30f4da92 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif index a3824fecf31c6..efedb75492309 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif index 7dfee399cee38..09fec561bed2f 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif index 48877e748d8fd..aaa302fced4a7 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif index 5d5e973770461..97d18505dd73a 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif index e03b6d05e69a6..908e5dbd1a3f4 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif index e50a355bd33ea..3fd1590d15e4c 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif index 2f84f7330f8ce..a12e71e57867e 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif index c13c9cdc05617..98ed102c15904 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif index c4e38a2f4b416..5276013110f87 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif index b9e2f563a037e..771f360eb5f71 100644 Binary files a/lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif and b/lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif b/lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif index c78fafd7406e8..162269e76466b 100644 Binary files a/lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif and b/lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/form/date-trigger.gif b/lib/web/extjs/resources/images/galdaka/form/date-trigger.gif index 49b65f4746054..6ee9084aa2cd3 100644 Binary files a/lib/web/extjs/resources/images/galdaka/form/date-trigger.gif and b/lib/web/extjs/resources/images/galdaka/form/date-trigger.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/form/trigger.gif b/lib/web/extjs/resources/images/galdaka/form/trigger.gif index 7368aa050f73e..9e43a3e402a7d 100644 Binary files a/lib/web/extjs/resources/images/galdaka/form/trigger.gif and b/lib/web/extjs/resources/images/galdaka/form/trigger.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif b/lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif index fe1d949025fcf..b85fc87f80c71 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif and b/lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif b/lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif index 5dfd3ed350ab4..60fc80a4c5ab9 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif and b/lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/done.gif b/lib/web/extjs/resources/images/galdaka/grid/done.gif index a937cb22c84a2..b623435f6ce0c 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/done.gif and b/lib/web/extjs/resources/images/galdaka/grid/done.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif b/lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif index ab3192be19f8e..b6d7f19d4748e 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif and b/lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif b/lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif index 241452a2b7279..c26b55446a562 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif and b/lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/loading.gif b/lib/web/extjs/resources/images/galdaka/grid/loading.gif index e846e1d6c5879..2d92030529ba5 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/loading.gif and b/lib/web/extjs/resources/images/galdaka/grid/loading.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-first.gif b/lib/web/extjs/resources/images/galdaka/grid/page-first.gif index 43fb37a0011f5..7aee5588ac9a7 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/page-first.gif and b/lib/web/extjs/resources/images/galdaka/grid/page-first.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-last.gif b/lib/web/extjs/resources/images/galdaka/grid/page-last.gif index 9ca489e84777d..ae45599713873 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/page-last.gif and b/lib/web/extjs/resources/images/galdaka/grid/page-last.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-next.gif b/lib/web/extjs/resources/images/galdaka/grid/page-next.gif index d2cc3096e4739..aad90d58c1014 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/page-next.gif and b/lib/web/extjs/resources/images/galdaka/grid/page-next.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-prev.gif b/lib/web/extjs/resources/images/galdaka/grid/page-prev.gif index 53b659ec66a72..7fd23da187fee 100644 Binary files a/lib/web/extjs/resources/images/galdaka/grid/page-prev.gif and b/lib/web/extjs/resources/images/galdaka/grid/page-prev.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/collapse.gif b/lib/web/extjs/resources/images/galdaka/layout/collapse.gif index 4664031c3040e..0a67ecb6912e2 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/collapse.gif and b/lib/web/extjs/resources/images/galdaka/layout/collapse.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/e-handle.gif b/lib/web/extjs/resources/images/galdaka/layout/e-handle.gif index 48877e748d8fd..aaa302fced4a7 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/e-handle.gif and b/lib/web/extjs/resources/images/galdaka/layout/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/expand.gif b/lib/web/extjs/resources/images/galdaka/layout/expand.gif index c9d1b9d7f83da..935d7b39c14a7 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/expand.gif and b/lib/web/extjs/resources/images/galdaka/layout/expand.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif b/lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif index e50a355bd33ea..3fd1590d15e4c 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif and b/lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif b/lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif index 2ecc8793e6152..31a18abe17de6 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif and b/lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif b/lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif index ce32350632fda..2edc50fab8b29 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif and b/lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/panel-close.gif b/lib/web/extjs/resources/images/galdaka/layout/panel-close.gif index 84fc9a6bdeade..d84c1e78c2060 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/panel-close.gif and b/lib/web/extjs/resources/images/galdaka/layout/panel-close.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif index 033db8e76d167..b31f6adce7076 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif and b/lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/s-handle.gif b/lib/web/extjs/resources/images/galdaka/layout/s-handle.gif index c13c9cdc05617..98ed102c15904 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/s-handle.gif and b/lib/web/extjs/resources/images/galdaka/layout/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/stick.gif b/lib/web/extjs/resources/images/galdaka/layout/stick.gif index 60189792c7e0b..98a97bb1b1577 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/stick.gif and b/lib/web/extjs/resources/images/galdaka/layout/stick.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif b/lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif index 1d8f0a9973b62..fbedd413bed2e 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif and b/lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/layout/tab-close.gif b/lib/web/extjs/resources/images/galdaka/layout/tab-close.gif index c59bb2e2d6fec..e8bae2a065329 100644 Binary files a/lib/web/extjs/resources/images/galdaka/layout/tab-close.gif and b/lib/web/extjs/resources/images/galdaka/layout/tab-close.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/menu/checked.gif b/lib/web/extjs/resources/images/galdaka/menu/checked.gif index 85b2afb238868..4435959304e2a 100644 Binary files a/lib/web/extjs/resources/images/galdaka/menu/checked.gif and b/lib/web/extjs/resources/images/galdaka/menu/checked.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/menu/group-checked.gif b/lib/web/extjs/resources/images/galdaka/menu/group-checked.gif index 5f8ccf30a319b..900a6245f1cd6 100644 Binary files a/lib/web/extjs/resources/images/galdaka/menu/group-checked.gif and b/lib/web/extjs/resources/images/galdaka/menu/group-checked.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif b/lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif index 6672c4e926e21..f49c26ea0169e 100644 Binary files a/lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif and b/lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/menu/menu.gif b/lib/web/extjs/resources/images/galdaka/menu/menu.gif index cca964422649d..c4997f529bd72 100644 Binary files a/lib/web/extjs/resources/images/galdaka/menu/menu.gif and b/lib/web/extjs/resources/images/galdaka/menu/menu.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/menu/unchecked.gif b/lib/web/extjs/resources/images/galdaka/menu/unchecked.gif index 4e7ea8ea21068..7934ce39cb487 100644 Binary files a/lib/web/extjs/resources/images/galdaka/menu/unchecked.gif and b/lib/web/extjs/resources/images/galdaka/menu/unchecked.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif index d1812ef6c7125..b847108cc0440 100644 Binary files a/lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif and b/lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/shared/left-btn.gif b/lib/web/extjs/resources/images/galdaka/shared/left-btn.gif index 929b3339570f7..efa80f70f13ad 100644 Binary files a/lib/web/extjs/resources/images/galdaka/shared/left-btn.gif and b/lib/web/extjs/resources/images/galdaka/shared/left-btn.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/shared/right-btn.gif b/lib/web/extjs/resources/images/galdaka/shared/right-btn.gif index 1832f3940c776..4787a3114dd1c 100644 Binary files a/lib/web/extjs/resources/images/galdaka/shared/right-btn.gif and b/lib/web/extjs/resources/images/galdaka/shared/right-btn.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif index 942ae825357eb..95070e5177354 100644 Binary files a/lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif and b/lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif index d39b0c38d8994..e4dca4e5e70f9 100644 Binary files a/lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif and b/lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif index c13c9cdc05617..98ed102c15904 100644 Binary files a/lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif and b/lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif index c4e38a2f4b416..5276013110f87 100644 Binary files a/lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif and b/lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif index b9e2f563a037e..771f360eb5f71 100644 Binary files a/lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif and b/lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif index 6b58ddbf67968..e4374cc3832d0 100644 Binary files a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif and b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif index d899deec649f1..90a6f0fda8228 100644 Binary files a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif and b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif index b254367d6ffe9..27c1d56098bd8 100644 Binary files a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif and b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif index c40c9a27208a4..44c5d2c21f99d 100644 Binary files a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif and b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif index ea76e8b2d14a3..051d83901ac4a 100644 Binary files a/lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif and b/lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif b/lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif index c7e88edec5535..4c97e7de7d7f9 100644 Binary files a/lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif and b/lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif b/lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif index bf4157e302706..456916ddd801a 100644 Binary files a/lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif and b/lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif b/lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif index 679ebacd48f83..62cb8411360ca 100644 Binary files a/lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif and b/lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif differ diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif index 5b485c8405260..b381539142973 100644 Binary files a/lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif and b/lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/close.gif b/lib/web/extjs/resources/images/gray/basic-dialog/close.gif index 116234711fa71..0e4677474cfa3 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/close.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/close.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif index 25eb1b3f69a35..cc270c62cca85 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif b/lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif index 1a466633d70ca..877dc5cd6e66d 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif index 48877e748d8fd..aaa302fced4a7 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/expand.gif b/lib/web/extjs/resources/images/gray/basic-dialog/expand.gif index 3f41ed152ab60..58dc68989fd29 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/expand.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/expand.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif index 2f84f7330f8ce..a12e71e57867e 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif index c13c9cdc05617..98ed102c15904 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif index c4e38a2f4b416..5276013110f87 100644 Binary files a/lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif and b/lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/gradient-bg.gif b/lib/web/extjs/resources/images/gray/gradient-bg.gif index 8134e4994f2a3..c7a66929406c0 100644 Binary files a/lib/web/extjs/resources/images/gray/gradient-bg.gif and b/lib/web/extjs/resources/images/gray/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/grid/grid-hrow.gif b/lib/web/extjs/resources/images/gray/grid/grid-hrow.gif index a263abb03f646..d1e180ca47962 100644 Binary files a/lib/web/extjs/resources/images/gray/grid/grid-hrow.gif and b/lib/web/extjs/resources/images/gray/grid/grid-hrow.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/collapse.gif b/lib/web/extjs/resources/images/gray/layout/collapse.gif index 6273b43dfe2fa..00fb014eae7d4 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/collapse.gif and b/lib/web/extjs/resources/images/gray/layout/collapse.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/expand.gif b/lib/web/extjs/resources/images/gray/layout/expand.gif index 2bcf242ce2701..c5a38260bb517 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/expand.gif and b/lib/web/extjs/resources/images/gray/layout/expand.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/gradient-bg.gif b/lib/web/extjs/resources/images/gray/layout/gradient-bg.gif index d311e7de678b9..412dc54a40597 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/gradient-bg.gif and b/lib/web/extjs/resources/images/gray/layout/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/ns-collapse.gif b/lib/web/extjs/resources/images/gray/layout/ns-collapse.gif index c567131a0cf0b..a8713f8aadfa7 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/ns-collapse.gif and b/lib/web/extjs/resources/images/gray/layout/ns-collapse.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/ns-expand.gif b/lib/web/extjs/resources/images/gray/layout/ns-expand.gif index bf967e7480ec3..0aacc29b31b83 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/ns-expand.gif and b/lib/web/extjs/resources/images/gray/layout/ns-expand.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/panel-close.gif b/lib/web/extjs/resources/images/gray/layout/panel-close.gif index 4e96481a1fdb1..9c1fb8040aa3d 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/panel-close.gif and b/lib/web/extjs/resources/images/gray/layout/panel-close.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif index d1daef54c578c..7292d56b0852e 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif and b/lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif index a9187e347597b..b27fc5bc0559e 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif and b/lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/stick.gif b/lib/web/extjs/resources/images/gray/layout/stick.gif index afcc2bf0af8d9..2eda3a0f1a7fe 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/stick.gif and b/lib/web/extjs/resources/images/gray/layout/stick.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/tab-close-on.gif b/lib/web/extjs/resources/images/gray/layout/tab-close-on.gif index 556e905b11cdd..ff0213f7f2536 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/tab-close-on.gif and b/lib/web/extjs/resources/images/gray/layout/tab-close-on.gif differ diff --git a/lib/web/extjs/resources/images/gray/layout/tab-close.gif b/lib/web/extjs/resources/images/gray/layout/tab-close.gif index 45db61e6000be..d953d74106546 100644 Binary files a/lib/web/extjs/resources/images/gray/layout/tab-close.gif and b/lib/web/extjs/resources/images/gray/layout/tab-close.gif differ diff --git a/lib/web/extjs/resources/images/gray/menu/checked.gif b/lib/web/extjs/resources/images/gray/menu/checked.gif index 091268bfe3763..19475dd385fdb 100644 Binary files a/lib/web/extjs/resources/images/gray/menu/checked.gif and b/lib/web/extjs/resources/images/gray/menu/checked.gif differ diff --git a/lib/web/extjs/resources/images/gray/menu/group-checked.gif b/lib/web/extjs/resources/images/gray/menu/group-checked.gif index d30b3e5a8f138..70ff145ebfcea 100644 Binary files a/lib/web/extjs/resources/images/gray/menu/group-checked.gif and b/lib/web/extjs/resources/images/gray/menu/group-checked.gif differ diff --git a/lib/web/extjs/resources/images/gray/menu/menu-parent.gif b/lib/web/extjs/resources/images/gray/menu/menu-parent.gif index 7e1378a8081c5..131d6386033e3 100644 Binary files a/lib/web/extjs/resources/images/gray/menu/menu-parent.gif and b/lib/web/extjs/resources/images/gray/menu/menu-parent.gif differ diff --git a/lib/web/extjs/resources/images/gray/menu/menu.gif b/lib/web/extjs/resources/images/gray/menu/menu.gif index 3e12a1d80449d..8ddc26f69f25c 100644 Binary files a/lib/web/extjs/resources/images/gray/menu/menu.gif and b/lib/web/extjs/resources/images/gray/menu/menu.gif differ diff --git a/lib/web/extjs/resources/images/gray/menu/unchecked.gif b/lib/web/extjs/resources/images/gray/menu/unchecked.gif index 70ba3c49e2029..02eb755e9bbe5 100644 Binary files a/lib/web/extjs/resources/images/gray/menu/unchecked.gif and b/lib/web/extjs/resources/images/gray/menu/unchecked.gif differ diff --git a/lib/web/extjs/resources/images/gray/qtip/bg.gif b/lib/web/extjs/resources/images/gray/qtip/bg.gif index 5c0e8c92a810d..adecdba6ef109 100644 Binary files a/lib/web/extjs/resources/images/gray/qtip/bg.gif and b/lib/web/extjs/resources/images/gray/qtip/bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif index 82cae7571bf89..e3acd261f6540 100644 Binary files a/lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif and b/lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif differ diff --git a/lib/web/extjs/resources/images/gray/s.gif b/lib/web/extjs/resources/images/gray/s.gif index 1d11fa9ada9e9..18c3624492584 100644 Binary files a/lib/web/extjs/resources/images/gray/s.gif and b/lib/web/extjs/resources/images/gray/s.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif index eac9662eade56..9bbc15671fbfd 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif and b/lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/e-handle.gif b/lib/web/extjs/resources/images/gray/sizer/e-handle.gif index f2c9f538243ec..e55ca760d3869 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/e-handle.gif and b/lib/web/extjs/resources/images/gray/sizer/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif index c9c041c45f673..407410a0782a9 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif and b/lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/ne-handle.gif b/lib/web/extjs/resources/images/gray/sizer/ne-handle.gif index 942ae825357eb..95070e5177354 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/ne-handle.gif and b/lib/web/extjs/resources/images/gray/sizer/ne-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif index 23fced98bfa4e..9b581cfd3ea16 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif and b/lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/nw-handle.gif b/lib/web/extjs/resources/images/gray/sizer/nw-handle.gif index d39b0c38d8994..e4dca4e5e70f9 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/nw-handle.gif and b/lib/web/extjs/resources/images/gray/sizer/nw-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif index ddc2e18ce48da..5a96b7b8ed076 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif and b/lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/s-handle.gif b/lib/web/extjs/resources/images/gray/sizer/s-handle.gif index 827c3330a989b..3c630e9892e7d 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/s-handle.gif and b/lib/web/extjs/resources/images/gray/sizer/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif index 1a678e67fd6ed..df88fd56d347a 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif and b/lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/se-handle.gif b/lib/web/extjs/resources/images/gray/sizer/se-handle.gif index 69b5a9ed5b134..aa8fb6e184d0e 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/se-handle.gif and b/lib/web/extjs/resources/images/gray/sizer/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif index 937102c6b23e5..e88ccc100c28d 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif and b/lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/gray/sizer/sw-handle.gif b/lib/web/extjs/resources/images/gray/sizer/sw-handle.gif index b9e2f563a037e..771f360eb5f71 100644 Binary files a/lib/web/extjs/resources/images/gray/sizer/sw-handle.gif and b/lib/web/extjs/resources/images/gray/sizer/sw-handle.gif differ diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif index c8f7aca92b086..bdf1b0b8bb2b8 100644 Binary files a/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif and b/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif index b3f3dcbc0418f..539d015161a90 100644 Binary files a/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif and b/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif index ae47e170c594f..475e1a849a635 100644 Binary files a/lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif and b/lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif index bd70cbcded73f..5e68ebc89d2a1 100644 Binary files a/lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif and b/lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif index db15aee5678e9..f1473b4a87f47 100644 Binary files a/lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif and b/lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif differ diff --git a/lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif b/lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif index bd49438f33937..1e2f385e4187c 100644 Binary files a/lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif and b/lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif differ diff --git a/lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif index bd56f88ec1f82..cc3f295bd7b0a 100644 Binary files a/lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif and b/lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif index 9261ab74f823d..66b44d5ab0926 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif index 116431c500d5a..d3c6cf6d8ecec 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif index 5cc808d9ec34b..8d79619f34074 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/expand.gif b/lib/web/extjs/resources/images/magento/basic-dialog/expand.gif index 718e7e5b40237..152b8b4c960b5 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/expand.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/expand.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif index 96c2330a7dd61..66beef2c991a6 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif index 2ca894adbb9af..5fee11a277206 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif index 28600cec8e46a..3f4ca368e0e9a 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif index e0aaac1f11898..7c12f0a90b5f9 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif index 3e5c165bb9b42..9de52292cee62 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif b/lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif index fb2653a3d566e..98fcd3f54fb6a 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif b/lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif index ca8723f9d1c5a..cb8f8c140ebbf 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif differ diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif b/lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif index 20f63b2c1107f..25ad1b5f24452 100644 Binary files a/lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif and b/lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif differ diff --git a/lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif b/lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif index 2d4f2f08068f2..b5f9508c07330 100644 Binary files a/lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif and b/lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif differ diff --git a/lib/web/extjs/resources/images/magento/grid/grid-split.gif b/lib/web/extjs/resources/images/magento/grid/grid-split.gif index 42b7d4381a935..b3a8b254be519 100644 Binary files a/lib/web/extjs/resources/images/magento/grid/grid-split.gif and b/lib/web/extjs/resources/images/magento/grid/grid-split.gif differ diff --git a/lib/web/extjs/resources/images/magento/layout/checkered-bg.gif b/lib/web/extjs/resources/images/magento/layout/checkered-bg.gif index fbcf7a6f2addd..4363d305d4a1b 100644 Binary files a/lib/web/extjs/resources/images/magento/layout/checkered-bg.gif and b/lib/web/extjs/resources/images/magento/layout/checkered-bg.gif differ diff --git a/lib/web/extjs/resources/images/magento/layout/icon-catalog.gif b/lib/web/extjs/resources/images/magento/layout/icon-catalog.gif index 489b70b6edb32..720841efee541 100644 Binary files a/lib/web/extjs/resources/images/magento/layout/icon-catalog.gif and b/lib/web/extjs/resources/images/magento/layout/icon-catalog.gif differ diff --git a/lib/web/extjs/resources/images/magento/layout/icon-category.gif b/lib/web/extjs/resources/images/magento/layout/icon-category.gif index ac7ad6d7e929a..e98ff794a4336 100644 Binary files a/lib/web/extjs/resources/images/magento/layout/icon-category.gif and b/lib/web/extjs/resources/images/magento/layout/icon-category.gif differ diff --git a/lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif b/lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif index d160b8c81efec..bf0ef508fcb94 100644 Binary files a/lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif and b/lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif differ diff --git a/lib/web/extjs/resources/images/magento/layout/icon-product.gif b/lib/web/extjs/resources/images/magento/layout/icon-product.gif index 179dd4c83e386..0abd2685dffa9 100644 Binary files a/lib/web/extjs/resources/images/magento/layout/icon-product.gif and b/lib/web/extjs/resources/images/magento/layout/icon-product.gif differ diff --git a/lib/web/extjs/resources/images/magento/loading_bg.gif b/lib/web/extjs/resources/images/magento/loading_bg.gif index 1593929b9fe81..c7998441af654 100644 Binary files a/lib/web/extjs/resources/images/magento/loading_bg.gif and b/lib/web/extjs/resources/images/magento/loading_bg.gif differ diff --git a/lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif index 55ea08046c511..0571cfae02659 100644 Binary files a/lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif and b/lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif differ diff --git a/lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif b/lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif index 0d2d2aacbbf7b..5832e8cb03da3 100644 Binary files a/lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif and b/lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif differ diff --git a/lib/web/extjs/resources/images/magento/toolbar/header_bg.gif b/lib/web/extjs/resources/images/magento/toolbar/header_bg.gif index 9d1e5d89ea1da..b4e9d11623db6 100644 Binary files a/lib/web/extjs/resources/images/magento/toolbar/header_bg.gif and b/lib/web/extjs/resources/images/magento/toolbar/header_bg.gif differ diff --git a/lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif b/lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif index 32c0ad91d0674..a7269d6816954 100644 Binary files a/lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif and b/lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif index b0ee9ed129fd5..9d5efaaf77c53 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif index fffcde9f70463..c25e8686b5afa 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif index b0ee9ed129fd5..9d5efaaf77c53 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif index bf4311c7b98af..b538fc1e54170 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end.gif index 7cf667a5227b9..eb3d7bb3c0c5e 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-end.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-end.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-line.gif b/lib/web/extjs/resources/images/magento/tree/elbow-line.gif index 0709423fcf698..9396301cfc1aa 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-line.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-line.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif index f62b7c5e0834f..6629b558f0b79 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-minus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-minus.gif index 7daf594597a4a..3be537bd8a985 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-minus.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-minus.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif index 31e8cd140e14f..ac4a1342f0dfe 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-plus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-plus.gif index 8c91262c201b1..c2c6ffdd079bd 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow-plus.gif and b/lib/web/extjs/resources/images/magento/tree/elbow-plus.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/elbow.gif b/lib/web/extjs/resources/images/magento/tree/elbow.gif index cb769ea31954f..f2ece34402010 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/elbow.gif and b/lib/web/extjs/resources/images/magento/tree/elbow.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/folder-open.gif b/lib/web/extjs/resources/images/magento/tree/folder-open.gif index 193ac35c86a0e..969920570a033 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/folder-open.gif and b/lib/web/extjs/resources/images/magento/tree/folder-open.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/folder.gif b/lib/web/extjs/resources/images/magento/tree/folder.gif index 94abaa7783f3b..86f3ee755a344 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/folder.gif and b/lib/web/extjs/resources/images/magento/tree/folder.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/leaf.gif b/lib/web/extjs/resources/images/magento/tree/leaf.gif index 193ac35c86a0e..969920570a033 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/leaf.gif and b/lib/web/extjs/resources/images/magento/tree/leaf.gif differ diff --git a/lib/web/extjs/resources/images/magento/tree/s.gif b/lib/web/extjs/resources/images/magento/tree/s.gif index 5bfd67a2d6f72..5040ca0fc12a0 100644 Binary files a/lib/web/extjs/resources/images/magento/tree/s.gif and b/lib/web/extjs/resources/images/magento/tree/s.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif b/lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif index 7bf4a4b41d57c..612c25b2cc7cd 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif b/lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif index 94b1dafc7d708..7aaaa39f378e6 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif b/lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif index 6dadaf683e0cb..d15e78eb39491 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/close.gif b/lib/web/extjs/resources/images/vista/basic-dialog/close.gif index 4278db9835cf5..6eb59dea1c25c 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/close.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/close.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif index b07e297e5c643..5e360055f7102 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif b/lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif index 1a466633d70ca..877dc5cd6e66d 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif index 48877e748d8fd..aaa302fced4a7 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/expand.gif b/lib/web/extjs/resources/images/vista/basic-dialog/expand.gif index 5b4b0d1e950e3..aff55f7c1f24d 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/expand.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/expand.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif index 3c2dd632dd60f..c71904e9c2240 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif index c13c9cdc05617..98ed102c15904 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif index c4e38a2f4b416..5276013110f87 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif index d59eafc2076a5..da16b74b4ee1d 100644 Binary files a/lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif and b/lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/gradient-bg.gif b/lib/web/extjs/resources/images/vista/gradient-bg.gif index 8134e4994f2a3..c7a66929406c0 100644 Binary files a/lib/web/extjs/resources/images/vista/gradient-bg.gif and b/lib/web/extjs/resources/images/vista/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/grid/grid-split.gif b/lib/web/extjs/resources/images/vista/grid/grid-split.gif index c76a16e95997a..2b1944a218181 100644 Binary files a/lib/web/extjs/resources/images/vista/grid/grid-split.gif and b/lib/web/extjs/resources/images/vista/grid/grid-split.gif differ diff --git a/lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif b/lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif index d0972638e8305..3b694ad2d82c8 100644 Binary files a/lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif and b/lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/collapse.gif b/lib/web/extjs/resources/images/vista/layout/collapse.gif index cbd6e081cf7a2..7cc6c017fdf30 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/collapse.gif and b/lib/web/extjs/resources/images/vista/layout/collapse.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/expand.gif b/lib/web/extjs/resources/images/vista/layout/expand.gif index 8103c0dd7bee8..6c001d2c94321 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/expand.gif and b/lib/web/extjs/resources/images/vista/layout/expand.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/gradient-bg.gif b/lib/web/extjs/resources/images/vista/layout/gradient-bg.gif index d311e7de678b9..412dc54a40597 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/gradient-bg.gif and b/lib/web/extjs/resources/images/vista/layout/gradient-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/ns-collapse.gif b/lib/web/extjs/resources/images/vista/layout/ns-collapse.gif index f2ad235dad390..e4d169101e590 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/ns-collapse.gif and b/lib/web/extjs/resources/images/vista/layout/ns-collapse.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/ns-expand.gif b/lib/web/extjs/resources/images/vista/layout/ns-expand.gif index 0817ec66fd410..ba634992d09d7 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/ns-expand.gif and b/lib/web/extjs/resources/images/vista/layout/ns-expand.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/panel-close.gif b/lib/web/extjs/resources/images/vista/layout/panel-close.gif index 4e96481a1fdb1..9c1fb8040aa3d 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/panel-close.gif and b/lib/web/extjs/resources/images/vista/layout/panel-close.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif index 681f517a3c2e7..fe6974cf69eda 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif and b/lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif index 23d8288b0d350..0a71ca848d8c0 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif and b/lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/stick.gif b/lib/web/extjs/resources/images/vista/layout/stick.gif index 7db68eec95fc7..47f2446e52870 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/stick.gif and b/lib/web/extjs/resources/images/vista/layout/stick.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/tab-close-on.gif b/lib/web/extjs/resources/images/vista/layout/tab-close-on.gif index 556e905b11cdd..ff0213f7f2536 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/tab-close-on.gif and b/lib/web/extjs/resources/images/vista/layout/tab-close-on.gif differ diff --git a/lib/web/extjs/resources/images/vista/layout/tab-close.gif b/lib/web/extjs/resources/images/vista/layout/tab-close.gif index 0a6f0198775da..7d6c9b3bbe1a8 100644 Binary files a/lib/web/extjs/resources/images/vista/layout/tab-close.gif and b/lib/web/extjs/resources/images/vista/layout/tab-close.gif differ diff --git a/lib/web/extjs/resources/images/vista/qtip/bg.gif b/lib/web/extjs/resources/images/vista/qtip/bg.gif index 5c0e8c92a810d..adecdba6ef109 100644 Binary files a/lib/web/extjs/resources/images/vista/qtip/bg.gif and b/lib/web/extjs/resources/images/vista/qtip/bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif index a1862865d59fd..57c0c78261e41 100644 Binary files a/lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif and b/lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif differ diff --git a/lib/web/extjs/resources/images/vista/s.gif b/lib/web/extjs/resources/images/vista/s.gif index 1d11fa9ada9e9..18c3624492584 100644 Binary files a/lib/web/extjs/resources/images/vista/s.gif and b/lib/web/extjs/resources/images/vista/s.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif index eac9662eade56..9bbc15671fbfd 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif and b/lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/e-handle.gif b/lib/web/extjs/resources/images/vista/sizer/e-handle.gif index f2c9f538243ec..e55ca760d3869 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/e-handle.gif and b/lib/web/extjs/resources/images/vista/sizer/e-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif index c9c041c45f673..407410a0782a9 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif and b/lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/ne-handle.gif b/lib/web/extjs/resources/images/vista/sizer/ne-handle.gif index 942ae825357eb..95070e5177354 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/ne-handle.gif and b/lib/web/extjs/resources/images/vista/sizer/ne-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif index 23fced98bfa4e..9b581cfd3ea16 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif and b/lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/nw-handle.gif b/lib/web/extjs/resources/images/vista/sizer/nw-handle.gif index d39b0c38d8994..e4dca4e5e70f9 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/nw-handle.gif and b/lib/web/extjs/resources/images/vista/sizer/nw-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif index ddc2e18ce48da..5a96b7b8ed076 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif and b/lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/s-handle.gif b/lib/web/extjs/resources/images/vista/sizer/s-handle.gif index 827c3330a989b..3c630e9892e7d 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/s-handle.gif and b/lib/web/extjs/resources/images/vista/sizer/s-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif index 1a678e67fd6ed..df88fd56d347a 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif and b/lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/se-handle.gif b/lib/web/extjs/resources/images/vista/sizer/se-handle.gif index 69b5a9ed5b134..aa8fb6e184d0e 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/se-handle.gif and b/lib/web/extjs/resources/images/vista/sizer/se-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif index 937102c6b23e5..e88ccc100c28d 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif and b/lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif differ diff --git a/lib/web/extjs/resources/images/vista/sizer/sw-handle.gif b/lib/web/extjs/resources/images/vista/sizer/sw-handle.gif index b9e2f563a037e..771f360eb5f71 100644 Binary files a/lib/web/extjs/resources/images/vista/sizer/sw-handle.gif and b/lib/web/extjs/resources/images/vista/sizer/sw-handle.gif differ diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif index 667beeb3268f5..b49b749295bd3 100644 Binary files a/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif and b/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif index 6c4e0a45f9e1e..b42282a1a87c4 100644 Binary files a/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif and b/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif index 1d81e54e1043f..1391297782b34 100644 Binary files a/lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif and b/lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif index 47d0050029849..237774d59b8b5 100644 Binary files a/lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif and b/lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif index a16eedb822c1d..369421e412019 100644 Binary files a/lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif and b/lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif differ diff --git a/lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif b/lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif index 9af15c262563f..a9e14d607f26a 100644 Binary files a/lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif and b/lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif differ diff --git a/lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif index f21b0d612a2e7..7c8415fc19fc7 100644 Binary files a/lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif and b/lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif differ diff --git a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg index 26dd7b7fecd3d..d92883dcfa582 100644 --- a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg +++ b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg @@ -1,50 +1 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.eot b/lib/web/fonts/MUI-Icons/MUI-Icons.eot new file mode 100644 index 0000000000000..47cc307843c7f Binary files /dev/null and b/lib/web/fonts/MUI-Icons/MUI-Icons.eot differ diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.svg b/lib/web/fonts/MUI-Icons/MUI-Icons.svg new file mode 100644 index 0000000000000..dddb55583c550 --- /dev/null +++ b/lib/web/fonts/MUI-Icons/MUI-Icons.svg @@ -0,0 +1,706 @@ + + + + +This is a custom SVG font generated by IcoMoon. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.ttf b/lib/web/fonts/MUI-Icons/MUI-Icons.ttf new file mode 100644 index 0000000000000..533d70c5251f8 Binary files /dev/null and b/lib/web/fonts/MUI-Icons/MUI-Icons.ttf differ diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.woff b/lib/web/fonts/MUI-Icons/MUI-Icons.woff new file mode 100644 index 0000000000000..ac34e46dfd2b3 Binary files /dev/null and b/lib/web/fonts/MUI-Icons/MUI-Icons.woff differ diff --git a/lib/web/fonts/UX-Icons/UX-Icons.eot b/lib/web/fonts/UX-Icons/UX-Icons.eot new file mode 100644 index 0000000000000..296bf3c19aa1f Binary files /dev/null and b/lib/web/fonts/UX-Icons/UX-Icons.eot differ diff --git a/lib/web/fonts/UX-Icons/UX-Icons.svg b/lib/web/fonts/UX-Icons/UX-Icons.svg new file mode 100644 index 0000000000000..85a68c310325e --- /dev/null +++ b/lib/web/fonts/UX-Icons/UX-Icons.svg @@ -0,0 +1,68 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/web/fonts/UX-Icons/UX-Icons.ttf b/lib/web/fonts/UX-Icons/UX-Icons.ttf new file mode 100644 index 0000000000000..1eba05243a164 Binary files /dev/null and b/lib/web/fonts/UX-Icons/UX-Icons.ttf differ diff --git a/lib/web/fonts/UX-Icons/UX-Icons.woff b/lib/web/fonts/UX-Icons/UX-Icons.woff new file mode 100644 index 0000000000000..ab2be97b76d45 Binary files /dev/null and b/lib/web/fonts/UX-Icons/UX-Icons.woff differ diff --git a/lib/web/fonts/opensans/bold/opensans-700.svg b/lib/web/fonts/opensans/bold/opensans-700.svg index 3ed7be4bc5b29..9ece857021152 100644 --- a/lib/web/fonts/opensans/bold/opensans-700.svg +++ b/lib/web/fonts/opensans/bold/opensans-700.svg @@ -1,1830 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/lib/web/fonts/opensans/light/opensans-300.svg b/lib/web/fonts/opensans/light/opensans-300.svg index 11a472ca8a511..efddfe75be637 100644 --- a/lib/web/fonts/opensans/light/opensans-300.svg +++ b/lib/web/fonts/opensans/light/opensans-300.svg @@ -1,1831 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/lib/web/fonts/opensans/regular/opensans-400.svg b/lib/web/fonts/opensans/regular/opensans-400.svg index 25a3952340fc7..3a4a57d6f20a8 100644 --- a/lib/web/fonts/opensans/regular/opensans-400.svg +++ b/lib/web/fonts/opensans/regular/opensans-400.svg @@ -1,1831 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/lib/web/fonts/opensans/semibold/opensans-600.svg b/lib/web/fonts/opensans/semibold/opensans-600.svg index eec4db8bd793f..d3e4516be5727 100644 --- a/lib/web/fonts/opensans/semibold/opensans-600.svg +++ b/lib/web/fonts/opensans/semibold/opensans-600.svg @@ -1,1830 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/lib/web/images/bkg_gallery_thumbs.png b/lib/web/images/bkg_gallery_thumbs.png index 58cc5f1084813..452569a7d0e72 100644 Binary files a/lib/web/images/bkg_gallery_thumbs.png and b/lib/web/images/bkg_gallery_thumbs.png differ diff --git a/lib/web/images/blank-theme-icons.png b/lib/web/images/blank-theme-icons.png index a48bd8bb8ae0e..eb2205587f1f3 100644 Binary files a/lib/web/images/blank-theme-icons.png and b/lib/web/images/blank-theme-icons.png differ diff --git a/lib/web/images/btn_remove.gif b/lib/web/images/btn_remove.gif deleted file mode 100644 index 28b1f7e30e1ba..0000000000000 Binary files a/lib/web/images/btn_remove.gif and /dev/null differ diff --git a/lib/web/images/btn_window_close.gif b/lib/web/images/btn_window_close.gif deleted file mode 100644 index 18aced2020b28..0000000000000 Binary files a/lib/web/images/btn_window_close.gif and /dev/null differ diff --git a/lib/web/images/debug_bkg.png b/lib/web/images/debug_bkg.png index 224cec53bd61e..7cc7b7f94c026 100644 Binary files a/lib/web/images/debug_bkg.png and b/lib/web/images/debug_bkg.png differ diff --git a/lib/web/images/loader-1.gif b/lib/web/images/loader-1.gif index d9bb3c55f66d4..1612bcee36660 100644 Binary files a/lib/web/images/loader-1.gif and b/lib/web/images/loader-1.gif differ diff --git a/lib/web/images/loader-2.gif b/lib/web/images/loader-2.gif index de0531e1a5c9a..362e2455f4be8 100644 Binary files a/lib/web/images/loader-2.gif and b/lib/web/images/loader-2.gif differ diff --git a/lib/web/images/logo-admin.svg b/lib/web/images/logo-admin.svg new file mode 100644 index 0000000000000..804295191f437 --- /dev/null +++ b/lib/web/images/logo-admin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/lib/web/images/logo.gif b/lib/web/images/logo.gif deleted file mode 100644 index 67290d90d2c73..0000000000000 Binary files a/lib/web/images/logo.gif and /dev/null differ diff --git a/lib/web/images/logo.svg b/lib/web/images/logo.svg index 6288bb0c10ee7..0bcad31bf5851 100644 --- a/lib/web/images/logo.svg +++ b/lib/web/images/logo.svg @@ -1,128 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/lib/web/images/logo_print.gif b/lib/web/images/logo_print.gif deleted file mode 100644 index a4d941679e111..0000000000000 Binary files a/lib/web/images/logo_print.gif and /dev/null differ diff --git a/lib/web/images/opc-ajax-loader.gif b/lib/web/images/opc-ajax-loader.gif deleted file mode 100644 index 3d37d4393c360..0000000000000 Binary files a/lib/web/images/opc-ajax-loader.gif and /dev/null differ diff --git a/lib/web/images/pager_arrow_left.gif b/lib/web/images/pager_arrow_left.gif deleted file mode 100644 index 179871aff27b6..0000000000000 Binary files a/lib/web/images/pager_arrow_left.gif and /dev/null differ diff --git a/lib/web/images/pager_arrow_right.gif b/lib/web/images/pager_arrow_right.gif deleted file mode 100644 index 5dff444a2b9db..0000000000000 Binary files a/lib/web/images/pager_arrow_right.gif and /dev/null differ diff --git a/lib/web/images/spacer.gif b/lib/web/images/spacer.gif index 5bfd67a2d6f72..5040ca0fc12a0 100644 Binary files a/lib/web/images/spacer.gif and b/lib/web/images/spacer.gif differ diff --git a/lib/web/images/sprite-gallery.png b/lib/web/images/sprite-gallery.png index 72667c47259db..880981bbcf3c0 100644 Binary files a/lib/web/images/sprite-gallery.png and b/lib/web/images/sprite-gallery.png differ diff --git a/lib/web/images/sprite-gallery.svg b/lib/web/images/sprite-gallery.svg index 631e05a8ca716..506e057a79585 100644 --- a/lib/web/images/sprite-gallery.svg +++ b/lib/web/images/sprite-gallery.svg @@ -1,24 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/lib/web/jquery/fileUploader/img/loading.gif b/lib/web/jquery/fileUploader/img/loading.gif index 90f28cbdbb390..b5b7869359e88 100644 Binary files a/lib/web/jquery/fileUploader/img/loading.gif and b/lib/web/jquery/fileUploader/img/loading.gif differ diff --git a/lib/web/jquery/fileUploader/img/progressbar.gif b/lib/web/jquery/fileUploader/img/progressbar.gif index fbcce6bc9abfc..201e911443de1 100644 Binary files a/lib/web/jquery/fileUploader/img/progressbar.gif and b/lib/web/jquery/fileUploader/img/progressbar.gif differ diff --git a/lib/web/jquery/jstree/themes/apple/d.png b/lib/web/jquery/jstree/themes/apple/d.png index 2463ba6df91e1..b19838c7d53ae 100644 Binary files a/lib/web/jquery/jstree/themes/apple/d.png and b/lib/web/jquery/jstree/themes/apple/d.png differ diff --git a/lib/web/jquery/jstree/themes/apple/dot_for_ie.gif b/lib/web/jquery/jstree/themes/apple/dot_for_ie.gif index c0cc5fda7cfb9..df177e5812eac 100644 Binary files a/lib/web/jquery/jstree/themes/apple/dot_for_ie.gif and b/lib/web/jquery/jstree/themes/apple/dot_for_ie.gif differ diff --git a/lib/web/jquery/jstree/themes/apple/throbber.gif b/lib/web/jquery/jstree/themes/apple/throbber.gif index 5b33f7e54f4e5..82d06cc97f0b9 100644 Binary files a/lib/web/jquery/jstree/themes/apple/throbber.gif and b/lib/web/jquery/jstree/themes/apple/throbber.gif differ diff --git a/lib/web/jquery/jstree/themes/classic/d.gif b/lib/web/jquery/jstree/themes/classic/d.gif index 6eb0004ce3544..5cfbea2b5d8de 100644 Binary files a/lib/web/jquery/jstree/themes/classic/d.gif and b/lib/web/jquery/jstree/themes/classic/d.gif differ diff --git a/lib/web/jquery/jstree/themes/classic/d.png b/lib/web/jquery/jstree/themes/classic/d.png index 275daeca2d6ae..27bb8b4c45f80 100644 Binary files a/lib/web/jquery/jstree/themes/classic/d.png and b/lib/web/jquery/jstree/themes/classic/d.png differ diff --git a/lib/web/jquery/jstree/themes/classic/dot_for_ie.gif b/lib/web/jquery/jstree/themes/classic/dot_for_ie.gif index c0cc5fda7cfb9..df177e5812eac 100644 Binary files a/lib/web/jquery/jstree/themes/classic/dot_for_ie.gif and b/lib/web/jquery/jstree/themes/classic/dot_for_ie.gif differ diff --git a/lib/web/jquery/jstree/themes/classic/throbber.gif b/lib/web/jquery/jstree/themes/classic/throbber.gif index 5b33f7e54f4e5..82d06cc97f0b9 100644 Binary files a/lib/web/jquery/jstree/themes/classic/throbber.gif and b/lib/web/jquery/jstree/themes/classic/throbber.gif differ diff --git a/lib/web/jquery/jstree/themes/default-rtl/d.gif b/lib/web/jquery/jstree/themes/default-rtl/d.gif index d85aba049b5c4..0276c823dda73 100644 Binary files a/lib/web/jquery/jstree/themes/default-rtl/d.gif and b/lib/web/jquery/jstree/themes/default-rtl/d.gif differ diff --git a/lib/web/jquery/jstree/themes/default-rtl/d.png b/lib/web/jquery/jstree/themes/default-rtl/d.png index 5179cf64e4adc..04e2ad8a7aee6 100644 Binary files a/lib/web/jquery/jstree/themes/default-rtl/d.png and b/lib/web/jquery/jstree/themes/default-rtl/d.png differ diff --git a/lib/web/jquery/jstree/themes/default-rtl/dots.gif b/lib/web/jquery/jstree/themes/default-rtl/dots.gif index 00433648c0769..1cf84c0542937 100644 Binary files a/lib/web/jquery/jstree/themes/default-rtl/dots.gif and b/lib/web/jquery/jstree/themes/default-rtl/dots.gif differ diff --git a/lib/web/jquery/jstree/themes/default-rtl/throbber.gif b/lib/web/jquery/jstree/themes/default-rtl/throbber.gif index 5b33f7e54f4e5..82d06cc97f0b9 100644 Binary files a/lib/web/jquery/jstree/themes/default-rtl/throbber.gif and b/lib/web/jquery/jstree/themes/default-rtl/throbber.gif differ diff --git a/lib/web/jquery/jstree/themes/default/d.gif b/lib/web/jquery/jstree/themes/default/d.gif index 0e958d38716d9..16cc63e318c8d 100644 Binary files a/lib/web/jquery/jstree/themes/default/d.gif and b/lib/web/jquery/jstree/themes/default/d.gif differ diff --git a/lib/web/jquery/jstree/themes/default/d.png b/lib/web/jquery/jstree/themes/default/d.png index 8540175a04b0c..9b365e319e771 100644 Binary files a/lib/web/jquery/jstree/themes/default/d.png and b/lib/web/jquery/jstree/themes/default/d.png differ diff --git a/lib/web/jquery/jstree/themes/default/throbber.gif b/lib/web/jquery/jstree/themes/default/throbber.gif index 5b33f7e54f4e5..82d06cc97f0b9 100644 Binary files a/lib/web/jquery/jstree/themes/default/throbber.gif and b/lib/web/jquery/jstree/themes/default/throbber.gif differ diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif index 9139c542903cd..4eaaec11f9a2a 100644 Binary files a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif and b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif differ diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif index 943374bb61e56..7f0df57f83b8d 100644 Binary files a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif and b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif differ diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css index e1620507a30ee..6afc4a5fafe80 100644 --- a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css +++ b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css @@ -5,12 +5,12 @@ /* Browse */ a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} +a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.png) -860px 0; border:1px solid #FFF; margin-left:1px;} .mceOldBoxModel a.browse span {width:22px; height:20px;} a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} +a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.png) -840px 0; margin-left:2px;} .mceOldBoxModel a.pickcolor span {width:21px; height:17px;} a.pickcolor:hover span {background-color:#B2BBD0;} a.pickcolor:hover span.disabled {} diff --git a/lib/web/mage/gallery.less b/lib/web/mage/gallery.less index 6135f33d594b3..9aee7a0f5ba5e 100644 --- a/lib/web/mage/gallery.less +++ b/lib/web/mage/gallery.less @@ -4,7 +4,6 @@ * Copyright © 2015 Magento. All rights reserved. * See COPYING.txt for license details. */ -@baseDir: "../"; //default @gallery-sprite-svg: '../images/sprite-gallery.svg'; @gallery-sprite-png: '../images/sprite-gallery.png'; @gallery-lightbox-offset: 20px; diff --git a/lib/web/prototype/windows/themes/alert/bottom.gif b/lib/web/prototype/windows/themes/alert/bottom.gif index 9870f5224ab4a..cebb26d41e386 100644 Binary files a/lib/web/prototype/windows/themes/alert/bottom.gif and b/lib/web/prototype/windows/themes/alert/bottom.gif differ diff --git a/lib/web/prototype/windows/themes/alert/bottom_left.gif b/lib/web/prototype/windows/themes/alert/bottom_left.gif index 583f113faf446..cdfd351125d10 100644 Binary files a/lib/web/prototype/windows/themes/alert/bottom_left.gif and b/lib/web/prototype/windows/themes/alert/bottom_left.gif differ diff --git a/lib/web/prototype/windows/themes/alert/bottom_right.gif b/lib/web/prototype/windows/themes/alert/bottom_right.gif index 230ba12bedb5e..aeb1802dd737f 100644 Binary files a/lib/web/prototype/windows/themes/alert/bottom_right.gif and b/lib/web/prototype/windows/themes/alert/bottom_right.gif differ diff --git a/lib/web/prototype/windows/themes/alert/left.gif b/lib/web/prototype/windows/themes/alert/left.gif index 4a3fab520239d..573dd2a0d74c4 100644 Binary files a/lib/web/prototype/windows/themes/alert/left.gif and b/lib/web/prototype/windows/themes/alert/left.gif differ diff --git a/lib/web/prototype/windows/themes/alert/overlay.png b/lib/web/prototype/windows/themes/alert/overlay.png index 2f3344e5cbba8..9dd8296d46e95 100644 Binary files a/lib/web/prototype/windows/themes/alert/overlay.png and b/lib/web/prototype/windows/themes/alert/overlay.png differ diff --git a/lib/web/prototype/windows/themes/alert/progress.gif b/lib/web/prototype/windows/themes/alert/progress.gif index 529e72f45a239..f9989658953f9 100644 Binary files a/lib/web/prototype/windows/themes/alert/progress.gif and b/lib/web/prototype/windows/themes/alert/progress.gif differ diff --git a/lib/web/prototype/windows/themes/alert/right.gif b/lib/web/prototype/windows/themes/alert/right.gif index 85ba9e2a56a93..02fc50ea317cd 100644 Binary files a/lib/web/prototype/windows/themes/alert/right.gif and b/lib/web/prototype/windows/themes/alert/right.gif differ diff --git a/lib/web/prototype/windows/themes/alert/top.gif b/lib/web/prototype/windows/themes/alert/top.gif index 8f6193664b77e..e4a2285fbca38 100644 Binary files a/lib/web/prototype/windows/themes/alert/top.gif and b/lib/web/prototype/windows/themes/alert/top.gif differ diff --git a/lib/web/prototype/windows/themes/alert/top_left.gif b/lib/web/prototype/windows/themes/alert/top_left.gif index fabb33a189bcf..f3fcb92a25b2f 100644 Binary files a/lib/web/prototype/windows/themes/alert/top_left.gif and b/lib/web/prototype/windows/themes/alert/top_left.gif differ diff --git a/lib/web/prototype/windows/themes/alert/top_right.gif b/lib/web/prototype/windows/themes/alert/top_right.gif index 9fec6fa2b3464..812b479ef1797 100644 Binary files a/lib/web/prototype/windows/themes/alert/top_right.gif and b/lib/web/prototype/windows/themes/alert/top_right.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif b/lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif index 531acdc513d06..06b1ec870553a 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif and b/lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/bottom-middle.gif b/lib/web/prototype/windows/themes/alphacube/bottom-middle.gif index d4ce3be02ce72..aa676bd5a3e3a 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/bottom-middle.gif and b/lib/web/prototype/windows/themes/alphacube/bottom-middle.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif b/lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif index 2164c22c14414..4ea5f7e0e36df 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif and b/lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/button-close-focus.gif b/lib/web/prototype/windows/themes/alphacube/button-close-focus.gif index 99f635c102c7e..03930bdfc2a2a 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/button-close-focus.gif and b/lib/web/prototype/windows/themes/alphacube/button-close-focus.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/button-max-focus.gif b/lib/web/prototype/windows/themes/alphacube/button-max-focus.gif index 1708a1e0d159d..698d38e9f2c6f 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/button-max-focus.gif and b/lib/web/prototype/windows/themes/alphacube/button-max-focus.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/button-min-focus.gif b/lib/web/prototype/windows/themes/alphacube/button-min-focus.gif index ff69d1b20f4dc..1c4169567d20d 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/button-min-focus.gif and b/lib/web/prototype/windows/themes/alphacube/button-min-focus.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/frame-left.gif b/lib/web/prototype/windows/themes/alphacube/frame-left.gif index 543f13db6634b..70b79b420ff1e 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/frame-left.gif and b/lib/web/prototype/windows/themes/alphacube/frame-left.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/frame-right.gif b/lib/web/prototype/windows/themes/alphacube/frame-right.gif index 5d7afef939b7a..7e92d6c35b444 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/frame-right.gif and b/lib/web/prototype/windows/themes/alphacube/frame-right.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/left-top.gif b/lib/web/prototype/windows/themes/alphacube/left-top.gif index 8373aaae17fe7..d2983fb786c1e 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/left-top.gif and b/lib/web/prototype/windows/themes/alphacube/left-top.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/right-top.gif b/lib/web/prototype/windows/themes/alphacube/right-top.gif index 77cf65ef8686b..eae0859504999 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/right-top.gif and b/lib/web/prototype/windows/themes/alphacube/right-top.gif differ diff --git a/lib/web/prototype/windows/themes/alphacube/top-middle.gif b/lib/web/prototype/windows/themes/alphacube/top-middle.gif index 9cab17d53de3e..b1238e516133f 100644 Binary files a/lib/web/prototype/windows/themes/alphacube/top-middle.gif and b/lib/web/prototype/windows/themes/alphacube/top-middle.gif differ diff --git a/lib/web/prototype/windows/themes/darkX/button-close-focused.png b/lib/web/prototype/windows/themes/darkX/button-close-focused.png index da5a8ac439054..84cf52bfa4e4c 100644 Binary files a/lib/web/prototype/windows/themes/darkX/button-close-focused.png and b/lib/web/prototype/windows/themes/darkX/button-close-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/button-maximize-focused.png b/lib/web/prototype/windows/themes/darkX/button-maximize-focused.png index b0bd9cd6f4163..f4b81d00d952f 100644 Binary files a/lib/web/prototype/windows/themes/darkX/button-maximize-focused.png and b/lib/web/prototype/windows/themes/darkX/button-maximize-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/button-minimize-focused.png b/lib/web/prototype/windows/themes/darkX/button-minimize-focused.png index b04e18f59b928..d01a32a8c4d33 100644 Binary files a/lib/web/prototype/windows/themes/darkX/button-minimize-focused.png and b/lib/web/prototype/windows/themes/darkX/button-minimize-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png b/lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png index 7d89f7b0ae9b9..5f8ce3458c4a8 100644 Binary files a/lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png and b/lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png b/lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png index e50eacccc7ba5..5f8ce3458c4a8 100644 Binary files a/lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png and b/lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png b/lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png index 8915659116ed3..5f8ce3458c4a8 100644 Binary files a/lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png and b/lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/frame-left-focused.png b/lib/web/prototype/windows/themes/darkX/frame-left-focused.png index ff9f336f25e5e..a4ff23cf90685 100644 Binary files a/lib/web/prototype/windows/themes/darkX/frame-left-focused.png and b/lib/web/prototype/windows/themes/darkX/frame-left-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/frame-right-focused.png b/lib/web/prototype/windows/themes/darkX/frame-right-focused.png index f69ea0069125b..33de9c897ec9b 100644 Binary files a/lib/web/prototype/windows/themes/darkX/frame-right-focused.png and b/lib/web/prototype/windows/themes/darkX/frame-right-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png b/lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png index 1436e8410c845..b97818191f1ec 100644 Binary files a/lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png and b/lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png b/lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png index f7be50b145588..039e6d6143a45 100644 Binary files a/lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png and b/lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png differ diff --git a/lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png b/lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png index ae23785d4b7c7..b97818191f1ec 100644 Binary files a/lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png and b/lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png differ diff --git a/lib/web/prototype/windows/themes/default/bottom_left.gif b/lib/web/prototype/windows/themes/default/bottom_left.gif index 4c73d3563531b..e6d1d4fa7b187 100644 Binary files a/lib/web/prototype/windows/themes/default/bottom_left.gif and b/lib/web/prototype/windows/themes/default/bottom_left.gif differ diff --git a/lib/web/prototype/windows/themes/default/bottom_mid.gif b/lib/web/prototype/windows/themes/default/bottom_mid.gif index 9205d30190bae..50d8f11a498c1 100644 Binary files a/lib/web/prototype/windows/themes/default/bottom_mid.gif and b/lib/web/prototype/windows/themes/default/bottom_mid.gif differ diff --git a/lib/web/prototype/windows/themes/default/bottom_right.gif b/lib/web/prototype/windows/themes/default/bottom_right.gif index 8d002eeb82f27..c2a6cc5fef56a 100644 Binary files a/lib/web/prototype/windows/themes/default/bottom_right.gif and b/lib/web/prototype/windows/themes/default/bottom_right.gif differ diff --git a/lib/web/prototype/windows/themes/default/bottom_right_resize.gif b/lib/web/prototype/windows/themes/default/bottom_right_resize.gif index 649b0d870dd13..6313f1f5f3979 100644 Binary files a/lib/web/prototype/windows/themes/default/bottom_right_resize.gif and b/lib/web/prototype/windows/themes/default/bottom_right_resize.gif differ diff --git a/lib/web/prototype/windows/themes/default/center_left.gif b/lib/web/prototype/windows/themes/default/center_left.gif index 79e7a1cca6473..10735e65f5f8a 100644 Binary files a/lib/web/prototype/windows/themes/default/center_left.gif and b/lib/web/prototype/windows/themes/default/center_left.gif differ diff --git a/lib/web/prototype/windows/themes/default/center_right.gif b/lib/web/prototype/windows/themes/default/center_right.gif index 554c55c864eef..521ce13fa5ffa 100644 Binary files a/lib/web/prototype/windows/themes/default/center_right.gif and b/lib/web/prototype/windows/themes/default/center_right.gif differ diff --git a/lib/web/prototype/windows/themes/default/clear.gif b/lib/web/prototype/windows/themes/default/clear.gif index c10b166944c33..93c7eab14f512 100644 Binary files a/lib/web/prototype/windows/themes/default/clear.gif and b/lib/web/prototype/windows/themes/default/clear.gif differ diff --git a/lib/web/prototype/windows/themes/default/close.gif b/lib/web/prototype/windows/themes/default/close.gif index 31ef5a3948ae1..0ab8a53c1712c 100644 Binary files a/lib/web/prototype/windows/themes/default/close.gif and b/lib/web/prototype/windows/themes/default/close.gif differ diff --git a/lib/web/prototype/windows/themes/default/inspect.gif b/lib/web/prototype/windows/themes/default/inspect.gif index ebeeb02f69202..3e456d59dfba5 100644 Binary files a/lib/web/prototype/windows/themes/default/inspect.gif and b/lib/web/prototype/windows/themes/default/inspect.gif differ diff --git a/lib/web/prototype/windows/themes/default/maximize.gif b/lib/web/prototype/windows/themes/default/maximize.gif index 892a0f08c9f8a..beedb34f4a273 100644 Binary files a/lib/web/prototype/windows/themes/default/maximize.gif and b/lib/web/prototype/windows/themes/default/maximize.gif differ diff --git a/lib/web/prototype/windows/themes/default/minimize.gif b/lib/web/prototype/windows/themes/default/minimize.gif index a7214167b7edb..dc3cbcb267bf9 100644 Binary files a/lib/web/prototype/windows/themes/default/minimize.gif and b/lib/web/prototype/windows/themes/default/minimize.gif differ diff --git a/lib/web/prototype/windows/themes/default/overlay.png b/lib/web/prototype/windows/themes/default/overlay.png index 648e71ed69046..df58435f06b22 100644 Binary files a/lib/web/prototype/windows/themes/default/overlay.png and b/lib/web/prototype/windows/themes/default/overlay.png differ diff --git a/lib/web/prototype/windows/themes/default/resize.gif b/lib/web/prototype/windows/themes/default/resize.gif index c44070259c4be..9f02be71ffe6e 100644 Binary files a/lib/web/prototype/windows/themes/default/resize.gif and b/lib/web/prototype/windows/themes/default/resize.gif differ diff --git a/lib/web/prototype/windows/themes/default/sizer.gif b/lib/web/prototype/windows/themes/default/sizer.gif index 649b0d870dd13..6313f1f5f3979 100644 Binary files a/lib/web/prototype/windows/themes/default/sizer.gif and b/lib/web/prototype/windows/themes/default/sizer.gif differ diff --git a/lib/web/prototype/windows/themes/default/top_left.gif b/lib/web/prototype/windows/themes/default/top_left.gif index 774538ac6abb2..5e9e84614f8d5 100644 Binary files a/lib/web/prototype/windows/themes/default/top_left.gif and b/lib/web/prototype/windows/themes/default/top_left.gif differ diff --git a/lib/web/prototype/windows/themes/default/top_mid.gif b/lib/web/prototype/windows/themes/default/top_mid.gif index 6124e78bd3b4a..b858ac2ed117c 100644 Binary files a/lib/web/prototype/windows/themes/default/top_mid.gif and b/lib/web/prototype/windows/themes/default/top_mid.gif differ diff --git a/lib/web/prototype/windows/themes/default/top_right.gif b/lib/web/prototype/windows/themes/default/top_right.gif index fbc94bf2b9452..12becda292bd2 100644 Binary files a/lib/web/prototype/windows/themes/default/top_right.gif and b/lib/web/prototype/windows/themes/default/top_right.gif differ diff --git a/lib/web/prototype/windows/themes/iefix/blank.gif b/lib/web/prototype/windows/themes/iefix/blank.gif index 75b945d255384..5040ca0fc12a0 100644 Binary files a/lib/web/prototype/windows/themes/iefix/blank.gif and b/lib/web/prototype/windows/themes/iefix/blank.gif differ diff --git a/lib/web/prototype/windows/themes/lighting/background_buttons.gif b/lib/web/prototype/windows/themes/lighting/background_buttons.gif index 2fa58b29f8a9e..b28f2330027d2 100644 Binary files a/lib/web/prototype/windows/themes/lighting/background_buttons.gif and b/lib/web/prototype/windows/themes/lighting/background_buttons.gif differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-blue.png b/lib/web/prototype/windows/themes/lighting/bottom-left-blue.png index 4592c19be174d..f912256622cf3 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-left-blue.png and b/lib/web/prototype/windows/themes/lighting/bottom-left-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png b/lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png index ce238f125861a..020425f976adc 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png and b/lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-green.png b/lib/web/prototype/windows/themes/lighting/bottom-left-green.png index 38f9e9e3472d3..e59590706acca 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-left-green.png and b/lib/web/prototype/windows/themes/lighting/bottom-left-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-grey.png b/lib/web/prototype/windows/themes/lighting/bottom-left-grey.png index 2ace75e1b7863..c4d58160b7f25 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-left-grey.png and b/lib/web/prototype/windows/themes/lighting/bottom-left-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png index 439bcaa1d1c62..19a37108a0168 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png and b/lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png index 3fae972a1b2b2..16fca0633777e 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png and b/lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-green.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-green.png index 89a732f665e23..37268592a20be 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-middle-green.png and b/lib/web/prototype/windows/themes/lighting/bottom-middle-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png index 52bfee0de5159..72a83177be123 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png and b/lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-blue.png b/lib/web/prototype/windows/themes/lighting/bottom-right-blue.png index dffb75f08484b..671f2579c5de4 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-right-blue.png and b/lib/web/prototype/windows/themes/lighting/bottom-right-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png b/lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png index 62a4d8b8a14dc..c1fd8ae1b29ea 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png and b/lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-green.png b/lib/web/prototype/windows/themes/lighting/bottom-right-green.png index 4aee20fc60562..51839468c9a92 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-right-green.png and b/lib/web/prototype/windows/themes/lighting/bottom-right-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-grey.png b/lib/web/prototype/windows/themes/lighting/bottom-right-grey.png index caa27fe13f97b..95a00a278162e 100644 Binary files a/lib/web/prototype/windows/themes/lighting/bottom-right-grey.png and b/lib/web/prototype/windows/themes/lighting/bottom-right-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-close-blue.png b/lib/web/prototype/windows/themes/lighting/button-close-blue.png index 523e0dbc21595..d5a195c43ffa6 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-close-blue.png and b/lib/web/prototype/windows/themes/lighting/button-close-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-close-darkblue.png b/lib/web/prototype/windows/themes/lighting/button-close-darkblue.png index a7b8daa89c298..9164b807fac60 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-close-darkblue.png and b/lib/web/prototype/windows/themes/lighting/button-close-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-close-green.png b/lib/web/prototype/windows/themes/lighting/button-close-green.png index 63f755b6c781d..9fe569c267c2a 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-close-green.png and b/lib/web/prototype/windows/themes/lighting/button-close-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-close-grey.png b/lib/web/prototype/windows/themes/lighting/button-close-grey.png index 0c5375f4276b1..1856f2ed9334a 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-close-grey.png and b/lib/web/prototype/windows/themes/lighting/button-close-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-blue.png b/lib/web/prototype/windows/themes/lighting/button-maximize-blue.png index 2cdf404cf7f80..c5dc71d475e42 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-maximize-blue.png and b/lib/web/prototype/windows/themes/lighting/button-maximize-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png b/lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png index 4ef5758faa77f..be92274678704 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png and b/lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-green.png b/lib/web/prototype/windows/themes/lighting/button-maximize-green.png index d4c1e578742f7..b2af75bba9cb6 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-maximize-green.png and b/lib/web/prototype/windows/themes/lighting/button-maximize-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-grey.png b/lib/web/prototype/windows/themes/lighting/button-maximize-grey.png index 35da0e0fceb7a..5417cef90a96e 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-maximize-grey.png and b/lib/web/prototype/windows/themes/lighting/button-maximize-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-blue.png b/lib/web/prototype/windows/themes/lighting/button-minimize-blue.png index 92db9a0dbd873..4e9632b87d227 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-minimize-blue.png and b/lib/web/prototype/windows/themes/lighting/button-minimize-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png b/lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png index e3d865464b456..d32aa2d0054d6 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png and b/lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-green.png b/lib/web/prototype/windows/themes/lighting/button-minimize-green.png index 4846e2f431061..c05d4571df5b1 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-minimize-green.png and b/lib/web/prototype/windows/themes/lighting/button-minimize-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-grey.png b/lib/web/prototype/windows/themes/lighting/button-minimize-grey.png index 310bcbbbcae2e..3e713c9a02d4f 100644 Binary files a/lib/web/prototype/windows/themes/lighting/button-minimize-grey.png and b/lib/web/prototype/windows/themes/lighting/button-minimize-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/left-blue.png b/lib/web/prototype/windows/themes/lighting/left-blue.png index 30275bbb94842..1d4423a1117c5 100644 Binary files a/lib/web/prototype/windows/themes/lighting/left-blue.png and b/lib/web/prototype/windows/themes/lighting/left-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/left-darkblue.png b/lib/web/prototype/windows/themes/lighting/left-darkblue.png index 36c10e0d74d36..f826293a0166a 100644 Binary files a/lib/web/prototype/windows/themes/lighting/left-darkblue.png and b/lib/web/prototype/windows/themes/lighting/left-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/left-green.png b/lib/web/prototype/windows/themes/lighting/left-green.png index c8aee739f03c7..75ac240b917ff 100644 Binary files a/lib/web/prototype/windows/themes/lighting/left-green.png and b/lib/web/prototype/windows/themes/lighting/left-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/left-grey.png b/lib/web/prototype/windows/themes/lighting/left-grey.png index acc2af03a4065..cb96db91b1ea6 100644 Binary files a/lib/web/prototype/windows/themes/lighting/left-grey.png and b/lib/web/prototype/windows/themes/lighting/left-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/right-blue.png b/lib/web/prototype/windows/themes/lighting/right-blue.png index 9df1b293be61a..68c0ae14f9df4 100644 Binary files a/lib/web/prototype/windows/themes/lighting/right-blue.png and b/lib/web/prototype/windows/themes/lighting/right-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/right-darkblue.png b/lib/web/prototype/windows/themes/lighting/right-darkblue.png index 10c19c70cc3be..69f017b654554 100644 Binary files a/lib/web/prototype/windows/themes/lighting/right-darkblue.png and b/lib/web/prototype/windows/themes/lighting/right-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/right-green.png b/lib/web/prototype/windows/themes/lighting/right-green.png index fbe6c5e631da6..568e3886cc689 100644 Binary files a/lib/web/prototype/windows/themes/lighting/right-green.png and b/lib/web/prototype/windows/themes/lighting/right-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/right-grey.png b/lib/web/prototype/windows/themes/lighting/right-grey.png index 33ef9d9af9888..cb3129479e017 100644 Binary files a/lib/web/prototype/windows/themes/lighting/right-grey.png and b/lib/web/prototype/windows/themes/lighting/right-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/spinner.gif b/lib/web/prototype/windows/themes/lighting/spinner.gif index 1ed786f2ece49..55472f401c5ad 100644 Binary files a/lib/web/prototype/windows/themes/lighting/spinner.gif and b/lib/web/prototype/windows/themes/lighting/spinner.gif differ diff --git a/lib/web/prototype/windows/themes/lighting/top-left-blue.png b/lib/web/prototype/windows/themes/lighting/top-left-blue.png index 805a7d926af36..7a8a1bc367af0 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-left-blue.png and b/lib/web/prototype/windows/themes/lighting/top-left-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-left-darkblue.png b/lib/web/prototype/windows/themes/lighting/top-left-darkblue.png index 3ed3e12d0f0c1..3e6d679a70a58 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-left-darkblue.png and b/lib/web/prototype/windows/themes/lighting/top-left-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-left-green.png b/lib/web/prototype/windows/themes/lighting/top-left-green.png index f6eb735733697..6c21fd879c371 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-left-green.png and b/lib/web/prototype/windows/themes/lighting/top-left-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-left-grey.png b/lib/web/prototype/windows/themes/lighting/top-left-grey.png index 53411cbf26fd6..bbadb84be9b39 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-left-grey.png and b/lib/web/prototype/windows/themes/lighting/top-left-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-blue.png b/lib/web/prototype/windows/themes/lighting/top-middle-blue.png index 93862ff5d81cd..09d8775a1be27 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-middle-blue.png and b/lib/web/prototype/windows/themes/lighting/top-middle-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png b/lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png index 20516e0ac552e..352d03536a597 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png and b/lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-green.png b/lib/web/prototype/windows/themes/lighting/top-middle-green.png index 1352d335dd00c..8f526355ae78f 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-middle-green.png and b/lib/web/prototype/windows/themes/lighting/top-middle-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-grey.png b/lib/web/prototype/windows/themes/lighting/top-middle-grey.png index f353828a16a49..9386375ea42cd 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-middle-grey.png and b/lib/web/prototype/windows/themes/lighting/top-middle-grey.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-right-blue.png b/lib/web/prototype/windows/themes/lighting/top-right-blue.png index a95bdb544b5c1..2fad9d50f15f6 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-right-blue.png and b/lib/web/prototype/windows/themes/lighting/top-right-blue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-right-darkblue.png b/lib/web/prototype/windows/themes/lighting/top-right-darkblue.png index 992070c0eca0b..bdcf9c6dc008d 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-right-darkblue.png and b/lib/web/prototype/windows/themes/lighting/top-right-darkblue.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-right-green.png b/lib/web/prototype/windows/themes/lighting/top-right-green.png index 1ee91d406f638..5c9340ed11785 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-right-green.png and b/lib/web/prototype/windows/themes/lighting/top-right-green.png differ diff --git a/lib/web/prototype/windows/themes/lighting/top-right-grey.png b/lib/web/prototype/windows/themes/lighting/top-right-grey.png index 21495022dfb31..6ff9258adb94d 100644 Binary files a/lib/web/prototype/windows/themes/lighting/top-right-grey.png and b/lib/web/prototype/windows/themes/lighting/top-right-grey.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/bottom_left.png b/lib/web/prototype/windows/themes/nuncio/bottom_left.png index 0b6ad03734e73..3d02d2f7bbd30 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/bottom_left.png and b/lib/web/prototype/windows/themes/nuncio/bottom_left.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/bottom_mid.png b/lib/web/prototype/windows/themes/nuncio/bottom_mid.png index 2f7f121ca1f72..236ddd7debe31 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/bottom_mid.png and b/lib/web/prototype/windows/themes/nuncio/bottom_mid.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/bottom_right.png b/lib/web/prototype/windows/themes/nuncio/bottom_right.png index 63834cc271d4c..854433889956e 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/bottom_right.png and b/lib/web/prototype/windows/themes/nuncio/bottom_right.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/center_left.png b/lib/web/prototype/windows/themes/nuncio/center_left.png index c616a95cd6caa..2811596970007 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/center_left.png and b/lib/web/prototype/windows/themes/nuncio/center_left.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/center_right.png b/lib/web/prototype/windows/themes/nuncio/center_right.png index 63527b9ea444c..54da3da14f0ee 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/center_right.png and b/lib/web/prototype/windows/themes/nuncio/center_right.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/close.png b/lib/web/prototype/windows/themes/nuncio/close.png index 591ed3d056c39..91cbebb82b93d 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/close.png and b/lib/web/prototype/windows/themes/nuncio/close.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/minimize.png b/lib/web/prototype/windows/themes/nuncio/minimize.png index 62e15be9fb62c..ad965c1cbce0c 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/minimize.png and b/lib/web/prototype/windows/themes/nuncio/minimize.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/overlay.png b/lib/web/prototype/windows/themes/nuncio/overlay.png index 1a133ba7ec167..e04416ebf8fb6 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/overlay.png and b/lib/web/prototype/windows/themes/nuncio/overlay.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/top_left.png b/lib/web/prototype/windows/themes/nuncio/top_left.png index f002fe161050a..84ad7230ace9f 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/top_left.png and b/lib/web/prototype/windows/themes/nuncio/top_left.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/top_mid.png b/lib/web/prototype/windows/themes/nuncio/top_mid.png index d07616d446117..3e8ccba309db3 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/top_mid.png and b/lib/web/prototype/windows/themes/nuncio/top_mid.png differ diff --git a/lib/web/prototype/windows/themes/nuncio/top_right.png b/lib/web/prototype/windows/themes/nuncio/top_right.png index 10513a882fc56..fb8195848364a 100644 Binary files a/lib/web/prototype/windows/themes/nuncio/top_right.png and b/lib/web/prototype/windows/themes/nuncio/top_right.png differ diff --git a/lib/web/prototype/windows/themes/spread/bottom-left-c.gif b/lib/web/prototype/windows/themes/spread/bottom-left-c.gif index 7cdf459e7d29f..f80b14273be58 100644 Binary files a/lib/web/prototype/windows/themes/spread/bottom-left-c.gif and b/lib/web/prototype/windows/themes/spread/bottom-left-c.gif differ diff --git a/lib/web/prototype/windows/themes/spread/bottom-middle.gif b/lib/web/prototype/windows/themes/spread/bottom-middle.gif index b705091915480..5a637de60a921 100644 Binary files a/lib/web/prototype/windows/themes/spread/bottom-middle.gif and b/lib/web/prototype/windows/themes/spread/bottom-middle.gif differ diff --git a/lib/web/prototype/windows/themes/spread/bottom-right-c.gif b/lib/web/prototype/windows/themes/spread/bottom-right-c.gif index 08c44f997b25a..9a1f3bd97578e 100644 Binary files a/lib/web/prototype/windows/themes/spread/bottom-right-c.gif and b/lib/web/prototype/windows/themes/spread/bottom-right-c.gif differ diff --git a/lib/web/prototype/windows/themes/spread/button-close-focus.gif b/lib/web/prototype/windows/themes/spread/button-close-focus.gif index 99f635c102c7e..03930bdfc2a2a 100644 Binary files a/lib/web/prototype/windows/themes/spread/button-close-focus.gif and b/lib/web/prototype/windows/themes/spread/button-close-focus.gif differ diff --git a/lib/web/prototype/windows/themes/spread/button-max-focus.gif b/lib/web/prototype/windows/themes/spread/button-max-focus.gif index 1708a1e0d159d..698d38e9f2c6f 100644 Binary files a/lib/web/prototype/windows/themes/spread/button-max-focus.gif and b/lib/web/prototype/windows/themes/spread/button-max-focus.gif differ diff --git a/lib/web/prototype/windows/themes/spread/button-min-focus.gif b/lib/web/prototype/windows/themes/spread/button-min-focus.gif index ff69d1b20f4dc..1c4169567d20d 100644 Binary files a/lib/web/prototype/windows/themes/spread/button-min-focus.gif and b/lib/web/prototype/windows/themes/spread/button-min-focus.gif differ diff --git a/lib/web/prototype/windows/themes/spread/frame-left.gif b/lib/web/prototype/windows/themes/spread/frame-left.gif index ad257d3eadb76..aa1ac2c268fd6 100644 Binary files a/lib/web/prototype/windows/themes/spread/frame-left.gif and b/lib/web/prototype/windows/themes/spread/frame-left.gif differ diff --git a/lib/web/prototype/windows/themes/spread/frame-right.gif b/lib/web/prototype/windows/themes/spread/frame-right.gif index 708e5fa50478a..8ff8bfab3242e 100644 Binary files a/lib/web/prototype/windows/themes/spread/frame-right.gif and b/lib/web/prototype/windows/themes/spread/frame-right.gif differ diff --git a/lib/web/prototype/windows/themes/spread/left-top.gif b/lib/web/prototype/windows/themes/spread/left-top.gif index 23581d1aaea47..4b0dc1387ecf2 100644 Binary files a/lib/web/prototype/windows/themes/spread/left-top.gif and b/lib/web/prototype/windows/themes/spread/left-top.gif differ diff --git a/lib/web/prototype/windows/themes/spread/right-top.gif b/lib/web/prototype/windows/themes/spread/right-top.gif index e32d1fb0f3f7e..512cbe3cde8b8 100644 Binary files a/lib/web/prototype/windows/themes/spread/right-top.gif and b/lib/web/prototype/windows/themes/spread/right-top.gif differ diff --git a/lib/web/prototype/windows/themes/spread/top-middle.gif b/lib/web/prototype/windows/themes/spread/top-middle.gif index 53934d4724935..e1331491e4926 100644 Binary files a/lib/web/prototype/windows/themes/spread/top-middle.gif and b/lib/web/prototype/windows/themes/spread/top-middle.gif differ diff --git a/lib/web/spacer.gif b/lib/web/spacer.gif index 5bfd67a2d6f72..5040ca0fc12a0 100644 Binary files a/lib/web/spacer.gif and b/lib/web/spacer.gif differ diff --git a/lib/web/tiny_mce/plugins/advimage/img/sample.gif b/lib/web/tiny_mce/plugins/advimage/img/sample.gif index 53bf6890b5077..da865127376ca 100644 Binary files a/lib/web/tiny_mce/plugins/advimage/img/sample.gif and b/lib/web/tiny_mce/plugins/advimage/img/sample.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif index ba90cc36fb041..8f2fdaac6918c 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif index 74d897a4f6d22..b644d5a8d6390 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif index 963a96b8a7593..ac2083b60a73b 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif index c7cf1011dad0e..0493e5b4a58db 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif index 716f55e161bfe..d3b5df9d89cd7 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif index 334d49e0e60f2..06eb14e793be1 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif index 4efd549ed31c4..11b15c0f1a9b5 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif index 82c5b182e61d3..f516df99ce84f 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif index ca2451e102722..2fe81da13d809 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif index fe66220c24b4d..0516b14c707f8 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif index fd27edfaaa29a..3fad091823e76 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif index 0cc9bb71cca4c..eca99f04eda20 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif index 2075dc16058f1..641cdf685f571 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif index bef7e257303f8..48a020a8fcb11 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif index 0631c7616ec86..ac2302553ec9d 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif differ diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif index 648e6e879123f..22e71cdbb103d 100644 Binary files a/lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif and b/lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif differ diff --git a/lib/web/tiny_mce/plugins/example/img/example.gif b/lib/web/tiny_mce/plugins/example/img/example.gif index 1ab5da4461113..250410866b383 100644 Binary files a/lib/web/tiny_mce/plugins/example/img/example.gif and b/lib/web/tiny_mce/plugins/example/img/example.gif differ diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif index 219139857ead1..7aa09d17a4f90 100644 Binary files a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif and b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif differ diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif index f957e49a3dda3..7dc8afcd50193 100644 Binary files a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif and b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif differ diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif index 6baf64ad321ab..d29d8c18f4db1 100644 Binary files a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif and b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif differ diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif index 20acbbf7aec8a..aa9076615a2f0 100644 Binary files a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif and b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif differ diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif index d5de1cc236c9e..938c8638537db 100644 Binary files a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif and b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif differ diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif index c2a2ad454db19..9ec867b1671f8 100644 Binary files a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif and b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif differ diff --git a/lib/web/tiny_mce/plugins/media/img/flash.gif b/lib/web/tiny_mce/plugins/media/img/flash.gif index cb192e6ceda8d..2c01d80cdb464 100644 Binary files a/lib/web/tiny_mce/plugins/media/img/flash.gif and b/lib/web/tiny_mce/plugins/media/img/flash.gif differ diff --git a/lib/web/tiny_mce/plugins/media/img/quicktime.gif b/lib/web/tiny_mce/plugins/media/img/quicktime.gif index 3b0499145b161..282f0dbedc4c5 100644 Binary files a/lib/web/tiny_mce/plugins/media/img/quicktime.gif and b/lib/web/tiny_mce/plugins/media/img/quicktime.gif differ diff --git a/lib/web/tiny_mce/plugins/media/img/realmedia.gif b/lib/web/tiny_mce/plugins/media/img/realmedia.gif index fdfe0b9ac0586..60402b118f6ad 100644 Binary files a/lib/web/tiny_mce/plugins/media/img/realmedia.gif and b/lib/web/tiny_mce/plugins/media/img/realmedia.gif differ diff --git a/lib/web/tiny_mce/plugins/media/img/shockwave.gif b/lib/web/tiny_mce/plugins/media/img/shockwave.gif index 5f235dfc7363b..edb364ed09237 100644 Binary files a/lib/web/tiny_mce/plugins/media/img/shockwave.gif and b/lib/web/tiny_mce/plugins/media/img/shockwave.gif differ diff --git a/lib/web/tiny_mce/plugins/media/img/trans.gif b/lib/web/tiny_mce/plugins/media/img/trans.gif index 388486517fa8d..756354b05ca8a 100644 Binary files a/lib/web/tiny_mce/plugins/media/img/trans.gif and b/lib/web/tiny_mce/plugins/media/img/trans.gif differ diff --git a/lib/web/tiny_mce/plugins/media/img/windowsmedia.gif b/lib/web/tiny_mce/plugins/media/img/windowsmedia.gif index ab50f2d887a08..f55b2e889ac75 100644 Binary files a/lib/web/tiny_mce/plugins/media/img/windowsmedia.gif and b/lib/web/tiny_mce/plugins/media/img/windowsmedia.gif differ diff --git a/lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif b/lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif index acdf4085f3068..110f397aae7d0 100644 Binary files a/lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif and b/lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif differ diff --git a/lib/web/tiny_mce/plugins/pagebreak/img/trans.gif b/lib/web/tiny_mce/plugins/pagebreak/img/trans.gif index 388486517fa8d..756354b05ca8a 100644 Binary files a/lib/web/tiny_mce/plugins/pagebreak/img/trans.gif and b/lib/web/tiny_mce/plugins/pagebreak/img/trans.gif differ diff --git a/lib/web/tiny_mce/plugins/spellchecker/img/wline.gif b/lib/web/tiny_mce/plugins/spellchecker/img/wline.gif index 7d0a4dbca03cc..4dc4a13134e9f 100644 Binary files a/lib/web/tiny_mce/plugins/spellchecker/img/wline.gif and b/lib/web/tiny_mce/plugins/spellchecker/img/wline.gif differ diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css b/lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css index 034b985272cda..94d7b37af5278 100644 --- a/lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css +++ b/lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css @@ -5,5 +5,5 @@ img.picker {vertical-align:text-bottom; cursor:pointer;} h1 {padding: 0 0 5px 0;} .panel_wrapper div.current {height:160px;} #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} -a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} +a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.png') -140px -20px;} #datetime {width:180px;} diff --git a/lib/web/tiny_mce/themes/advanced/img/flash.gif b/lib/web/tiny_mce/themes/advanced/img/flash.gif index dec3f7c7028df..ba1708bb3360c 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/flash.gif and b/lib/web/tiny_mce/themes/advanced/img/flash.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/icons.gif b/lib/web/tiny_mce/themes/advanced/img/icons.gif deleted file mode 100644 index 641a9e3d314f4..0000000000000 Binary files a/lib/web/tiny_mce/themes/advanced/img/icons.gif and /dev/null differ diff --git a/lib/web/tiny_mce/themes/advanced/img/icons.png b/lib/web/tiny_mce/themes/advanced/img/icons.png new file mode 100644 index 0000000000000..ea499c993eb51 Binary files /dev/null and b/lib/web/tiny_mce/themes/advanced/img/icons.png differ diff --git a/lib/web/tiny_mce/themes/advanced/img/iframe.gif b/lib/web/tiny_mce/themes/advanced/img/iframe.gif index 410c7ad084db6..602cdc0dd59ee 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/iframe.gif and b/lib/web/tiny_mce/themes/advanced/img/iframe.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/pagebreak.gif b/lib/web/tiny_mce/themes/advanced/img/pagebreak.gif index acdf4085f3068..110f397aae7d0 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/pagebreak.gif and b/lib/web/tiny_mce/themes/advanced/img/pagebreak.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/quicktime.gif b/lib/web/tiny_mce/themes/advanced/img/quicktime.gif index 8f10e7aa6b6ab..c0bb5ac4c1477 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/quicktime.gif and b/lib/web/tiny_mce/themes/advanced/img/quicktime.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/realmedia.gif b/lib/web/tiny_mce/themes/advanced/img/realmedia.gif index fdfe0b9ac0586..60402b118f6ad 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/realmedia.gif and b/lib/web/tiny_mce/themes/advanced/img/realmedia.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/shockwave.gif b/lib/web/tiny_mce/themes/advanced/img/shockwave.gif index 9314d044709c9..0eda90e447da3 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/shockwave.gif and b/lib/web/tiny_mce/themes/advanced/img/shockwave.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/trans.gif b/lib/web/tiny_mce/themes/advanced/img/trans.gif index 388486517fa8d..756354b05ca8a 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/trans.gif and b/lib/web/tiny_mce/themes/advanced/img/trans.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/video.gif b/lib/web/tiny_mce/themes/advanced/img/video.gif index 3570104077a3b..0171c1707b193 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/video.gif and b/lib/web/tiny_mce/themes/advanced/img/video.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif b/lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif index ab50f2d887a08..f55b2e889ac75 100644 Binary files a/lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif and b/lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/dialog.css b/lib/web/tiny_mce/themes/advanced/skins/default/dialog.css index 1f5598c694fb6..d5daec7e64cea 100644 --- a/lib/web/tiny_mce/themes/advanced/skins/default/dialog.css +++ b/lib/web/tiny_mce/themes/advanced/skins/default/dialog.css @@ -50,12 +50,12 @@ float:left; /* Browse */ a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} +a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.png) -860px 0; border:1px solid #FFF; margin-left:1px;} .mceOldBoxModel a.browse span {width:22px; height:20px;} a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} +a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.png) -840px 0; margin-left:2px;} .mceOldBoxModel a.pickcolor span {width:21px; height:17px;} a.pickcolor:hover span {background-color:#B2BBD0;} a.pickcolor:hover span.disabled {} diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif index d2f93671ca309..2c550ddcd0226 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif and b/lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif index 85e31dfb2d045..404d90b9d0721 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif and b/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif index adfdddccd7cac..78b4f9a8f4362 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif and b/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif index 5bb90fd6a4910..4b524cdc41b5a 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif and b/lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif index 06812cb4109b0..d80df13917225 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif and b/lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/ui.css b/lib/web/tiny_mce/themes/advanced/skins/default/ui.css index 295b69a0cbf3f..bf33446ff9aaa 100644 --- a/lib/web/tiny_mce/themes/advanced/skins/default/ui.css +++ b/lib/web/tiny_mce/themes/advanced/skins/default/ui.css @@ -13,7 +13,7 @@ /* External */ .defaultSkin .mceExternalToolbar {position:absolute; border:1px solid #CCC; border-bottom:0; display:none;} .defaultSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;} -.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0} +.defaultSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.png) -820px 0} /* Layout */ .defaultSkin table.mceLayout {border:0; border-left:1px solid #CCC; border-right:1px solid #CCC} @@ -28,11 +28,11 @@ .defaultSkin .mceIframeContainer {border-top:1px solid #CCC; border-bottom:1px solid #CCC} .defaultSkin .mceStatusbar { font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px} .defaultSkin .mceStatusbar div {float:left; margin:2px} -.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} +.defaultSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.png) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} .defaultSkin .mceStatusbar a:hover {text-decoration:underline} .defaultSkin table.mceToolbar {margin-left:3px} .defaultSkin span.mceIcon, .defaultSkin img.mceIcon {display:block; width:20px; height:20px} -.defaultSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} +.defaultSkin .mceIcon {background:url(../../img/icons.png) no-repeat 20px 20px} .defaultSkin td.mceCenter {text-align:center;} .defaultSkin td.mceCenter table {margin:0 auto; text-align:left;} .defaultSkin td.mceRight table {margin:0 0 0 auto;} @@ -48,12 +48,12 @@ .defaultSkin .mceButtonDisabled .mceButtonLabel {color:#888} /* Separator */ -.defaultSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:2px 2px 0 4px} +.defaultSkin .mceSeparator {display:block; background:url(../../img/icons.png) -180px 0; width:2px; height:20px; margin:2px 2px 0 4px} /* ListBox */ .defaultSkin .mceListBox, .defaultSkin .mceListBox a {display:block} .defaultSkin .mceListBox .mceText {padding-left:4px; width:70px; text-align:left; border:1px solid #CCC; border-right:0; background:#FFF; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden} -.defaultSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(../../img/icons.gif) -741px 0; margin-right:2px; border:1px solid #CCC;} +.defaultSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(../../img/icons.png) -741px 0; margin-right:2px; border:1px solid #CCC;} .defaultSkin table.mceListBoxEnabled:hover .mceText, .defaultSkin .mceListBoxHover .mceText, .defaultSkin .mceListBoxSelected .mceText {border:1px solid #A2ABC0; border-right:0; background:#FFF} .defaultSkin table.mceListBoxEnabled:hover .mceOpen, .defaultSkin .mceListBoxHover .mceOpen, .defaultSkin .mceListBoxSelected .mceOpen {background-color:#FFF; border:1px solid #A2ABC0} .defaultSkin .mceListBoxDisabled a.mceText {color:gray; background-color:transparent;} @@ -66,8 +66,8 @@ .defaultSkin .mceSplitButton {width:32px; height:20px; direction:ltr} .defaultSkin .mceSplitButton a, .defaultSkin .mceSplitButton span {height:20px; display:block} .defaultSkin .mceSplitButton a.mceAction {width:20px; border:1px solid #F0F0EE; border-right:0;} -.defaultSkin .mceSplitButton span.mceAction {width:20px; background-image:url(../../img/icons.gif);} -.defaultSkin .mceSplitButton a.mceOpen {width:9px; background:url(../../img/icons.gif) -741px 0; border:1px solid #F0F0EE;} +.defaultSkin .mceSplitButton span.mceAction {width:20px; background-image:url(../../img/icons.png);} +.defaultSkin .mceSplitButton a.mceOpen {width:9px; background:url(../../img/icons.png) -741px 0; border:1px solid #F0F0EE;} .defaultSkin .mceSplitButton span.mceOpen {display:none} .defaultSkin table.mceSplitButtonEnabled:hover a.mceAction, .defaultSkin .mceSplitButtonHover a.mceAction, .defaultSkin .mceSplitButtonSelected a.mceAction {border:1px solid #c0bbaf; border-right:0; background-color:#dbd6ce} .defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen, .defaultSkin .mceSplitButtonHover a.mceOpen, .defaultSkin .mceSplitButtonSelected a.mceOpen {background-color:#c0bbaf; border:1px solid #c0bbaf;} diff --git a/lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css b/lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css index dafcd280534e5..0deab02ec4874 100644 --- a/lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +++ b/lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css @@ -40,12 +40,12 @@ float:left; /* Browse */ a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} +a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.png) -860px 0; border:1px solid #FFF; margin-left:1px;} .mceOldBoxModel a.browse span {width:22px; height:20px;} a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} +a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.png) -840px 0; margin-left:2px;} .mceOldBoxModel a.pickcolor span {width:21px; height:17px;} a.pickcolor:hover span {background-color:#B2BBD0;} a.pickcolor:hover span.disabled {} diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css index c97d38e8f96f7..f2bae812e6999 100644 --- a/lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css +++ b/lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css @@ -50,12 +50,12 @@ float:left; /* Browse */ a.pickcolor, a.browse {text-decoration:none} -a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;} +a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.png) -860px 0; border:1px solid #FFF; margin-left:1px;} .mceOldBoxModel a.browse span {width:22px; height:20px;} a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;} a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} a.browse:hover span.disabled {border:1px solid white; background-color:transparent;} -a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;} +a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.png) -840px 0; margin-left:2px;} .mceOldBoxModel a.pickcolor span {width:21px; height:17px;} a.pickcolor:hover span {background-color:#B2BBD0;} a.pickcolor:hover span.disabled {} diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png index 13a5cb03097c0..7f40f450b6d68 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png and b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png index 7fc57f2bc2d63..e543e0b03c7f0 100644 Binary files a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png and b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png differ diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css index c0156d2ce9f7a..dcdf69c00c9fd 100644 --- a/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css +++ b/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css @@ -11,7 +11,7 @@ /* External */ .o2k7Skin .mceExternalToolbar {position:absolute; border:1px solid #ABC6DD; border-bottom:0; display:none} .o2k7Skin .mceExternalToolbar td.mceToolbar {padding-right:13px;} -.o2k7Skin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0} +.o2k7Skin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.png) -820px 0} /* Layout */ .o2k7Skin table.mceLayout {border:0; border-left:1px solid #ABC6DD; border-right:1px solid #ABC6DD} @@ -22,7 +22,7 @@ .o2k7Skin td.mceToolbar{background:#E5EFFD} .o2k7Skin .mceStatusbar {background:#E5EFFD; display:block; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; height:20px} .o2k7Skin .mceStatusbar div {float:left; padding:2px} -.o2k7Skin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} +.o2k7Skin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.png) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} .o2k7Skin .mceStatusbar a:hover {text-decoration:underline} .o2k7Skin table.mceToolbar {margin-left:3px} .o2k7Skin .mceToolbar .mceToolbarStart span {display:block; background:url(img/button_bg.png) -22px 0; width:1px; height:22px; margin-left:3px;} @@ -30,7 +30,7 @@ .o2k7Skin .mceToolbar .mceToolbarEnd span {display:block; background:url(img/button_bg.png) -22px 0; width:1px; height:22px} .o2k7Skin .mceToolbar .mceToolbarEndListBox span, .o2k7Skin .mceToolbar .mceToolbarStartListBox span {display:none} .o2k7Skin span.mceIcon, .o2k7Skin img.mceIcon {display:block; width:20px; height:20px} -.o2k7Skin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} +.o2k7Skin .mceIcon {background:url(../../img/icons.png) no-repeat 20px 20px} .o2k7Skin td.mceCenter {text-align:center;} .o2k7Skin td.mceCenter table {margin:0 auto; text-align:left;} .o2k7Skin td.mceRight table {margin:0 0 0 auto;} @@ -66,7 +66,7 @@ .o2k7Skin .mceSplitButton, .o2k7Skin .mceSplitButton a, .o2k7Skin .mceSplitButton span {display:block; height:22px; direction:ltr} .o2k7Skin .mceSplitButton {background:url(img/button_bg.png)} .o2k7Skin .mceSplitButton a.mceAction {width:22px} -.o2k7Skin .mceSplitButton span.mceAction {width:22px; background-image:url(../../img/icons.gif)} +.o2k7Skin .mceSplitButton span.mceAction {width:22px; background-image:url(../../img/icons.png)} .o2k7Skin .mceSplitButton a.mceOpen {width:10px; background:url(img/button_bg.png) -44px 0} .o2k7Skin .mceSplitButton span.mceOpen {display:none} .o2k7Skin table.mceSplitButtonEnabled:hover a.mceAction, .o2k7Skin .mceSplitButtonHover a.mceAction, .o2k7Skin .mceSplitButtonSelected {background:url(img/button_bg.png) 0 -22px} diff --git a/lib/web/tiny_mce/themes/simple/img/icons.gif b/lib/web/tiny_mce/themes/simple/img/icons.gif deleted file mode 100644 index 6fcbcb5dedf16..0000000000000 Binary files a/lib/web/tiny_mce/themes/simple/img/icons.gif and /dev/null differ diff --git a/lib/web/tiny_mce/themes/simple/img/icons.png b/lib/web/tiny_mce/themes/simple/img/icons.png new file mode 100644 index 0000000000000..c30720a750780 Binary files /dev/null and b/lib/web/tiny_mce/themes/simple/img/icons.png differ diff --git a/lib/web/tiny_mce/themes/simple/skins/default/ui.css b/lib/web/tiny_mce/themes/simple/skins/default/ui.css index 32feae628d198..ecf030d6e9569 100644 --- a/lib/web/tiny_mce/themes/simple/skins/default/ui.css +++ b/lib/web/tiny_mce/themes/simple/skins/default/ui.css @@ -9,7 +9,7 @@ /* Layout */ .defaultSimpleSkin span.mceIcon, .defaultSimpleSkin img.mceIcon {display:block; width:20px; height:20px} -.defaultSimpleSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} +.defaultSimpleSkin .mceIcon {background:url(../../img/icons.png) no-repeat 20px 20px} /* Button */ .defaultSimpleSkin .mceButton {display:block; border:1px solid #F0F0EE; width:20px; height:20px} @@ -18,7 +18,7 @@ .defaultSimpleSkin .mceButtonDisabled span {opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)} /* Separator */ -.defaultSimpleSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:0 2px 0 4px} +.defaultSimpleSkin .mceSeparator {display:block; background:url(../../img/icons.png) -180px 0; width:2px; height:20px; margin:0 2px 0 4px} /* Theme */ .defaultSimpleSkin span.mce_bold {background-position:0 0} diff --git a/lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png b/lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png index 527e3495a653e..8082a263dc41a 100644 Binary files a/lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png and b/lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png differ diff --git a/lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css b/lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css index 021d650f7df6e..3ac07e2459c74 100644 --- a/lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css +++ b/lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css @@ -11,7 +11,7 @@ .o2k7SimpleSkin .mceToolbar .mceToolbarStart span {display:block; background:url(img/button_bg.png) -22px 0; width:1px; height:22px; } .o2k7SimpleSkin .mceToolbar .mceToolbarEnd span {display:block; background:url(img/button_bg.png) -22px 0; width:1px; height:22px} .o2k7SimpleSkin span.mceIcon, .o2k7SimpleSkin img.mceIcon {display:block; width:20px; height:20px} -.o2k7SimpleSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px} +.o2k7SimpleSkin .mceIcon {background:url(../../img/icons.png) no-repeat 20px 20px} /* Button */ .o2k7SimpleSkin .mceButton {display:block; background:url(img/button_bg.png); width:22px; height:22px} diff --git a/package.json b/package.json index 0a1a1d74f3413..5c3299e3ae9b0 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,12 @@ "devDependencies": { "grunt": "^0.4.5", "grunt-contrib-clean": "^0.6.0", + "grunt-contrib-imagemin": "^0.9.2", "grunt-contrib-less": "^0.12.0", "grunt-contrib-watch": "^0.6.1", + "grunt-exec": "^0.4.6", "grunt-styledocco": "^0.1.4", + "imagemin-svgo": "^4.0.1", "load-grunt-tasks": "^1.0.0", "time-grunt": "^1.0.0", "underscore": "^1.7.0", diff --git a/pub/errors/default/images/i_msg-error.gif b/pub/errors/default/images/i_msg-error.gif index 9db2351303341..2a7b061ecd97d 100644 Binary files a/pub/errors/default/images/i_msg-error.gif and b/pub/errors/default/images/i_msg-error.gif differ diff --git a/pub/errors/default/images/i_msg-note.gif b/pub/errors/default/images/i_msg-note.gif index c9cacc27ae255..8da916c6d71b8 100644 Binary files a/pub/errors/default/images/i_msg-note.gif and b/pub/errors/default/images/i_msg-note.gif differ diff --git a/pub/errors/default/images/i_msg-success.gif b/pub/errors/default/images/i_msg-success.gif index 611faffbc5f42..59dcae0cee676 100644 Binary files a/pub/errors/default/images/i_msg-success.gif and b/pub/errors/default/images/i_msg-success.gif differ diff --git a/pub/errors/default/images/logo.gif b/pub/errors/default/images/logo.gif index 121e72ed586c9..ebe91f2c4b5f7 100644 Binary files a/pub/errors/default/images/logo.gif and b/pub/errors/default/images/logo.gif differ diff --git a/setup/pub/bootstrap/fonts/glyphicons-halflings-regular.svg b/setup/pub/bootstrap/fonts/glyphicons-halflings-regular.svg index e3e2dc739dd85..23c0e3bd2b2ff 100644 --- a/setup/pub/bootstrap/fonts/glyphicons-halflings-regular.svg +++ b/setup/pub/bootstrap/fonts/glyphicons-halflings-regular.svg @@ -1,229 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/setup/pub/images/ajax-loader.gif b/setup/pub/images/ajax-loader.gif index 3288d1035d70b..1d3bb7b8a6347 100644 Binary files a/setup/pub/images/ajax-loader.gif and b/setup/pub/images/ajax-loader.gif differ