diff --git a/project/standard/templates/build.sh b/project/standard/templates/build.sh
index 7ba7bfacb2..9aabb82ba7 100755
--- a/project/standard/templates/build.sh
+++ b/project/standard/templates/build.sh
@@ -11,6 +11,9 @@ npm run lint
if [ $# -eq 0 ]
then
mvn clean install -Dmapstore2.version=$VERSION
- else
- mvn clean install -Dmapstore2.version=$1
+ elif [ $# -eq 1 ]
+ then
+ mvn clean install -Dmapstore2.version=$1
+ else
+ mvn clean install -Dmapstore2.version=$1 -P$2
fi
diff --git a/web/client/product/plugins/Attribution.jsx b/web/client/product/plugins/Attribution.jsx
index dce7740c2b..aa2eaf31d4 100644
--- a/web/client/product/plugins/Attribution.jsx
+++ b/web/client/product/plugins/Attribution.jsx
@@ -6,19 +6,25 @@
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
-
+import assign from 'object-assign';
import PropTypes from 'prop-types';
+
import src from '../assets/img/mapstorelogo.png';
-import assign from 'object-assign';
class Attribution extends React.Component {
static propTypes = {
src: PropTypes.string,
+ href: PropTypes.string,
+ label: PropTypes.string,
+ height: PropTypes.number,
style: PropTypes.object
};
static defaultProps = {
src: src,
+ height: 30,
+ href: 'https://www.geosolutionsgroup.com/',
+ label: 'GeoSolutions',
style: {
position: "absolute",
width: "124px",
@@ -40,6 +46,8 @@ class Attribution extends React.Component {
* @prop {string} [label='GeoSolutions'] the tooltip for the logo
* @prop {string} [href='https://www.geosolutionsgroup.com/'] the URL to redirect on click
* @prop {string} [src] URL of the logo image. By default the GeoSolutions logo.
+ * @prop {number} [height] the height of the img tag, default is 30
+ * @prop {object} [style] a style object to pass to the img
*/
export default {
AttributionPlugin: assign(Attribution, {
@@ -48,7 +56,7 @@ export default {
position: 0,
label: props.label || 'GeoSolutions',
href: props.href || 'https://www.geosolutionsgroup.com/',
- img: props.src && || ,
+ img: ,
logo: true
})
}
diff --git a/web/client/product/plugins/Footer.jsx b/web/client/product/plugins/Footer.jsx
index 00915ae849..7bb9f5e204 100644
--- a/web/client/product/plugins/Footer.jsx
+++ b/web/client/product/plugins/Footer.jsx
@@ -17,6 +17,7 @@ import {createPlugin} from "../../utils/PluginsUtils";
* Footer plugin, section of the homepage.
* description of footer can be overridden by
* `home.footerDescription` message id in the translations
+ * @prop {boolean} cfg.customFooter params that can be used to render a custom html to be used instead of the default one
* @prop {object} cfg.logo logo data to change image and href, set to null to hide the logo
* @prop {string} cfg.logo.src source of the logo
* @prop {number|string} cfg.logo.width width of the logo image
@@ -31,10 +32,12 @@ import {createPlugin} from "../../utils/PluginsUtils";
class Footer extends React.Component {
static propTypes = {
+ customFooter: PropTypes.bool,
logo: PropTypes.object
};
static defaultProps = {
+ customFooter: false,
logo: {
src,
width: 140,
@@ -55,7 +58,7 @@ class Footer extends React.Component {
title={logo.title || ''}
alt={logo.alt || ''} />
);
- return (
+ return this.props.customFooter ?
: (
{logo && logo.src &&
diff --git a/web/client/themes/default/icons.less b/web/client/themes/default/icons.less
index 5678b53b8d..4ddbd9bd86 100644
--- a/web/client/themes/default/icons.less
+++ b/web/client/themes/default/icons.less
@@ -214,194 +214,196 @@
.glyphicon-hand-right:before { content: "\f1ac"; }
.glyphicon-hand-up:before { content: "\f1ad"; }
.glyphicon-hdd:before { content: "\f1ae"; }
-.glyphicon-heart:before { content: "\f1af"; }
-.glyphicon-height-auto:before { content: "\f1b0"; }
-.glyphicon-height-from-terrain:before { content: "\f1b1"; }
-.glyphicon-height-view:before { content: "\f1b2"; }
-.glyphicon-hide-marker:before { content: "\f1b3"; }
-.glyphicon-home:before { content: "\f1b4"; }
-.glyphicon-hourglass:before { content: "\f1b5"; }
-.glyphicon-import:before { content: "\f1b6"; }
-.glyphicon-inbox:before { content: "\f1b7"; }
-.glyphicon-info-sign:before { content: "\f1b8"; }
-.glyphicon-italic:before { content: "\f1b9"; }
-.glyphicon-layer-info:before { content: "\f1ba"; }
-.glyphicon-leaf:before { content: "\f1bb"; }
-.glyphicon-level-up:before { content: "\f1bc"; }
-.glyphicon-line-dash:before { content: "\f1bd"; }
-.glyphicon-line-minus:before { content: "\f1be"; }
-.glyphicon-line-plus:before { content: "\f1bf"; }
-.glyphicon-line-remove:before { content: "\f1c0"; }
-.glyphicon-line-trash:before { content: "\f1c1"; }
-.glyphicon-line:before { content: "\f1c2"; }
-.glyphicon-link:before { content: "\f1c3"; }
-.glyphicon-list-alt:before { content: "\f1c4"; }
-.glyphicon-list:before { content: "\f1c5"; }
-.glyphicon-lock:before { content: "\f1c6"; }
-.glyphicon-log-in:before { content: "\f1c7"; }
-.glyphicon-log-out:before { content: "\f1c8"; }
-.glyphicon-loop:before { content: "\f1c9"; }
-.glyphicon-magnet:before { content: "\f1ca"; }
-.glyphicon-map-context:before { content: "\f1cb"; }
-.glyphicon-map-edit:before { content: "\f1cc"; }
-.glyphicon-map-filter:before { content: "\f1cd"; }
-.glyphicon-map-marker:before { content: "\f1ce"; }
-.glyphicon-map-synch:before { content: "\f1cf"; }
-.glyphicon-map-view:before { content: "\f1d0"; }
-.glyphicon-maps-catalog:before { content: "\f1d1"; }
-.glyphicon-menu-hamburger:before { content: "\f1d2"; }
-.glyphicon-minus-sign:before { content: "\f1d3"; }
-.glyphicon-minus:before { content: "\f1d4"; }
-.glyphicon-model-plus:before { content: "\f1d5"; }
-.glyphicon-model:before { content: "\f1d6"; }
-.glyphicon-mouse:before { content: "\f1d7"; }
-.glyphicon-move-row-after:before { content: "\f1d8"; }
-.glyphicon-move-row-before:before { content: "\f1d9"; }
-.glyphicon-move:before { content: "\f1da"; }
-.glyphicon-muted:before { content: "\f1db"; }
-.glyphicon-new-window:before { content: "\f1dc"; }
-.glyphicon-next:before { content: "\f1dd"; }
-.glyphicon-off:before { content: "\f1de"; }
-.glyphicon-ok-circle:before { content: "\f1df"; }
-.glyphicon-ok-sign:before { content: "\f1e0"; }
-.glyphicon-ok:before { content: "\f1e1"; }
-.glyphicon-open:before { content: "\f1e2"; }
-.glyphicon-option-horizontal:before { content: "\f1e3"; }
-.glyphicon-option-vertical:before { content: "\f1e4"; }
-.glyphicon-paperclip:before { content: "\f1e5"; }
-.glyphicon-paste:before { content: "\f1e6"; }
-.glyphicon-pause:before { content: "\f1e7"; }
-.glyphicon-pencil-add:before { content: "\f1e8"; }
-.glyphicon-pencil-edit:before { content: "\f1e9"; }
-.glyphicon-pencil:before { content: "\f1ea"; }
-.glyphicon-phone:before { content: "\f1eb"; }
-.glyphicon-picture:before { content: "\f1ec"; }
-.glyphicon-pie-chart:before { content: "\f1ed"; }
-.glyphicon-plane:before { content: "\f1ee"; }
-.glyphicon-play-circle:before { content: "\f1ef"; }
-.glyphicon-play:before { content: "\f1f0"; }
-.glyphicon-playback:before { content: "\f1f1"; }
-.glyphicon-plug:before { content: "\f1f2"; }
-.glyphicon-plus-sign:before { content: "\f1f3"; }
-.glyphicon-plus-square:before { content: "\f1f4"; }
-.glyphicon-plus:before { content: "\f1f5"; }
-.glyphicon-point-coordinates:before { content: "\f1f6"; }
-.glyphicon-point-dash:before { content: "\f1f7"; }
-.glyphicon-point-minus:before { content: "\f1f8"; }
-.glyphicon-point-plus:before { content: "\f1f9"; }
-.glyphicon-point-remove:before { content: "\f1fa"; }
-.glyphicon-point-trash:before { content: "\f1fb"; }
-.glyphicon-point:before { content: "\f1fc"; }
-.glyphicon-polygon-3d:before { content: "\f1fd"; }
-.glyphicon-polygon-dash:before { content: "\f1fe"; }
-.glyphicon-polygon-minus:before { content: "\f1ff"; }
-.glyphicon-polygon-plus:before { content: "\f200"; }
-.glyphicon-polygon-remove:before { content: "\f201"; }
-.glyphicon-polygon-trash:before { content: "\f202"; }
-.glyphicon-polygon:before { content: "\f203"; }
-.glyphicon-polyline-3d:before { content: "\f204"; }
-.glyphicon-polyline-dash:before { content: "\f205"; }
-.glyphicon-polyline-minus:before { content: "\f206"; }
-.glyphicon-polyline-plus:before { content: "\f207"; }
-.glyphicon-polyline-remove:before { content: "\f208"; }
-.glyphicon-polyline-trash:before { content: "\f209"; }
-.glyphicon-polyline:before { content: "\f20a"; }
-.glyphicon-preview:before { content: "\f20b"; }
-.glyphicon-print:before { content: "\f20c"; }
-.glyphicon-pushpin:before { content: "\f20d"; }
-.glyphicon-qrcode:before { content: "\f20e"; }
-.glyphicon-question-sign:before { content: "\f20f"; }
-.glyphicon-radio-off:before { content: "\f210"; }
-.glyphicon-radio-on:before { content: "\f211"; }
-.glyphicon-random:before { content: "\f212"; }
-.glyphicon-range-end:before { content: "\f213"; }
-.glyphicon-range-start:before { content: "\f214"; }
-.glyphicon-record:before { content: "\f215"; }
-.glyphicon-redo:before { content: "\f216"; }
-.glyphicon-refresh:before { content: "\f217"; }
-.glyphicon-remove-circle:before { content: "\f218"; }
-.glyphicon-remove-sign:before { content: "\f219"; }
-.glyphicon-remove-square:before { content: "\f21a"; }
-.glyphicon-remove:before { content: "\f21b"; }
-.glyphicon-repeat:before { content: "\f21c"; }
-.glyphicon-resize-full:before { content: "\f21d"; }
-.glyphicon-resize-horizontal:before { content: "\f21e"; }
-.glyphicon-resize-small:before { content: "\f21f"; }
-.glyphicon-resize-vertical:before { content: "\f220"; }
-.glyphicon-retweet:before { content: "\f221"; }
-.glyphicon-rgb:before { content: "\f222"; }
-.glyphicon-road:before { content: "\f223"; }
-.glyphicon-row-add:before { content: "\f224"; }
-.glyphicon-row-trash:before { content: "\f225"; }
-.glyphicon-save:before { content: "\f226"; }
-.glyphicon-saved:before { content: "\f227"; }
-.glyphicon-scissors:before { content: "\f228"; }
-.glyphicon-screenshot:before { content: "\f229"; }
-.glyphicon-search-coords:before { content: "\f22a"; }
-.glyphicon-search:before { content: "\f22b"; }
-.glyphicon-send:before { content: "\f22c"; }
-.glyphicon-share-alt:before { content: "\f22d"; }
-.glyphicon-share:before { content: "\f22e"; }
-.glyphicon-sheet:before { content: "\f22f"; }
-.glyphicon-shopping-cart:before { content: "\f230"; }
-.glyphicon-signal:before { content: "\f231"; }
-.glyphicon-size-extra-large:before { content: "\f232"; }
-.glyphicon-size-large:before { content: "\f233"; }
-.glyphicon-size-medium:before { content: "\f234"; }
-.glyphicon-size-small:before { content: "\f235"; }
-.glyphicon-slope:before { content: "\f236"; }
-.glyphicon-sort-by-alphabet-alt:before { content: "\f237"; }
-.glyphicon-sort-by-alphabet:before { content: "\f238"; }
-.glyphicon-sort-by-attributes-alt:before { content: "\f239"; }
-.glyphicon-sort-by-attributes:before { content: "\f23a"; }
-.glyphicon-sort:before { content: "\f23b"; }
-.glyphicon-star-empty:before { content: "\f23c"; }
-.glyphicon-star:before { content: "\f23d"; }
-.glyphicon-stats:before { content: "\f23e"; }
-.glyphicon-step-backward:before { content: "\f23f"; }
-.glyphicon-step-forward:before { content: "\f240"; }
-.glyphicon-stop:before { content: "\f241"; }
-.glyphicon-story-banner-section:before { content: "\f242"; }
-.glyphicon-story-carousel-section:before { content: "\f243"; }
-.glyphicon-story-immersive-content:before { content: "\f244"; }
-.glyphicon-story-immersive-section:before { content: "\f245"; }
-.glyphicon-story-media-section:before { content: "\f246"; }
-.glyphicon-story-paragraph-section:before { content: "\f247"; }
-.glyphicon-story-title-section:before { content: "\f248"; }
-.glyphicon-story-webpage-section:before { content: "\f249"; }
-.glyphicon-tag:before { content: "\f24a"; }
-.glyphicon-tags:before { content: "\f24b"; }
-.glyphicon-tasks:before { content: "\f24c"; }
-.glyphicon-text-background:before { content: "\f24d"; }
-.glyphicon-text-colour:before { content: "\f24e"; }
-.glyphicon-text-height:before { content: "\f24f"; }
-.glyphicon-text-width:before { content: "\f250"; }
-.glyphicon-th-large:before { content: "\f251"; }
-.glyphicon-th-list:before { content: "\f252"; }
-.glyphicon-th:before { content: "\f253"; }
-.glyphicon-thumbs-down:before { content: "\f254"; }
-.glyphicon-thumbs-up:before { content: "\f255"; }
-.glyphicon-time-current:before { content: "\f256"; }
-.glyphicon-time-offset:before { content: "\f257"; }
-.glyphicon-time:before { content: "\f258"; }
-.glyphicon-tint:before { content: "\f259"; }
-.glyphicon-transfer:before { content: "\f25a"; }
-.glyphicon-trash-square:before { content: "\f25b"; }
-.glyphicon-trash:before { content: "\f25c"; }
-.glyphicon-unchecked:before { content: "\f25d"; }
-.glyphicon-undo:before { content: "\f25e"; }
-.glyphicon-unplug:before { content: "\f25f"; }
-.glyphicon-upload:before { content: "\f260"; }
-.glyphicon-usd:before { content: "\f261"; }
-.glyphicon-user:before { content: "\f262"; }
-.glyphicon-vert-dashed:before { content: "\f263"; }
-.glyphicon-viewport-filter:before { content: "\f264"; }
-.glyphicon-warning-sign:before { content: "\f265"; }
-.glyphicon-webpage:before { content: "\f266"; }
-.glyphicon-wrench:before { content: "\f267"; }
-.glyphicon-zoom-in:before { content: "\f268"; }
-.glyphicon-zoom-out:before { content: "\f269"; }
-.glyphicon-zoom-to:before { content: "\f26a"; }
+.glyphicon-headphones:before { content: "\f1af"; }
+.glyphicon-heart:before { content: "\f1b0"; }
+.glyphicon-height-auto:before { content: "\f1b1"; }
+.glyphicon-height-from-terrain:before { content: "\f1b2"; }
+.glyphicon-height-view:before { content: "\f1b3"; }
+.glyphicon-hide-marker:before { content: "\f1b4"; }
+.glyphicon-home:before { content: "\f1b5"; }
+.glyphicon-hourglass:before { content: "\f1b6"; }
+.glyphicon-import:before { content: "\f1b7"; }
+.glyphicon-inbox:before { content: "\f1b8"; }
+.glyphicon-info-sign:before { content: "\f1b9"; }
+.glyphicon-italic:before { content: "\f1ba"; }
+.glyphicon-layer-info:before { content: "\f1bb"; }
+.glyphicon-leaf:before { content: "\f1bc"; }
+.glyphicon-level-up:before { content: "\f1bd"; }
+.glyphicon-line-dash:before { content: "\f1be"; }
+.glyphicon-line-minus:before { content: "\f1bf"; }
+.glyphicon-line-plus:before { content: "\f1c0"; }
+.glyphicon-line-remove:before { content: "\f1c1"; }
+.glyphicon-line-trash:before { content: "\f1c2"; }
+.glyphicon-line:before { content: "\f1c3"; }
+.glyphicon-link:before { content: "\f1c4"; }
+.glyphicon-list-alt:before { content: "\f1c5"; }
+.glyphicon-list:before { content: "\f1c6"; }
+.glyphicon-lock:before { content: "\f1c7"; }
+.glyphicon-log-in:before { content: "\f1c8"; }
+.glyphicon-log-out:before { content: "\f1c9"; }
+.glyphicon-loop:before { content: "\f1ca"; }
+.glyphicon-magnet:before { content: "\f1cb"; }
+.glyphicon-map-context:before { content: "\f1cc"; }
+.glyphicon-map-edit:before { content: "\f1cd"; }
+.glyphicon-map-filter:before { content: "\f1ce"; }
+.glyphicon-map-marker:before { content: "\f1cf"; }
+.glyphicon-map-synch:before { content: "\f1d0"; }
+.glyphicon-map-view:before { content: "\f1d1"; }
+.glyphicon-maps-catalog:before { content: "\f1d2"; }
+.glyphicon-menu-hamburger:before { content: "\f1d3"; }
+.glyphicon-minus-sign:before { content: "\f1d4"; }
+.glyphicon-minus:before { content: "\f1d5"; }
+.glyphicon-model-plus:before { content: "\f1d6"; }
+.glyphicon-model:before { content: "\f1d7"; }
+.glyphicon-mouse:before { content: "\f1d8"; }
+.glyphicon-move-row-after:before { content: "\f1d9"; }
+.glyphicon-move-row-before:before { content: "\f1da"; }
+.glyphicon-move:before { content: "\f1db"; }
+.glyphicon-muted:before { content: "\f1dc"; }
+.glyphicon-new-window:before { content: "\f1dd"; }
+.glyphicon-next:before { content: "\f1de"; }
+.glyphicon-off:before { content: "\f1df"; }
+.glyphicon-ok-circle:before { content: "\f1e0"; }
+.glyphicon-ok-sign:before { content: "\f1e1"; }
+.glyphicon-ok:before { content: "\f1e2"; }
+.glyphicon-open:before { content: "\f1e3"; }
+.glyphicon-option-horizontal:before { content: "\f1e4"; }
+.glyphicon-option-vertical:before { content: "\f1e5"; }
+.glyphicon-paperclip:before { content: "\f1e6"; }
+.glyphicon-paste:before { content: "\f1e7"; }
+.glyphicon-pause:before { content: "\f1e8"; }
+.glyphicon-pencil-add:before { content: "\f1e9"; }
+.glyphicon-pencil-edit:before { content: "\f1ea"; }
+.glyphicon-pencil:before { content: "\f1eb"; }
+.glyphicon-phone:before { content: "\f1ec"; }
+.glyphicon-picture:before { content: "\f1ed"; }
+.glyphicon-pie-chart:before { content: "\f1ee"; }
+.glyphicon-plane:before { content: "\f1ef"; }
+.glyphicon-play-circle:before { content: "\f1f0"; }
+.glyphicon-play:before { content: "\f1f1"; }
+.glyphicon-playback:before { content: "\f1f2"; }
+.glyphicon-plug:before { content: "\f1f3"; }
+.glyphicon-plus-sign:before { content: "\f1f4"; }
+.glyphicon-plus-square:before { content: "\f1f5"; }
+.glyphicon-plus:before { content: "\f1f6"; }
+.glyphicon-point-coordinates:before { content: "\f1f7"; }
+.glyphicon-point-dash:before { content: "\f1f8"; }
+.glyphicon-point-minus:before { content: "\f1f9"; }
+.glyphicon-point-plus:before { content: "\f1fa"; }
+.glyphicon-point-remove:before { content: "\f1fb"; }
+.glyphicon-point-trash:before { content: "\f1fc"; }
+.glyphicon-point:before { content: "\f1fd"; }
+.glyphicon-polygon-3d:before { content: "\f1fe"; }
+.glyphicon-polygon-dash:before { content: "\f1ff"; }
+.glyphicon-polygon-minus:before { content: "\f200"; }
+.glyphicon-polygon-plus:before { content: "\f201"; }
+.glyphicon-polygon-remove:before { content: "\f202"; }
+.glyphicon-polygon-trash:before { content: "\f203"; }
+.glyphicon-polygon:before { content: "\f204"; }
+.glyphicon-polyline-3d:before { content: "\f205"; }
+.glyphicon-polyline-dash:before { content: "\f206"; }
+.glyphicon-polyline-minus:before { content: "\f207"; }
+.glyphicon-polyline-plus:before { content: "\f208"; }
+.glyphicon-polyline-remove:before { content: "\f209"; }
+.glyphicon-polyline-trash:before { content: "\f20a"; }
+.glyphicon-polyline:before { content: "\f20b"; }
+.glyphicon-preview:before { content: "\f20c"; }
+.glyphicon-print:before { content: "\f20d"; }
+.glyphicon-pushpin:before { content: "\f20e"; }
+.glyphicon-qrcode:before { content: "\f20f"; }
+.glyphicon-question-sign:before { content: "\f210"; }
+.glyphicon-radio-off:before { content: "\f211"; }
+.glyphicon-radio-on:before { content: "\f212"; }
+.glyphicon-random:before { content: "\f213"; }
+.glyphicon-range-end:before { content: "\f214"; }
+.glyphicon-range-start:before { content: "\f215"; }
+.glyphicon-record:before { content: "\f216"; }
+.glyphicon-redo:before { content: "\f217"; }
+.glyphicon-refresh:before { content: "\f218"; }
+.glyphicon-remove-circle:before { content: "\f219"; }
+.glyphicon-remove-sign:before { content: "\f21a"; }
+.glyphicon-remove-square:before { content: "\f21b"; }
+.glyphicon-remove:before { content: "\f21c"; }
+.glyphicon-repeat:before { content: "\f21d"; }
+.glyphicon-resize-full:before { content: "\f21e"; }
+.glyphicon-resize-horizontal:before { content: "\f21f"; }
+.glyphicon-resize-small:before { content: "\f220"; }
+.glyphicon-resize-vertical:before { content: "\f221"; }
+.glyphicon-retweet:before { content: "\f222"; }
+.glyphicon-rgb:before { content: "\f223"; }
+.glyphicon-road:before { content: "\f224"; }
+.glyphicon-row-add:before { content: "\f225"; }
+.glyphicon-row-trash:before { content: "\f226"; }
+.glyphicon-save:before { content: "\f227"; }
+.glyphicon-saved:before { content: "\f228"; }
+.glyphicon-scissors:before { content: "\f229"; }
+.glyphicon-screenshot:before { content: "\f22a"; }
+.glyphicon-search-coords:before { content: "\f22b"; }
+.glyphicon-search:before { content: "\f22c"; }
+.glyphicon-send:before { content: "\f22d"; }
+.glyphicon-share-alt:before { content: "\f22e"; }
+.glyphicon-share:before { content: "\f22f"; }
+.glyphicon-sheet:before { content: "\f230"; }
+.glyphicon-shopping-cart:before { content: "\f231"; }
+.glyphicon-signal:before { content: "\f232"; }
+.glyphicon-size-extra-large:before { content: "\f233"; }
+.glyphicon-size-large:before { content: "\f234"; }
+.glyphicon-size-medium:before { content: "\f235"; }
+.glyphicon-size-small:before { content: "\f236"; }
+.glyphicon-slope:before { content: "\f237"; }
+.glyphicon-sort-by-alphabet-alt:before { content: "\f238"; }
+.glyphicon-sort-by-alphabet:before { content: "\f239"; }
+.glyphicon-sort-by-attributes-alt:before { content: "\f23a"; }
+.glyphicon-sort-by-attributes:before { content: "\f23b"; }
+.glyphicon-sort:before { content: "\f23c"; }
+.glyphicon-star-empty:before { content: "\f23d"; }
+.glyphicon-star:before { content: "\f23e"; }
+.glyphicon-stats:before { content: "\f23f"; }
+.glyphicon-step-backward:before { content: "\f240"; }
+.glyphicon-step-forward:before { content: "\f241"; }
+.glyphicon-stop:before { content: "\f242"; }
+.glyphicon-story-banner-section:before { content: "\f243"; }
+.glyphicon-story-carousel-section:before { content: "\f244"; }
+.glyphicon-story-immersive-content:before { content: "\f245"; }
+.glyphicon-story-immersive-section:before { content: "\f246"; }
+.glyphicon-story-media-section:before { content: "\f247"; }
+.glyphicon-story-paragraph-section:before { content: "\f248"; }
+.glyphicon-story-title-section:before { content: "\f249"; }
+.glyphicon-story-webpage-section:before { content: "\f24a"; }
+.glyphicon-tag:before { content: "\f24b"; }
+.glyphicon-tags:before { content: "\f24c"; }
+.glyphicon-tasks:before { content: "\f24d"; }
+.glyphicon-text-background:before { content: "\f24e"; }
+.glyphicon-text-colour:before { content: "\f24f"; }
+.glyphicon-text-height:before { content: "\f250"; }
+.glyphicon-text-width:before { content: "\f251"; }
+.glyphicon-th-large:before { content: "\f252"; }
+.glyphicon-th-list:before { content: "\f253"; }
+.glyphicon-th:before { content: "\f254"; }
+.glyphicon-thumbs-down:before { content: "\f255"; }
+.glyphicon-thumbs-up:before { content: "\f256"; }
+.glyphicon-time-current:before { content: "\f257"; }
+.glyphicon-time-offset:before { content: "\f258"; }
+.glyphicon-time:before { content: "\f259"; }
+.glyphicon-tint:before { content: "\f25a"; }
+.glyphicon-transfer:before { content: "\f25b"; }
+.glyphicon-trash-square:before { content: "\f25c"; }
+.glyphicon-trash:before { content: "\f25d"; }
+.glyphicon-triangle-top:before { content: "\f25e"; }
+.glyphicon-unchecked:before { content: "\f25f"; }
+.glyphicon-undo:before { content: "\f260"; }
+.glyphicon-unplug:before { content: "\f261"; }
+.glyphicon-upload:before { content: "\f262"; }
+.glyphicon-usd:before { content: "\f263"; }
+.glyphicon-user:before { content: "\f264"; }
+.glyphicon-vert-dashed:before { content: "\f265"; }
+.glyphicon-viewport-filter:before { content: "\f266"; }
+.glyphicon-warning-sign:before { content: "\f267"; }
+.glyphicon-webpage:before { content: "\f268"; }
+.glyphicon-wrench:before { content: "\f269"; }
+.glyphicon-zoom-in:before { content: "\f26a"; }
+.glyphicon-zoom-out:before { content: "\f26b"; }
+.glyphicon-zoom-to:before { content: "\f26c"; }
/*
classes with icon code
@@ -582,191 +584,193 @@ structure .glyphicon-{iconName}-content
.glyphicon-hand-right-content { content: "\f1ac"; }
.glyphicon-hand-up-content { content: "\f1ad"; }
.glyphicon-hdd-content { content: "\f1ae"; }
-.glyphicon-heart-content { content: "\f1af"; }
-.glyphicon-height-auto-content { content: "\f1b0"; }
-.glyphicon-height-from-terrain-content { content: "\f1b1"; }
-.glyphicon-height-view-content { content: "\f1b2"; }
-.glyphicon-hide-marker-content { content: "\f1b3"; }
-.glyphicon-home-content { content: "\f1b4"; }
-.glyphicon-hourglass-content { content: "\f1b5"; }
-.glyphicon-import-content { content: "\f1b6"; }
-.glyphicon-inbox-content { content: "\f1b7"; }
-.glyphicon-info-sign-content { content: "\f1b8"; }
-.glyphicon-italic-content { content: "\f1b9"; }
-.glyphicon-layer-info-content { content: "\f1ba"; }
-.glyphicon-leaf-content { content: "\f1bb"; }
-.glyphicon-level-up-content { content: "\f1bc"; }
-.glyphicon-line-dash-content { content: "\f1bd"; }
-.glyphicon-line-minus-content { content: "\f1be"; }
-.glyphicon-line-plus-content { content: "\f1bf"; }
-.glyphicon-line-remove-content { content: "\f1c0"; }
-.glyphicon-line-trash-content { content: "\f1c1"; }
-.glyphicon-line-content { content: "\f1c2"; }
-.glyphicon-link-content { content: "\f1c3"; }
-.glyphicon-list-alt-content { content: "\f1c4"; }
-.glyphicon-list-content { content: "\f1c5"; }
-.glyphicon-lock-content { content: "\f1c6"; }
-.glyphicon-log-in-content { content: "\f1c7"; }
-.glyphicon-log-out-content { content: "\f1c8"; }
-.glyphicon-loop-content { content: "\f1c9"; }
-.glyphicon-magnet-content { content: "\f1ca"; }
-.glyphicon-map-context-content { content: "\f1cb"; }
-.glyphicon-map-edit-content { content: "\f1cc"; }
-.glyphicon-map-filter-content { content: "\f1cd"; }
-.glyphicon-map-marker-content { content: "\f1ce"; }
-.glyphicon-map-synch-content { content: "\f1cf"; }
-.glyphicon-map-view-content { content: "\f1d0"; }
-.glyphicon-maps-catalog-content { content: "\f1d1"; }
-.glyphicon-menu-hamburger-content { content: "\f1d2"; }
-.glyphicon-minus-sign-content { content: "\f1d3"; }
-.glyphicon-minus-content { content: "\f1d4"; }
-.glyphicon-model-plus-content { content: "\f1d5"; }
-.glyphicon-model-content { content: "\f1d6"; }
-.glyphicon-mouse-content { content: "\f1d7"; }
-.glyphicon-move-row-after-content { content: "\f1d8"; }
-.glyphicon-move-row-before-content { content: "\f1d9"; }
-.glyphicon-move-content { content: "\f1da"; }
-.glyphicon-muted-content { content: "\f1db"; }
-.glyphicon-new-window-content { content: "\f1dc"; }
-.glyphicon-next-content { content: "\f1dd"; }
-.glyphicon-off-content { content: "\f1de"; }
-.glyphicon-ok-circle-content { content: "\f1df"; }
-.glyphicon-ok-sign-content { content: "\f1e0"; }
-.glyphicon-ok-content { content: "\f1e1"; }
-.glyphicon-open-content { content: "\f1e2"; }
-.glyphicon-option-horizontal-content { content: "\f1e3"; }
-.glyphicon-option-vertical-content { content: "\f1e4"; }
-.glyphicon-paperclip-content { content: "\f1e5"; }
-.glyphicon-paste-content { content: "\f1e6"; }
-.glyphicon-pause-content { content: "\f1e7"; }
-.glyphicon-pencil-add-content { content: "\f1e8"; }
-.glyphicon-pencil-edit-content { content: "\f1e9"; }
-.glyphicon-pencil-content { content: "\f1ea"; }
-.glyphicon-phone-content { content: "\f1eb"; }
-.glyphicon-picture-content { content: "\f1ec"; }
-.glyphicon-pie-chart-content { content: "\f1ed"; }
-.glyphicon-plane-content { content: "\f1ee"; }
-.glyphicon-play-circle-content { content: "\f1ef"; }
-.glyphicon-play-content { content: "\f1f0"; }
-.glyphicon-playback-content { content: "\f1f1"; }
-.glyphicon-plug-content { content: "\f1f2"; }
-.glyphicon-plus-sign-content { content: "\f1f3"; }
-.glyphicon-plus-square-content { content: "\f1f4"; }
-.glyphicon-plus-content { content: "\f1f5"; }
-.glyphicon-point-coordinates-content { content: "\f1f6"; }
-.glyphicon-point-dash-content { content: "\f1f7"; }
-.glyphicon-point-minus-content { content: "\f1f8"; }
-.glyphicon-point-plus-content { content: "\f1f9"; }
-.glyphicon-point-remove-content { content: "\f1fa"; }
-.glyphicon-point-trash-content { content: "\f1fb"; }
-.glyphicon-point-content { content: "\f1fc"; }
-.glyphicon-polygon-3d-content { content: "\f1fd"; }
-.glyphicon-polygon-dash-content { content: "\f1fe"; }
-.glyphicon-polygon-minus-content { content: "\f1ff"; }
-.glyphicon-polygon-plus-content { content: "\f200"; }
-.glyphicon-polygon-remove-content { content: "\f201"; }
-.glyphicon-polygon-trash-content { content: "\f202"; }
-.glyphicon-polygon-content { content: "\f203"; }
-.glyphicon-polyline-3d-content { content: "\f204"; }
-.glyphicon-polyline-dash-content { content: "\f205"; }
-.glyphicon-polyline-minus-content { content: "\f206"; }
-.glyphicon-polyline-plus-content { content: "\f207"; }
-.glyphicon-polyline-remove-content { content: "\f208"; }
-.glyphicon-polyline-trash-content { content: "\f209"; }
-.glyphicon-polyline-content { content: "\f20a"; }
-.glyphicon-preview-content { content: "\f20b"; }
-.glyphicon-print-content { content: "\f20c"; }
-.glyphicon-pushpin-content { content: "\f20d"; }
-.glyphicon-qrcode-content { content: "\f20e"; }
-.glyphicon-question-sign-content { content: "\f20f"; }
-.glyphicon-radio-off-content { content: "\f210"; }
-.glyphicon-radio-on-content { content: "\f211"; }
-.glyphicon-random-content { content: "\f212"; }
-.glyphicon-range-end-content { content: "\f213"; }
-.glyphicon-range-start-content { content: "\f214"; }
-.glyphicon-record-content { content: "\f215"; }
-.glyphicon-redo-content { content: "\f216"; }
-.glyphicon-refresh-content { content: "\f217"; }
-.glyphicon-remove-circle-content { content: "\f218"; }
-.glyphicon-remove-sign-content { content: "\f219"; }
-.glyphicon-remove-square-content { content: "\f21a"; }
-.glyphicon-remove-content { content: "\f21b"; }
-.glyphicon-repeat-content { content: "\f21c"; }
-.glyphicon-resize-full-content { content: "\f21d"; }
-.glyphicon-resize-horizontal-content { content: "\f21e"; }
-.glyphicon-resize-small-content { content: "\f21f"; }
-.glyphicon-resize-vertical-content { content: "\f220"; }
-.glyphicon-retweet-content { content: "\f221"; }
-.glyphicon-rgb-content { content: "\f222"; }
-.glyphicon-road-content { content: "\f223"; }
-.glyphicon-row-add-content { content: "\f224"; }
-.glyphicon-row-trash-content { content: "\f225"; }
-.glyphicon-save-content { content: "\f226"; }
-.glyphicon-saved-content { content: "\f227"; }
-.glyphicon-scissors-content { content: "\f228"; }
-.glyphicon-screenshot-content { content: "\f229"; }
-.glyphicon-search-coords-content { content: "\f22a"; }
-.glyphicon-search-content { content: "\f22b"; }
-.glyphicon-send-content { content: "\f22c"; }
-.glyphicon-share-alt-content { content: "\f22d"; }
-.glyphicon-share-content { content: "\f22e"; }
-.glyphicon-sheet-content { content: "\f22f"; }
-.glyphicon-shopping-cart-content { content: "\f230"; }
-.glyphicon-signal-content { content: "\f231"; }
-.glyphicon-size-extra-large-content { content: "\f232"; }
-.glyphicon-size-large-content { content: "\f233"; }
-.glyphicon-size-medium-content { content: "\f234"; }
-.glyphicon-size-small-content { content: "\f235"; }
-.glyphicon-slope-content { content: "\f236"; }
-.glyphicon-sort-by-alphabet-alt-content { content: "\f237"; }
-.glyphicon-sort-by-alphabet-content { content: "\f238"; }
-.glyphicon-sort-by-attributes-alt-content { content: "\f239"; }
-.glyphicon-sort-by-attributes-content { content: "\f23a"; }
-.glyphicon-sort-content { content: "\f23b"; }
-.glyphicon-star-empty-content { content: "\f23c"; }
-.glyphicon-star-content { content: "\f23d"; }
-.glyphicon-stats-content { content: "\f23e"; }
-.glyphicon-step-backward-content { content: "\f23f"; }
-.glyphicon-step-forward-content { content: "\f240"; }
-.glyphicon-stop-content { content: "\f241"; }
-.glyphicon-story-banner-section-content { content: "\f242"; }
-.glyphicon-story-carousel-section-content { content: "\f243"; }
-.glyphicon-story-immersive-content-content { content: "\f244"; }
-.glyphicon-story-immersive-section-content { content: "\f245"; }
-.glyphicon-story-media-section-content { content: "\f246"; }
-.glyphicon-story-paragraph-section-content { content: "\f247"; }
-.glyphicon-story-title-section-content { content: "\f248"; }
-.glyphicon-story-webpage-section-content { content: "\f249"; }
-.glyphicon-tag-content { content: "\f24a"; }
-.glyphicon-tags-content { content: "\f24b"; }
-.glyphicon-tasks-content { content: "\f24c"; }
-.glyphicon-text-background-content { content: "\f24d"; }
-.glyphicon-text-colour-content { content: "\f24e"; }
-.glyphicon-text-height-content { content: "\f24f"; }
-.glyphicon-text-width-content { content: "\f250"; }
-.glyphicon-th-large-content { content: "\f251"; }
-.glyphicon-th-list-content { content: "\f252"; }
-.glyphicon-th-content { content: "\f253"; }
-.glyphicon-thumbs-down-content { content: "\f254"; }
-.glyphicon-thumbs-up-content { content: "\f255"; }
-.glyphicon-time-current-content { content: "\f256"; }
-.glyphicon-time-offset-content { content: "\f257"; }
-.glyphicon-time-content { content: "\f258"; }
-.glyphicon-tint-content { content: "\f259"; }
-.glyphicon-transfer-content { content: "\f25a"; }
-.glyphicon-trash-square-content { content: "\f25b"; }
-.glyphicon-trash-content { content: "\f25c"; }
-.glyphicon-unchecked-content { content: "\f25d"; }
-.glyphicon-undo-content { content: "\f25e"; }
-.glyphicon-unplug-content { content: "\f25f"; }
-.glyphicon-upload-content { content: "\f260"; }
-.glyphicon-usd-content { content: "\f261"; }
-.glyphicon-user-content { content: "\f262"; }
-.glyphicon-vert-dashed-content { content: "\f263"; }
-.glyphicon-viewport-filter-content { content: "\f264"; }
-.glyphicon-warning-sign-content { content: "\f265"; }
-.glyphicon-webpage-content { content: "\f266"; }
-.glyphicon-wrench-content { content: "\f267"; }
-.glyphicon-zoom-in-content { content: "\f268"; }
-.glyphicon-zoom-out-content { content: "\f269"; }
-.glyphicon-zoom-to-content { content: "\f26a"; }
+.glyphicon-headphones-content { content: "\f1af"; }
+.glyphicon-heart-content { content: "\f1b0"; }
+.glyphicon-height-auto-content { content: "\f1b1"; }
+.glyphicon-height-from-terrain-content { content: "\f1b2"; }
+.glyphicon-height-view-content { content: "\f1b3"; }
+.glyphicon-hide-marker-content { content: "\f1b4"; }
+.glyphicon-home-content { content: "\f1b5"; }
+.glyphicon-hourglass-content { content: "\f1b6"; }
+.glyphicon-import-content { content: "\f1b7"; }
+.glyphicon-inbox-content { content: "\f1b8"; }
+.glyphicon-info-sign-content { content: "\f1b9"; }
+.glyphicon-italic-content { content: "\f1ba"; }
+.glyphicon-layer-info-content { content: "\f1bb"; }
+.glyphicon-leaf-content { content: "\f1bc"; }
+.glyphicon-level-up-content { content: "\f1bd"; }
+.glyphicon-line-dash-content { content: "\f1be"; }
+.glyphicon-line-minus-content { content: "\f1bf"; }
+.glyphicon-line-plus-content { content: "\f1c0"; }
+.glyphicon-line-remove-content { content: "\f1c1"; }
+.glyphicon-line-trash-content { content: "\f1c2"; }
+.glyphicon-line-content { content: "\f1c3"; }
+.glyphicon-link-content { content: "\f1c4"; }
+.glyphicon-list-alt-content { content: "\f1c5"; }
+.glyphicon-list-content { content: "\f1c6"; }
+.glyphicon-lock-content { content: "\f1c7"; }
+.glyphicon-log-in-content { content: "\f1c8"; }
+.glyphicon-log-out-content { content: "\f1c9"; }
+.glyphicon-loop-content { content: "\f1ca"; }
+.glyphicon-magnet-content { content: "\f1cb"; }
+.glyphicon-map-context-content { content: "\f1cc"; }
+.glyphicon-map-edit-content { content: "\f1cd"; }
+.glyphicon-map-filter-content { content: "\f1ce"; }
+.glyphicon-map-marker-content { content: "\f1cf"; }
+.glyphicon-map-synch-content { content: "\f1d0"; }
+.glyphicon-map-view-content { content: "\f1d1"; }
+.glyphicon-maps-catalog-content { content: "\f1d2"; }
+.glyphicon-menu-hamburger-content { content: "\f1d3"; }
+.glyphicon-minus-sign-content { content: "\f1d4"; }
+.glyphicon-minus-content { content: "\f1d5"; }
+.glyphicon-model-plus-content { content: "\f1d6"; }
+.glyphicon-model-content { content: "\f1d7"; }
+.glyphicon-mouse-content { content: "\f1d8"; }
+.glyphicon-move-row-after-content { content: "\f1d9"; }
+.glyphicon-move-row-before-content { content: "\f1da"; }
+.glyphicon-move-content { content: "\f1db"; }
+.glyphicon-muted-content { content: "\f1dc"; }
+.glyphicon-new-window-content { content: "\f1dd"; }
+.glyphicon-next-content { content: "\f1de"; }
+.glyphicon-off-content { content: "\f1df"; }
+.glyphicon-ok-circle-content { content: "\f1e0"; }
+.glyphicon-ok-sign-content { content: "\f1e1"; }
+.glyphicon-ok-content { content: "\f1e2"; }
+.glyphicon-open-content { content: "\f1e3"; }
+.glyphicon-option-horizontal-content { content: "\f1e4"; }
+.glyphicon-option-vertical-content { content: "\f1e5"; }
+.glyphicon-paperclip-content { content: "\f1e6"; }
+.glyphicon-paste-content { content: "\f1e7"; }
+.glyphicon-pause-content { content: "\f1e8"; }
+.glyphicon-pencil-add-content { content: "\f1e9"; }
+.glyphicon-pencil-edit-content { content: "\f1ea"; }
+.glyphicon-pencil-content { content: "\f1eb"; }
+.glyphicon-phone-content { content: "\f1ec"; }
+.glyphicon-picture-content { content: "\f1ed"; }
+.glyphicon-pie-chart-content { content: "\f1ee"; }
+.glyphicon-plane-content { content: "\f1ef"; }
+.glyphicon-play-circle-content { content: "\f1f0"; }
+.glyphicon-play-content { content: "\f1f1"; }
+.glyphicon-playback-content { content: "\f1f2"; }
+.glyphicon-plug-content { content: "\f1f3"; }
+.glyphicon-plus-sign-content { content: "\f1f4"; }
+.glyphicon-plus-square-content { content: "\f1f5"; }
+.glyphicon-plus-content { content: "\f1f6"; }
+.glyphicon-point-coordinates-content { content: "\f1f7"; }
+.glyphicon-point-dash-content { content: "\f1f8"; }
+.glyphicon-point-minus-content { content: "\f1f9"; }
+.glyphicon-point-plus-content { content: "\f1fa"; }
+.glyphicon-point-remove-content { content: "\f1fb"; }
+.glyphicon-point-trash-content { content: "\f1fc"; }
+.glyphicon-point-content { content: "\f1fd"; }
+.glyphicon-polygon-3d-content { content: "\f1fe"; }
+.glyphicon-polygon-dash-content { content: "\f1ff"; }
+.glyphicon-polygon-minus-content { content: "\f200"; }
+.glyphicon-polygon-plus-content { content: "\f201"; }
+.glyphicon-polygon-remove-content { content: "\f202"; }
+.glyphicon-polygon-trash-content { content: "\f203"; }
+.glyphicon-polygon-content { content: "\f204"; }
+.glyphicon-polyline-3d-content { content: "\f205"; }
+.glyphicon-polyline-dash-content { content: "\f206"; }
+.glyphicon-polyline-minus-content { content: "\f207"; }
+.glyphicon-polyline-plus-content { content: "\f208"; }
+.glyphicon-polyline-remove-content { content: "\f209"; }
+.glyphicon-polyline-trash-content { content: "\f20a"; }
+.glyphicon-polyline-content { content: "\f20b"; }
+.glyphicon-preview-content { content: "\f20c"; }
+.glyphicon-print-content { content: "\f20d"; }
+.glyphicon-pushpin-content { content: "\f20e"; }
+.glyphicon-qrcode-content { content: "\f20f"; }
+.glyphicon-question-sign-content { content: "\f210"; }
+.glyphicon-radio-off-content { content: "\f211"; }
+.glyphicon-radio-on-content { content: "\f212"; }
+.glyphicon-random-content { content: "\f213"; }
+.glyphicon-range-end-content { content: "\f214"; }
+.glyphicon-range-start-content { content: "\f215"; }
+.glyphicon-record-content { content: "\f216"; }
+.glyphicon-redo-content { content: "\f217"; }
+.glyphicon-refresh-content { content: "\f218"; }
+.glyphicon-remove-circle-content { content: "\f219"; }
+.glyphicon-remove-sign-content { content: "\f21a"; }
+.glyphicon-remove-square-content { content: "\f21b"; }
+.glyphicon-remove-content { content: "\f21c"; }
+.glyphicon-repeat-content { content: "\f21d"; }
+.glyphicon-resize-full-content { content: "\f21e"; }
+.glyphicon-resize-horizontal-content { content: "\f21f"; }
+.glyphicon-resize-small-content { content: "\f220"; }
+.glyphicon-resize-vertical-content { content: "\f221"; }
+.glyphicon-retweet-content { content: "\f222"; }
+.glyphicon-rgb-content { content: "\f223"; }
+.glyphicon-road-content { content: "\f224"; }
+.glyphicon-row-add-content { content: "\f225"; }
+.glyphicon-row-trash-content { content: "\f226"; }
+.glyphicon-save-content { content: "\f227"; }
+.glyphicon-saved-content { content: "\f228"; }
+.glyphicon-scissors-content { content: "\f229"; }
+.glyphicon-screenshot-content { content: "\f22a"; }
+.glyphicon-search-coords-content { content: "\f22b"; }
+.glyphicon-search-content { content: "\f22c"; }
+.glyphicon-send-content { content: "\f22d"; }
+.glyphicon-share-alt-content { content: "\f22e"; }
+.glyphicon-share-content { content: "\f22f"; }
+.glyphicon-sheet-content { content: "\f230"; }
+.glyphicon-shopping-cart-content { content: "\f231"; }
+.glyphicon-signal-content { content: "\f232"; }
+.glyphicon-size-extra-large-content { content: "\f233"; }
+.glyphicon-size-large-content { content: "\f234"; }
+.glyphicon-size-medium-content { content: "\f235"; }
+.glyphicon-size-small-content { content: "\f236"; }
+.glyphicon-slope-content { content: "\f237"; }
+.glyphicon-sort-by-alphabet-alt-content { content: "\f238"; }
+.glyphicon-sort-by-alphabet-content { content: "\f239"; }
+.glyphicon-sort-by-attributes-alt-content { content: "\f23a"; }
+.glyphicon-sort-by-attributes-content { content: "\f23b"; }
+.glyphicon-sort-content { content: "\f23c"; }
+.glyphicon-star-empty-content { content: "\f23d"; }
+.glyphicon-star-content { content: "\f23e"; }
+.glyphicon-stats-content { content: "\f23f"; }
+.glyphicon-step-backward-content { content: "\f240"; }
+.glyphicon-step-forward-content { content: "\f241"; }
+.glyphicon-stop-content { content: "\f242"; }
+.glyphicon-story-banner-section-content { content: "\f243"; }
+.glyphicon-story-carousel-section-content { content: "\f244"; }
+.glyphicon-story-immersive-content-content { content: "\f245"; }
+.glyphicon-story-immersive-section-content { content: "\f246"; }
+.glyphicon-story-media-section-content { content: "\f247"; }
+.glyphicon-story-paragraph-section-content { content: "\f248"; }
+.glyphicon-story-title-section-content { content: "\f249"; }
+.glyphicon-story-webpage-section-content { content: "\f24a"; }
+.glyphicon-tag-content { content: "\f24b"; }
+.glyphicon-tags-content { content: "\f24c"; }
+.glyphicon-tasks-content { content: "\f24d"; }
+.glyphicon-text-background-content { content: "\f24e"; }
+.glyphicon-text-colour-content { content: "\f24f"; }
+.glyphicon-text-height-content { content: "\f250"; }
+.glyphicon-text-width-content { content: "\f251"; }
+.glyphicon-th-large-content { content: "\f252"; }
+.glyphicon-th-list-content { content: "\f253"; }
+.glyphicon-th-content { content: "\f254"; }
+.glyphicon-thumbs-down-content { content: "\f255"; }
+.glyphicon-thumbs-up-content { content: "\f256"; }
+.glyphicon-time-current-content { content: "\f257"; }
+.glyphicon-time-offset-content { content: "\f258"; }
+.glyphicon-time-content { content: "\f259"; }
+.glyphicon-tint-content { content: "\f25a"; }
+.glyphicon-transfer-content { content: "\f25b"; }
+.glyphicon-trash-square-content { content: "\f25c"; }
+.glyphicon-trash-content { content: "\f25d"; }
+.glyphicon-triangle-top-content { content: "\f25e"; }
+.glyphicon-unchecked-content { content: "\f25f"; }
+.glyphicon-undo-content { content: "\f260"; }
+.glyphicon-unplug-content { content: "\f261"; }
+.glyphicon-upload-content { content: "\f262"; }
+.glyphicon-usd-content { content: "\f263"; }
+.glyphicon-user-content { content: "\f264"; }
+.glyphicon-vert-dashed-content { content: "\f265"; }
+.glyphicon-viewport-filter-content { content: "\f266"; }
+.glyphicon-warning-sign-content { content: "\f267"; }
+.glyphicon-webpage-content { content: "\f268"; }
+.glyphicon-wrench-content { content: "\f269"; }
+.glyphicon-zoom-in-content { content: "\f26a"; }
+.glyphicon-zoom-out-content { content: "\f26b"; }
+.glyphicon-zoom-to-content { content: "\f26c"; }
diff --git a/web/client/themes/default/icons/icons.eot b/web/client/themes/default/icons/icons.eot
index 99610d93ae..ea22c7dc56 100644
Binary files a/web/client/themes/default/icons/icons.eot and b/web/client/themes/default/icons/icons.eot differ
diff --git a/web/client/themes/default/icons/icons.svg b/web/client/themes/default/icons/icons.svg
index 976ba3d455..3e9de094d6 100644
--- a/web/client/themes/default/icons/icons.svg
+++ b/web/client/themes/default/icons/icons.svg
@@ -1051,1130 +1051,1142 @@
-
+
+
+
+
+
+
diff --git a/web/client/themes/default/svg/triangle-top.svg b/web/client/themes/default/svg/triangle-top.svg
new file mode 100644
index 0000000000..220bc43c2f
--- /dev/null
+++ b/web/client/themes/default/svg/triangle-top.svg
@@ -0,0 +1,3 @@
+
diff --git a/web/client/translations/data.de-DE.json b/web/client/translations/data.de-DE.json
index 73ddc2cc2c..93e34246d9 100644
--- a/web/client/translations/data.de-DE.json
+++ b/web/client/translations/data.de-DE.json
@@ -380,6 +380,7 @@
"LinkedinGroup": "Mapstore Linkedin Gruppe",
"scrollTop": "An den Anfang der Seite scrollen",
"footerDescription": "GeoSolutions sales@geosolutionsgroup.com",
+ "footerCustomHTML": "Bitte fügen Sie benutzerdefiniertes HTML in die Übersetzungen ein, um eine benutzerdefinierte Fußzeile darzustellen
",
"examples":{
"viewer":{
"html":"Viewer
Einfacher Viewer
"
diff --git a/web/client/translations/data.en-US.json b/web/client/translations/data.en-US.json
index 353b4a7ac1..142808850b 100644
--- a/web/client/translations/data.en-US.json
+++ b/web/client/translations/data.en-US.json
@@ -379,7 +379,8 @@
"Examples": "Examples",
"LinkedinGroup": "Mapstore Linkedin Group",
"scrollTop": "Scroll to the top of the page",
- "footerDescription": "GeoSolutions sales@geosolutionsgroup.com"
+ "footerDescription": "GeoSolutions sales@geosolutionsgroup.com",
+ "footerCustomHTML": "Please insert custom HTML into the translations to render a custom footer
"
},
"cookiesPolicyNotification": {
"title": "This website uses cookies",
diff --git a/web/client/translations/data.es-ES.json b/web/client/translations/data.es-ES.json
index b2a79257bf..8cf00a2f41 100644
--- a/web/client/translations/data.es-ES.json
+++ b/web/client/translations/data.es-ES.json
@@ -379,7 +379,8 @@
"Examples": "Ejemplos",
"LinkedinGroup": "Grupo Linkedin de Mapstore",
"scrollTop": "Volver al principio de la página",
- "footerDescription": "GeoSolutions sales@geosolutionsgroup.com"
+ "footerDescription": "GeoSolutions sales@geosolutionsgroup.com",
+ "footerCustomHTML": "Inserte HTML personalizado en las traducciones para generar un pie de página personalizado.
"
},
"cookiesPolicyNotification": {
"title": "Este sitio usa cookies",
diff --git a/web/client/translations/data.fr-FR.json b/web/client/translations/data.fr-FR.json
index bc4ae4bd44..dd4c09fbb2 100644
--- a/web/client/translations/data.fr-FR.json
+++ b/web/client/translations/data.fr-FR.json
@@ -379,7 +379,8 @@
"Examples": "Exemples",
"LinkedinGroup": "Groupe Linkedin Mapstore",
"scrollTop": "Retour en haut de la page",
- "footerDescription": "GeoSolutions sales@geosolutionsgroup.com"
+ "footerDescription": "GeoSolutions sales@geosolutionsgroup.com",
+ "footerCustomHTML": "Veuillez insérer du HTML personnalisé dans les traductions pour afficher un pied de page personnalisé
"
},
"cookiesPolicyNotification": {
"title": "Ce site utilise des cookies",
diff --git a/web/client/translations/data.it-IT.json b/web/client/translations/data.it-IT.json
index 38c108ac8a..18064a3674 100644
--- a/web/client/translations/data.it-IT.json
+++ b/web/client/translations/data.it-IT.json
@@ -379,7 +379,8 @@
"Examples": "Esempi",
"LinkedinGroup": "Gruppo Linkedin Mapstore",
"scrollTop": "Torna all'inizio della pagina",
- "footerDescription": "GeoSolutions sales@geosolutionsgroup.com"
+ "footerDescription": "GeoSolutions sales@geosolutionsgroup.com",
+ "footerCustomHTML": "Per favore, inserisci un HTML custom nelle traduzioni per renderizzare un footer personalizzato
"
},
"cookiesPolicyNotification": {
"title": "Questo sito utilizza cookies",