diff --git a/Gruntfile.js b/Gruntfile.js index d0f897a9d..0df9b8d8e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -49,12 +49,6 @@ module.exports = function(grunt) { 'copy:doc' ] }, - icons: { - files: ['lib/img/icons/**/*.svg'], - tasks: [ - 'shell:icons' - ] - }, libsass: { files: ['lib/sass/**/*', 'docs/source/assets/css/**/*'], tasks: [ @@ -286,9 +280,6 @@ module.exports = function(grunt) { release: { command: 'bin/release.sh' // Create GitHub release that includes dist }, - icons: { - command: 'bin/icons.js' // Create a sass file with all icons from icon folder - }, acetate: { command: 'npm run acetate' // build the docs site }, @@ -351,7 +342,6 @@ module.exports = function(grunt) { // Build a dist folder with all assets grunt.registerTask('prepublish', [ - 'shell:icons', 'concurrent:prepublish' ]); diff --git a/bin/icons.js b/bin/icons.js deleted file mode 100755 index 0cd0b58ca..000000000 --- a/bin/icons.js +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env node -// Builds a .scss file with all site icons -var glob = require('glob') -var fs = require('fs') -var path = require('path') -var format = require('util').format -var mkdir = require('mkdirp') - -mkdir('lib/sass/calcite-web/icons/sets/') - -var sets = ['calcite', 'calcite-large', 'social'] - -function comma (index, array) { - var needsComma = index !== array.length - 1 - return needsComma ? ',' : '' -} - -function formatLine (files, i) { - var icon = path.basename(files[i], '.svg') - return format('\n "%s"%s', icon, comma(i, files)) -} - -function parseFiles (setName, index) { - var files = glob.sync(format('lib/img/icons/%s/*.svg', setName)) - var sassStream = fs.createWriteStream(format('lib/sass/calcite-web/icons/sets/%s.scss', setName), 'utf8') - - dataStream.write(format('\n "%s": [', setName)) - sassStream.write(format('$%s-icons:', setName)) - - files.forEach(function (file, i) { - var line = formatLine(files, i) - dataStream.write(line) - sassStream.write(line) - }) - sassStream.end(';') - dataStream.write(format('\n ]%s', comma(index, sets))) -} - -var dataStream = fs.createWriteStream('docs/source/icons.json', 'utf8') -dataStream.write('{') -sets.forEach(parseFiles) -dataStream.end('\n}') diff --git a/docs/acetate.conf.js b/docs/acetate.conf.js index 4d8f31502..0c2f2c616 100644 --- a/docs/acetate.conf.js +++ b/docs/acetate.conf.js @@ -2,6 +2,6 @@ module.exports = function (acetate) { acetate.layout('**/*', 'layouts/_doc'); acetate.layout('page-layouts/*.html', 'layouts/_blank:content'); acetate.data('table_of_contents', 'table_of_contents.yml'); - acetate.data('icons', 'icons.json'); - acetate.data('font', 'icon-font.json'); + acetate.data('icons', 'icons-social.json'); + acetate.data('font', 'icons-font.json'); } diff --git a/docs/source/icon-font.json b/docs/source/icons-font.json similarity index 100% rename from docs/source/icon-font.json rename to docs/source/icons-font.json diff --git a/docs/source/icons-social.json b/docs/source/icons-social.json new file mode 100644 index 000000000..2963709fd --- /dev/null +++ b/docs/source/icons-social.json @@ -0,0 +1,14 @@ +[ + "contact", + "facebook", + "geonet", + "github", + "google-plus", + "instagram", + "linkedin", + "pinterest", + "rss", + "share", + "twitter", + "youtube" +] \ No newline at end of file diff --git a/docs/source/layouts/_doc.html b/docs/source/layouts/_doc.html index 0cb139229..b625e54ff 100644 --- a/docs/source/layouts/_doc.html +++ b/docs/source/layouts/_doc.html @@ -42,7 +42,7 @@

{{page.title}}

{% if page.title == 'Social Icons' %}
- {% for icon in data.icons.social %} + {% for icon in data.icons %}

.icon-social-{{icon}}

diff --git a/lib/img/icons/calcite-large/3d.svg b/lib/img/icons/calcite-large/3d.svg deleted file mode 100644 index b798a1cc2..000000000 --- a/lib/img/icons/calcite-large/3d.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/add-content.svg b/lib/img/icons/calcite-large/add-content.svg deleted file mode 100644 index 0e2e54918..000000000 --- a/lib/img/icons/calcite-large/add-content.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/add-to-legend.svg b/lib/img/icons/calcite-large/add-to-legend.svg deleted file mode 100644 index cefeb6a39..000000000 --- a/lib/img/icons/calcite-large/add-to-legend.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/analysis.svg b/lib/img/icons/calcite-large/analysis.svg deleted file mode 100644 index b30e63988..000000000 --- a/lib/img/icons/calcite-large/analysis.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/approved.svg b/lib/img/icons/calcite-large/approved.svg deleted file mode 100644 index 3ddf6effd..000000000 --- a/lib/img/icons/calcite-large/approved.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/arrow-down.svg b/lib/img/icons/calcite-large/arrow-down.svg deleted file mode 100644 index 118d09b75..000000000 --- a/lib/img/icons/calcite-large/arrow-down.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/basemap.svg b/lib/img/icons/calcite-large/basemap.svg deleted file mode 100644 index ddfbf4447..000000000 --- a/lib/img/icons/calcite-large/basemap.svg +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/bookmark.svg b/lib/img/icons/calcite-large/bookmark.svg deleted file mode 100644 index 5c601d829..000000000 --- a/lib/img/icons/calcite-large/bookmark.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/cancel.svg b/lib/img/icons/calcite-large/cancel.svg deleted file mode 100644 index f9c4fa3b0..000000000 --- a/lib/img/icons/calcite-large/cancel.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/close.svg b/lib/img/icons/calcite-large/close.svg deleted file mode 100644 index 27db12585..000000000 --- a/lib/img/icons/calcite-large/close.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/description.svg b/lib/img/icons/calcite-large/description.svg deleted file mode 100644 index f9bc4e81f..000000000 --- a/lib/img/icons/calcite-large/description.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/details.svg b/lib/img/icons/calcite-large/details.svg deleted file mode 100644 index 9cb39b01b..000000000 --- a/lib/img/icons/calcite-large/details.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/down.svg b/lib/img/icons/calcite-large/down.svg deleted file mode 100644 index 6e6aaef70..000000000 --- a/lib/img/icons/calcite-large/down.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/edit.svg b/lib/img/icons/calcite-large/edit.svg deleted file mode 100644 index f89930d9c..000000000 --- a/lib/img/icons/calcite-large/edit.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/features-hosted.svg b/lib/img/icons/calcite-large/features-hosted.svg deleted file mode 100644 index f3b64f1d6..000000000 --- a/lib/img/icons/calcite-large/features-hosted.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/features.svg b/lib/img/icons/calcite-large/features.svg deleted file mode 100644 index 60d59a5e1..000000000 --- a/lib/img/icons/calcite-large/features.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/file-gray.svg b/lib/img/icons/calcite-large/file-gray.svg deleted file mode 100644 index b82cd1bb2..000000000 --- a/lib/img/icons/calcite-large/file-gray.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/file.svg b/lib/img/icons/calcite-large/file.svg deleted file mode 100644 index b38cce180..000000000 --- a/lib/img/icons/calcite-large/file.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/globe.svg b/lib/img/icons/calcite-large/globe.svg deleted file mode 100644 index ecea9fc02..000000000 --- a/lib/img/icons/calcite-large/globe.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/hide-in-legend.svg b/lib/img/icons/calcite-large/hide-in-legend.svg deleted file mode 100644 index 91ffc27c6..000000000 --- a/lib/img/icons/calcite-large/hide-in-legend.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/imagery.svg b/lib/img/icons/calcite-large/imagery.svg deleted file mode 100644 index 312783bbb..000000000 --- a/lib/img/icons/calcite-large/imagery.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/layer-download.svg b/lib/img/icons/calcite-large/layer-download.svg deleted file mode 100644 index 588c6ec0a..000000000 --- a/lib/img/icons/calcite-large/layer-download.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/layer-export-to-file.svg b/lib/img/icons/calcite-large/layer-export-to-file.svg deleted file mode 100644 index bd55e0c01..000000000 --- a/lib/img/icons/calcite-large/layer-export-to-file.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/layer-export.svg b/lib/img/icons/calcite-large/layer-export.svg deleted file mode 100644 index eaa963351..000000000 --- a/lib/img/icons/calcite-large/layer-export.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/layer-zoom.svg b/lib/img/icons/calcite-large/layer-zoom.svg deleted file mode 100644 index 6ad19e29c..000000000 --- a/lib/img/icons/calcite-large/layer-zoom.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/map-download.svg b/lib/img/icons/calcite-large/map-download.svg deleted file mode 100644 index a77f5be22..000000000 --- a/lib/img/icons/calcite-large/map-download.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/map-image.svg b/lib/img/icons/calcite-large/map-image.svg deleted file mode 100644 index c836918f6..000000000 --- a/lib/img/icons/calcite-large/map-image.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/measure-distance.svg b/lib/img/icons/calcite-large/measure-distance.svg deleted file mode 100644 index 0d4b83fa0..000000000 --- a/lib/img/icons/calcite-large/measure-distance.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/measure-point.svg b/lib/img/icons/calcite-large/measure-point.svg deleted file mode 100644 index 9d6d1f363..000000000 --- a/lib/img/icons/calcite-large/measure-point.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/measure.svg b/lib/img/icons/calcite-large/measure.svg deleted file mode 100644 index 711e11f47..000000000 --- a/lib/img/icons/calcite-large/measure.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/print.svg b/lib/img/icons/calcite-large/print.svg deleted file mode 100644 index f055136b2..000000000 --- a/lib/img/icons/calcite-large/print.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/remove.svg b/lib/img/icons/calcite-large/remove.svg deleted file mode 100644 index 1f1f9ecdd..000000000 --- a/lib/img/icons/calcite-large/remove.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/rename.svg b/lib/img/icons/calcite-large/rename.svg deleted file mode 100644 index b47753573..000000000 --- a/lib/img/icons/calcite-large/rename.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/scale.svg b/lib/img/icons/calcite-large/scale.svg deleted file mode 100644 index 6307deb5c..000000000 --- a/lib/img/icons/calcite-large/scale.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/search.svg b/lib/img/icons/calcite-large/search.svg deleted file mode 100644 index f48d6a1b2..000000000 --- a/lib/img/icons/calcite-large/search.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/tiles.svg b/lib/img/icons/calcite-large/tiles.svg deleted file mode 100644 index 684d3c1eb..000000000 --- a/lib/img/icons/calcite-large/tiles.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/transparency.svg b/lib/img/icons/calcite-large/transparency.svg deleted file mode 100644 index 945dd68b1..000000000 --- a/lib/img/icons/calcite-large/transparency.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/up.svg b/lib/img/icons/calcite-large/up.svg deleted file mode 100644 index fd79c3354..000000000 --- a/lib/img/icons/calcite-large/up.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/web-map-blue.svg b/lib/img/icons/calcite-large/web-map-blue.svg deleted file mode 100644 index 89a09be8e..000000000 --- a/lib/img/icons/calcite-large/web-map-blue.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/web-map.svg b/lib/img/icons/calcite-large/web-map.svg deleted file mode 100644 index 5e6340c0b..000000000 --- a/lib/img/icons/calcite-large/web-map.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/web-mapping-application-gray.svg b/lib/img/icons/calcite-large/web-mapping-application-gray.svg deleted file mode 100644 index 527c83595..000000000 --- a/lib/img/icons/calcite-large/web-mapping-application-gray.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/web-mapping-application.svg b/lib/img/icons/calcite-large/web-mapping-application.svg deleted file mode 100644 index 1783de07b..000000000 --- a/lib/img/icons/calcite-large/web-mapping-application.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/your-location.svg b/lib/img/icons/calcite-large/your-location.svg deleted file mode 100644 index e76ee5148..000000000 --- a/lib/img/icons/calcite-large/your-location.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite-large/zoom-out.svg b/lib/img/icons/calcite-large/zoom-out.svg deleted file mode 100644 index e7a748f35..000000000 --- a/lib/img/icons/calcite-large/zoom-out.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/3d.svg b/lib/img/icons/calcite/3d.svg deleted file mode 100644 index a04fb9357..000000000 --- a/lib/img/icons/calcite/3d.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/add-content.svg b/lib/img/icons/calcite/add-content.svg deleted file mode 100644 index 087ede2c1..000000000 --- a/lib/img/icons/calcite/add-content.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/add-to-legend.svg b/lib/img/icons/calcite/add-to-legend.svg deleted file mode 100644 index 2400270dc..000000000 --- a/lib/img/icons/calcite/add-to-legend.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/analysis.svg b/lib/img/icons/calcite/analysis.svg deleted file mode 100644 index b746000f1..000000000 --- a/lib/img/icons/calcite/analysis.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/approved.svg b/lib/img/icons/calcite/approved.svg deleted file mode 100644 index 2da013e81..000000000 --- a/lib/img/icons/calcite/approved.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/arrow-down.svg b/lib/img/icons/calcite/arrow-down.svg deleted file mode 100644 index ca9824175..000000000 --- a/lib/img/icons/calcite/arrow-down.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/basemap.svg b/lib/img/icons/calcite/basemap.svg deleted file mode 100644 index c783b1195..000000000 --- a/lib/img/icons/calcite/basemap.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/bookmark.svg b/lib/img/icons/calcite/bookmark.svg deleted file mode 100644 index 974545112..000000000 --- a/lib/img/icons/calcite/bookmark.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/cancel.svg b/lib/img/icons/calcite/cancel.svg deleted file mode 100644 index 8482307e0..000000000 --- a/lib/img/icons/calcite/cancel.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/close.svg b/lib/img/icons/calcite/close.svg deleted file mode 100644 index c12566654..000000000 --- a/lib/img/icons/calcite/close.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/description.svg b/lib/img/icons/calcite/description.svg deleted file mode 100644 index 9484cc95f..000000000 --- a/lib/img/icons/calcite/description.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/details.svg b/lib/img/icons/calcite/details.svg deleted file mode 100644 index 8496a8cc4..000000000 --- a/lib/img/icons/calcite/details.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/down.svg b/lib/img/icons/calcite/down.svg deleted file mode 100644 index cadcb635e..000000000 --- a/lib/img/icons/calcite/down.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/edit.svg b/lib/img/icons/calcite/edit.svg deleted file mode 100644 index 8f7f82065..000000000 --- a/lib/img/icons/calcite/edit.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/features-hosted.svg b/lib/img/icons/calcite/features-hosted.svg deleted file mode 100644 index 043b9af6e..000000000 --- a/lib/img/icons/calcite/features-hosted.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/features.svg b/lib/img/icons/calcite/features.svg deleted file mode 100644 index e7debc37e..000000000 --- a/lib/img/icons/calcite/features.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/file-gray.svg b/lib/img/icons/calcite/file-gray.svg deleted file mode 100644 index c5477b6ee..000000000 --- a/lib/img/icons/calcite/file-gray.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/file.svg b/lib/img/icons/calcite/file.svg deleted file mode 100644 index 43cfa7dab..000000000 --- a/lib/img/icons/calcite/file.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/globe.svg b/lib/img/icons/calcite/globe.svg deleted file mode 100644 index 71c75f0ee..000000000 --- a/lib/img/icons/calcite/globe.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/hide-in-legend.svg b/lib/img/icons/calcite/hide-in-legend.svg deleted file mode 100644 index c3d720fa3..000000000 --- a/lib/img/icons/calcite/hide-in-legend.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/imagery.svg b/lib/img/icons/calcite/imagery.svg deleted file mode 100644 index 756e1649e..000000000 --- a/lib/img/icons/calcite/imagery.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/layer-download.svg b/lib/img/icons/calcite/layer-download.svg deleted file mode 100644 index 67ac52137..000000000 --- a/lib/img/icons/calcite/layer-download.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/layer-export-to-file.svg b/lib/img/icons/calcite/layer-export-to-file.svg deleted file mode 100644 index 408059f54..000000000 --- a/lib/img/icons/calcite/layer-export-to-file.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/layer-export.svg b/lib/img/icons/calcite/layer-export.svg deleted file mode 100644 index 5ac86a122..000000000 --- a/lib/img/icons/calcite/layer-export.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/layer-zoom.svg b/lib/img/icons/calcite/layer-zoom.svg deleted file mode 100644 index d76fec647..000000000 --- a/lib/img/icons/calcite/layer-zoom.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/map-download.svg b/lib/img/icons/calcite/map-download.svg deleted file mode 100644 index d6381e89b..000000000 --- a/lib/img/icons/calcite/map-download.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/map-image.svg b/lib/img/icons/calcite/map-image.svg deleted file mode 100644 index 6d22f30be..000000000 --- a/lib/img/icons/calcite/map-image.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/measure-distance.svg b/lib/img/icons/calcite/measure-distance.svg deleted file mode 100644 index c1dfdfe28..000000000 --- a/lib/img/icons/calcite/measure-distance.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/measure-point.svg b/lib/img/icons/calcite/measure-point.svg deleted file mode 100644 index bedfb7599..000000000 --- a/lib/img/icons/calcite/measure-point.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/measure.svg b/lib/img/icons/calcite/measure.svg deleted file mode 100644 index 3cf35b7f9..000000000 --- a/lib/img/icons/calcite/measure.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/print.svg b/lib/img/icons/calcite/print.svg deleted file mode 100644 index f0ad20811..000000000 --- a/lib/img/icons/calcite/print.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/remove.svg b/lib/img/icons/calcite/remove.svg deleted file mode 100644 index e574936cf..000000000 --- a/lib/img/icons/calcite/remove.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/rename.svg b/lib/img/icons/calcite/rename.svg deleted file mode 100644 index 536f062f5..000000000 --- a/lib/img/icons/calcite/rename.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/scale.svg b/lib/img/icons/calcite/scale.svg deleted file mode 100644 index f80ed214b..000000000 --- a/lib/img/icons/calcite/scale.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/search.svg b/lib/img/icons/calcite/search.svg deleted file mode 100644 index dd344edd4..000000000 --- a/lib/img/icons/calcite/search.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/tiles.svg b/lib/img/icons/calcite/tiles.svg deleted file mode 100644 index 3bfede725..000000000 --- a/lib/img/icons/calcite/tiles.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/transparency.svg b/lib/img/icons/calcite/transparency.svg deleted file mode 100644 index 8c606de2a..000000000 --- a/lib/img/icons/calcite/transparency.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/up.svg b/lib/img/icons/calcite/up.svg deleted file mode 100644 index 462ee150d..000000000 --- a/lib/img/icons/calcite/up.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/web-map-blue.svg b/lib/img/icons/calcite/web-map-blue.svg deleted file mode 100644 index 76cf0aaad..000000000 --- a/lib/img/icons/calcite/web-map-blue.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/web-map.svg b/lib/img/icons/calcite/web-map.svg deleted file mode 100644 index e43bc8ecf..000000000 --- a/lib/img/icons/calcite/web-map.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/web-mapping-application-gray.svg b/lib/img/icons/calcite/web-mapping-application-gray.svg deleted file mode 100644 index 7afccefc6..000000000 --- a/lib/img/icons/calcite/web-mapping-application-gray.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/web-mapping-application.svg b/lib/img/icons/calcite/web-mapping-application.svg deleted file mode 100644 index 400e815f2..000000000 --- a/lib/img/icons/calcite/web-mapping-application.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/your-location.svg b/lib/img/icons/calcite/your-location.svg deleted file mode 100644 index 595d5d221..000000000 --- a/lib/img/icons/calcite/your-location.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/img/icons/calcite/zoom-out.svg b/lib/img/icons/calcite/zoom-out.svg deleted file mode 100644 index 2130a2739..000000000 --- a/lib/img/icons/calcite/zoom-out.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/sass/calcite-web/icons/_calcite.scss b/lib/sass/calcite-web/icons/_calcite.scss deleted file mode 100644 index 796e894af..000000000 --- a/lib/sass/calcite-web/icons/_calcite.scss +++ /dev/null @@ -1,36 +0,0 @@ -// ┌───────────────┐ -// │ Calcite Icons │ -// └───────────────┘ -// ↳ http://esri.github.io/calcite-web/icons/ -// ↳ icons → _overview.md - -@import "sets/calcite-large"; -@import "sets/calcite"; - -@mixin calcite-icons () { - - [class*="icon-calcite-"] { - width: 16px; - height: 16px; - display: inline-block; - background-color: transparent; - background-repeat: no-repeat; - } - - [class*="icon-calcite-large-"] { - width: 32px; - height: 32px; - } - - @each $icon in $calcite-large-icons { - .icon-calcite-large-#{$icon} { background-image: url('#{$image-path}/icons/calcite-large/#{$icon}.svg'); } - } - - @each $icon in $calcite-icons { - .icon-calcite-#{$icon} { background-image: url('#{$image-path}/icons/calcite/#{$icon}.svg'); } - } -} - -@if $include-calcite-icons == true { - @include calcite-icons(); -}