diff --git a/last_commit.txt b/last_commit.txt index efeeb022cd..e4aa8e5f71 100644 --- a/last_commit.txt +++ b/last_commit.txt @@ -1,15 +1,81 @@ -Repository: plone.app.widgets +Repository: plone.staticresources -Branch: refs/heads/master -Date: 2022-03-24T15:44:56+01:00 +Branch: refs/heads/1.x +Date: 2022-03-31T21:11:08+02:00 Author: Johannes Raggam (thet) -Commit: https://github.com/plone/plone.app.widgets/commit/ab52ecd267bf1f1a5fb70278be71a0b412e2024f +Commit: https://github.com/plone/plone.staticresources/commit/f6a3d5bbfcdfa41bd0e88a1dcbdfb7cbf313a73a -Bump version after es6 merge. +Fix icon font loading. + +Fix issue with Glyphicons and Fontello font loading on Portals where the portal root is a level higher. +The fonts are now loaded relative to the CSS requesting them. + +Fixes: https://github.com/plone/plone.staticresources/issues/162 +Fixes: https://github.com/plone/plone.staticresources/issues/203 + +Ref: https://github.com/plone/plone.staticresources/pull/168 +Ref: https://github.com/plone/plone.staticresources/pull/171 +Ref: https://github.com/plone/plone.staticresources/pull/175 +Ref: https://community.plone.org/t/deployments-not-rooted-fail-to-load-the-fontello-icons/15047/12?u=thet + +Files changed: +A news/xxxx.bugfix +A src/plone/staticresources/upgrades/17.zcml +A src/plone/staticresources/upgrades/profiles/17/registry.xml +M src/plone/staticresources/profiles/default/metadata.xml +M src/plone/staticresources/profiles/default/registry/bundles.xml +M src/plone/staticresources/profiles/last_compilation/registry.xml +M src/plone/staticresources/static/plone-fontello.less +M src/plone/staticresources/static/plone-glyphicons.less +M src/plone/staticresources/upgrades/configure.zcml + +b'diff --git a/news/xxxx.bugfix b/news/xxxx.bugfix\nnew file mode 100644\nindex 000000000..eb6f92d9c\n--- /dev/null\n+++ b/news/xxxx.bugfix\n@@ -0,0 +1,12 @@\n+Fix icon font loading.\n+\n+Fix issue with Glyphicons and Fontello font loading on Portals where the portal root is a level higher.\n+The fonts are now loaded relative to the CSS requesting them.\n+\n+Fixes: https://github.com/plone/plone.staticresources/issues/162\n+Fixes: https://github.com/plone/plone.staticresources/issues/203\n+\n+Ref: https://github.com/plone/plone.staticresources/pull/168\n+Ref: https://github.com/plone/plone.staticresources/pull/171\n+Ref: https://github.com/plone/plone.staticresources/pull/175\n+Ref: https://community.plone.org/t/deployments-not-rooted-fail-to-load-the-fontello-icons/15047/12?u=thet\ndiff --git a/src/plone/staticresources/profiles/default/metadata.xml b/src/plone/staticresources/profiles/default/metadata.xml\nindex 1afff34c4..7f30f18bb 100644\n--- a/src/plone/staticresources/profiles/default/metadata.xml\n+++ b/src/plone/staticresources/profiles/default/metadata.xml\n@@ -1,6 +1,6 @@\n \n \n- 16\n+ 17\n \n profile-plone.resource:default\n profile-plone.staticresources:last_compilation\ndiff --git a/src/plone/staticresources/profiles/default/registry/bundles.xml b/src/plone/staticresources/profiles/default/registry/bundles.xml\nindex 170cd2c28..91ad6231f 100644\n--- a/src/plone/staticresources/profiles/default/registry/bundles.xml\n+++ b/src/plone/staticresources/profiles/default/registry/bundles.xml\n@@ -318,7 +318,7 @@\n \n plone\n- default\n+ \n \n plone-fontello\n \n@@ -333,7 +333,7 @@\n \n plone\n- default\n+ \n \n plone-glyphicons\n \ndiff --git a/src/plone/staticresources/profiles/last_compilation/registry.xml b/src/plone/staticresources/profiles/last_compilation/registry.xml\nindex f469c8988..eed32e852 100644\n--- a/src/plone/staticresources/profiles/last_compilation/registry.xml\n+++ b/src/plone/staticresources/profiles/last_compilation/registry.xml\n@@ -31,10 +31,10 @@\n 2020-10-28 14:00:00\n \n \n- 2021-10-22 13:00:00\n+ 2022-03-31 20:36:00\n \n \n- 2021-10-22 13:00:00\n+ 2022-03-31 20:36:00\n \n \ndiff --git a/src/plone/staticresources/static/plone-fontello.less b/src/plone/staticresources/static/plone-fontello.less\nindex d730aae2b..1861eabdf 100644\n--- a/src/plone/staticresources/static/plone-fontello.less\n+++ b/src/plone/staticresources/static/plone-fontello.less\n@@ -1,2 +1,2 @@\n-@fontsPrefix: \'/++plone++static/fonts/\';\n+@fontsPrefix: "fonts/";\n @import url("fonts/plone-fontello.less");\ndiff --git a/src/plone/staticresources/static/plone-glyphicons.less b/src/plone/staticresources/static/plone-glyphicons.less\nindex cca9c0941..e1db922a6 100644\n--- a/src/plone/staticresources/static/plone-glyphicons.less\n+++ b/src/plone/staticresources/static/plone-glyphicons.less\n@@ -1,4 +1,4 @@\n @import "@{bowerPath}/bootstrap/less/variables.less"; // Modify this for custom colors, font-sizes, etc\n @import "@{bowerPath}/bootstrap/less/glyphicons.less";\n // this override only works because of modifyVarsNoEmbed is used in generated Gruntfile.js\n-@icon-font-path: "/++plone++static/fonts/";\n+@icon-font-path: "fonts/";\ndiff --git a/src/plone/staticresources/upgrades/17.zcml b/src/plone/staticresources/upgrades/17.zcml\nnew file mode 100644\nindex 000000000..c7be14dc9\n--- /dev/null\n+++ b/src/plone/staticresources/upgrades/17.zcml\n@@ -0,0 +1,28 @@\n+\n+\n+ \n+\n+ \n+\n+ \n+\n+ \n+\n+ \n+\n+\ndiff --git a/src/plone/staticresources/upgrades/configure.zcml b/src/plone/staticresources/upgrades/configure.zcml\nindex 347dd4946..170d2937b 100644\n--- a/src/plone/staticresources/upgrades/configure.zcml\n+++ b/src/plone/staticresources/upgrades/configure.zcml\n@@ -17,5 +17,6 @@\n \n \n \n+ \n \n \ndiff --git a/src/plone/staticresources/upgrades/profiles/17/registry.xml b/src/plone/staticresources/upgrades/profiles/17/registry.xml\nnew file mode 100644\nindex 000000000..e353c0603\n--- /dev/null\n+++ b/src/plone/staticresources/upgrades/profiles/17/registry.xml\n@@ -0,0 +1,14 @@\n+\n+\n+\n+ \n+ \n+ \n+\n+ \n+ \n+ \n+\n+\n' + +Repository: plone.staticresources + + +Branch: refs/heads/1.x +Date: 2022-03-31T21:11:08+02:00 +Author: Johannes Raggam (thet) +Commit: https://github.com/plone/plone.staticresources/commit/9dcd84de15cfa9efa45310174c11d3e6934a30d5 + +Compiled. + +Files changed: +M src/plone/staticresources/static/plone-fontello-compiled.css +M src/plone/staticresources/static/plone-fontello-compiled.css.map +M src/plone/staticresources/static/plone-glyphicons-compiled.css +M src/plone/staticresources/static/plone-glyphicons-compiled.css.map + +b'diff --git a/src/plone/staticresources/static/plone-fontello-compiled.css b/src/plone/staticresources/static/plone-fontello-compiled.css\nindex ab361d006..495cd15ff 100644\n--- a/src/plone/staticresources/static/plone-fontello-compiled.css\n+++ b/src/plone/staticresources/static/plone-fontello-compiled.css\n@@ -1 +1 @@\n-@font-face{font-family:\'fontello\';src:url(\'/++plone++static/fonts/plone-fontello.eot?89786008\');src:url(\'/++plone++static/fonts/plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),url(\'/++plone++static/fonts/plone-fontello.woff?89786008\') format(\'woff\'),url(\'/++plone++static/fonts/plone-fontello.ttf?89786008\') format(\'truetype\'),url(\'/++plone++static/fonts/plone-fontello.svg?89786008#fontello\') format(\'svg\');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.toolbar-menu-icon:before{content:\'\\e834\'}.icon-user:before{content:\'\\e800\'}.icon-folderContents:before{content:\'\\e801\'}.icon-edit:before{content:\'\\e802\'}.icon-logout:before{content:\'\\e803\'}.icon-local_roles:before{content:\'\\e804\'}.icon-history:before{content:\'\\e805\'}.icon-link:before{content:\'\\e806\'}.icon-view:before{content:\'\\e807\'}.icon-collection:before{content:\'\\e808\'}.icon-event:before{content:\'\\e809\'}.icon-plone-contentmenu-factories:before{content:\'\\e80a\'}.icon-contentInfo:before{content:\'\\e80b\'}.icon-plone-contentmenu-workflow:before{content:\'\\e80c\'}.icon-moreOptions:before{content:\'\\e80d\'}.icon-document:before{content:\'\\e80e\'}.icon-news:before{content:\'\\e80f\'}.icon-image:before{content:\'\\e810\'}.icon-file:before{content:\'\\e811\'}.icon-addon:before{content:\'\\e812\'}.icon-datetime:before{content:\'\\e813\'}.icon-caching:before{content:\'\\e814\'}.icon-markup:before{content:\'\\e815\'}.icon-editing:before{content:\'\\e816\'}.icon-errors:before{content:\'\\e817\'}.icon-imageHandling:before{content:\'\\e818\'}.icon-filtering:before{content:\'\\e819\'}.icon-language:before{content:\'\\e81a\'}.icon-dexterityTypes:before{content:\'\\e81b\'}.icon-mail:before{content:\'\\e81c\'}.icon-maintenance:before{content:\'\\e81d\'}.icon-navigation:before{content:\'\\e81e\'}.icon-search:before{content:\'\\e81f\'}.icon-security:before{content:\'\\e820\'}.icon-theming:before{content:\'\\e821\'}.icon-rss:before{content:\'\\e822\'}.icon-siteSettings:before{content:\'\\e823\'}.icon-userGroups:before{content:\'\\e824\'}.icon-zope:before{content:\'\\e825\'}.icon-types:before{content:\'\\e826\'}.icon-syndication:before{content:\'\\e827\'}.icon-contentrules:before{content:\'\\e828\'}.icon-lock:before{content:\'\\e829\'}.icon-plone-contentmenu-actions:before{content:\'\\e82a\'}.icon-plone-contentmenu-portletmanager:before{content:\'\\e82b\'}.icon-plone-contentmenu-display:before{content:\'\\e82c\'}.icon-calendar-empty:before{content:\'\\e82d\'}[class^="icon-controlpanel-"]:before{content:\'\\e849\'}.icon-controlpanel-plone_app_caching:before{content:\'\\e82e\'}.icon-controlpanel-plone_app_registry:before{content:\'\\e82f\'}.icon-controlpanel-dexterity-types:before{content:\'\\e830\'}.icon-controlpanel-discussion:before{content:\'\\e831\'}.icon-controlpanel-ImagingSettings:before{content:\'\\e832\'}.icon-controlpanel-plone_app_theming:before{content:\'\\e833\'}.icon-controlpanel-QuickInstaller:before{content:\'\\e834\'}.icon-controlpanel-DateAndTime:before{content:\'\\e835\'}.icon-controlpanel-LanguageSettings:before{content:\'\\e836\'}.icon-controlpanel-MailHost:before{content:\'\\e837\'}.icon-controlpanel-NavigationSettings:before{content:\'\\e838\'}.icon-controlpanel-PloneReconfig:before{content:\'\\e839\'}.icon-controlpanel-SearchSettings:before{content:\'\\e83a\'}.icon-controlpanel-socialmedia:before{content:\'\\e83b\'}.icon-controlpanel-syndication:before{content:\'\\e83c\'}.icon-controlpanel-ContentRules:before{content:\'\\e83d\'}.icon-controlpanel-EditingSettings:before{content:\'\\e83e\'}.icon-controlpanel-MarkupSettings:before{content:\'\\e83f\'}.icon-controlpanel-tinymce:before{content:\'\\e840\'}.icon-controlpanel-TypesSettings:before{content:\'\\e841\'}.icon-controlpanel-UsersGroups:before{content:\'\\e842\'}.icon-controlpanel-errorLog:before{content:\'\\e843\'}.icon-controlpanel-FilterSettings:before{content:\'\\e844\'}.icon-controlpanel-SecuritySettings:before{content:\'\\e845\'}.icon-controlpanel-resourceregistries:before{content:\'\\e846\'}.icon-emptyset:before{content:\'\\e847\'}.icon-controlpanel-ZMI:before{content:\'\\e848\'}.icon-controlpanel-Maintenance:before{content:\'\\e849\'}.icon-up:before{content:\'\\e84a\'}.icon-down:before{content:\'\\e84b\'}.icon-right-circle:before{content:\'\\e84c\'}.icon-left-circle:before{content:\'\\e84d\'}.icon-up-circle:before{content:\'\\e84e\'}.icon-down-circle:before{content:\'\\e84f\'}.icon-parent:before{content:\'\xe2\x86\xa9\';position:relative;top:3px}/*# sourceMappingURL=plone-fontello-compiled.css.map */\n\\ No newline at end of file\n+@font-face{font-family:\'fontello\';src:url(\'fonts/plone-fontello.eot?89786008\');src:url(\'fonts/plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),url(\'fonts/plone-fontello.woff?89786008\') format(\'woff\'),url(\'fonts/plone-fontello.ttf?89786008\') format(\'truetype\'),url(\'fonts/plone-fontello.svg?89786008#fontello\') format(\'svg\');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.toolbar-menu-icon:before{content:\'\\e834\'}.icon-user:before{content:\'\\e800\'}.icon-folderContents:before{content:\'\\e801\'}.icon-edit:before{content:\'\\e802\'}.icon-logout:before{content:\'\\e803\'}.icon-local_roles:before{content:\'\\e804\'}.icon-history:before{content:\'\\e805\'}.icon-link:before{content:\'\\e806\'}.icon-view:before{content:\'\\e807\'}.icon-collection:before{content:\'\\e808\'}.icon-event:before{content:\'\\e809\'}.icon-plone-contentmenu-factories:before{content:\'\\e80a\'}.icon-contentInfo:before{content:\'\\e80b\'}.icon-plone-contentmenu-workflow:before{content:\'\\e80c\'}.icon-moreOptions:before{content:\'\\e80d\'}.icon-document:before{content:\'\\e80e\'}.icon-news:before{content:\'\\e80f\'}.icon-image:before{content:\'\\e810\'}.icon-file:before{content:\'\\e811\'}.icon-addon:before{content:\'\\e812\'}.icon-datetime:before{content:\'\\e813\'}.icon-caching:before{content:\'\\e814\'}.icon-markup:before{content:\'\\e815\'}.icon-editing:before{content:\'\\e816\'}.icon-errors:before{content:\'\\e817\'}.icon-imageHandling:before{content:\'\\e818\'}.icon-filtering:before{content:\'\\e819\'}.icon-language:before{content:\'\\e81a\'}.icon-dexterityTypes:before{content:\'\\e81b\'}.icon-mail:before{content:\'\\e81c\'}.icon-maintenance:before{content:\'\\e81d\'}.icon-navigation:before{content:\'\\e81e\'}.icon-search:before{content:\'\\e81f\'}.icon-security:before{content:\'\\e820\'}.icon-theming:before{content:\'\\e821\'}.icon-rss:before{content:\'\\e822\'}.icon-siteSettings:before{content:\'\\e823\'}.icon-userGroups:before{content:\'\\e824\'}.icon-zope:before{content:\'\\e825\'}.icon-types:before{content:\'\\e826\'}.icon-syndication:before{content:\'\\e827\'}.icon-contentrules:before{content:\'\\e828\'}.icon-lock:before{content:\'\\e829\'}.icon-plone-contentmenu-actions:before{content:\'\\e82a\'}.icon-plone-contentmenu-portletmanager:before{content:\'\\e82b\'}.icon-plone-contentmenu-display:before{content:\'\\e82c\'}.icon-calendar-empty:before{content:\'\\e82d\'}[class^="icon-controlpanel-"]:before{content:\'\\e849\'}.icon-controlpanel-plone_app_caching:before{content:\'\\e82e\'}.icon-controlpanel-plone_app_registry:before{content:\'\\e82f\'}.icon-controlpanel-dexterity-types:before{content:\'\\e830\'}.icon-controlpanel-discussion:before{content:\'\\e831\'}.icon-controlpanel-ImagingSettings:before{content:\'\\e832\'}.icon-controlpanel-plone_app_theming:before{content:\'\\e833\'}.icon-controlpanel-QuickInstaller:before{content:\'\\e834\'}.icon-controlpanel-DateAndTime:before{content:\'\\e835\'}.icon-controlpanel-LanguageSettings:before{content:\'\\e836\'}.icon-controlpanel-MailHost:before{content:\'\\e837\'}.icon-controlpanel-NavigationSettings:before{content:\'\\e838\'}.icon-controlpanel-PloneReconfig:before{content:\'\\e839\'}.icon-controlpanel-SearchSettings:before{content:\'\\e83a\'}.icon-controlpanel-socialmedia:before{content:\'\\e83b\'}.icon-controlpanel-syndication:before{content:\'\\e83c\'}.icon-controlpanel-ContentRules:before{content:\'\\e83d\'}.icon-controlpanel-EditingSettings:before{content:\'\\e83e\'}.icon-controlpanel-MarkupSettings:before{content:\'\\e83f\'}.icon-controlpanel-tinymce:before{content:\'\\e840\'}.icon-controlpanel-TypesSettings:before{content:\'\\e841\'}.icon-controlpanel-UsersGroups:before{content:\'\\e842\'}.icon-controlpanel-errorLog:before{content:\'\\e843\'}.icon-controlpanel-FilterSettings:before{content:\'\\e844\'}.icon-controlpanel-SecuritySettings:before{content:\'\\e845\'}.icon-controlpanel-resourceregistries:before{content:\'\\e846\'}.icon-emptyset:before{content:\'\\e847\'}.icon-controlpanel-ZMI:before{content:\'\\e848\'}.icon-controlpanel-Maintenance:before{content:\'\\e849\'}.icon-up:before{content:\'\\e84a\'}.icon-down:before{content:\'\\e84b\'}.icon-right-circle:before{content:\'\\e84c\'}.icon-left-circle:before{content:\'\\e84d\'}.icon-up-circle:before{content:\'\\e84e\'}.icon-down-circle:before{content:\'\\e84f\'}.icon-parent:before{content:\'\xe2\x86\xa9\';position:relative;top:3px}/*# sourceMappingURL=plone-fontello-compiled.css.map */\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-fontello-compiled.css.map b/src/plone/staticresources/static/plone-fontello-compiled.css.map\nindex 06fa4901e..674a2013d 100644\n--- a/src/plone/staticresources/static/plone-fontello-compiled.css.map\n+++ b/src/plone/staticresources/static/plone-fontello-compiled.css.map\n@@ -1 +1 @@\n-{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/fonts/plone-fontello.less"],"names":[],"mappings":"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","sourcesContent":["@font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008\');\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),\\n url(\'@{fontsPrefix}plone-fontello.woff?89786008\') format(\'woff\'),\\n url(\'@{fontsPrefix}plone-fontello.ttf?89786008\') format(\'truetype\'),\\n url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n font-weight: normal;\\n font-style: normal;\\n}\\n/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */\\n/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */\\n/*\\n@media screen and (-webkit-min-device-pixel-ratio:0) {\\n @font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n }\\n}\\n*/\\n\\n [class^=\\"icon-\\"]:before, [class*=\\" icon-\\"]:before {\\n font-family: \\"fontello\\";\\n font-style: normal;\\n font-weight: normal;\\n speak: none;\\n\\n display: inline-block;\\n text-decoration: inherit;\\n width: 1em;\\n margin-right: .2em;\\n text-align: center;\\n /* opacity: .8; */\\n\\n /* For safety - reset parent styles, that can break glyph codes*/\\n font-variant: normal;\\n text-transform: none;\\n\\n /* fix buttons height, for twitter bootstrap */\\n line-height: 1em;\\n\\n /* Animation center compensation - margins should be symmetric */\\n /* remove if not needed */\\n margin-left: .2em;\\n\\n /* you can be more comfortable with increased icons size */\\n /* font-size: 120%; */\\n\\n /* Font smoothing. That was taken from TWBS */\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n\\n /* Uncomment for 3D effect */\\n /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\\n}\\n\\n/* Default Menu Icon */\\n.toolbar-menu-icon:before { content: \'\\\\e834\'; }\\n\\n.icon-user:before { content: \'\\\\e800\'; } /* \'\xee\xa0\x80\' */\\n.icon-folderContents:before { content: \'\\\\e801\'; } /* \'\xee\xa0\x81\' */\\n.icon-edit:before { content: \'\\\\e802\'; } /* \'\xee\xa0\x82\' */\\n.icon-logout:before { content: \'\\\\e803\'; } /* \'\xee\xa0\x83\' */\\n.icon-local_roles:before { content: \'\\\\e804\'; } /* \'\xee\xa0\x84\' */\\n.icon-history:before { content: \'\\\\e805\'; } /* \'\xee\xa0\x85\' */\\n.icon-link:before { content: \'\\\\e806\'; } /* \'\xee\xa0\x86\' */\\n.icon-view:before { content: \'\\\\e807\'; } /* \'\xee\xa0\x87\' */\\n.icon-collection:before { content: \'\\\\e808\'; } /* \'\xee\xa0\x88\' */\\n.icon-event:before { content: \'\\\\e809\'; } /* \'\xee\xa0\x89\' */\\n.icon-plone-contentmenu-factories:before { content: \'\\\\e80a\'; } /* \'\xee\xa0\x8a\' */\\n.icon-contentInfo:before { content: \'\\\\e80b\'; } /* \'\xee\xa0\x8b\' */\\n.icon-plone-contentmenu-workflow:before { content: \'\\\\e80c\'; } /* \'\xee\xa0\x8c\' */\\n.icon-moreOptions:before { content: \'\\\\e80d\'; } /* \'\xee\xa0\x8d\' */\\n.icon-document:before { content: \'\\\\e80e\'; } /* \'\xee\xa0\x8e\' */\\n.icon-news:before { content: \'\\\\e80f\'; } /* \'\xee\xa0\x8f\' */\\n.icon-image:before { content: \'\\\\e810\'; } /* \'\xee\xa0\x90\' */\\n.icon-file:before { content: \'\\\\e811\'; } /* \'\xee\xa0\x91\' */\\n.icon-addon:before { content: \'\\\\e812\'; } /* \'\xee\xa0\x92\' */\\n.icon-datetime:before { content: \'\\\\e813\'; } /* \'\xee\xa0\x93\' */\\n.icon-caching:before { content: \'\\\\e814\'; } /* \'\xee\xa0\x94\' */\\n.icon-markup:before { content: \'\\\\e815\'; } /* \'\xee\xa0\x95\' */\\n.icon-editing:before { content: \'\\\\e816\'; } /* \'\xee\xa0\x96\' */\\n.icon-errors:before { content: \'\\\\e817\'; } /* \'\xee\xa0\x97\' */\\n.icon-imageHandling:before { content: \'\\\\e818\'; } /* \'\xee\xa0\x98\' */\\n.icon-filtering:before { content: \'\\\\e819\'; } /* \'\xee\xa0\x99\' */\\n.icon-language:before { content: \'\\\\e81a\'; } /* \'\xee\xa0\x9a\' */\\n.icon-dexterityTypes:before { content: \'\\\\e81b\'; } /* \'\xee\xa0\x9b\' */\\n.icon-mail:before { content: \'\\\\e81c\'; } /* \'\xee\xa0\x9c\' */\\n.icon-maintenance:before { content: \'\\\\e81d\'; } /* \'\xee\xa0\x9d\' */\\n.icon-navigation:before { content: \'\\\\e81e\'; } /* \'\xee\xa0\x9e\' */\\n.icon-search:before { content: \'\\\\e81f\'; } /* \'\xee\xa0\x9f\' */\\n.icon-security:before { content: \'\\\\e820\'; } /* \'\xee\xa0\xa0\' */\\n.icon-theming:before { content: \'\\\\e821\'; } /* \'\xee\xa0\xa1\' */\\n.icon-rss:before { content: \'\\\\e822\'; } /* \'\xee\xa0\xa2\' */\\n.icon-siteSettings:before { content: \'\\\\e823\'; } /* \'\xee\xa0\xa3\' */\\n.icon-userGroups:before { content: \'\\\\e824\'; } /* \'\xee\xa0\xa4\' */\\n.icon-zope:before { content: \'\\\\e825\'; } /* \'\xee\xa0\xa5\' */\\n.icon-types:before { content: \'\\\\e826\'; } /* \'\xee\xa0\xa6\' */\\n.icon-syndication:before { content: \'\\\\e827\'; } /* \'\xee\xa0\xa7\' */\\n.icon-contentrules:before { content: \'\\\\e828\'; } /* \'\xee\xa0\xa8\' */\\n.icon-lock:before { content: \'\\\\e829\'; } /* \'\xee\xa0\xa9\' */\\n.icon-plone-contentmenu-actions:before { content: \'\\\\e82a\'; } /* \'\xee\xa0\xaa\' */\\n.icon-plone-contentmenu-portletmanager:before { content: \'\\\\e82b\'; } /* \'\xee\xa0\xab\' */\\n.icon-plone-contentmenu-display:before { content: \'\\\\e82c\'; } /* \'\xee\xa0\xac\' */\\n.icon-calendar-empty:before { content: \'\\\\e82d\'; } /* \'\xee\xa0\xad\' */\\n[class^=\\"icon-controlpanel-\\"]:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-controlpanel-plone_app_caching:before { content: \'\\\\e82e\'; } /* \'\xee\xa0\xae\' */\\n.icon-controlpanel-plone_app_registry:before { content: \'\\\\e82f\'; } /* \'\xee\xa0\xaf\' */\\n.icon-controlpanel-dexterity-types:before { content: \'\\\\e830\'; } /* \'\xee\xa0\xb0\' */\\n.icon-controlpanel-discussion:before { content: \'\\\\e831\'; } /* \'\xee\xa0\xb1\' */\\n.icon-controlpanel-ImagingSettings:before { content: \'\\\\e832\'; } /* \'\xee\xa0\xb2\' */\\n.icon-controlpanel-plone_app_theming:before { content: \'\\\\e833\'; } /* \'\xee\xa0\xb3\' */\\n.icon-controlpanel-QuickInstaller:before { content: \'\\\\e834\'; } /* \'\xee\xa0\xb4\' */\\n.icon-controlpanel-DateAndTime:before { content: \'\\\\e835\'; } /* \'\xee\xa0\xb5\' */\\n.icon-controlpanel-LanguageSettings:before { content: \'\\\\e836\'; } /* \'\xee\xa0\xb6\' */\\n.icon-controlpanel-MailHost:before { content: \'\\\\e837\'; } /* \'\xee\xa0\xb7\' */\\n.icon-controlpanel-NavigationSettings:before { content: \'\\\\e838\'; } /* \'\xee\xa0\xb8\' */\\n.icon-controlpanel-PloneReconfig:before { content: \'\\\\e839\'; } /* \'\xee\xa0\xb9\' */\\n.icon-controlpanel-SearchSettings:before { content: \'\\\\e83a\'; } /* \'\xee\xa0\xba\' */\\n.icon-controlpanel-socialmedia:before { content: \'\\\\e83b\'; } /* \'\xee\xa0\xbb\' */\\n.icon-controlpanel-syndication:before { content: \'\\\\e83c\'; } /* \'\xee\xa0\xbc\' */\\n.icon-controlpanel-ContentRules:before { content: \'\\\\e83d\'; } /* \'\xee\xa0\xbd\' */\\n.icon-controlpanel-EditingSettings:before { content: \'\\\\e83e\'; } /* \'\xee\xa0\xbe\' */\\n.icon-controlpanel-MarkupSettings:before { content: \'\\\\e83f\'; } /* \'\xee\xa0\xbf\' */\\n.icon-controlpanel-tinymce:before { content: \'\\\\e840\'; } /* \'\xee\xa1\x80\' */\\n.icon-controlpanel-TypesSettings:before { content: \'\\\\e841\'; } /* \'\xee\xa1\x81\' */\\n.icon-controlpanel-UsersGroups:before { content: \'\\\\e842\'; } /* \'\xee\xa1\x82\' */\\n.icon-controlpanel-errorLog:before { content: \'\\\\e843\'; } /* \'\xee\xa1\x83\' */\\n.icon-controlpanel-FilterSettings:before { content: \'\\\\e844\'; } /* \'\xee\xa1\x84\' */\\n.icon-controlpanel-SecuritySettings:before { content: \'\\\\e845\'; } /* \'\xee\xa1\x85\' */\\n.icon-controlpanel-resourceregistries:before { content: \'\\\\e846\'; } /* \'\xee\xa1\x86\' */\\n.icon-emptyset:before { content: \'\\\\e847\'; } /* \'\xee\xa1\x87\' */\\n.icon-controlpanel-ZMI:before { content: \'\\\\e848\'; } /* \'\xee\xa1\x88\' */\\n.icon-controlpanel-Maintenance:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-up:before { content: \'\\\\e84a\'; } /* \'\xee\xa1\x8a\' */\\n.icon-down:before { content: \'\\\\e84b\'; } /* \'\xee\xa1\x8b\' */\\n.icon-right-circle:before { content: \'\\\\e84c\'; } /* \'\xee\xa1\x8c\' */\\n.icon-left-circle:before { content: \'\\\\e84d\'; } /* \'\xee\xa1\x8d\' */\\n.icon-up-circle:before { content: \'\\\\e84e\'; } /* \'\xee\xa1\x8e\' */\\n.icon-down-circle:before { content: \'\\\\e84f\'; } /* \'\xee\xa1\x8f\' */\\n\\n/* Unicode icons used in the same places */\\n.icon-parent:before {\\n content: \'\xe2\x86\xa9\';\\n position: relative;\\n top: 3px;\\n}\\n"]}\n\\ No newline at end of file\n+{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/fonts/plone-fontello.less"],"names":[],"mappings":"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","sourcesContent":["@font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008\');\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),\\n url(\'@{fontsPrefix}plone-fontello.woff?89786008\') format(\'woff\'),\\n url(\'@{fontsPrefix}plone-fontello.ttf?89786008\') format(\'truetype\'),\\n url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n font-weight: normal;\\n font-style: normal;\\n}\\n/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */\\n/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */\\n/*\\n@media screen and (-webkit-min-device-pixel-ratio:0) {\\n @font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n }\\n}\\n*/\\n\\n [class^=\\"icon-\\"]:before, [class*=\\" icon-\\"]:before {\\n font-family: \\"fontello\\";\\n font-style: normal;\\n font-weight: normal;\\n speak: none;\\n\\n display: inline-block;\\n text-decoration: inherit;\\n width: 1em;\\n margin-right: .2em;\\n text-align: center;\\n /* opacity: .8; */\\n\\n /* For safety - reset parent styles, that can break glyph codes*/\\n font-variant: normal;\\n text-transform: none;\\n\\n /* fix buttons height, for twitter bootstrap */\\n line-height: 1em;\\n\\n /* Animation center compensation - margins should be symmetric */\\n /* remove if not needed */\\n margin-left: .2em;\\n\\n /* you can be more comfortable with increased icons size */\\n /* font-size: 120%; */\\n\\n /* Font smoothing. That was taken from TWBS */\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n\\n /* Uncomment for 3D effect */\\n /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\\n}\\n\\n/* Default Menu Icon */\\n.toolbar-menu-icon:before { content: \'\\\\e834\'; }\\n\\n.icon-user:before { content: \'\\\\e800\'; } /* \'\xee\xa0\x80\' */\\n.icon-folderContents:before { content: \'\\\\e801\'; } /* \'\xee\xa0\x81\' */\\n.icon-edit:before { content: \'\\\\e802\'; } /* \'\xee\xa0\x82\' */\\n.icon-logout:before { content: \'\\\\e803\'; } /* \'\xee\xa0\x83\' */\\n.icon-local_roles:before { content: \'\\\\e804\'; } /* \'\xee\xa0\x84\' */\\n.icon-history:before { content: \'\\\\e805\'; } /* \'\xee\xa0\x85\' */\\n.icon-link:before { content: \'\\\\e806\'; } /* \'\xee\xa0\x86\' */\\n.icon-view:before { content: \'\\\\e807\'; } /* \'\xee\xa0\x87\' */\\n.icon-collection:before { content: \'\\\\e808\'; } /* \'\xee\xa0\x88\' */\\n.icon-event:before { content: \'\\\\e809\'; } /* \'\xee\xa0\x89\' */\\n.icon-plone-contentmenu-factories:before { content: \'\\\\e80a\'; } /* \'\xee\xa0\x8a\' */\\n.icon-contentInfo:before { content: \'\\\\e80b\'; } /* \'\xee\xa0\x8b\' */\\n.icon-plone-contentmenu-workflow:before { content: \'\\\\e80c\'; } /* \'\xee\xa0\x8c\' */\\n.icon-moreOptions:before { content: \'\\\\e80d\'; } /* \'\xee\xa0\x8d\' */\\n.icon-document:before { content: \'\\\\e80e\'; } /* \'\xee\xa0\x8e\' */\\n.icon-news:before { content: \'\\\\e80f\'; } /* \'\xee\xa0\x8f\' */\\n.icon-image:before { content: \'\\\\e810\'; } /* \'\xee\xa0\x90\' */\\n.icon-file:before { content: \'\\\\e811\'; } /* \'\xee\xa0\x91\' */\\n.icon-addon:before { content: \'\\\\e812\'; } /* \'\xee\xa0\x92\' */\\n.icon-datetime:before { content: \'\\\\e813\'; } /* \'\xee\xa0\x93\' */\\n.icon-caching:before { content: \'\\\\e814\'; } /* \'\xee\xa0\x94\' */\\n.icon-markup:before { content: \'\\\\e815\'; } /* \'\xee\xa0\x95\' */\\n.icon-editing:before { content: \'\\\\e816\'; } /* \'\xee\xa0\x96\' */\\n.icon-errors:before { content: \'\\\\e817\'; } /* \'\xee\xa0\x97\' */\\n.icon-imageHandling:before { content: \'\\\\e818\'; } /* \'\xee\xa0\x98\' */\\n.icon-filtering:before { content: \'\\\\e819\'; } /* \'\xee\xa0\x99\' */\\n.icon-language:before { content: \'\\\\e81a\'; } /* \'\xee\xa0\x9a\' */\\n.icon-dexterityTypes:before { content: \'\\\\e81b\'; } /* \'\xee\xa0\x9b\' */\\n.icon-mail:before { content: \'\\\\e81c\'; } /* \'\xee\xa0\x9c\' */\\n.icon-maintenance:before { content: \'\\\\e81d\'; } /* \'\xee\xa0\x9d\' */\\n.icon-navigation:before { content: \'\\\\e81e\'; } /* \'\xee\xa0\x9e\' */\\n.icon-search:before { content: \'\\\\e81f\'; } /* \'\xee\xa0\x9f\' */\\n.icon-security:before { content: \'\\\\e820\'; } /* \'\xee\xa0\xa0\' */\\n.icon-theming:before { content: \'\\\\e821\'; } /* \'\xee\xa0\xa1\' */\\n.icon-rss:before { content: \'\\\\e822\'; } /* \'\xee\xa0\xa2\' */\\n.icon-siteSettings:before { content: \'\\\\e823\'; } /* \'\xee\xa0\xa3\' */\\n.icon-userGroups:before { content: \'\\\\e824\'; } /* \'\xee\xa0\xa4\' */\\n.icon-zope:before { content: \'\\\\e825\'; } /* \'\xee\xa0\xa5\' */\\n.icon-types:before { content: \'\\\\e826\'; } /* \'\xee\xa0\xa6\' */\\n.icon-syndication:before { content: \'\\\\e827\'; } /* \'\xee\xa0\xa7\' */\\n.icon-contentrules:before { content: \'\\\\e828\'; } /* \'\xee\xa0\xa8\' */\\n.icon-lock:before { content: \'\\\\e829\'; } /* \'\xee\xa0\xa9\' */\\n.icon-plone-contentmenu-actions:before { content: \'\\\\e82a\'; } /* \'\xee\xa0\xaa\' */\\n.icon-plone-contentmenu-portletmanager:before { content: \'\\\\e82b\'; } /* \'\xee\xa0\xab\' */\\n.icon-plone-contentmenu-display:before { content: \'\\\\e82c\'; } /* \'\xee\xa0\xac\' */\\n.icon-calendar-empty:before { content: \'\\\\e82d\'; } /* \'\xee\xa0\xad\' */\\n[class^=\\"icon-controlpanel-\\"]:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-controlpanel-plone_app_caching:before { content: \'\\\\e82e\'; } /* \'\xee\xa0\xae\' */\\n.icon-controlpanel-plone_app_registry:before { content: \'\\\\e82f\'; } /* \'\xee\xa0\xaf\' */\\n.icon-controlpanel-dexterity-types:before { content: \'\\\\e830\'; } /* \'\xee\xa0\xb0\' */\\n.icon-controlpanel-discussion:before { content: \'\\\\e831\'; } /* \'\xee\xa0\xb1\' */\\n.icon-controlpanel-ImagingSettings:before { content: \'\\\\e832\'; } /* \'\xee\xa0\xb2\' */\\n.icon-controlpanel-plone_app_theming:before { content: \'\\\\e833\'; } /* \'\xee\xa0\xb3\' */\\n.icon-controlpanel-QuickInstaller:before { content: \'\\\\e834\'; } /* \'\xee\xa0\xb4\' */\\n.icon-controlpanel-DateAndTime:before { content: \'\\\\e835\'; } /* \'\xee\xa0\xb5\' */\\n.icon-controlpanel-LanguageSettings:before { content: \'\\\\e836\'; } /* \'\xee\xa0\xb6\' */\\n.icon-controlpanel-MailHost:before { content: \'\\\\e837\'; } /* \'\xee\xa0\xb7\' */\\n.icon-controlpanel-NavigationSettings:before { content: \'\\\\e838\'; } /* \'\xee\xa0\xb8\' */\\n.icon-controlpanel-PloneReconfig:before { content: \'\\\\e839\'; } /* \'\xee\xa0\xb9\' */\\n.icon-controlpanel-SearchSettings:before { content: \'\\\\e83a\'; } /* \'\xee\xa0\xba\' */\\n.icon-controlpanel-socialmedia:before { content: \'\\\\e83b\'; } /* \'\xee\xa0\xbb\' */\\n.icon-controlpanel-syndication:before { content: \'\\\\e83c\'; } /* \'\xee\xa0\xbc\' */\\n.icon-controlpanel-ContentRules:before { content: \'\\\\e83d\'; } /* \'\xee\xa0\xbd\' */\\n.icon-controlpanel-EditingSettings:before { content: \'\\\\e83e\'; } /* \'\xee\xa0\xbe\' */\\n.icon-controlpanel-MarkupSettings:before { content: \'\\\\e83f\'; } /* \'\xee\xa0\xbf\' */\\n.icon-controlpanel-tinymce:before { content: \'\\\\e840\'; } /* \'\xee\xa1\x80\' */\\n.icon-controlpanel-TypesSettings:before { content: \'\\\\e841\'; } /* \'\xee\xa1\x81\' */\\n.icon-controlpanel-UsersGroups:before { content: \'\\\\e842\'; } /* \'\xee\xa1\x82\' */\\n.icon-controlpanel-errorLog:before { content: \'\\\\e843\'; } /* \'\xee\xa1\x83\' */\\n.icon-controlpanel-FilterSettings:before { content: \'\\\\e844\'; } /* \'\xee\xa1\x84\' */\\n.icon-controlpanel-SecuritySettings:before { content: \'\\\\e845\'; } /* \'\xee\xa1\x85\' */\\n.icon-controlpanel-resourceregistries:before { content: \'\\\\e846\'; } /* \'\xee\xa1\x86\' */\\n.icon-emptyset:before { content: \'\\\\e847\'; } /* \'\xee\xa1\x87\' */\\n.icon-controlpanel-ZMI:before { content: \'\\\\e848\'; } /* \'\xee\xa1\x88\' */\\n.icon-controlpanel-Maintenance:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-up:before { content: \'\\\\e84a\'; } /* \'\xee\xa1\x8a\' */\\n.icon-down:before { content: \'\\\\e84b\'; } /* \'\xee\xa1\x8b\' */\\n.icon-right-circle:before { content: \'\\\\e84c\'; } /* \'\xee\xa1\x8c\' */\\n.icon-left-circle:before { content: \'\\\\e84d\'; } /* \'\xee\xa1\x8d\' */\\n.icon-up-circle:before { content: \'\\\\e84e\'; } /* \'\xee\xa1\x8e\' */\\n.icon-down-circle:before { content: \'\\\\e84f\'; } /* \'\xee\xa1\x8f\' */\\n\\n/* Unicode icons used in the same places */\\n.icon-parent:before {\\n content: \'\xe2\x86\xa9\';\\n position: relative;\\n top: 3px;\\n}\\n"]}\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-glyphicons-compiled.css b/src/plone/staticresources/static/plone-glyphicons-compiled.css\nindex c08399a4c..52c745e68 100644\n--- a/src/plone/staticresources/static/plone-glyphicons-compiled.css\n+++ b/src/plone/staticresources/static/plone-glyphicons-compiled.css\n@@ -1 +1 @@\n-@font-face{font-family:"Glyphicons Halflings";src:url("/++plone++static/fonts/glyphicons-halflings-regular.eot");src:url("/++plone++static/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("/++plone++static/fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("/++plone++static/fonts/glyphicons-halflings-regular.woff") format("woff"),url("/++plone++static/fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("/++plone++static/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\\002a"}.glyphicon-plus:before{content:"\\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\\20ac"}.glyphicon-minus:before{content:"\\2212"}.glyphicon-cloud:before{content:"\\2601"}.glyphicon-envelope:before{content:"\\2709"}.glyphicon-pencil:before{content:"\\270f"}.glyphicon-glass:before{content:"\\e001"}.glyphicon-music:before{content:"\\e002"}.glyphicon-search:before{content:"\\e003"}.glyphicon-heart:before{content:"\\e005"}.glyphicon-star:before{content:"\\e006"}.glyphicon-star-empty:before{content:"\\e007"}.glyphicon-user:before{content:"\\e008"}.glyphicon-film:before{content:"\\e009"}.glyphicon-th-large:before{content:"\\e010"}.glyphicon-th:before{content:"\\e011"}.glyphicon-th-list:before{content:"\\e012"}.glyphicon-ok:before{content:"\\e013"}.glyphicon-remove:before{content:"\\e014"}.glyphicon-zoom-in:before{content:"\\e015"}.glyphicon-zoom-out:before{content:"\\e016"}.glyphicon-off:before{content:"\\e017"}.glyphicon-signal:before{content:"\\e018"}.glyphicon-cog:before{content:"\\e019"}.glyphicon-trash:before{content:"\\e020"}.glyphicon-home:before{content:"\\e021"}.glyphicon-file:before{content:"\\e022"}.glyphicon-time:before{content:"\\e023"}.glyphicon-road:before{content:"\\e024"}.glyphicon-download-alt:before{content:"\\e025"}.glyphicon-download:before{content:"\\e026"}.glyphicon-upload:before{content:"\\e027"}.glyphicon-inbox:before{content:"\\e028"}.glyphicon-play-circle:before{content:"\\e029"}.glyphicon-repeat:before{content:"\\e030"}.glyphicon-refresh:before{content:"\\e031"}.glyphicon-list-alt:before{content:"\\e032"}.glyphicon-lock:before{content:"\\e033"}.glyphicon-flag:before{content:"\\e034"}.glyphicon-headphones:before{content:"\\e035"}.glyphicon-volume-off:before{content:"\\e036"}.glyphicon-volume-down:before{content:"\\e037"}.glyphicon-volume-up:before{content:"\\e038"}.glyphicon-qrcode:before{content:"\\e039"}.glyphicon-barcode:before{content:"\\e040"}.glyphicon-tag:before{content:"\\e041"}.glyphicon-tags:before{content:"\\e042"}.glyphicon-book:before{content:"\\e043"}.glyphicon-bookmark:before{content:"\\e044"}.glyphicon-print:before{content:"\\e045"}.glyphicon-camera:before{content:"\\e046"}.glyphicon-font:before{content:"\\e047"}.glyphicon-bold:before{content:"\\e048"}.glyphicon-italic:before{content:"\\e049"}.glyphicon-text-height:before{content:"\\e050"}.glyphicon-text-width:before{content:"\\e051"}.glyphicon-align-left:before{content:"\\e052"}.glyphicon-align-center:before{content:"\\e053"}.glyphicon-align-right:before{content:"\\e054"}.glyphicon-align-justify:before{content:"\\e055"}.glyphicon-list:before{content:"\\e056"}.glyphicon-indent-left:before{content:"\\e057"}.glyphicon-indent-right:before{content:"\\e058"}.glyphicon-facetime-video:before{content:"\\e059"}.glyphicon-picture:before{content:"\\e060"}.glyphicon-map-marker:before{content:"\\e062"}.glyphicon-adjust:before{content:"\\e063"}.glyphicon-tint:before{content:"\\e064"}.glyphicon-edit:before{content:"\\e065"}.glyphicon-share:before{content:"\\e066"}.glyphicon-check:before{content:"\\e067"}.glyphicon-move:before{content:"\\e068"}.glyphicon-step-backward:before{content:"\\e069"}.glyphicon-fast-backward:before{content:"\\e070"}.glyphicon-backward:before{content:"\\e071"}.glyphicon-play:before{content:"\\e072"}.glyphicon-pause:before{content:"\\e073"}.glyphicon-stop:before{content:"\\e074"}.glyphicon-forward:before{content:"\\e075"}.glyphicon-fast-forward:before{content:"\\e076"}.glyphicon-step-forward:before{content:"\\e077"}.glyphicon-eject:before{content:"\\e078"}.glyphicon-chevron-left:before{content:"\\e079"}.glyphicon-chevron-right:before{content:"\\e080"}.glyphicon-plus-sign:before{content:"\\e081"}.glyphicon-minus-sign:before{content:"\\e082"}.glyphicon-remove-sign:before{content:"\\e083"}.glyphicon-ok-sign:before{content:"\\e084"}.glyphicon-question-sign:before{content:"\\e085"}.glyphicon-info-sign:before{content:"\\e086"}.glyphicon-screenshot:before{content:"\\e087"}.glyphicon-remove-circle:before{content:"\\e088"}.glyphicon-ok-circle:before{content:"\\e089"}.glyphicon-ban-circle:before{content:"\\e090"}.glyphicon-arrow-left:before{content:"\\e091"}.glyphicon-arrow-right:before{content:"\\e092"}.glyphicon-arrow-up:before{content:"\\e093"}.glyphicon-arrow-down:before{content:"\\e094"}.glyphicon-share-alt:before{content:"\\e095"}.glyphicon-resize-full:before{content:"\\e096"}.glyphicon-resize-small:before{content:"\\e097"}.glyphicon-exclamation-sign:before{content:"\\e101"}.glyphicon-gift:before{content:"\\e102"}.glyphicon-leaf:before{content:"\\e103"}.glyphicon-fire:before{content:"\\e104"}.glyphicon-eye-open:before{content:"\\e105"}.glyphicon-eye-close:before{content:"\\e106"}.glyphicon-warning-sign:before{content:"\\e107"}.glyphicon-plane:before{content:"\\e108"}.glyphicon-calendar:before{content:"\\e109"}.glyphicon-random:before{content:"\\e110"}.glyphicon-comment:before{content:"\\e111"}.glyphicon-magnet:before{content:"\\e112"}.glyphicon-chevron-up:before{content:"\\e113"}.glyphicon-chevron-down:before{content:"\\e114"}.glyphicon-retweet:before{content:"\\e115"}.glyphicon-shopping-cart:before{content:"\\e116"}.glyphicon-folder-close:before{content:"\\e117"}.glyphicon-folder-open:before{content:"\\e118"}.glyphicon-resize-vertical:before{content:"\\e119"}.glyphicon-resize-horizontal:before{content:"\\e120"}.glyphicon-hdd:before{content:"\\e121"}.glyphicon-bullhorn:before{content:"\\e122"}.glyphicon-bell:before{content:"\\e123"}.glyphicon-certificate:before{content:"\\e124"}.glyphicon-thumbs-up:before{content:"\\e125"}.glyphicon-thumbs-down:before{content:"\\e126"}.glyphicon-hand-right:before{content:"\\e127"}.glyphicon-hand-left:before{content:"\\e128"}.glyphicon-hand-up:before{content:"\\e129"}.glyphicon-hand-down:before{content:"\\e130"}.glyphicon-circle-arrow-right:before{content:"\\e131"}.glyphicon-circle-arrow-left:before{content:"\\e132"}.glyphicon-circle-arrow-up:before{content:"\\e133"}.glyphicon-circle-arrow-down:before{content:"\\e134"}.glyphicon-globe:before{content:"\\e135"}.glyphicon-wrench:before{content:"\\e136"}.glyphicon-tasks:before{content:"\\e137"}.glyphicon-filter:before{content:"\\e138"}.glyphicon-briefcase:before{content:"\\e139"}.glyphicon-fullscreen:before{content:"\\e140"}.glyphicon-dashboard:before{content:"\\e141"}.glyphicon-paperclip:before{content:"\\e142"}.glyphicon-heart-empty:before{content:"\\e143"}.glyphicon-link:before{content:"\\e144"}.glyphicon-phone:before{content:"\\e145"}.glyphicon-pushpin:before{content:"\\e146"}.glyphicon-usd:before{content:"\\e148"}.glyphicon-gbp:before{content:"\\e149"}.glyphicon-sort:before{content:"\\e150"}.glyphicon-sort-by-alphabet:before{content:"\\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\\e152"}.glyphicon-sort-by-order:before{content:"\\e153"}.glyphicon-sort-by-order-alt:before{content:"\\e154"}.glyphicon-sort-by-attributes:before{content:"\\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\\e156"}.glyphicon-unchecked:before{content:"\\e157"}.glyphicon-expand:before{content:"\\e158"}.glyphicon-collapse-down:before{content:"\\e159"}.glyphicon-collapse-up:before{content:"\\e160"}.glyphicon-log-in:before{content:"\\e161"}.glyphicon-flash:before{content:"\\e162"}.glyphicon-log-out:before{content:"\\e163"}.glyphicon-new-window:before{content:"\\e164"}.glyphicon-record:before{content:"\\e165"}.glyphicon-save:before{content:"\\e166"}.glyphicon-open:before{content:"\\e167"}.glyphicon-saved:before{content:"\\e168"}.glyphicon-import:before{content:"\\e169"}.glyphicon-export:before{content:"\\e170"}.glyphicon-send:before{content:"\\e171"}.glyphicon-floppy-disk:before{content:"\\e172"}.glyphicon-floppy-saved:before{content:"\\e173"}.glyphicon-floppy-remove:before{content:"\\e174"}.glyphicon-floppy-save:before{content:"\\e175"}.glyphicon-floppy-open:before{content:"\\e176"}.glyphicon-credit-card:before{content:"\\e177"}.glyphicon-transfer:before{content:"\\e178"}.glyphicon-cutlery:before{content:"\\e179"}.glyphicon-header:before{content:"\\e180"}.glyphicon-compressed:before{content:"\\e181"}.glyphicon-earphone:before{content:"\\e182"}.glyphicon-phone-alt:before{content:"\\e183"}.glyphicon-tower:before{content:"\\e184"}.glyphicon-stats:before{content:"\\e185"}.glyphicon-sd-video:before{content:"\\e186"}.glyphicon-hd-video:before{content:"\\e187"}.glyphicon-subtitles:before{content:"\\e188"}.glyphicon-sound-stereo:before{content:"\\e189"}.glyphicon-sound-dolby:before{content:"\\e190"}.glyphicon-sound-5-1:before{content:"\\e191"}.glyphicon-sound-6-1:before{content:"\\e192"}.glyphicon-sound-7-1:before{content:"\\e193"}.glyphicon-copyright-mark:before{content:"\\e194"}.glyphicon-registration-mark:before{content:"\\e195"}.glyphicon-cloud-download:before{content:"\\e197"}.glyphicon-cloud-upload:before{content:"\\e198"}.glyphicon-tree-conifer:before{content:"\\e199"}.glyphicon-tree-deciduous:before{content:"\\e200"}.glyphicon-cd:before{content:"\\e201"}.glyphicon-save-file:before{content:"\\e202"}.glyphicon-open-file:before{content:"\\e203"}.glyphicon-level-up:before{content:"\\e204"}.glyphicon-copy:before{content:"\\e205"}.glyphicon-paste:before{content:"\\e206"}.glyphicon-alert:before{content:"\\e209"}.glyphicon-equalizer:before{content:"\\e210"}.glyphicon-king:before{content:"\\e211"}.glyphicon-queen:before{content:"\\e212"}.glyphicon-pawn:before{content:"\\e213"}.glyphicon-bishop:before{content:"\\e214"}.glyphicon-knight:before{content:"\\e215"}.glyphicon-baby-formula:before{content:"\\e216"}.glyphicon-tent:before{content:"\\26fa"}.glyphicon-blackboard:before{content:"\\e218"}.glyphicon-bed:before{content:"\\e219"}.glyphicon-apple:before{content:"\\f8ff"}.glyphicon-erase:before{content:"\\e221"}.glyphicon-hourglass:before{content:"\\231b"}.glyphicon-lamp:before{content:"\\e223"}.glyphicon-duplicate:before{content:"\\e224"}.glyphicon-piggy-bank:before{content:"\\e225"}.glyphicon-scissors:before{content:"\\e226"}.glyphicon-bitcoin:before{content:"\\e227"}.glyphicon-btc:before{content:"\\e227"}.glyphicon-xbt:before{content:"\\e227"}.glyphicon-yen:before{content:"\\00a5"}.glyphicon-jpy:before{content:"\\00a5"}.glyphicon-ruble:before{content:"\\20bd"}.glyphicon-rub:before{content:"\\20bd"}.glyphicon-scale:before{content:"\\e230"}.glyphicon-ice-lolly:before{content:"\\e231"}.glyphicon-ice-lolly-tasted:before{content:"\\e232"}.glyphicon-education:before{content:"\\e233"}.glyphicon-option-horizontal:before{content:"\\e234"}.glyphicon-option-vertical:before{content:"\\e235"}.glyphicon-menu-hamburger:before{content:"\\e236"}.glyphicon-modal-window:before{content:"\\e237"}.glyphicon-oil:before{content:"\\e238"}.glyphicon-grain:before{content:"\\e239"}.glyphicon-sunglasses:before{content:"\\e240"}.glyphicon-text-size:before{content:"\\e241"}.glyphicon-text-color:before{content:"\\e242"}.glyphicon-text-background:before{content:"\\e243"}.glyphicon-object-align-top:before{content:"\\e244"}.glyphicon-object-align-bottom:before{content:"\\e245"}.glyphicon-object-align-horizontal:before{content:"\\e246"}.glyphicon-object-align-left:before{content:"\\e247"}.glyphicon-object-align-vertical:before{content:"\\e248"}.glyphicon-object-align-right:before{content:"\\e249"}.glyphicon-triangle-right:before{content:"\\e250"}.glyphicon-triangle-left:before{content:"\\e251"}.glyphicon-triangle-bottom:before{content:"\\e252"}.glyphicon-triangle-top:before{content:"\\e253"}.glyphicon-console:before{content:"\\e254"}.glyphicon-superscript:before{content:"\\e255"}.glyphicon-subscript:before{content:"\\e256"}.glyphicon-menu-left:before{content:"\\e257"}.glyphicon-menu-right:before{content:"\\e258"}.glyphicon-menu-down:before{content:"\\e259"}.glyphicon-menu-up:before{content:"\\e260"}/*# sourceMappingURL=plone-glyphicons-compiled.css.map */\n\\ No newline at end of file\n+@font-face{font-family:"Glyphicons Halflings";src:url("fonts/glyphicons-halflings-regular.eot");src:url("fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("fonts/glyphicons-halflings-regular.woff") format("woff"),url("fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\\002a"}.glyphicon-plus:before{content:"\\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\\20ac"}.glyphicon-minus:before{content:"\\2212"}.glyphicon-cloud:before{content:"\\2601"}.glyphicon-envelope:before{content:"\\2709"}.glyphicon-pencil:before{content:"\\270f"}.glyphicon-glass:before{content:"\\e001"}.glyphicon-music:before{content:"\\e002"}.glyphicon-search:before{content:"\\e003"}.glyphicon-heart:before{content:"\\e005"}.glyphicon-star:before{content:"\\e006"}.glyphicon-star-empty:before{content:"\\e007"}.glyphicon-user:before{content:"\\e008"}.glyphicon-film:before{content:"\\e009"}.glyphicon-th-large:before{content:"\\e010"}.glyphicon-th:before{content:"\\e011"}.glyphicon-th-list:before{content:"\\e012"}.glyphicon-ok:before{content:"\\e013"}.glyphicon-remove:before{content:"\\e014"}.glyphicon-zoom-in:before{content:"\\e015"}.glyphicon-zoom-out:before{content:"\\e016"}.glyphicon-off:before{content:"\\e017"}.glyphicon-signal:before{content:"\\e018"}.glyphicon-cog:before{content:"\\e019"}.glyphicon-trash:before{content:"\\e020"}.glyphicon-home:before{content:"\\e021"}.glyphicon-file:before{content:"\\e022"}.glyphicon-time:before{content:"\\e023"}.glyphicon-road:before{content:"\\e024"}.glyphicon-download-alt:before{content:"\\e025"}.glyphicon-download:before{content:"\\e026"}.glyphicon-upload:before{content:"\\e027"}.glyphicon-inbox:before{content:"\\e028"}.glyphicon-play-circle:before{content:"\\e029"}.glyphicon-repeat:before{content:"\\e030"}.glyphicon-refresh:before{content:"\\e031"}.glyphicon-list-alt:before{content:"\\e032"}.glyphicon-lock:before{content:"\\e033"}.glyphicon-flag:before{content:"\\e034"}.glyphicon-headphones:before{content:"\\e035"}.glyphicon-volume-off:before{content:"\\e036"}.glyphicon-volume-down:before{content:"\\e037"}.glyphicon-volume-up:before{content:"\\e038"}.glyphicon-qrcode:before{content:"\\e039"}.glyphicon-barcode:before{content:"\\e040"}.glyphicon-tag:before{content:"\\e041"}.glyphicon-tags:before{content:"\\e042"}.glyphicon-book:before{content:"\\e043"}.glyphicon-bookmark:before{content:"\\e044"}.glyphicon-print:before{content:"\\e045"}.glyphicon-camera:before{content:"\\e046"}.glyphicon-font:before{content:"\\e047"}.glyphicon-bold:before{content:"\\e048"}.glyphicon-italic:before{content:"\\e049"}.glyphicon-text-height:before{content:"\\e050"}.glyphicon-text-width:before{content:"\\e051"}.glyphicon-align-left:before{content:"\\e052"}.glyphicon-align-center:before{content:"\\e053"}.glyphicon-align-right:before{content:"\\e054"}.glyphicon-align-justify:before{content:"\\e055"}.glyphicon-list:before{content:"\\e056"}.glyphicon-indent-left:before{content:"\\e057"}.glyphicon-indent-right:before{content:"\\e058"}.glyphicon-facetime-video:before{content:"\\e059"}.glyphicon-picture:before{content:"\\e060"}.glyphicon-map-marker:before{content:"\\e062"}.glyphicon-adjust:before{content:"\\e063"}.glyphicon-tint:before{content:"\\e064"}.glyphicon-edit:before{content:"\\e065"}.glyphicon-share:before{content:"\\e066"}.glyphicon-check:before{content:"\\e067"}.glyphicon-move:before{content:"\\e068"}.glyphicon-step-backward:before{content:"\\e069"}.glyphicon-fast-backward:before{content:"\\e070"}.glyphicon-backward:before{content:"\\e071"}.glyphicon-play:before{content:"\\e072"}.glyphicon-pause:before{content:"\\e073"}.glyphicon-stop:before{content:"\\e074"}.glyphicon-forward:before{content:"\\e075"}.glyphicon-fast-forward:before{content:"\\e076"}.glyphicon-step-forward:before{content:"\\e077"}.glyphicon-eject:before{content:"\\e078"}.glyphicon-chevron-left:before{content:"\\e079"}.glyphicon-chevron-right:before{content:"\\e080"}.glyphicon-plus-sign:before{content:"\\e081"}.glyphicon-minus-sign:before{content:"\\e082"}.glyphicon-remove-sign:before{content:"\\e083"}.glyphicon-ok-sign:before{content:"\\e084"}.glyphicon-question-sign:before{content:"\\e085"}.glyphicon-info-sign:before{content:"\\e086"}.glyphicon-screenshot:before{content:"\\e087"}.glyphicon-remove-circle:before{content:"\\e088"}.glyphicon-ok-circle:before{content:"\\e089"}.glyphicon-ban-circle:before{content:"\\e090"}.glyphicon-arrow-left:before{content:"\\e091"}.glyphicon-arrow-right:before{content:"\\e092"}.glyphicon-arrow-up:before{content:"\\e093"}.glyphicon-arrow-down:before{content:"\\e094"}.glyphicon-share-alt:before{content:"\\e095"}.glyphicon-resize-full:before{content:"\\e096"}.glyphicon-resize-small:before{content:"\\e097"}.glyphicon-exclamation-sign:before{content:"\\e101"}.glyphicon-gift:before{content:"\\e102"}.glyphicon-leaf:before{content:"\\e103"}.glyphicon-fire:before{content:"\\e104"}.glyphicon-eye-open:before{content:"\\e105"}.glyphicon-eye-close:before{content:"\\e106"}.glyphicon-warning-sign:before{content:"\\e107"}.glyphicon-plane:before{content:"\\e108"}.glyphicon-calendar:before{content:"\\e109"}.glyphicon-random:before{content:"\\e110"}.glyphicon-comment:before{content:"\\e111"}.glyphicon-magnet:before{content:"\\e112"}.glyphicon-chevron-up:before{content:"\\e113"}.glyphicon-chevron-down:before{content:"\\e114"}.glyphicon-retweet:before{content:"\\e115"}.glyphicon-shopping-cart:before{content:"\\e116"}.glyphicon-folder-close:before{content:"\\e117"}.glyphicon-folder-open:before{content:"\\e118"}.glyphicon-resize-vertical:before{content:"\\e119"}.glyphicon-resize-horizontal:before{content:"\\e120"}.glyphicon-hdd:before{content:"\\e121"}.glyphicon-bullhorn:before{content:"\\e122"}.glyphicon-bell:before{content:"\\e123"}.glyphicon-certificate:before{content:"\\e124"}.glyphicon-thumbs-up:before{content:"\\e125"}.glyphicon-thumbs-down:before{content:"\\e126"}.glyphicon-hand-right:before{content:"\\e127"}.glyphicon-hand-left:before{content:"\\e128"}.glyphicon-hand-up:before{content:"\\e129"}.glyphicon-hand-down:before{content:"\\e130"}.glyphicon-circle-arrow-right:before{content:"\\e131"}.glyphicon-circle-arrow-left:before{content:"\\e132"}.glyphicon-circle-arrow-up:before{content:"\\e133"}.glyphicon-circle-arrow-down:before{content:"\\e134"}.glyphicon-globe:before{content:"\\e135"}.glyphicon-wrench:before{content:"\\e136"}.glyphicon-tasks:before{content:"\\e137"}.glyphicon-filter:before{content:"\\e138"}.glyphicon-briefcase:before{content:"\\e139"}.glyphicon-fullscreen:before{content:"\\e140"}.glyphicon-dashboard:before{content:"\\e141"}.glyphicon-paperclip:before{content:"\\e142"}.glyphicon-heart-empty:before{content:"\\e143"}.glyphicon-link:before{content:"\\e144"}.glyphicon-phone:before{content:"\\e145"}.glyphicon-pushpin:before{content:"\\e146"}.glyphicon-usd:before{content:"\\e148"}.glyphicon-gbp:before{content:"\\e149"}.glyphicon-sort:before{content:"\\e150"}.glyphicon-sort-by-alphabet:before{content:"\\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\\e152"}.glyphicon-sort-by-order:before{content:"\\e153"}.glyphicon-sort-by-order-alt:before{content:"\\e154"}.glyphicon-sort-by-attributes:before{content:"\\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\\e156"}.glyphicon-unchecked:before{content:"\\e157"}.glyphicon-expand:before{content:"\\e158"}.glyphicon-collapse-down:before{content:"\\e159"}.glyphicon-collapse-up:before{content:"\\e160"}.glyphicon-log-in:before{content:"\\e161"}.glyphicon-flash:before{content:"\\e162"}.glyphicon-log-out:before{content:"\\e163"}.glyphicon-new-window:before{content:"\\e164"}.glyphicon-record:before{content:"\\e165"}.glyphicon-save:before{content:"\\e166"}.glyphicon-open:before{content:"\\e167"}.glyphicon-saved:before{content:"\\e168"}.glyphicon-import:before{content:"\\e169"}.glyphicon-export:before{content:"\\e170"}.glyphicon-send:before{content:"\\e171"}.glyphicon-floppy-disk:before{content:"\\e172"}.glyphicon-floppy-saved:before{content:"\\e173"}.glyphicon-floppy-remove:before{content:"\\e174"}.glyphicon-floppy-save:before{content:"\\e175"}.glyphicon-floppy-open:before{content:"\\e176"}.glyphicon-credit-card:before{content:"\\e177"}.glyphicon-transfer:before{content:"\\e178"}.glyphicon-cutlery:before{content:"\\e179"}.glyphicon-header:before{content:"\\e180"}.glyphicon-compressed:before{content:"\\e181"}.glyphicon-earphone:before{content:"\\e182"}.glyphicon-phone-alt:before{content:"\\e183"}.glyphicon-tower:before{content:"\\e184"}.glyphicon-stats:before{content:"\\e185"}.glyphicon-sd-video:before{content:"\\e186"}.glyphicon-hd-video:before{content:"\\e187"}.glyphicon-subtitles:before{content:"\\e188"}.glyphicon-sound-stereo:before{content:"\\e189"}.glyphicon-sound-dolby:before{content:"\\e190"}.glyphicon-sound-5-1:before{content:"\\e191"}.glyphicon-sound-6-1:before{content:"\\e192"}.glyphicon-sound-7-1:before{content:"\\e193"}.glyphicon-copyright-mark:before{content:"\\e194"}.glyphicon-registration-mark:before{content:"\\e195"}.glyphicon-cloud-download:before{content:"\\e197"}.glyphicon-cloud-upload:before{content:"\\e198"}.glyphicon-tree-conifer:before{content:"\\e199"}.glyphicon-tree-deciduous:before{content:"\\e200"}.glyphicon-cd:before{content:"\\e201"}.glyphicon-save-file:before{content:"\\e202"}.glyphicon-open-file:before{content:"\\e203"}.glyphicon-level-up:before{content:"\\e204"}.glyphicon-copy:before{content:"\\e205"}.glyphicon-paste:before{content:"\\e206"}.glyphicon-alert:before{content:"\\e209"}.glyphicon-equalizer:before{content:"\\e210"}.glyphicon-king:before{content:"\\e211"}.glyphicon-queen:before{content:"\\e212"}.glyphicon-pawn:before{content:"\\e213"}.glyphicon-bishop:before{content:"\\e214"}.glyphicon-knight:before{content:"\\e215"}.glyphicon-baby-formula:before{content:"\\e216"}.glyphicon-tent:before{content:"\\26fa"}.glyphicon-blackboard:before{content:"\\e218"}.glyphicon-bed:before{content:"\\e219"}.glyphicon-apple:before{content:"\\f8ff"}.glyphicon-erase:before{content:"\\e221"}.glyphicon-hourglass:before{content:"\\231b"}.glyphicon-lamp:before{content:"\\e223"}.glyphicon-duplicate:before{content:"\\e224"}.glyphicon-piggy-bank:before{content:"\\e225"}.glyphicon-scissors:before{content:"\\e226"}.glyphicon-bitcoin:before{content:"\\e227"}.glyphicon-btc:before{content:"\\e227"}.glyphicon-xbt:before{content:"\\e227"}.glyphicon-yen:before{content:"\\00a5"}.glyphicon-jpy:before{content:"\\00a5"}.glyphicon-ruble:before{content:"\\20bd"}.glyphicon-rub:before{content:"\\20bd"}.glyphicon-scale:before{content:"\\e230"}.glyphicon-ice-lolly:before{content:"\\e231"}.glyphicon-ice-lolly-tasted:before{content:"\\e232"}.glyphicon-education:before{content:"\\e233"}.glyphicon-option-horizontal:before{content:"\\e234"}.glyphicon-option-vertical:before{content:"\\e235"}.glyphicon-menu-hamburger:before{content:"\\e236"}.glyphicon-modal-window:before{content:"\\e237"}.glyphicon-oil:before{content:"\\e238"}.glyphicon-grain:before{content:"\\e239"}.glyphicon-sunglasses:before{content:"\\e240"}.glyphicon-text-size:before{content:"\\e241"}.glyphicon-text-color:before{content:"\\e242"}.glyphicon-text-background:before{content:"\\e243"}.glyphicon-object-align-top:before{content:"\\e244"}.glyphicon-object-align-bottom:before{content:"\\e245"}.glyphicon-object-align-horizontal:before{content:"\\e246"}.glyphicon-object-align-left:before{content:"\\e247"}.glyphicon-object-align-vertical:before{content:"\\e248"}.glyphicon-object-align-right:before{content:"\\e249"}.glyphicon-triangle-right:before{content:"\\e250"}.glyphicon-triangle-left:before{content:"\\e251"}.glyphicon-triangle-bottom:before{content:"\\e252"}.glyphicon-triangle-top:before{content:"\\e253"}.glyphicon-console:before{content:"\\e254"}.glyphicon-superscript:before{content:"\\e255"}.glyphicon-subscript:before{content:"\\e256"}.glyphicon-menu-left:before{content:"\\e257"}.glyphicon-menu-right:before{content:"\\e258"}.glyphicon-menu-down:before{content:"\\e259"}.glyphicon-menu-up:before{content:"\\e260"}/*# sourceMappingURL=plone-glyphicons-compiled.css.map */\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-glyphicons-compiled.css.map b/src/plone/staticresources/static/plone-glyphicons-compiled.css.map\nindex 258d75108..17ea7d63d 100644\n--- a/src/plone/staticresources/static/plone-glyphicons-compiled.css.map\n+++ b/src/plone/staticresources/static/plone-glyphicons-compiled.css.map\n@@ -1 +1 @@\n-{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/components/bootstrap/less/glyphicons.less"],"names":[],"mappings":"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","sourcesContent":["// stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword\\n\\n//\\n// Glyphicons for Bootstrap\\n//\\n// Since icons are fonts, they can be placed anywhere text is placed and are\\n// thus automatically sized to match the surrounding child. To use, create an\\n// inline element with the appropriate classes, like so:\\n//\\n// Star\\n\\n// Import the fonts\\n@font-face {\\n font-family: \\"Glyphicons Halflings\\";\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot\\");\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot?#iefix\\") format(\\"embedded-opentype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff2\\") format(\\"woff2\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff\\") format(\\"woff\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.ttf\\") format(\\"truetype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}\\") format(\\"svg\\");\\n}\\n\\n// Catchall baseclass\\n.glyphicon {\\n position: relative;\\n top: 1px;\\n display: inline-block;\\n font-family: \\"Glyphicons Halflings\\";\\n font-style: normal;\\n font-weight: 400;\\n line-height: 1;\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n}\\n\\n// Individual icons\\n.glyphicon-asterisk { &:before { content: \\"\\\\002a\\"; } }\\n.glyphicon-plus { &:before { content: \\"\\\\002b\\"; } }\\n.glyphicon-euro,\\n.glyphicon-eur { &:before { content: \\"\\\\20ac\\"; } }\\n.glyphicon-minus { &:before { content: \\"\\\\2212\\"; } }\\n.glyphicon-cloud { &:before { content: \\"\\\\2601\\"; } }\\n.glyphicon-envelope { &:before { content: \\"\\\\2709\\"; } }\\n.glyphicon-pencil { &:before { content: \\"\\\\270f\\"; } }\\n.glyphicon-glass { &:before { content: \\"\\\\e001\\"; } }\\n.glyphicon-music { &:before { content: \\"\\\\e002\\"; } }\\n.glyphicon-search { &:before { content: \\"\\\\e003\\"; } }\\n.glyphicon-heart { &:before { content: \\"\\\\e005\\"; } }\\n.glyphicon-star { &:before { content: \\"\\\\e006\\"; } }\\n.glyphicon-star-empty { &:before { content: \\"\\\\e007\\"; } }\\n.glyphicon-user { &:before { content: \\"\\\\e008\\"; } }\\n.glyphicon-film { &:before { content: \\"\\\\e009\\"; } }\\n.glyphicon-th-large { &:before { content: \\"\\\\e010\\"; } }\\n.glyphicon-th { &:before { content: \\"\\\\e011\\"; } }\\n.glyphicon-th-list { &:before { content: \\"\\\\e012\\"; } }\\n.glyphicon-ok { &:before { content: \\"\\\\e013\\"; } }\\n.glyphicon-remove { &:before { content: \\"\\\\e014\\"; } }\\n.glyphicon-zoom-in { &:before { content: \\"\\\\e015\\"; } }\\n.glyphicon-zoom-out { &:before { content: \\"\\\\e016\\"; } }\\n.glyphicon-off { &:before { content: \\"\\\\e017\\"; } }\\n.glyphicon-signal { &:before { content: \\"\\\\e018\\"; } }\\n.glyphicon-cog { &:before { content: \\"\\\\e019\\"; } }\\n.glyphicon-trash { &:before { content: \\"\\\\e020\\"; } }\\n.glyphicon-home { &:before { content: \\"\\\\e021\\"; } }\\n.glyphicon-file { &:before { content: \\"\\\\e022\\"; } }\\n.glyphicon-time { &:before { content: \\"\\\\e023\\"; } }\\n.glyphicon-road { &:before { content: \\"\\\\e024\\"; } }\\n.glyphicon-download-alt { &:before { content: \\"\\\\e025\\"; } }\\n.glyphicon-download { &:before { content: \\"\\\\e026\\"; } }\\n.glyphicon-upload { &:before { content: \\"\\\\e027\\"; } }\\n.glyphicon-inbox { &:before { content: \\"\\\\e028\\"; } }\\n.glyphicon-play-circle { &:before { content: \\"\\\\e029\\"; } }\\n.glyphicon-repeat { &:before { content: \\"\\\\e030\\"; } }\\n.glyphicon-refresh { &:before { content: \\"\\\\e031\\"; } }\\n.glyphicon-list-alt { &:before { content: \\"\\\\e032\\"; } }\\n.glyphicon-lock { &:before { content: \\"\\\\e033\\"; } }\\n.glyphicon-flag { &:before { content: \\"\\\\e034\\"; } }\\n.glyphicon-headphones { &:before { content: \\"\\\\e035\\"; } }\\n.glyphicon-volume-off { &:before { content: \\"\\\\e036\\"; } }\\n.glyphicon-volume-down { &:before { content: \\"\\\\e037\\"; } }\\n.glyphicon-volume-up { &:before { content: \\"\\\\e038\\"; } }\\n.glyphicon-qrcode { &:before { content: \\"\\\\e039\\"; } }\\n.glyphicon-barcode { &:before { content: \\"\\\\e040\\"; } }\\n.glyphicon-tag { &:before { content: \\"\\\\e041\\"; } }\\n.glyphicon-tags { &:before { content: \\"\\\\e042\\"; } }\\n.glyphicon-book { &:before { content: \\"\\\\e043\\"; } }\\n.glyphicon-bookmark { &:before { content: \\"\\\\e044\\"; } }\\n.glyphicon-print { &:before { content: \\"\\\\e045\\"; } }\\n.glyphicon-camera { &:before { content: \\"\\\\e046\\"; } }\\n.glyphicon-font { &:before { content: \\"\\\\e047\\"; } }\\n.glyphicon-bold { &:before { content: \\"\\\\e048\\"; } }\\n.glyphicon-italic { &:before { content: \\"\\\\e049\\"; } }\\n.glyphicon-text-height { &:before { content: \\"\\\\e050\\"; } }\\n.glyphicon-text-width { &:before { content: \\"\\\\e051\\"; } }\\n.glyphicon-align-left { &:before { content: \\"\\\\e052\\"; } }\\n.glyphicon-align-center { &:before { content: \\"\\\\e053\\"; } }\\n.glyphicon-align-right { &:before { content: \\"\\\\e054\\"; } }\\n.glyphicon-align-justify { &:before { content: \\"\\\\e055\\"; } }\\n.glyphicon-list { &:before { content: \\"\\\\e056\\"; } }\\n.glyphicon-indent-left { &:before { content: \\"\\\\e057\\"; } }\\n.glyphicon-indent-right { &:before { content: \\"\\\\e058\\"; } }\\n.glyphicon-facetime-video { &:before { content: \\"\\\\e059\\"; } }\\n.glyphicon-picture { &:before { content: \\"\\\\e060\\"; } }\\n.glyphicon-map-marker { &:before { content: \\"\\\\e062\\"; } }\\n.glyphicon-adjust { &:before { content: \\"\\\\e063\\"; } }\\n.glyphicon-tint { &:before { content: \\"\\\\e064\\"; } }\\n.glyphicon-edit { &:before { content: \\"\\\\e065\\"; } }\\n.glyphicon-share { &:before { content: \\"\\\\e066\\"; } }\\n.glyphicon-check { &:before { content: \\"\\\\e067\\"; } }\\n.glyphicon-move { &:before { content: \\"\\\\e068\\"; } }\\n.glyphicon-step-backward { &:before { content: \\"\\\\e069\\"; } }\\n.glyphicon-fast-backward { &:before { content: \\"\\\\e070\\"; } }\\n.glyphicon-backward { &:before { content: \\"\\\\e071\\"; } }\\n.glyphicon-play { &:before { content: \\"\\\\e072\\"; } }\\n.glyphicon-pause { &:before { content: \\"\\\\e073\\"; } }\\n.glyphicon-stop { &:before { content: \\"\\\\e074\\"; } }\\n.glyphicon-forward { &:before { content: \\"\\\\e075\\"; } }\\n.glyphicon-fast-forward { &:before { content: \\"\\\\e076\\"; } }\\n.glyphicon-step-forward { &:before { content: \\"\\\\e077\\"; } }\\n.glyphicon-eject { &:before { content: \\"\\\\e078\\"; } }\\n.glyphicon-chevron-left { &:before { content: \\"\\\\e079\\"; } }\\n.glyphicon-chevron-right { &:before { content: \\"\\\\e080\\"; } }\\n.glyphicon-plus-sign { &:before { content: \\"\\\\e081\\"; } }\\n.glyphicon-minus-sign { &:before { content: \\"\\\\e082\\"; } }\\n.glyphicon-remove-sign { &:before { content: \\"\\\\e083\\"; } }\\n.glyphicon-ok-sign { &:before { content: \\"\\\\e084\\"; } }\\n.glyphicon-question-sign { &:before { content: \\"\\\\e085\\"; } }\\n.glyphicon-info-sign { &:before { content: \\"\\\\e086\\"; } }\\n.glyphicon-screenshot { &:before { content: \\"\\\\e087\\"; } }\\n.glyphicon-remove-circle { &:before { content: \\"\\\\e088\\"; } }\\n.glyphicon-ok-circle { &:before { content: \\"\\\\e089\\"; } }\\n.glyphicon-ban-circle { &:before { content: \\"\\\\e090\\"; } }\\n.glyphicon-arrow-left { &:before { content: \\"\\\\e091\\"; } }\\n.glyphicon-arrow-right { &:before { content: \\"\\\\e092\\"; } }\\n.glyphicon-arrow-up { &:before { content: \\"\\\\e093\\"; } }\\n.glyphicon-arrow-down { &:before { content: \\"\\\\e094\\"; } }\\n.glyphicon-share-alt { &:before { content: \\"\\\\e095\\"; } }\\n.glyphicon-resize-full { &:before { content: \\"\\\\e096\\"; } }\\n.glyphicon-resize-small { &:before { content: \\"\\\\e097\\"; } }\\n.glyphicon-exclamation-sign { &:before { content: \\"\\\\e101\\"; } }\\n.glyphicon-gift { &:before { content: \\"\\\\e102\\"; } }\\n.glyphicon-leaf { &:before { content: \\"\\\\e103\\"; } }\\n.glyphicon-fire { &:before { content: \\"\\\\e104\\"; } }\\n.glyphicon-eye-open { &:before { content: \\"\\\\e105\\"; } }\\n.glyphicon-eye-close { &:before { content: \\"\\\\e106\\"; } }\\n.glyphicon-warning-sign { &:before { content: \\"\\\\e107\\"; } }\\n.glyphicon-plane { &:before { content: \\"\\\\e108\\"; } }\\n.glyphicon-calendar { &:before { content: \\"\\\\e109\\"; } }\\n.glyphicon-random { &:before { content: \\"\\\\e110\\"; } }\\n.glyphicon-comment { &:before { content: \\"\\\\e111\\"; } }\\n.glyphicon-magnet { &:before { content: \\"\\\\e112\\"; } }\\n.glyphicon-chevron-up { &:before { content: \\"\\\\e113\\"; } }\\n.glyphicon-chevron-down { &:before { content: \\"\\\\e114\\"; } }\\n.glyphicon-retweet { &:before { content: \\"\\\\e115\\"; } }\\n.glyphicon-shopping-cart { &:before { content: \\"\\\\e116\\"; } }\\n.glyphicon-folder-close { &:before { content: \\"\\\\e117\\"; } }\\n.glyphicon-folder-open { &:before { content: \\"\\\\e118\\"; } }\\n.glyphicon-resize-vertical { &:before { content: \\"\\\\e119\\"; } }\\n.glyphicon-resize-horizontal { &:before { content: \\"\\\\e120\\"; } }\\n.glyphicon-hdd { &:before { content: \\"\\\\e121\\"; } }\\n.glyphicon-bullhorn { &:before { content: \\"\\\\e122\\"; } }\\n.glyphicon-bell { &:before { content: \\"\\\\e123\\"; } }\\n.glyphicon-certificate { &:before { content: \\"\\\\e124\\"; } }\\n.glyphicon-thumbs-up { &:before { content: \\"\\\\e125\\"; } }\\n.glyphicon-thumbs-down { &:before { content: \\"\\\\e126\\"; } }\\n.glyphicon-hand-right { &:before { content: \\"\\\\e127\\"; } }\\n.glyphicon-hand-left { &:before { content: \\"\\\\e128\\"; } }\\n.glyphicon-hand-up { &:before { content: \\"\\\\e129\\"; } }\\n.glyphicon-hand-down { &:before { content: \\"\\\\e130\\"; } }\\n.glyphicon-circle-arrow-right { &:before { content: \\"\\\\e131\\"; } }\\n.glyphicon-circle-arrow-left { &:before { content: \\"\\\\e132\\"; } }\\n.glyphicon-circle-arrow-up { &:before { content: \\"\\\\e133\\"; } }\\n.glyphicon-circle-arrow-down { &:before { content: \\"\\\\e134\\"; } }\\n.glyphicon-globe { &:before { content: \\"\\\\e135\\"; } }\\n.glyphicon-wrench { &:before { content: \\"\\\\e136\\"; } }\\n.glyphicon-tasks { &:before { content: \\"\\\\e137\\"; } }\\n.glyphicon-filter { &:before { content: \\"\\\\e138\\"; } }\\n.glyphicon-briefcase { &:before { content: \\"\\\\e139\\"; } }\\n.glyphicon-fullscreen { &:before { content: \\"\\\\e140\\"; } }\\n.glyphicon-dashboard { &:before { content: \\"\\\\e141\\"; } }\\n.glyphicon-paperclip { &:before { content: \\"\\\\e142\\"; } }\\n.glyphicon-heart-empty { &:before { content: \\"\\\\e143\\"; } }\\n.glyphicon-link { &:before { content: \\"\\\\e144\\"; } }\\n.glyphicon-phone { &:before { content: \\"\\\\e145\\"; } }\\n.glyphicon-pushpin { &:before { content: \\"\\\\e146\\"; } }\\n.glyphicon-usd { &:before { content: \\"\\\\e148\\"; } }\\n.glyphicon-gbp { &:before { content: \\"\\\\e149\\"; } }\\n.glyphicon-sort { &:before { content: \\"\\\\e150\\"; } }\\n.glyphicon-sort-by-alphabet { &:before { content: \\"\\\\e151\\"; } }\\n.glyphicon-sort-by-alphabet-alt { &:before { content: \\"\\\\e152\\"; } }\\n.glyphicon-sort-by-order { &:before { content: \\"\\\\e153\\"; } }\\n.glyphicon-sort-by-order-alt { &:before { content: \\"\\\\e154\\"; } }\\n.glyphicon-sort-by-attributes { &:before { content: \\"\\\\e155\\"; } }\\n.glyphicon-sort-by-attributes-alt { &:before { content: \\"\\\\e156\\"; } }\\n.glyphicon-unchecked { &:before { content: \\"\\\\e157\\"; } }\\n.glyphicon-expand { &:before { content: \\"\\\\e158\\"; } }\\n.glyphicon-collapse-down { &:before { content: \\"\\\\e159\\"; } }\\n.glyphicon-collapse-up { &:before { content: \\"\\\\e160\\"; } }\\n.glyphicon-log-in { &:before { content: \\"\\\\e161\\"; } }\\n.glyphicon-flash { &:before { content: \\"\\\\e162\\"; } }\\n.glyphicon-log-out { &:before { content: \\"\\\\e163\\"; } }\\n.glyphicon-new-window { &:before { content: \\"\\\\e164\\"; } }\\n.glyphicon-record { &:before { content: \\"\\\\e165\\"; } }\\n.glyphicon-save { &:before { content: \\"\\\\e166\\"; } }\\n.glyphicon-open { &:before { content: \\"\\\\e167\\"; } }\\n.glyphicon-saved { &:before { content: \\"\\\\e168\\"; } }\\n.glyphicon-import { &:before { content: \\"\\\\e169\\"; } }\\n.glyphicon-export { &:before { content: \\"\\\\e170\\"; } }\\n.glyphicon-send { &:before { content: \\"\\\\e171\\"; } }\\n.glyphicon-floppy-disk { &:before { content: \\"\\\\e172\\"; } }\\n.glyphicon-floppy-saved { &:before { content: \\"\\\\e173\\"; } }\\n.glyphicon-floppy-remove { &:before { content: \\"\\\\e174\\"; } }\\n.glyphicon-floppy-save { &:before { content: \\"\\\\e175\\"; } }\\n.glyphicon-floppy-open { &:before { content: \\"\\\\e176\\"; } }\\n.glyphicon-credit-card { &:before { content: \\"\\\\e177\\"; } }\\n.glyphicon-transfer { &:before { content: \\"\\\\e178\\"; } }\\n.glyphicon-cutlery { &:before { content: \\"\\\\e179\\"; } }\\n.glyphicon-header { &:before { content: \\"\\\\e180\\"; } }\\n.glyphicon-compressed { &:before { content: \\"\\\\e181\\"; } }\\n.glyphicon-earphone { &:before { content: \\"\\\\e182\\"; } }\\n.glyphicon-phone-alt { &:before { content: \\"\\\\e183\\"; } }\\n.glyphicon-tower { &:before { content: \\"\\\\e184\\"; } }\\n.glyphicon-stats { &:before { content: \\"\\\\e185\\"; } }\\n.glyphicon-sd-video { &:before { content: \\"\\\\e186\\"; } }\\n.glyphicon-hd-video { &:before { content: \\"\\\\e187\\"; } }\\n.glyphicon-subtitles { &:before { content: \\"\\\\e188\\"; } }\\n.glyphicon-sound-stereo { &:before { content: \\"\\\\e189\\"; } }\\n.glyphicon-sound-dolby { &:before { content: \\"\\\\e190\\"; } }\\n.glyphicon-sound-5-1 { &:before { content: \\"\\\\e191\\"; } }\\n.glyphicon-sound-6-1 { &:before { content: \\"\\\\e192\\"; } }\\n.glyphicon-sound-7-1 { &:before { content: \\"\\\\e193\\"; } }\\n.glyphicon-copyright-mark { &:before { content: \\"\\\\e194\\"; } }\\n.glyphicon-registration-mark { &:before { content: \\"\\\\e195\\"; } }\\n.glyphicon-cloud-download { &:before { content: \\"\\\\e197\\"; } }\\n.glyphicon-cloud-upload { &:before { content: \\"\\\\e198\\"; } }\\n.glyphicon-tree-conifer { &:before { content: \\"\\\\e199\\"; } }\\n.glyphicon-tree-deciduous { &:before { content: \\"\\\\e200\\"; } }\\n.glyphicon-cd { &:before { content: \\"\\\\e201\\"; } }\\n.glyphicon-save-file { &:before { content: \\"\\\\e202\\"; } }\\n.glyphicon-open-file { &:before { content: \\"\\\\e203\\"; } }\\n.glyphicon-level-up { &:before { content: \\"\\\\e204\\"; } }\\n.glyphicon-copy { &:before { content: \\"\\\\e205\\"; } }\\n.glyphicon-paste { &:before { content: \\"\\\\e206\\"; } }\\n// The following 2 Glyphicons are omitted for the time being because\\n// they currently use Unicode codepoints that are outside the\\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can\'t handle\\n// non-BMP codepoints in CSS string escapes, and thus can\'t display these two icons.\\n// Notably, the bug affects some older versions of the Android Browser.\\n// More info: https://github.com/twbs/bootstrap/issues/10106\\n// .glyphicon-door { &:before { content: \\"\\\\1f6aa\\"; } }\\n// .glyphicon-key { &:before { content: \\"\\\\1f511\\"; } }\\n.glyphicon-alert { &:before { content: \\"\\\\e209\\"; } }\\n.glyphicon-equalizer { &:before { content: \\"\\\\e210\\"; } }\\n.glyphicon-king { &:before { content: \\"\\\\e211\\"; } }\\n.glyphicon-queen { &:before { content: \\"\\\\e212\\"; } }\\n.glyphicon-pawn { &:before { content: \\"\\\\e213\\"; } }\\n.glyphicon-bishop { &:before { content: \\"\\\\e214\\"; } }\\n.glyphicon-knight { &:before { content: \\"\\\\e215\\"; } }\\n.glyphicon-baby-formula { &:before { content: \\"\\\\e216\\"; } }\\n.glyphicon-tent { &:before { content: \\"\\\\26fa\\"; } }\\n.glyphicon-blackboard { &:before { content: \\"\\\\e218\\"; } }\\n.glyphicon-bed { &:before { content: \\"\\\\e219\\"; } }\\n.glyphicon-apple { &:before { content: \\"\\\\f8ff\\"; } }\\n.glyphicon-erase { &:before { content: \\"\\\\e221\\"; } }\\n.glyphicon-hourglass { &:before { content: \\"\\\\231b\\"; } }\\n.glyphicon-lamp { &:before { content: \\"\\\\e223\\"; } }\\n.glyphicon-duplicate { &:before { content: \\"\\\\e224\\"; } }\\n.glyphicon-piggy-bank { &:before { content: \\"\\\\e225\\"; } }\\n.glyphicon-scissors { &:before { content: \\"\\\\e226\\"; } }\\n.glyphicon-bitcoin { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-btc { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-xbt { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-yen { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-jpy { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-ruble { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-rub { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-scale { &:before { content: \\"\\\\e230\\"; } }\\n.glyphicon-ice-lolly { &:before { content: \\"\\\\e231\\"; } }\\n.glyphicon-ice-lolly-tasted { &:before { content: \\"\\\\e232\\"; } }\\n.glyphicon-education { &:before { content: \\"\\\\e233\\"; } }\\n.glyphicon-option-horizontal { &:before { content: \\"\\\\e234\\"; } }\\n.glyphicon-option-vertical { &:before { content: \\"\\\\e235\\"; } }\\n.glyphicon-menu-hamburger { &:before { content: \\"\\\\e236\\"; } }\\n.glyphicon-modal-window { &:before { content: \\"\\\\e237\\"; } }\\n.glyphicon-oil { &:before { content: \\"\\\\e238\\"; } }\\n.glyphicon-grain { &:before { content: \\"\\\\e239\\"; } }\\n.glyphicon-sunglasses { &:before { content: \\"\\\\e240\\"; } }\\n.glyphicon-text-size { &:before { content: \\"\\\\e241\\"; } }\\n.glyphicon-text-color { &:before { content: \\"\\\\e242\\"; } }\\n.glyphicon-text-background { &:before { content: \\"\\\\e243\\"; } }\\n.glyphicon-object-align-top { &:before { content: \\"\\\\e244\\"; } }\\n.glyphicon-object-align-bottom { &:before { content: \\"\\\\e245\\"; } }\\n.glyphicon-object-align-horizontal{ &:before { content: \\"\\\\e246\\"; } }\\n.glyphicon-object-align-left { &:before { content: \\"\\\\e247\\"; } }\\n.glyphicon-object-align-vertical { &:before { content: \\"\\\\e248\\"; } }\\n.glyphicon-object-align-right { &:before { content: \\"\\\\e249\\"; } }\\n.glyphicon-triangle-right { &:before { content: \\"\\\\e250\\"; } }\\n.glyphicon-triangle-left { &:before { content: \\"\\\\e251\\"; } }\\n.glyphicon-triangle-bottom { &:before { content: \\"\\\\e252\\"; } }\\n.glyphicon-triangle-top { &:before { content: \\"\\\\e253\\"; } }\\n.glyphicon-console { &:before { content: \\"\\\\e254\\"; } }\\n.glyphicon-superscript { &:before { content: \\"\\\\e255\\"; } }\\n.glyphicon-subscript { &:before { content: \\"\\\\e256\\"; } }\\n.glyphicon-menu-left { &:before { content: \\"\\\\e257\\"; } }\\n.glyphicon-menu-right { &:before { content: \\"\\\\e258\\"; } }\\n.glyphicon-menu-down { &:before { content: \\"\\\\e259\\"; } }\\n.glyphicon-menu-up { &:before { content: \\"\\\\e260\\"; } }\\n"]}\n\\ No newline at end of file\n+{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/components/bootstrap/less/glyphicons.less"],"names":[],"mappings":"AAYA,WACE,YAAa,sBAAb,CACA,QAAS,yCAAT,CACA,QAAS,iDAAiD,OAAO,yBACxD,4CAA4C,OAAO,aACnD,2CAA2C,OAAO,YAClD,0CAA0C,OAAO,gBACjD,sEAA8D,OAAO,OAIhF,WACE,iBAAA,CACA,OAAA,CACA,oBAAA,CACA,YAAa,sBAAb,CACA,iBAAA,CACA,eAAA,CACA,aAAA,CACA,kCAAA,CACA,kCAIkC,mBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QAEpB,eAAC,QAAD,cAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,aAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,aAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,yBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,2BAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,0BAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,6BAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,0BAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,2BAAC,QAAU,QAAS,QACpB,+BAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,6BAAC,QAAU,QAAS,QACpB,iCAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,yBAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,yBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,yBAAC,QAAU,QAAS,QACpB,aAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QASpB,gBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,iBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,eAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,mBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,2BAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,0BAAC,QAAU,QAAS,QACpB,yBAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,cAAC,QAAU,QAAS,QACpB,gBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,0BAAC,QAAU,QAAS,QACpB,2BAAC,QAAU,QAAS,QACpB,8BAAC,QAAU,QAAS,QACpB,kCAAC,QAAU,QAAS,QACpB,4BAAC,QAAU,QAAS,QACpB,gCAAC,QAAU,QAAS,QACpB,6BAAC,QAAU,QAAS,QACpB,yBAAC,QAAU,QAAS,QACpB,wBAAC,QAAU,QAAS,QACpB,0BAAC,QAAU,QAAS,QACpB,uBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS,QACpB,sBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,qBAAC,QAAU,QAAS,QACpB,oBAAC,QAAU,QAAS,QACpB,kBAAC,QAAU,QAAS","sourcesContent":["// stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword\\n\\n//\\n// Glyphicons for Bootstrap\\n//\\n// Since icons are fonts, they can be placed anywhere text is placed and are\\n// thus automatically sized to match the surrounding child. To use, create an\\n// inline element with the appropriate classes, like so:\\n//\\n// Star\\n\\n// Import the fonts\\n@font-face {\\n font-family: \\"Glyphicons Halflings\\";\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot\\");\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot?#iefix\\") format(\\"embedded-opentype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff2\\") format(\\"woff2\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff\\") format(\\"woff\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.ttf\\") format(\\"truetype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}\\") format(\\"svg\\");\\n}\\n\\n// Catchall baseclass\\n.glyphicon {\\n position: relative;\\n top: 1px;\\n display: inline-block;\\n font-family: \\"Glyphicons Halflings\\";\\n font-style: normal;\\n font-weight: 400;\\n line-height: 1;\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n}\\n\\n// Individual icons\\n.glyphicon-asterisk { &:before { content: \\"\\\\002a\\"; } }\\n.glyphicon-plus { &:before { content: \\"\\\\002b\\"; } }\\n.glyphicon-euro,\\n.glyphicon-eur { &:before { content: \\"\\\\20ac\\"; } }\\n.glyphicon-minus { &:before { content: \\"\\\\2212\\"; } }\\n.glyphicon-cloud { &:before { content: \\"\\\\2601\\"; } }\\n.glyphicon-envelope { &:before { content: \\"\\\\2709\\"; } }\\n.glyphicon-pencil { &:before { content: \\"\\\\270f\\"; } }\\n.glyphicon-glass { &:before { content: \\"\\\\e001\\"; } }\\n.glyphicon-music { &:before { content: \\"\\\\e002\\"; } }\\n.glyphicon-search { &:before { content: \\"\\\\e003\\"; } }\\n.glyphicon-heart { &:before { content: \\"\\\\e005\\"; } }\\n.glyphicon-star { &:before { content: \\"\\\\e006\\"; } }\\n.glyphicon-star-empty { &:before { content: \\"\\\\e007\\"; } }\\n.glyphicon-user { &:before { content: \\"\\\\e008\\"; } }\\n.glyphicon-film { &:before { content: \\"\\\\e009\\"; } }\\n.glyphicon-th-large { &:before { content: \\"\\\\e010\\"; } }\\n.glyphicon-th { &:before { content: \\"\\\\e011\\"; } }\\n.glyphicon-th-list { &:before { content: \\"\\\\e012\\"; } }\\n.glyphicon-ok { &:before { content: \\"\\\\e013\\"; } }\\n.glyphicon-remove { &:before { content: \\"\\\\e014\\"; } }\\n.glyphicon-zoom-in { &:before { content: \\"\\\\e015\\"; } }\\n.glyphicon-zoom-out { &:before { content: \\"\\\\e016\\"; } }\\n.glyphicon-off { &:before { content: \\"\\\\e017\\"; } }\\n.glyphicon-signal { &:before { content: \\"\\\\e018\\"; } }\\n.glyphicon-cog { &:before { content: \\"\\\\e019\\"; } }\\n.glyphicon-trash { &:before { content: \\"\\\\e020\\"; } }\\n.glyphicon-home { &:before { content: \\"\\\\e021\\"; } }\\n.glyphicon-file { &:before { content: \\"\\\\e022\\"; } }\\n.glyphicon-time { &:before { content: \\"\\\\e023\\"; } }\\n.glyphicon-road { &:before { content: \\"\\\\e024\\"; } }\\n.glyphicon-download-alt { &:before { content: \\"\\\\e025\\"; } }\\n.glyphicon-download { &:before { content: \\"\\\\e026\\"; } }\\n.glyphicon-upload { &:before { content: \\"\\\\e027\\"; } }\\n.glyphicon-inbox { &:before { content: \\"\\\\e028\\"; } }\\n.glyphicon-play-circle { &:before { content: \\"\\\\e029\\"; } }\\n.glyphicon-repeat { &:before { content: \\"\\\\e030\\"; } }\\n.glyphicon-refresh { &:before { content: \\"\\\\e031\\"; } }\\n.glyphicon-list-alt { &:before { content: \\"\\\\e032\\"; } }\\n.glyphicon-lock { &:before { content: \\"\\\\e033\\"; } }\\n.glyphicon-flag { &:before { content: \\"\\\\e034\\"; } }\\n.glyphicon-headphones { &:before { content: \\"\\\\e035\\"; } }\\n.glyphicon-volume-off { &:before { content: \\"\\\\e036\\"; } }\\n.glyphicon-volume-down { &:before { content: \\"\\\\e037\\"; } }\\n.glyphicon-volume-up { &:before { content: \\"\\\\e038\\"; } }\\n.glyphicon-qrcode { &:before { content: \\"\\\\e039\\"; } }\\n.glyphicon-barcode { &:before { content: \\"\\\\e040\\"; } }\\n.glyphicon-tag { &:before { content: \\"\\\\e041\\"; } }\\n.glyphicon-tags { &:before { content: \\"\\\\e042\\"; } }\\n.glyphicon-book { &:before { content: \\"\\\\e043\\"; } }\\n.glyphicon-bookmark { &:before { content: \\"\\\\e044\\"; } }\\n.glyphicon-print { &:before { content: \\"\\\\e045\\"; } }\\n.glyphicon-camera { &:before { content: \\"\\\\e046\\"; } }\\n.glyphicon-font { &:before { content: \\"\\\\e047\\"; } }\\n.glyphicon-bold { &:before { content: \\"\\\\e048\\"; } }\\n.glyphicon-italic { &:before { content: \\"\\\\e049\\"; } }\\n.glyphicon-text-height { &:before { content: \\"\\\\e050\\"; } }\\n.glyphicon-text-width { &:before { content: \\"\\\\e051\\"; } }\\n.glyphicon-align-left { &:before { content: \\"\\\\e052\\"; } }\\n.glyphicon-align-center { &:before { content: \\"\\\\e053\\"; } }\\n.glyphicon-align-right { &:before { content: \\"\\\\e054\\"; } }\\n.glyphicon-align-justify { &:before { content: \\"\\\\e055\\"; } }\\n.glyphicon-list { &:before { content: \\"\\\\e056\\"; } }\\n.glyphicon-indent-left { &:before { content: \\"\\\\e057\\"; } }\\n.glyphicon-indent-right { &:before { content: \\"\\\\e058\\"; } }\\n.glyphicon-facetime-video { &:before { content: \\"\\\\e059\\"; } }\\n.glyphicon-picture { &:before { content: \\"\\\\e060\\"; } }\\n.glyphicon-map-marker { &:before { content: \\"\\\\e062\\"; } }\\n.glyphicon-adjust { &:before { content: \\"\\\\e063\\"; } }\\n.glyphicon-tint { &:before { content: \\"\\\\e064\\"; } }\\n.glyphicon-edit { &:before { content: \\"\\\\e065\\"; } }\\n.glyphicon-share { &:before { content: \\"\\\\e066\\"; } }\\n.glyphicon-check { &:before { content: \\"\\\\e067\\"; } }\\n.glyphicon-move { &:before { content: \\"\\\\e068\\"; } }\\n.glyphicon-step-backward { &:before { content: \\"\\\\e069\\"; } }\\n.glyphicon-fast-backward { &:before { content: \\"\\\\e070\\"; } }\\n.glyphicon-backward { &:before { content: \\"\\\\e071\\"; } }\\n.glyphicon-play { &:before { content: \\"\\\\e072\\"; } }\\n.glyphicon-pause { &:before { content: \\"\\\\e073\\"; } }\\n.glyphicon-stop { &:before { content: \\"\\\\e074\\"; } }\\n.glyphicon-forward { &:before { content: \\"\\\\e075\\"; } }\\n.glyphicon-fast-forward { &:before { content: \\"\\\\e076\\"; } }\\n.glyphicon-step-forward { &:before { content: \\"\\\\e077\\"; } }\\n.glyphicon-eject { &:before { content: \\"\\\\e078\\"; } }\\n.glyphicon-chevron-left { &:before { content: \\"\\\\e079\\"; } }\\n.glyphicon-chevron-right { &:before { content: \\"\\\\e080\\"; } }\\n.glyphicon-plus-sign { &:before { content: \\"\\\\e081\\"; } }\\n.glyphicon-minus-sign { &:before { content: \\"\\\\e082\\"; } }\\n.glyphicon-remove-sign { &:before { content: \\"\\\\e083\\"; } }\\n.glyphicon-ok-sign { &:before { content: \\"\\\\e084\\"; } }\\n.glyphicon-question-sign { &:before { content: \\"\\\\e085\\"; } }\\n.glyphicon-info-sign { &:before { content: \\"\\\\e086\\"; } }\\n.glyphicon-screenshot { &:before { content: \\"\\\\e087\\"; } }\\n.glyphicon-remove-circle { &:before { content: \\"\\\\e088\\"; } }\\n.glyphicon-ok-circle { &:before { content: \\"\\\\e089\\"; } }\\n.glyphicon-ban-circle { &:before { content: \\"\\\\e090\\"; } }\\n.glyphicon-arrow-left { &:before { content: \\"\\\\e091\\"; } }\\n.glyphicon-arrow-right { &:before { content: \\"\\\\e092\\"; } }\\n.glyphicon-arrow-up { &:before { content: \\"\\\\e093\\"; } }\\n.glyphicon-arrow-down { &:before { content: \\"\\\\e094\\"; } }\\n.glyphicon-share-alt { &:before { content: \\"\\\\e095\\"; } }\\n.glyphicon-resize-full { &:before { content: \\"\\\\e096\\"; } }\\n.glyphicon-resize-small { &:before { content: \\"\\\\e097\\"; } }\\n.glyphicon-exclamation-sign { &:before { content: \\"\\\\e101\\"; } }\\n.glyphicon-gift { &:before { content: \\"\\\\e102\\"; } }\\n.glyphicon-leaf { &:before { content: \\"\\\\e103\\"; } }\\n.glyphicon-fire { &:before { content: \\"\\\\e104\\"; } }\\n.glyphicon-eye-open { &:before { content: \\"\\\\e105\\"; } }\\n.glyphicon-eye-close { &:before { content: \\"\\\\e106\\"; } }\\n.glyphicon-warning-sign { &:before { content: \\"\\\\e107\\"; } }\\n.glyphicon-plane { &:before { content: \\"\\\\e108\\"; } }\\n.glyphicon-calendar { &:before { content: \\"\\\\e109\\"; } }\\n.glyphicon-random { &:before { content: \\"\\\\e110\\"; } }\\n.glyphicon-comment { &:before { content: \\"\\\\e111\\"; } }\\n.glyphicon-magnet { &:before { content: \\"\\\\e112\\"; } }\\n.glyphicon-chevron-up { &:before { content: \\"\\\\e113\\"; } }\\n.glyphicon-chevron-down { &:before { content: \\"\\\\e114\\"; } }\\n.glyphicon-retweet { &:before { content: \\"\\\\e115\\"; } }\\n.glyphicon-shopping-cart { &:before { content: \\"\\\\e116\\"; } }\\n.glyphicon-folder-close { &:before { content: \\"\\\\e117\\"; } }\\n.glyphicon-folder-open { &:before { content: \\"\\\\e118\\"; } }\\n.glyphicon-resize-vertical { &:before { content: \\"\\\\e119\\"; } }\\n.glyphicon-resize-horizontal { &:before { content: \\"\\\\e120\\"; } }\\n.glyphicon-hdd { &:before { content: \\"\\\\e121\\"; } }\\n.glyphicon-bullhorn { &:before { content: \\"\\\\e122\\"; } }\\n.glyphicon-bell { &:before { content: \\"\\\\e123\\"; } }\\n.glyphicon-certificate { &:before { content: \\"\\\\e124\\"; } }\\n.glyphicon-thumbs-up { &:before { content: \\"\\\\e125\\"; } }\\n.glyphicon-thumbs-down { &:before { content: \\"\\\\e126\\"; } }\\n.glyphicon-hand-right { &:before { content: \\"\\\\e127\\"; } }\\n.glyphicon-hand-left { &:before { content: \\"\\\\e128\\"; } }\\n.glyphicon-hand-up { &:before { content: \\"\\\\e129\\"; } }\\n.glyphicon-hand-down { &:before { content: \\"\\\\e130\\"; } }\\n.glyphicon-circle-arrow-right { &:before { content: \\"\\\\e131\\"; } }\\n.glyphicon-circle-arrow-left { &:before { content: \\"\\\\e132\\"; } }\\n.glyphicon-circle-arrow-up { &:before { content: \\"\\\\e133\\"; } }\\n.glyphicon-circle-arrow-down { &:before { content: \\"\\\\e134\\"; } }\\n.glyphicon-globe { &:before { content: \\"\\\\e135\\"; } }\\n.glyphicon-wrench { &:before { content: \\"\\\\e136\\"; } }\\n.glyphicon-tasks { &:before { content: \\"\\\\e137\\"; } }\\n.glyphicon-filter { &:before { content: \\"\\\\e138\\"; } }\\n.glyphicon-briefcase { &:before { content: \\"\\\\e139\\"; } }\\n.glyphicon-fullscreen { &:before { content: \\"\\\\e140\\"; } }\\n.glyphicon-dashboard { &:before { content: \\"\\\\e141\\"; } }\\n.glyphicon-paperclip { &:before { content: \\"\\\\e142\\"; } }\\n.glyphicon-heart-empty { &:before { content: \\"\\\\e143\\"; } }\\n.glyphicon-link { &:before { content: \\"\\\\e144\\"; } }\\n.glyphicon-phone { &:before { content: \\"\\\\e145\\"; } }\\n.glyphicon-pushpin { &:before { content: \\"\\\\e146\\"; } }\\n.glyphicon-usd { &:before { content: \\"\\\\e148\\"; } }\\n.glyphicon-gbp { &:before { content: \\"\\\\e149\\"; } }\\n.glyphicon-sort { &:before { content: \\"\\\\e150\\"; } }\\n.glyphicon-sort-by-alphabet { &:before { content: \\"\\\\e151\\"; } }\\n.glyphicon-sort-by-alphabet-alt { &:before { content: \\"\\\\e152\\"; } }\\n.glyphicon-sort-by-order { &:before { content: \\"\\\\e153\\"; } }\\n.glyphicon-sort-by-order-alt { &:before { content: \\"\\\\e154\\"; } }\\n.glyphicon-sort-by-attributes { &:before { content: \\"\\\\e155\\"; } }\\n.glyphicon-sort-by-attributes-alt { &:before { content: \\"\\\\e156\\"; } }\\n.glyphicon-unchecked { &:before { content: \\"\\\\e157\\"; } }\\n.glyphicon-expand { &:before { content: \\"\\\\e158\\"; } }\\n.glyphicon-collapse-down { &:before { content: \\"\\\\e159\\"; } }\\n.glyphicon-collapse-up { &:before { content: \\"\\\\e160\\"; } }\\n.glyphicon-log-in { &:before { content: \\"\\\\e161\\"; } }\\n.glyphicon-flash { &:before { content: \\"\\\\e162\\"; } }\\n.glyphicon-log-out { &:before { content: \\"\\\\e163\\"; } }\\n.glyphicon-new-window { &:before { content: \\"\\\\e164\\"; } }\\n.glyphicon-record { &:before { content: \\"\\\\e165\\"; } }\\n.glyphicon-save { &:before { content: \\"\\\\e166\\"; } }\\n.glyphicon-open { &:before { content: \\"\\\\e167\\"; } }\\n.glyphicon-saved { &:before { content: \\"\\\\e168\\"; } }\\n.glyphicon-import { &:before { content: \\"\\\\e169\\"; } }\\n.glyphicon-export { &:before { content: \\"\\\\e170\\"; } }\\n.glyphicon-send { &:before { content: \\"\\\\e171\\"; } }\\n.glyphicon-floppy-disk { &:before { content: \\"\\\\e172\\"; } }\\n.glyphicon-floppy-saved { &:before { content: \\"\\\\e173\\"; } }\\n.glyphicon-floppy-remove { &:before { content: \\"\\\\e174\\"; } }\\n.glyphicon-floppy-save { &:before { content: \\"\\\\e175\\"; } }\\n.glyphicon-floppy-open { &:before { content: \\"\\\\e176\\"; } }\\n.glyphicon-credit-card { &:before { content: \\"\\\\e177\\"; } }\\n.glyphicon-transfer { &:before { content: \\"\\\\e178\\"; } }\\n.glyphicon-cutlery { &:before { content: \\"\\\\e179\\"; } }\\n.glyphicon-header { &:before { content: \\"\\\\e180\\"; } }\\n.glyphicon-compressed { &:before { content: \\"\\\\e181\\"; } }\\n.glyphicon-earphone { &:before { content: \\"\\\\e182\\"; } }\\n.glyphicon-phone-alt { &:before { content: \\"\\\\e183\\"; } }\\n.glyphicon-tower { &:before { content: \\"\\\\e184\\"; } }\\n.glyphicon-stats { &:before { content: \\"\\\\e185\\"; } }\\n.glyphicon-sd-video { &:before { content: \\"\\\\e186\\"; } }\\n.glyphicon-hd-video { &:before { content: \\"\\\\e187\\"; } }\\n.glyphicon-subtitles { &:before { content: \\"\\\\e188\\"; } }\\n.glyphicon-sound-stereo { &:before { content: \\"\\\\e189\\"; } }\\n.glyphicon-sound-dolby { &:before { content: \\"\\\\e190\\"; } }\\n.glyphicon-sound-5-1 { &:before { content: \\"\\\\e191\\"; } }\\n.glyphicon-sound-6-1 { &:before { content: \\"\\\\e192\\"; } }\\n.glyphicon-sound-7-1 { &:before { content: \\"\\\\e193\\"; } }\\n.glyphicon-copyright-mark { &:before { content: \\"\\\\e194\\"; } }\\n.glyphicon-registration-mark { &:before { content: \\"\\\\e195\\"; } }\\n.glyphicon-cloud-download { &:before { content: \\"\\\\e197\\"; } }\\n.glyphicon-cloud-upload { &:before { content: \\"\\\\e198\\"; } }\\n.glyphicon-tree-conifer { &:before { content: \\"\\\\e199\\"; } }\\n.glyphicon-tree-deciduous { &:before { content: \\"\\\\e200\\"; } }\\n.glyphicon-cd { &:before { content: \\"\\\\e201\\"; } }\\n.glyphicon-save-file { &:before { content: \\"\\\\e202\\"; } }\\n.glyphicon-open-file { &:before { content: \\"\\\\e203\\"; } }\\n.glyphicon-level-up { &:before { content: \\"\\\\e204\\"; } }\\n.glyphicon-copy { &:before { content: \\"\\\\e205\\"; } }\\n.glyphicon-paste { &:before { content: \\"\\\\e206\\"; } }\\n// The following 2 Glyphicons are omitted for the time being because\\n// they currently use Unicode codepoints that are outside the\\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can\'t handle\\n// non-BMP codepoints in CSS string escapes, and thus can\'t display these two icons.\\n// Notably, the bug affects some older versions of the Android Browser.\\n// More info: https://github.com/twbs/bootstrap/issues/10106\\n// .glyphicon-door { &:before { content: \\"\\\\1f6aa\\"; } }\\n// .glyphicon-key { &:before { content: \\"\\\\1f511\\"; } }\\n.glyphicon-alert { &:before { content: \\"\\\\e209\\"; } }\\n.glyphicon-equalizer { &:before { content: \\"\\\\e210\\"; } }\\n.glyphicon-king { &:before { content: \\"\\\\e211\\"; } }\\n.glyphicon-queen { &:before { content: \\"\\\\e212\\"; } }\\n.glyphicon-pawn { &:before { content: \\"\\\\e213\\"; } }\\n.glyphicon-bishop { &:before { content: \\"\\\\e214\\"; } }\\n.glyphicon-knight { &:before { content: \\"\\\\e215\\"; } }\\n.glyphicon-baby-formula { &:before { content: \\"\\\\e216\\"; } }\\n.glyphicon-tent { &:before { content: \\"\\\\26fa\\"; } }\\n.glyphicon-blackboard { &:before { content: \\"\\\\e218\\"; } }\\n.glyphicon-bed { &:before { content: \\"\\\\e219\\"; } }\\n.glyphicon-apple { &:before { content: \\"\\\\f8ff\\"; } }\\n.glyphicon-erase { &:before { content: \\"\\\\e221\\"; } }\\n.glyphicon-hourglass { &:before { content: \\"\\\\231b\\"; } }\\n.glyphicon-lamp { &:before { content: \\"\\\\e223\\"; } }\\n.glyphicon-duplicate { &:before { content: \\"\\\\e224\\"; } }\\n.glyphicon-piggy-bank { &:before { content: \\"\\\\e225\\"; } }\\n.glyphicon-scissors { &:before { content: \\"\\\\e226\\"; } }\\n.glyphicon-bitcoin { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-btc { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-xbt { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-yen { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-jpy { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-ruble { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-rub { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-scale { &:before { content: \\"\\\\e230\\"; } }\\n.glyphicon-ice-lolly { &:before { content: \\"\\\\e231\\"; } }\\n.glyphicon-ice-lolly-tasted { &:before { content: \\"\\\\e232\\"; } }\\n.glyphicon-education { &:before { content: \\"\\\\e233\\"; } }\\n.glyphicon-option-horizontal { &:before { content: \\"\\\\e234\\"; } }\\n.glyphicon-option-vertical { &:before { content: \\"\\\\e235\\"; } }\\n.glyphicon-menu-hamburger { &:before { content: \\"\\\\e236\\"; } }\\n.glyphicon-modal-window { &:before { content: \\"\\\\e237\\"; } }\\n.glyphicon-oil { &:before { content: \\"\\\\e238\\"; } }\\n.glyphicon-grain { &:before { content: \\"\\\\e239\\"; } }\\n.glyphicon-sunglasses { &:before { content: \\"\\\\e240\\"; } }\\n.glyphicon-text-size { &:before { content: \\"\\\\e241\\"; } }\\n.glyphicon-text-color { &:before { content: \\"\\\\e242\\"; } }\\n.glyphicon-text-background { &:before { content: \\"\\\\e243\\"; } }\\n.glyphicon-object-align-top { &:before { content: \\"\\\\e244\\"; } }\\n.glyphicon-object-align-bottom { &:before { content: \\"\\\\e245\\"; } }\\n.glyphicon-object-align-horizontal{ &:before { content: \\"\\\\e246\\"; } }\\n.glyphicon-object-align-left { &:before { content: \\"\\\\e247\\"; } }\\n.glyphicon-object-align-vertical { &:before { content: \\"\\\\e248\\"; } }\\n.glyphicon-object-align-right { &:before { content: \\"\\\\e249\\"; } }\\n.glyphicon-triangle-right { &:before { content: \\"\\\\e250\\"; } }\\n.glyphicon-triangle-left { &:before { content: \\"\\\\e251\\"; } }\\n.glyphicon-triangle-bottom { &:before { content: \\"\\\\e252\\"; } }\\n.glyphicon-triangle-top { &:before { content: \\"\\\\e253\\"; } }\\n.glyphicon-console { &:before { content: \\"\\\\e254\\"; } }\\n.glyphicon-superscript { &:before { content: \\"\\\\e255\\"; } }\\n.glyphicon-subscript { &:before { content: \\"\\\\e256\\"; } }\\n.glyphicon-menu-left { &:before { content: \\"\\\\e257\\"; } }\\n.glyphicon-menu-right { &:before { content: \\"\\\\e258\\"; } }\\n.glyphicon-menu-down { &:before { content: \\"\\\\e259\\"; } }\\n.glyphicon-menu-up { &:before { content: \\"\\\\e260\\"; } }\\n"]}\n\\ No newline at end of file\n' + +Repository: plone.staticresources + + +Branch: refs/heads/1.x +Date: 2022-03-31T23:29:29+02:00 +Author: Johannes Raggam (thet) +Commit: https://github.com/plone/plone.staticresources/commit/15a5a4d7bd4080985d74061c99a00ea526ad2504 + +Merge pull request #207 from plone/fix-icon-font-loading + +Fix icon font loading Files changed: -M setup.py +A news/xxxx.bugfix +A src/plone/staticresources/upgrades/17.zcml +A src/plone/staticresources/upgrades/profiles/17/registry.xml +M src/plone/staticresources/profiles/default/metadata.xml +M src/plone/staticresources/profiles/default/registry/bundles.xml +M src/plone/staticresources/profiles/last_compilation/registry.xml +M src/plone/staticresources/static/plone-fontello-compiled.css +M src/plone/staticresources/static/plone-fontello-compiled.css.map +M src/plone/staticresources/static/plone-fontello.less +M src/plone/staticresources/static/plone-glyphicons-compiled.css +M src/plone/staticresources/static/plone-glyphicons-compiled.css.map +M src/plone/staticresources/static/plone-glyphicons.less +M src/plone/staticresources/upgrades/configure.zcml -b"diff --git a/setup.py b/setup.py\nindex cb58ca24..65265aef 100644\n--- a/setup.py\n+++ b/setup.py\n@@ -1,6 +1,6 @@\n from setuptools import setup, find_packages\n \n-version = '3.0.7.dev0'\n+version = '4.0.0.dev0'\n \n setup(\n name='plone.app.widgets',\n" +b'diff --git a/news/xxxx.bugfix b/news/xxxx.bugfix\nnew file mode 100644\nindex 000000000..eb6f92d9c\n--- /dev/null\n+++ b/news/xxxx.bugfix\n@@ -0,0 +1,12 @@\n+Fix icon font loading.\n+\n+Fix issue with Glyphicons and Fontello font loading on Portals where the portal root is a level higher.\n+The fonts are now loaded relative to the CSS requesting them.\n+\n+Fixes: https://github.com/plone/plone.staticresources/issues/162\n+Fixes: https://github.com/plone/plone.staticresources/issues/203\n+\n+Ref: https://github.com/plone/plone.staticresources/pull/168\n+Ref: https://github.com/plone/plone.staticresources/pull/171\n+Ref: https://github.com/plone/plone.staticresources/pull/175\n+Ref: https://community.plone.org/t/deployments-not-rooted-fail-to-load-the-fontello-icons/15047/12?u=thet\ndiff --git a/src/plone/staticresources/profiles/default/metadata.xml b/src/plone/staticresources/profiles/default/metadata.xml\nindex 1afff34c4..7f30f18bb 100644\n--- a/src/plone/staticresources/profiles/default/metadata.xml\n+++ b/src/plone/staticresources/profiles/default/metadata.xml\n@@ -1,6 +1,6 @@\n \n \n- 16\n+ 17\n \n profile-plone.resource:default\n profile-plone.staticresources:last_compilation\ndiff --git a/src/plone/staticresources/profiles/default/registry/bundles.xml b/src/plone/staticresources/profiles/default/registry/bundles.xml\nindex 170cd2c28..91ad6231f 100644\n--- a/src/plone/staticresources/profiles/default/registry/bundles.xml\n+++ b/src/plone/staticresources/profiles/default/registry/bundles.xml\n@@ -318,7 +318,7 @@\n \n plone\n- default\n+ \n \n plone-fontello\n \n@@ -333,7 +333,7 @@\n \n plone\n- default\n+ \n \n plone-glyphicons\n \ndiff --git a/src/plone/staticresources/profiles/last_compilation/registry.xml b/src/plone/staticresources/profiles/last_compilation/registry.xml\nindex f469c8988..eed32e852 100644\n--- a/src/plone/staticresources/profiles/last_compilation/registry.xml\n+++ b/src/plone/staticresources/profiles/last_compilation/registry.xml\n@@ -31,10 +31,10 @@\n 2020-10-28 14:00:00\n \n \n- 2021-10-22 13:00:00\n+ 2022-03-31 20:36:00\n \n \n- 2021-10-22 13:00:00\n+ 2022-03-31 20:36:00\n \n \ndiff --git a/src/plone/staticresources/static/plone-fontello-compiled.css b/src/plone/staticresources/static/plone-fontello-compiled.css\nindex ab361d006..495cd15ff 100644\n--- a/src/plone/staticresources/static/plone-fontello-compiled.css\n+++ b/src/plone/staticresources/static/plone-fontello-compiled.css\n@@ -1 +1 @@\n-@font-face{font-family:\'fontello\';src:url(\'/++plone++static/fonts/plone-fontello.eot?89786008\');src:url(\'/++plone++static/fonts/plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),url(\'/++plone++static/fonts/plone-fontello.woff?89786008\') format(\'woff\'),url(\'/++plone++static/fonts/plone-fontello.ttf?89786008\') format(\'truetype\'),url(\'/++plone++static/fonts/plone-fontello.svg?89786008#fontello\') format(\'svg\');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.toolbar-menu-icon:before{content:\'\\e834\'}.icon-user:before{content:\'\\e800\'}.icon-folderContents:before{content:\'\\e801\'}.icon-edit:before{content:\'\\e802\'}.icon-logout:before{content:\'\\e803\'}.icon-local_roles:before{content:\'\\e804\'}.icon-history:before{content:\'\\e805\'}.icon-link:before{content:\'\\e806\'}.icon-view:before{content:\'\\e807\'}.icon-collection:before{content:\'\\e808\'}.icon-event:before{content:\'\\e809\'}.icon-plone-contentmenu-factories:before{content:\'\\e80a\'}.icon-contentInfo:before{content:\'\\e80b\'}.icon-plone-contentmenu-workflow:before{content:\'\\e80c\'}.icon-moreOptions:before{content:\'\\e80d\'}.icon-document:before{content:\'\\e80e\'}.icon-news:before{content:\'\\e80f\'}.icon-image:before{content:\'\\e810\'}.icon-file:before{content:\'\\e811\'}.icon-addon:before{content:\'\\e812\'}.icon-datetime:before{content:\'\\e813\'}.icon-caching:before{content:\'\\e814\'}.icon-markup:before{content:\'\\e815\'}.icon-editing:before{content:\'\\e816\'}.icon-errors:before{content:\'\\e817\'}.icon-imageHandling:before{content:\'\\e818\'}.icon-filtering:before{content:\'\\e819\'}.icon-language:before{content:\'\\e81a\'}.icon-dexterityTypes:before{content:\'\\e81b\'}.icon-mail:before{content:\'\\e81c\'}.icon-maintenance:before{content:\'\\e81d\'}.icon-navigation:before{content:\'\\e81e\'}.icon-search:before{content:\'\\e81f\'}.icon-security:before{content:\'\\e820\'}.icon-theming:before{content:\'\\e821\'}.icon-rss:before{content:\'\\e822\'}.icon-siteSettings:before{content:\'\\e823\'}.icon-userGroups:before{content:\'\\e824\'}.icon-zope:before{content:\'\\e825\'}.icon-types:before{content:\'\\e826\'}.icon-syndication:before{content:\'\\e827\'}.icon-contentrules:before{content:\'\\e828\'}.icon-lock:before{content:\'\\e829\'}.icon-plone-contentmenu-actions:before{content:\'\\e82a\'}.icon-plone-contentmenu-portletmanager:before{content:\'\\e82b\'}.icon-plone-contentmenu-display:before{content:\'\\e82c\'}.icon-calendar-empty:before{content:\'\\e82d\'}[class^="icon-controlpanel-"]:before{content:\'\\e849\'}.icon-controlpanel-plone_app_caching:before{content:\'\\e82e\'}.icon-controlpanel-plone_app_registry:before{content:\'\\e82f\'}.icon-controlpanel-dexterity-types:before{content:\'\\e830\'}.icon-controlpanel-discussion:before{content:\'\\e831\'}.icon-controlpanel-ImagingSettings:before{content:\'\\e832\'}.icon-controlpanel-plone_app_theming:before{content:\'\\e833\'}.icon-controlpanel-QuickInstaller:before{content:\'\\e834\'}.icon-controlpanel-DateAndTime:before{content:\'\\e835\'}.icon-controlpanel-LanguageSettings:before{content:\'\\e836\'}.icon-controlpanel-MailHost:before{content:\'\\e837\'}.icon-controlpanel-NavigationSettings:before{content:\'\\e838\'}.icon-controlpanel-PloneReconfig:before{content:\'\\e839\'}.icon-controlpanel-SearchSettings:before{content:\'\\e83a\'}.icon-controlpanel-socialmedia:before{content:\'\\e83b\'}.icon-controlpanel-syndication:before{content:\'\\e83c\'}.icon-controlpanel-ContentRules:before{content:\'\\e83d\'}.icon-controlpanel-EditingSettings:before{content:\'\\e83e\'}.icon-controlpanel-MarkupSettings:before{content:\'\\e83f\'}.icon-controlpanel-tinymce:before{content:\'\\e840\'}.icon-controlpanel-TypesSettings:before{content:\'\\e841\'}.icon-controlpanel-UsersGroups:before{content:\'\\e842\'}.icon-controlpanel-errorLog:before{content:\'\\e843\'}.icon-controlpanel-FilterSettings:before{content:\'\\e844\'}.icon-controlpanel-SecuritySettings:before{content:\'\\e845\'}.icon-controlpanel-resourceregistries:before{content:\'\\e846\'}.icon-emptyset:before{content:\'\\e847\'}.icon-controlpanel-ZMI:before{content:\'\\e848\'}.icon-controlpanel-Maintenance:before{content:\'\\e849\'}.icon-up:before{content:\'\\e84a\'}.icon-down:before{content:\'\\e84b\'}.icon-right-circle:before{content:\'\\e84c\'}.icon-left-circle:before{content:\'\\e84d\'}.icon-up-circle:before{content:\'\\e84e\'}.icon-down-circle:before{content:\'\\e84f\'}.icon-parent:before{content:\'\xe2\x86\xa9\';position:relative;top:3px}/*# sourceMappingURL=plone-fontello-compiled.css.map */\n\\ No newline at end of file\n+@font-face{font-family:\'fontello\';src:url(\'fonts/plone-fontello.eot?89786008\');src:url(\'fonts/plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),url(\'fonts/plone-fontello.woff?89786008\') format(\'woff\'),url(\'fonts/plone-fontello.ttf?89786008\') format(\'truetype\'),url(\'fonts/plone-fontello.svg?89786008#fontello\') format(\'svg\');font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.toolbar-menu-icon:before{content:\'\\e834\'}.icon-user:before{content:\'\\e800\'}.icon-folderContents:before{content:\'\\e801\'}.icon-edit:before{content:\'\\e802\'}.icon-logout:before{content:\'\\e803\'}.icon-local_roles:before{content:\'\\e804\'}.icon-history:before{content:\'\\e805\'}.icon-link:before{content:\'\\e806\'}.icon-view:before{content:\'\\e807\'}.icon-collection:before{content:\'\\e808\'}.icon-event:before{content:\'\\e809\'}.icon-plone-contentmenu-factories:before{content:\'\\e80a\'}.icon-contentInfo:before{content:\'\\e80b\'}.icon-plone-contentmenu-workflow:before{content:\'\\e80c\'}.icon-moreOptions:before{content:\'\\e80d\'}.icon-document:before{content:\'\\e80e\'}.icon-news:before{content:\'\\e80f\'}.icon-image:before{content:\'\\e810\'}.icon-file:before{content:\'\\e811\'}.icon-addon:before{content:\'\\e812\'}.icon-datetime:before{content:\'\\e813\'}.icon-caching:before{content:\'\\e814\'}.icon-markup:before{content:\'\\e815\'}.icon-editing:before{content:\'\\e816\'}.icon-errors:before{content:\'\\e817\'}.icon-imageHandling:before{content:\'\\e818\'}.icon-filtering:before{content:\'\\e819\'}.icon-language:before{content:\'\\e81a\'}.icon-dexterityTypes:before{content:\'\\e81b\'}.icon-mail:before{content:\'\\e81c\'}.icon-maintenance:before{content:\'\\e81d\'}.icon-navigation:before{content:\'\\e81e\'}.icon-search:before{content:\'\\e81f\'}.icon-security:before{content:\'\\e820\'}.icon-theming:before{content:\'\\e821\'}.icon-rss:before{content:\'\\e822\'}.icon-siteSettings:before{content:\'\\e823\'}.icon-userGroups:before{content:\'\\e824\'}.icon-zope:before{content:\'\\e825\'}.icon-types:before{content:\'\\e826\'}.icon-syndication:before{content:\'\\e827\'}.icon-contentrules:before{content:\'\\e828\'}.icon-lock:before{content:\'\\e829\'}.icon-plone-contentmenu-actions:before{content:\'\\e82a\'}.icon-plone-contentmenu-portletmanager:before{content:\'\\e82b\'}.icon-plone-contentmenu-display:before{content:\'\\e82c\'}.icon-calendar-empty:before{content:\'\\e82d\'}[class^="icon-controlpanel-"]:before{content:\'\\e849\'}.icon-controlpanel-plone_app_caching:before{content:\'\\e82e\'}.icon-controlpanel-plone_app_registry:before{content:\'\\e82f\'}.icon-controlpanel-dexterity-types:before{content:\'\\e830\'}.icon-controlpanel-discussion:before{content:\'\\e831\'}.icon-controlpanel-ImagingSettings:before{content:\'\\e832\'}.icon-controlpanel-plone_app_theming:before{content:\'\\e833\'}.icon-controlpanel-QuickInstaller:before{content:\'\\e834\'}.icon-controlpanel-DateAndTime:before{content:\'\\e835\'}.icon-controlpanel-LanguageSettings:before{content:\'\\e836\'}.icon-controlpanel-MailHost:before{content:\'\\e837\'}.icon-controlpanel-NavigationSettings:before{content:\'\\e838\'}.icon-controlpanel-PloneReconfig:before{content:\'\\e839\'}.icon-controlpanel-SearchSettings:before{content:\'\\e83a\'}.icon-controlpanel-socialmedia:before{content:\'\\e83b\'}.icon-controlpanel-syndication:before{content:\'\\e83c\'}.icon-controlpanel-ContentRules:before{content:\'\\e83d\'}.icon-controlpanel-EditingSettings:before{content:\'\\e83e\'}.icon-controlpanel-MarkupSettings:before{content:\'\\e83f\'}.icon-controlpanel-tinymce:before{content:\'\\e840\'}.icon-controlpanel-TypesSettings:before{content:\'\\e841\'}.icon-controlpanel-UsersGroups:before{content:\'\\e842\'}.icon-controlpanel-errorLog:before{content:\'\\e843\'}.icon-controlpanel-FilterSettings:before{content:\'\\e844\'}.icon-controlpanel-SecuritySettings:before{content:\'\\e845\'}.icon-controlpanel-resourceregistries:before{content:\'\\e846\'}.icon-emptyset:before{content:\'\\e847\'}.icon-controlpanel-ZMI:before{content:\'\\e848\'}.icon-controlpanel-Maintenance:before{content:\'\\e849\'}.icon-up:before{content:\'\\e84a\'}.icon-down:before{content:\'\\e84b\'}.icon-right-circle:before{content:\'\\e84c\'}.icon-left-circle:before{content:\'\\e84d\'}.icon-up-circle:before{content:\'\\e84e\'}.icon-down-circle:before{content:\'\\e84f\'}.icon-parent:before{content:\'\xe2\x86\xa9\';position:relative;top:3px}/*# sourceMappingURL=plone-fontello-compiled.css.map */\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-fontello-compiled.css.map b/src/plone/staticresources/static/plone-fontello-compiled.css.map\nindex 06fa4901e..674a2013d 100644\n--- a/src/plone/staticresources/static/plone-fontello-compiled.css.map\n+++ b/src/plone/staticresources/static/plone-fontello-compiled.css.map\n@@ -1 +1 @@\n-{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/fonts/plone-fontello.less"],"names":[],"mappings":"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","sourcesContent":["@font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008\');\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),\\n url(\'@{fontsPrefix}plone-fontello.woff?89786008\') format(\'woff\'),\\n url(\'@{fontsPrefix}plone-fontello.ttf?89786008\') format(\'truetype\'),\\n url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n font-weight: normal;\\n font-style: normal;\\n}\\n/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */\\n/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */\\n/*\\n@media screen and (-webkit-min-device-pixel-ratio:0) {\\n @font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n }\\n}\\n*/\\n\\n [class^=\\"icon-\\"]:before, [class*=\\" icon-\\"]:before {\\n font-family: \\"fontello\\";\\n font-style: normal;\\n font-weight: normal;\\n speak: none;\\n\\n display: inline-block;\\n text-decoration: inherit;\\n width: 1em;\\n margin-right: .2em;\\n text-align: center;\\n /* opacity: .8; */\\n\\n /* For safety - reset parent styles, that can break glyph codes*/\\n font-variant: normal;\\n text-transform: none;\\n\\n /* fix buttons height, for twitter bootstrap */\\n line-height: 1em;\\n\\n /* Animation center compensation - margins should be symmetric */\\n /* remove if not needed */\\n margin-left: .2em;\\n\\n /* you can be more comfortable with increased icons size */\\n /* font-size: 120%; */\\n\\n /* Font smoothing. That was taken from TWBS */\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n\\n /* Uncomment for 3D effect */\\n /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\\n}\\n\\n/* Default Menu Icon */\\n.toolbar-menu-icon:before { content: \'\\\\e834\'; }\\n\\n.icon-user:before { content: \'\\\\e800\'; } /* \'\xee\xa0\x80\' */\\n.icon-folderContents:before { content: \'\\\\e801\'; } /* \'\xee\xa0\x81\' */\\n.icon-edit:before { content: \'\\\\e802\'; } /* \'\xee\xa0\x82\' */\\n.icon-logout:before { content: \'\\\\e803\'; } /* \'\xee\xa0\x83\' */\\n.icon-local_roles:before { content: \'\\\\e804\'; } /* \'\xee\xa0\x84\' */\\n.icon-history:before { content: \'\\\\e805\'; } /* \'\xee\xa0\x85\' */\\n.icon-link:before { content: \'\\\\e806\'; } /* \'\xee\xa0\x86\' */\\n.icon-view:before { content: \'\\\\e807\'; } /* \'\xee\xa0\x87\' */\\n.icon-collection:before { content: \'\\\\e808\'; } /* \'\xee\xa0\x88\' */\\n.icon-event:before { content: \'\\\\e809\'; } /* \'\xee\xa0\x89\' */\\n.icon-plone-contentmenu-factories:before { content: \'\\\\e80a\'; } /* \'\xee\xa0\x8a\' */\\n.icon-contentInfo:before { content: \'\\\\e80b\'; } /* \'\xee\xa0\x8b\' */\\n.icon-plone-contentmenu-workflow:before { content: \'\\\\e80c\'; } /* \'\xee\xa0\x8c\' */\\n.icon-moreOptions:before { content: \'\\\\e80d\'; } /* \'\xee\xa0\x8d\' */\\n.icon-document:before { content: \'\\\\e80e\'; } /* \'\xee\xa0\x8e\' */\\n.icon-news:before { content: \'\\\\e80f\'; } /* \'\xee\xa0\x8f\' */\\n.icon-image:before { content: \'\\\\e810\'; } /* \'\xee\xa0\x90\' */\\n.icon-file:before { content: \'\\\\e811\'; } /* \'\xee\xa0\x91\' */\\n.icon-addon:before { content: \'\\\\e812\'; } /* \'\xee\xa0\x92\' */\\n.icon-datetime:before { content: \'\\\\e813\'; } /* \'\xee\xa0\x93\' */\\n.icon-caching:before { content: \'\\\\e814\'; } /* \'\xee\xa0\x94\' */\\n.icon-markup:before { content: \'\\\\e815\'; } /* \'\xee\xa0\x95\' */\\n.icon-editing:before { content: \'\\\\e816\'; } /* \'\xee\xa0\x96\' */\\n.icon-errors:before { content: \'\\\\e817\'; } /* \'\xee\xa0\x97\' */\\n.icon-imageHandling:before { content: \'\\\\e818\'; } /* \'\xee\xa0\x98\' */\\n.icon-filtering:before { content: \'\\\\e819\'; } /* \'\xee\xa0\x99\' */\\n.icon-language:before { content: \'\\\\e81a\'; } /* \'\xee\xa0\x9a\' */\\n.icon-dexterityTypes:before { content: \'\\\\e81b\'; } /* \'\xee\xa0\x9b\' */\\n.icon-mail:before { content: \'\\\\e81c\'; } /* \'\xee\xa0\x9c\' */\\n.icon-maintenance:before { content: \'\\\\e81d\'; } /* \'\xee\xa0\x9d\' */\\n.icon-navigation:before { content: \'\\\\e81e\'; } /* \'\xee\xa0\x9e\' */\\n.icon-search:before { content: \'\\\\e81f\'; } /* \'\xee\xa0\x9f\' */\\n.icon-security:before { content: \'\\\\e820\'; } /* \'\xee\xa0\xa0\' */\\n.icon-theming:before { content: \'\\\\e821\'; } /* \'\xee\xa0\xa1\' */\\n.icon-rss:before { content: \'\\\\e822\'; } /* \'\xee\xa0\xa2\' */\\n.icon-siteSettings:before { content: \'\\\\e823\'; } /* \'\xee\xa0\xa3\' */\\n.icon-userGroups:before { content: \'\\\\e824\'; } /* \'\xee\xa0\xa4\' */\\n.icon-zope:before { content: \'\\\\e825\'; } /* \'\xee\xa0\xa5\' */\\n.icon-types:before { content: \'\\\\e826\'; } /* \'\xee\xa0\xa6\' */\\n.icon-syndication:before { content: \'\\\\e827\'; } /* \'\xee\xa0\xa7\' */\\n.icon-contentrules:before { content: \'\\\\e828\'; } /* \'\xee\xa0\xa8\' */\\n.icon-lock:before { content: \'\\\\e829\'; } /* \'\xee\xa0\xa9\' */\\n.icon-plone-contentmenu-actions:before { content: \'\\\\e82a\'; } /* \'\xee\xa0\xaa\' */\\n.icon-plone-contentmenu-portletmanager:before { content: \'\\\\e82b\'; } /* \'\xee\xa0\xab\' */\\n.icon-plone-contentmenu-display:before { content: \'\\\\e82c\'; } /* \'\xee\xa0\xac\' */\\n.icon-calendar-empty:before { content: \'\\\\e82d\'; } /* \'\xee\xa0\xad\' */\\n[class^=\\"icon-controlpanel-\\"]:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-controlpanel-plone_app_caching:before { content: \'\\\\e82e\'; } /* \'\xee\xa0\xae\' */\\n.icon-controlpanel-plone_app_registry:before { content: \'\\\\e82f\'; } /* \'\xee\xa0\xaf\' */\\n.icon-controlpanel-dexterity-types:before { content: \'\\\\e830\'; } /* \'\xee\xa0\xb0\' */\\n.icon-controlpanel-discussion:before { content: \'\\\\e831\'; } /* \'\xee\xa0\xb1\' */\\n.icon-controlpanel-ImagingSettings:before { content: \'\\\\e832\'; } /* \'\xee\xa0\xb2\' */\\n.icon-controlpanel-plone_app_theming:before { content: \'\\\\e833\'; } /* \'\xee\xa0\xb3\' */\\n.icon-controlpanel-QuickInstaller:before { content: \'\\\\e834\'; } /* \'\xee\xa0\xb4\' */\\n.icon-controlpanel-DateAndTime:before { content: \'\\\\e835\'; } /* \'\xee\xa0\xb5\' */\\n.icon-controlpanel-LanguageSettings:before { content: \'\\\\e836\'; } /* \'\xee\xa0\xb6\' */\\n.icon-controlpanel-MailHost:before { content: \'\\\\e837\'; } /* \'\xee\xa0\xb7\' */\\n.icon-controlpanel-NavigationSettings:before { content: \'\\\\e838\'; } /* \'\xee\xa0\xb8\' */\\n.icon-controlpanel-PloneReconfig:before { content: \'\\\\e839\'; } /* \'\xee\xa0\xb9\' */\\n.icon-controlpanel-SearchSettings:before { content: \'\\\\e83a\'; } /* \'\xee\xa0\xba\' */\\n.icon-controlpanel-socialmedia:before { content: \'\\\\e83b\'; } /* \'\xee\xa0\xbb\' */\\n.icon-controlpanel-syndication:before { content: \'\\\\e83c\'; } /* \'\xee\xa0\xbc\' */\\n.icon-controlpanel-ContentRules:before { content: \'\\\\e83d\'; } /* \'\xee\xa0\xbd\' */\\n.icon-controlpanel-EditingSettings:before { content: \'\\\\e83e\'; } /* \'\xee\xa0\xbe\' */\\n.icon-controlpanel-MarkupSettings:before { content: \'\\\\e83f\'; } /* \'\xee\xa0\xbf\' */\\n.icon-controlpanel-tinymce:before { content: \'\\\\e840\'; } /* \'\xee\xa1\x80\' */\\n.icon-controlpanel-TypesSettings:before { content: \'\\\\e841\'; } /* \'\xee\xa1\x81\' */\\n.icon-controlpanel-UsersGroups:before { content: \'\\\\e842\'; } /* \'\xee\xa1\x82\' */\\n.icon-controlpanel-errorLog:before { content: \'\\\\e843\'; } /* \'\xee\xa1\x83\' */\\n.icon-controlpanel-FilterSettings:before { content: \'\\\\e844\'; } /* \'\xee\xa1\x84\' */\\n.icon-controlpanel-SecuritySettings:before { content: \'\\\\e845\'; } /* \'\xee\xa1\x85\' */\\n.icon-controlpanel-resourceregistries:before { content: \'\\\\e846\'; } /* \'\xee\xa1\x86\' */\\n.icon-emptyset:before { content: \'\\\\e847\'; } /* \'\xee\xa1\x87\' */\\n.icon-controlpanel-ZMI:before { content: \'\\\\e848\'; } /* \'\xee\xa1\x88\' */\\n.icon-controlpanel-Maintenance:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-up:before { content: \'\\\\e84a\'; } /* \'\xee\xa1\x8a\' */\\n.icon-down:before { content: \'\\\\e84b\'; } /* \'\xee\xa1\x8b\' */\\n.icon-right-circle:before { content: \'\\\\e84c\'; } /* \'\xee\xa1\x8c\' */\\n.icon-left-circle:before { content: \'\\\\e84d\'; } /* \'\xee\xa1\x8d\' */\\n.icon-up-circle:before { content: \'\\\\e84e\'; } /* \'\xee\xa1\x8e\' */\\n.icon-down-circle:before { content: \'\\\\e84f\'; } /* \'\xee\xa1\x8f\' */\\n\\n/* Unicode icons used in the same places */\\n.icon-parent:before {\\n content: \'\xe2\x86\xa9\';\\n position: relative;\\n top: 3px;\\n}\\n"]}\n\\ No newline at end of file\n+{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/fonts/plone-fontello.less"],"names":[],"mappings":"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","sourcesContent":["@font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008\');\\n src: url(\'@{fontsPrefix}plone-fontello.eot?89786008#iefix\') format(\'embedded-opentype\'),\\n url(\'@{fontsPrefix}plone-fontello.woff?89786008\') format(\'woff\'),\\n url(\'@{fontsPrefix}plone-fontello.ttf?89786008\') format(\'truetype\'),\\n url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n font-weight: normal;\\n font-style: normal;\\n}\\n/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */\\n/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */\\n/*\\n@media screen and (-webkit-min-device-pixel-ratio:0) {\\n @font-face {\\n font-family: \'fontello\';\\n src: url(\'@{fontsPrefix}plone-fontello.svg?89786008#fontello\') format(\'svg\');\\n }\\n}\\n*/\\n\\n [class^=\\"icon-\\"]:before, [class*=\\" icon-\\"]:before {\\n font-family: \\"fontello\\";\\n font-style: normal;\\n font-weight: normal;\\n speak: none;\\n\\n display: inline-block;\\n text-decoration: inherit;\\n width: 1em;\\n margin-right: .2em;\\n text-align: center;\\n /* opacity: .8; */\\n\\n /* For safety - reset parent styles, that can break glyph codes*/\\n font-variant: normal;\\n text-transform: none;\\n\\n /* fix buttons height, for twitter bootstrap */\\n line-height: 1em;\\n\\n /* Animation center compensation - margins should be symmetric */\\n /* remove if not needed */\\n margin-left: .2em;\\n\\n /* you can be more comfortable with increased icons size */\\n /* font-size: 120%; */\\n\\n /* Font smoothing. That was taken from TWBS */\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n\\n /* Uncomment for 3D effect */\\n /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\\n}\\n\\n/* Default Menu Icon */\\n.toolbar-menu-icon:before { content: \'\\\\e834\'; }\\n\\n.icon-user:before { content: \'\\\\e800\'; } /* \'\xee\xa0\x80\' */\\n.icon-folderContents:before { content: \'\\\\e801\'; } /* \'\xee\xa0\x81\' */\\n.icon-edit:before { content: \'\\\\e802\'; } /* \'\xee\xa0\x82\' */\\n.icon-logout:before { content: \'\\\\e803\'; } /* \'\xee\xa0\x83\' */\\n.icon-local_roles:before { content: \'\\\\e804\'; } /* \'\xee\xa0\x84\' */\\n.icon-history:before { content: \'\\\\e805\'; } /* \'\xee\xa0\x85\' */\\n.icon-link:before { content: \'\\\\e806\'; } /* \'\xee\xa0\x86\' */\\n.icon-view:before { content: \'\\\\e807\'; } /* \'\xee\xa0\x87\' */\\n.icon-collection:before { content: \'\\\\e808\'; } /* \'\xee\xa0\x88\' */\\n.icon-event:before { content: \'\\\\e809\'; } /* \'\xee\xa0\x89\' */\\n.icon-plone-contentmenu-factories:before { content: \'\\\\e80a\'; } /* \'\xee\xa0\x8a\' */\\n.icon-contentInfo:before { content: \'\\\\e80b\'; } /* \'\xee\xa0\x8b\' */\\n.icon-plone-contentmenu-workflow:before { content: \'\\\\e80c\'; } /* \'\xee\xa0\x8c\' */\\n.icon-moreOptions:before { content: \'\\\\e80d\'; } /* \'\xee\xa0\x8d\' */\\n.icon-document:before { content: \'\\\\e80e\'; } /* \'\xee\xa0\x8e\' */\\n.icon-news:before { content: \'\\\\e80f\'; } /* \'\xee\xa0\x8f\' */\\n.icon-image:before { content: \'\\\\e810\'; } /* \'\xee\xa0\x90\' */\\n.icon-file:before { content: \'\\\\e811\'; } /* \'\xee\xa0\x91\' */\\n.icon-addon:before { content: \'\\\\e812\'; } /* \'\xee\xa0\x92\' */\\n.icon-datetime:before { content: \'\\\\e813\'; } /* \'\xee\xa0\x93\' */\\n.icon-caching:before { content: \'\\\\e814\'; } /* \'\xee\xa0\x94\' */\\n.icon-markup:before { content: \'\\\\e815\'; } /* \'\xee\xa0\x95\' */\\n.icon-editing:before { content: \'\\\\e816\'; } /* \'\xee\xa0\x96\' */\\n.icon-errors:before { content: \'\\\\e817\'; } /* \'\xee\xa0\x97\' */\\n.icon-imageHandling:before { content: \'\\\\e818\'; } /* \'\xee\xa0\x98\' */\\n.icon-filtering:before { content: \'\\\\e819\'; } /* \'\xee\xa0\x99\' */\\n.icon-language:before { content: \'\\\\e81a\'; } /* \'\xee\xa0\x9a\' */\\n.icon-dexterityTypes:before { content: \'\\\\e81b\'; } /* \'\xee\xa0\x9b\' */\\n.icon-mail:before { content: \'\\\\e81c\'; } /* \'\xee\xa0\x9c\' */\\n.icon-maintenance:before { content: \'\\\\e81d\'; } /* \'\xee\xa0\x9d\' */\\n.icon-navigation:before { content: \'\\\\e81e\'; } /* \'\xee\xa0\x9e\' */\\n.icon-search:before { content: \'\\\\e81f\'; } /* \'\xee\xa0\x9f\' */\\n.icon-security:before { content: \'\\\\e820\'; } /* \'\xee\xa0\xa0\' */\\n.icon-theming:before { content: \'\\\\e821\'; } /* \'\xee\xa0\xa1\' */\\n.icon-rss:before { content: \'\\\\e822\'; } /* \'\xee\xa0\xa2\' */\\n.icon-siteSettings:before { content: \'\\\\e823\'; } /* \'\xee\xa0\xa3\' */\\n.icon-userGroups:before { content: \'\\\\e824\'; } /* \'\xee\xa0\xa4\' */\\n.icon-zope:before { content: \'\\\\e825\'; } /* \'\xee\xa0\xa5\' */\\n.icon-types:before { content: \'\\\\e826\'; } /* \'\xee\xa0\xa6\' */\\n.icon-syndication:before { content: \'\\\\e827\'; } /* \'\xee\xa0\xa7\' */\\n.icon-contentrules:before { content: \'\\\\e828\'; } /* \'\xee\xa0\xa8\' */\\n.icon-lock:before { content: \'\\\\e829\'; } /* \'\xee\xa0\xa9\' */\\n.icon-plone-contentmenu-actions:before { content: \'\\\\e82a\'; } /* \'\xee\xa0\xaa\' */\\n.icon-plone-contentmenu-portletmanager:before { content: \'\\\\e82b\'; } /* \'\xee\xa0\xab\' */\\n.icon-plone-contentmenu-display:before { content: \'\\\\e82c\'; } /* \'\xee\xa0\xac\' */\\n.icon-calendar-empty:before { content: \'\\\\e82d\'; } /* \'\xee\xa0\xad\' */\\n[class^=\\"icon-controlpanel-\\"]:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-controlpanel-plone_app_caching:before { content: \'\\\\e82e\'; } /* \'\xee\xa0\xae\' */\\n.icon-controlpanel-plone_app_registry:before { content: \'\\\\e82f\'; } /* \'\xee\xa0\xaf\' */\\n.icon-controlpanel-dexterity-types:before { content: \'\\\\e830\'; } /* \'\xee\xa0\xb0\' */\\n.icon-controlpanel-discussion:before { content: \'\\\\e831\'; } /* \'\xee\xa0\xb1\' */\\n.icon-controlpanel-ImagingSettings:before { content: \'\\\\e832\'; } /* \'\xee\xa0\xb2\' */\\n.icon-controlpanel-plone_app_theming:before { content: \'\\\\e833\'; } /* \'\xee\xa0\xb3\' */\\n.icon-controlpanel-QuickInstaller:before { content: \'\\\\e834\'; } /* \'\xee\xa0\xb4\' */\\n.icon-controlpanel-DateAndTime:before { content: \'\\\\e835\'; } /* \'\xee\xa0\xb5\' */\\n.icon-controlpanel-LanguageSettings:before { content: \'\\\\e836\'; } /* \'\xee\xa0\xb6\' */\\n.icon-controlpanel-MailHost:before { content: \'\\\\e837\'; } /* \'\xee\xa0\xb7\' */\\n.icon-controlpanel-NavigationSettings:before { content: \'\\\\e838\'; } /* \'\xee\xa0\xb8\' */\\n.icon-controlpanel-PloneReconfig:before { content: \'\\\\e839\'; } /* \'\xee\xa0\xb9\' */\\n.icon-controlpanel-SearchSettings:before { content: \'\\\\e83a\'; } /* \'\xee\xa0\xba\' */\\n.icon-controlpanel-socialmedia:before { content: \'\\\\e83b\'; } /* \'\xee\xa0\xbb\' */\\n.icon-controlpanel-syndication:before { content: \'\\\\e83c\'; } /* \'\xee\xa0\xbc\' */\\n.icon-controlpanel-ContentRules:before { content: \'\\\\e83d\'; } /* \'\xee\xa0\xbd\' */\\n.icon-controlpanel-EditingSettings:before { content: \'\\\\e83e\'; } /* \'\xee\xa0\xbe\' */\\n.icon-controlpanel-MarkupSettings:before { content: \'\\\\e83f\'; } /* \'\xee\xa0\xbf\' */\\n.icon-controlpanel-tinymce:before { content: \'\\\\e840\'; } /* \'\xee\xa1\x80\' */\\n.icon-controlpanel-TypesSettings:before { content: \'\\\\e841\'; } /* \'\xee\xa1\x81\' */\\n.icon-controlpanel-UsersGroups:before { content: \'\\\\e842\'; } /* \'\xee\xa1\x82\' */\\n.icon-controlpanel-errorLog:before { content: \'\\\\e843\'; } /* \'\xee\xa1\x83\' */\\n.icon-controlpanel-FilterSettings:before { content: \'\\\\e844\'; } /* \'\xee\xa1\x84\' */\\n.icon-controlpanel-SecuritySettings:before { content: \'\\\\e845\'; } /* \'\xee\xa1\x85\' */\\n.icon-controlpanel-resourceregistries:before { content: \'\\\\e846\'; } /* \'\xee\xa1\x86\' */\\n.icon-emptyset:before { content: \'\\\\e847\'; } /* \'\xee\xa1\x87\' */\\n.icon-controlpanel-ZMI:before { content: \'\\\\e848\'; } /* \'\xee\xa1\x88\' */\\n.icon-controlpanel-Maintenance:before { content: \'\\\\e849\'; } /* \'\xee\xa1\x89\' */\\n.icon-up:before { content: \'\\\\e84a\'; } /* \'\xee\xa1\x8a\' */\\n.icon-down:before { content: \'\\\\e84b\'; } /* \'\xee\xa1\x8b\' */\\n.icon-right-circle:before { content: \'\\\\e84c\'; } /* \'\xee\xa1\x8c\' */\\n.icon-left-circle:before { content: \'\\\\e84d\'; } /* \'\xee\xa1\x8d\' */\\n.icon-up-circle:before { content: \'\\\\e84e\'; } /* \'\xee\xa1\x8e\' */\\n.icon-down-circle:before { content: \'\\\\e84f\'; } /* \'\xee\xa1\x8f\' */\\n\\n/* Unicode icons used in the same places */\\n.icon-parent:before {\\n content: \'\xe2\x86\xa9\';\\n position: relative;\\n top: 3px;\\n}\\n"]}\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-fontello.less b/src/plone/staticresources/static/plone-fontello.less\nindex d730aae2b..1861eabdf 100644\n--- a/src/plone/staticresources/static/plone-fontello.less\n+++ b/src/plone/staticresources/static/plone-fontello.less\n@@ -1,2 +1,2 @@\n-@fontsPrefix: \'/++plone++static/fonts/\';\n+@fontsPrefix: "fonts/";\n @import url("fonts/plone-fontello.less");\ndiff --git a/src/plone/staticresources/static/plone-glyphicons-compiled.css b/src/plone/staticresources/static/plone-glyphicons-compiled.css\nindex c08399a4c..52c745e68 100644\n--- a/src/plone/staticresources/static/plone-glyphicons-compiled.css\n+++ b/src/plone/staticresources/static/plone-glyphicons-compiled.css\n@@ -1 +1 @@\n-@font-face{font-family:"Glyphicons Halflings";src:url("/++plone++static/fonts/glyphicons-halflings-regular.eot");src:url("/++plone++static/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("/++plone++static/fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("/++plone++static/fonts/glyphicons-halflings-regular.woff") format("woff"),url("/++plone++static/fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("/++plone++static/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\\002a"}.glyphicon-plus:before{content:"\\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\\20ac"}.glyphicon-minus:before{content:"\\2212"}.glyphicon-cloud:before{content:"\\2601"}.glyphicon-envelope:before{content:"\\2709"}.glyphicon-pencil:before{content:"\\270f"}.glyphicon-glass:before{content:"\\e001"}.glyphicon-music:before{content:"\\e002"}.glyphicon-search:before{content:"\\e003"}.glyphicon-heart:before{content:"\\e005"}.glyphicon-star:before{content:"\\e006"}.glyphicon-star-empty:before{content:"\\e007"}.glyphicon-user:before{content:"\\e008"}.glyphicon-film:before{content:"\\e009"}.glyphicon-th-large:before{content:"\\e010"}.glyphicon-th:before{content:"\\e011"}.glyphicon-th-list:before{content:"\\e012"}.glyphicon-ok:before{content:"\\e013"}.glyphicon-remove:before{content:"\\e014"}.glyphicon-zoom-in:before{content:"\\e015"}.glyphicon-zoom-out:before{content:"\\e016"}.glyphicon-off:before{content:"\\e017"}.glyphicon-signal:before{content:"\\e018"}.glyphicon-cog:before{content:"\\e019"}.glyphicon-trash:before{content:"\\e020"}.glyphicon-home:before{content:"\\e021"}.glyphicon-file:before{content:"\\e022"}.glyphicon-time:before{content:"\\e023"}.glyphicon-road:before{content:"\\e024"}.glyphicon-download-alt:before{content:"\\e025"}.glyphicon-download:before{content:"\\e026"}.glyphicon-upload:before{content:"\\e027"}.glyphicon-inbox:before{content:"\\e028"}.glyphicon-play-circle:before{content:"\\e029"}.glyphicon-repeat:before{content:"\\e030"}.glyphicon-refresh:before{content:"\\e031"}.glyphicon-list-alt:before{content:"\\e032"}.glyphicon-lock:before{content:"\\e033"}.glyphicon-flag:before{content:"\\e034"}.glyphicon-headphones:before{content:"\\e035"}.glyphicon-volume-off:before{content:"\\e036"}.glyphicon-volume-down:before{content:"\\e037"}.glyphicon-volume-up:before{content:"\\e038"}.glyphicon-qrcode:before{content:"\\e039"}.glyphicon-barcode:before{content:"\\e040"}.glyphicon-tag:before{content:"\\e041"}.glyphicon-tags:before{content:"\\e042"}.glyphicon-book:before{content:"\\e043"}.glyphicon-bookmark:before{content:"\\e044"}.glyphicon-print:before{content:"\\e045"}.glyphicon-camera:before{content:"\\e046"}.glyphicon-font:before{content:"\\e047"}.glyphicon-bold:before{content:"\\e048"}.glyphicon-italic:before{content:"\\e049"}.glyphicon-text-height:before{content:"\\e050"}.glyphicon-text-width:before{content:"\\e051"}.glyphicon-align-left:before{content:"\\e052"}.glyphicon-align-center:before{content:"\\e053"}.glyphicon-align-right:before{content:"\\e054"}.glyphicon-align-justify:before{content:"\\e055"}.glyphicon-list:before{content:"\\e056"}.glyphicon-indent-left:before{content:"\\e057"}.glyphicon-indent-right:before{content:"\\e058"}.glyphicon-facetime-video:before{content:"\\e059"}.glyphicon-picture:before{content:"\\e060"}.glyphicon-map-marker:before{content:"\\e062"}.glyphicon-adjust:before{content:"\\e063"}.glyphicon-tint:before{content:"\\e064"}.glyphicon-edit:before{content:"\\e065"}.glyphicon-share:before{content:"\\e066"}.glyphicon-check:before{content:"\\e067"}.glyphicon-move:before{content:"\\e068"}.glyphicon-step-backward:before{content:"\\e069"}.glyphicon-fast-backward:before{content:"\\e070"}.glyphicon-backward:before{content:"\\e071"}.glyphicon-play:before{content:"\\e072"}.glyphicon-pause:before{content:"\\e073"}.glyphicon-stop:before{content:"\\e074"}.glyphicon-forward:before{content:"\\e075"}.glyphicon-fast-forward:before{content:"\\e076"}.glyphicon-step-forward:before{content:"\\e077"}.glyphicon-eject:before{content:"\\e078"}.glyphicon-chevron-left:before{content:"\\e079"}.glyphicon-chevron-right:before{content:"\\e080"}.glyphicon-plus-sign:before{content:"\\e081"}.glyphicon-minus-sign:before{content:"\\e082"}.glyphicon-remove-sign:before{content:"\\e083"}.glyphicon-ok-sign:before{content:"\\e084"}.glyphicon-question-sign:before{content:"\\e085"}.glyphicon-info-sign:before{content:"\\e086"}.glyphicon-screenshot:before{content:"\\e087"}.glyphicon-remove-circle:before{content:"\\e088"}.glyphicon-ok-circle:before{content:"\\e089"}.glyphicon-ban-circle:before{content:"\\e090"}.glyphicon-arrow-left:before{content:"\\e091"}.glyphicon-arrow-right:before{content:"\\e092"}.glyphicon-arrow-up:before{content:"\\e093"}.glyphicon-arrow-down:before{content:"\\e094"}.glyphicon-share-alt:before{content:"\\e095"}.glyphicon-resize-full:before{content:"\\e096"}.glyphicon-resize-small:before{content:"\\e097"}.glyphicon-exclamation-sign:before{content:"\\e101"}.glyphicon-gift:before{content:"\\e102"}.glyphicon-leaf:before{content:"\\e103"}.glyphicon-fire:before{content:"\\e104"}.glyphicon-eye-open:before{content:"\\e105"}.glyphicon-eye-close:before{content:"\\e106"}.glyphicon-warning-sign:before{content:"\\e107"}.glyphicon-plane:before{content:"\\e108"}.glyphicon-calendar:before{content:"\\e109"}.glyphicon-random:before{content:"\\e110"}.glyphicon-comment:before{content:"\\e111"}.glyphicon-magnet:before{content:"\\e112"}.glyphicon-chevron-up:before{content:"\\e113"}.glyphicon-chevron-down:before{content:"\\e114"}.glyphicon-retweet:before{content:"\\e115"}.glyphicon-shopping-cart:before{content:"\\e116"}.glyphicon-folder-close:before{content:"\\e117"}.glyphicon-folder-open:before{content:"\\e118"}.glyphicon-resize-vertical:before{content:"\\e119"}.glyphicon-resize-horizontal:before{content:"\\e120"}.glyphicon-hdd:before{content:"\\e121"}.glyphicon-bullhorn:before{content:"\\e122"}.glyphicon-bell:before{content:"\\e123"}.glyphicon-certificate:before{content:"\\e124"}.glyphicon-thumbs-up:before{content:"\\e125"}.glyphicon-thumbs-down:before{content:"\\e126"}.glyphicon-hand-right:before{content:"\\e127"}.glyphicon-hand-left:before{content:"\\e128"}.glyphicon-hand-up:before{content:"\\e129"}.glyphicon-hand-down:before{content:"\\e130"}.glyphicon-circle-arrow-right:before{content:"\\e131"}.glyphicon-circle-arrow-left:before{content:"\\e132"}.glyphicon-circle-arrow-up:before{content:"\\e133"}.glyphicon-circle-arrow-down:before{content:"\\e134"}.glyphicon-globe:before{content:"\\e135"}.glyphicon-wrench:before{content:"\\e136"}.glyphicon-tasks:before{content:"\\e137"}.glyphicon-filter:before{content:"\\e138"}.glyphicon-briefcase:before{content:"\\e139"}.glyphicon-fullscreen:before{content:"\\e140"}.glyphicon-dashboard:before{content:"\\e141"}.glyphicon-paperclip:before{content:"\\e142"}.glyphicon-heart-empty:before{content:"\\e143"}.glyphicon-link:before{content:"\\e144"}.glyphicon-phone:before{content:"\\e145"}.glyphicon-pushpin:before{content:"\\e146"}.glyphicon-usd:before{content:"\\e148"}.glyphicon-gbp:before{content:"\\e149"}.glyphicon-sort:before{content:"\\e150"}.glyphicon-sort-by-alphabet:before{content:"\\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\\e152"}.glyphicon-sort-by-order:before{content:"\\e153"}.glyphicon-sort-by-order-alt:before{content:"\\e154"}.glyphicon-sort-by-attributes:before{content:"\\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\\e156"}.glyphicon-unchecked:before{content:"\\e157"}.glyphicon-expand:before{content:"\\e158"}.glyphicon-collapse-down:before{content:"\\e159"}.glyphicon-collapse-up:before{content:"\\e160"}.glyphicon-log-in:before{content:"\\e161"}.glyphicon-flash:before{content:"\\e162"}.glyphicon-log-out:before{content:"\\e163"}.glyphicon-new-window:before{content:"\\e164"}.glyphicon-record:before{content:"\\e165"}.glyphicon-save:before{content:"\\e166"}.glyphicon-open:before{content:"\\e167"}.glyphicon-saved:before{content:"\\e168"}.glyphicon-import:before{content:"\\e169"}.glyphicon-export:before{content:"\\e170"}.glyphicon-send:before{content:"\\e171"}.glyphicon-floppy-disk:before{content:"\\e172"}.glyphicon-floppy-saved:before{content:"\\e173"}.glyphicon-floppy-remove:before{content:"\\e174"}.glyphicon-floppy-save:before{content:"\\e175"}.glyphicon-floppy-open:before{content:"\\e176"}.glyphicon-credit-card:before{content:"\\e177"}.glyphicon-transfer:before{content:"\\e178"}.glyphicon-cutlery:before{content:"\\e179"}.glyphicon-header:before{content:"\\e180"}.glyphicon-compressed:before{content:"\\e181"}.glyphicon-earphone:before{content:"\\e182"}.glyphicon-phone-alt:before{content:"\\e183"}.glyphicon-tower:before{content:"\\e184"}.glyphicon-stats:before{content:"\\e185"}.glyphicon-sd-video:before{content:"\\e186"}.glyphicon-hd-video:before{content:"\\e187"}.glyphicon-subtitles:before{content:"\\e188"}.glyphicon-sound-stereo:before{content:"\\e189"}.glyphicon-sound-dolby:before{content:"\\e190"}.glyphicon-sound-5-1:before{content:"\\e191"}.glyphicon-sound-6-1:before{content:"\\e192"}.glyphicon-sound-7-1:before{content:"\\e193"}.glyphicon-copyright-mark:before{content:"\\e194"}.glyphicon-registration-mark:before{content:"\\e195"}.glyphicon-cloud-download:before{content:"\\e197"}.glyphicon-cloud-upload:before{content:"\\e198"}.glyphicon-tree-conifer:before{content:"\\e199"}.glyphicon-tree-deciduous:before{content:"\\e200"}.glyphicon-cd:before{content:"\\e201"}.glyphicon-save-file:before{content:"\\e202"}.glyphicon-open-file:before{content:"\\e203"}.glyphicon-level-up:before{content:"\\e204"}.glyphicon-copy:before{content:"\\e205"}.glyphicon-paste:before{content:"\\e206"}.glyphicon-alert:before{content:"\\e209"}.glyphicon-equalizer:before{content:"\\e210"}.glyphicon-king:before{content:"\\e211"}.glyphicon-queen:before{content:"\\e212"}.glyphicon-pawn:before{content:"\\e213"}.glyphicon-bishop:before{content:"\\e214"}.glyphicon-knight:before{content:"\\e215"}.glyphicon-baby-formula:before{content:"\\e216"}.glyphicon-tent:before{content:"\\26fa"}.glyphicon-blackboard:before{content:"\\e218"}.glyphicon-bed:before{content:"\\e219"}.glyphicon-apple:before{content:"\\f8ff"}.glyphicon-erase:before{content:"\\e221"}.glyphicon-hourglass:before{content:"\\231b"}.glyphicon-lamp:before{content:"\\e223"}.glyphicon-duplicate:before{content:"\\e224"}.glyphicon-piggy-bank:before{content:"\\e225"}.glyphicon-scissors:before{content:"\\e226"}.glyphicon-bitcoin:before{content:"\\e227"}.glyphicon-btc:before{content:"\\e227"}.glyphicon-xbt:before{content:"\\e227"}.glyphicon-yen:before{content:"\\00a5"}.glyphicon-jpy:before{content:"\\00a5"}.glyphicon-ruble:before{content:"\\20bd"}.glyphicon-rub:before{content:"\\20bd"}.glyphicon-scale:before{content:"\\e230"}.glyphicon-ice-lolly:before{content:"\\e231"}.glyphicon-ice-lolly-tasted:before{content:"\\e232"}.glyphicon-education:before{content:"\\e233"}.glyphicon-option-horizontal:before{content:"\\e234"}.glyphicon-option-vertical:before{content:"\\e235"}.glyphicon-menu-hamburger:before{content:"\\e236"}.glyphicon-modal-window:before{content:"\\e237"}.glyphicon-oil:before{content:"\\e238"}.glyphicon-grain:before{content:"\\e239"}.glyphicon-sunglasses:before{content:"\\e240"}.glyphicon-text-size:before{content:"\\e241"}.glyphicon-text-color:before{content:"\\e242"}.glyphicon-text-background:before{content:"\\e243"}.glyphicon-object-align-top:before{content:"\\e244"}.glyphicon-object-align-bottom:before{content:"\\e245"}.glyphicon-object-align-horizontal:before{content:"\\e246"}.glyphicon-object-align-left:before{content:"\\e247"}.glyphicon-object-align-vertical:before{content:"\\e248"}.glyphicon-object-align-right:before{content:"\\e249"}.glyphicon-triangle-right:before{content:"\\e250"}.glyphicon-triangle-left:before{content:"\\e251"}.glyphicon-triangle-bottom:before{content:"\\e252"}.glyphicon-triangle-top:before{content:"\\e253"}.glyphicon-console:before{content:"\\e254"}.glyphicon-superscript:before{content:"\\e255"}.glyphicon-subscript:before{content:"\\e256"}.glyphicon-menu-left:before{content:"\\e257"}.glyphicon-menu-right:before{content:"\\e258"}.glyphicon-menu-down:before{content:"\\e259"}.glyphicon-menu-up:before{content:"\\e260"}/*# sourceMappingURL=plone-glyphicons-compiled.css.map */\n\\ No newline at end of file\n+@font-face{font-family:"Glyphicons Halflings";src:url("fonts/glyphicons-halflings-regular.eot");src:url("fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("fonts/glyphicons-halflings-regular.woff") format("woff"),url("fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\\002a"}.glyphicon-plus:before{content:"\\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\\20ac"}.glyphicon-minus:before{content:"\\2212"}.glyphicon-cloud:before{content:"\\2601"}.glyphicon-envelope:before{content:"\\2709"}.glyphicon-pencil:before{content:"\\270f"}.glyphicon-glass:before{content:"\\e001"}.glyphicon-music:before{content:"\\e002"}.glyphicon-search:before{content:"\\e003"}.glyphicon-heart:before{content:"\\e005"}.glyphicon-star:before{content:"\\e006"}.glyphicon-star-empty:before{content:"\\e007"}.glyphicon-user:before{content:"\\e008"}.glyphicon-film:before{content:"\\e009"}.glyphicon-th-large:before{content:"\\e010"}.glyphicon-th:before{content:"\\e011"}.glyphicon-th-list:before{content:"\\e012"}.glyphicon-ok:before{content:"\\e013"}.glyphicon-remove:before{content:"\\e014"}.glyphicon-zoom-in:before{content:"\\e015"}.glyphicon-zoom-out:before{content:"\\e016"}.glyphicon-off:before{content:"\\e017"}.glyphicon-signal:before{content:"\\e018"}.glyphicon-cog:before{content:"\\e019"}.glyphicon-trash:before{content:"\\e020"}.glyphicon-home:before{content:"\\e021"}.glyphicon-file:before{content:"\\e022"}.glyphicon-time:before{content:"\\e023"}.glyphicon-road:before{content:"\\e024"}.glyphicon-download-alt:before{content:"\\e025"}.glyphicon-download:before{content:"\\e026"}.glyphicon-upload:before{content:"\\e027"}.glyphicon-inbox:before{content:"\\e028"}.glyphicon-play-circle:before{content:"\\e029"}.glyphicon-repeat:before{content:"\\e030"}.glyphicon-refresh:before{content:"\\e031"}.glyphicon-list-alt:before{content:"\\e032"}.glyphicon-lock:before{content:"\\e033"}.glyphicon-flag:before{content:"\\e034"}.glyphicon-headphones:before{content:"\\e035"}.glyphicon-volume-off:before{content:"\\e036"}.glyphicon-volume-down:before{content:"\\e037"}.glyphicon-volume-up:before{content:"\\e038"}.glyphicon-qrcode:before{content:"\\e039"}.glyphicon-barcode:before{content:"\\e040"}.glyphicon-tag:before{content:"\\e041"}.glyphicon-tags:before{content:"\\e042"}.glyphicon-book:before{content:"\\e043"}.glyphicon-bookmark:before{content:"\\e044"}.glyphicon-print:before{content:"\\e045"}.glyphicon-camera:before{content:"\\e046"}.glyphicon-font:before{content:"\\e047"}.glyphicon-bold:before{content:"\\e048"}.glyphicon-italic:before{content:"\\e049"}.glyphicon-text-height:before{content:"\\e050"}.glyphicon-text-width:before{content:"\\e051"}.glyphicon-align-left:before{content:"\\e052"}.glyphicon-align-center:before{content:"\\e053"}.glyphicon-align-right:before{content:"\\e054"}.glyphicon-align-justify:before{content:"\\e055"}.glyphicon-list:before{content:"\\e056"}.glyphicon-indent-left:before{content:"\\e057"}.glyphicon-indent-right:before{content:"\\e058"}.glyphicon-facetime-video:before{content:"\\e059"}.glyphicon-picture:before{content:"\\e060"}.glyphicon-map-marker:before{content:"\\e062"}.glyphicon-adjust:before{content:"\\e063"}.glyphicon-tint:before{content:"\\e064"}.glyphicon-edit:before{content:"\\e065"}.glyphicon-share:before{content:"\\e066"}.glyphicon-check:before{content:"\\e067"}.glyphicon-move:before{content:"\\e068"}.glyphicon-step-backward:before{content:"\\e069"}.glyphicon-fast-backward:before{content:"\\e070"}.glyphicon-backward:before{content:"\\e071"}.glyphicon-play:before{content:"\\e072"}.glyphicon-pause:before{content:"\\e073"}.glyphicon-stop:before{content:"\\e074"}.glyphicon-forward:before{content:"\\e075"}.glyphicon-fast-forward:before{content:"\\e076"}.glyphicon-step-forward:before{content:"\\e077"}.glyphicon-eject:before{content:"\\e078"}.glyphicon-chevron-left:before{content:"\\e079"}.glyphicon-chevron-right:before{content:"\\e080"}.glyphicon-plus-sign:before{content:"\\e081"}.glyphicon-minus-sign:before{content:"\\e082"}.glyphicon-remove-sign:before{content:"\\e083"}.glyphicon-ok-sign:before{content:"\\e084"}.glyphicon-question-sign:before{content:"\\e085"}.glyphicon-info-sign:before{content:"\\e086"}.glyphicon-screenshot:before{content:"\\e087"}.glyphicon-remove-circle:before{content:"\\e088"}.glyphicon-ok-circle:before{content:"\\e089"}.glyphicon-ban-circle:before{content:"\\e090"}.glyphicon-arrow-left:before{content:"\\e091"}.glyphicon-arrow-right:before{content:"\\e092"}.glyphicon-arrow-up:before{content:"\\e093"}.glyphicon-arrow-down:before{content:"\\e094"}.glyphicon-share-alt:before{content:"\\e095"}.glyphicon-resize-full:before{content:"\\e096"}.glyphicon-resize-small:before{content:"\\e097"}.glyphicon-exclamation-sign:before{content:"\\e101"}.glyphicon-gift:before{content:"\\e102"}.glyphicon-leaf:before{content:"\\e103"}.glyphicon-fire:before{content:"\\e104"}.glyphicon-eye-open:before{content:"\\e105"}.glyphicon-eye-close:before{content:"\\e106"}.glyphicon-warning-sign:before{content:"\\e107"}.glyphicon-plane:before{content:"\\e108"}.glyphicon-calendar:before{content:"\\e109"}.glyphicon-random:before{content:"\\e110"}.glyphicon-comment:before{content:"\\e111"}.glyphicon-magnet:before{content:"\\e112"}.glyphicon-chevron-up:before{content:"\\e113"}.glyphicon-chevron-down:before{content:"\\e114"}.glyphicon-retweet:before{content:"\\e115"}.glyphicon-shopping-cart:before{content:"\\e116"}.glyphicon-folder-close:before{content:"\\e117"}.glyphicon-folder-open:before{content:"\\e118"}.glyphicon-resize-vertical:before{content:"\\e119"}.glyphicon-resize-horizontal:before{content:"\\e120"}.glyphicon-hdd:before{content:"\\e121"}.glyphicon-bullhorn:before{content:"\\e122"}.glyphicon-bell:before{content:"\\e123"}.glyphicon-certificate:before{content:"\\e124"}.glyphicon-thumbs-up:before{content:"\\e125"}.glyphicon-thumbs-down:before{content:"\\e126"}.glyphicon-hand-right:before{content:"\\e127"}.glyphicon-hand-left:before{content:"\\e128"}.glyphicon-hand-up:before{content:"\\e129"}.glyphicon-hand-down:before{content:"\\e130"}.glyphicon-circle-arrow-right:before{content:"\\e131"}.glyphicon-circle-arrow-left:before{content:"\\e132"}.glyphicon-circle-arrow-up:before{content:"\\e133"}.glyphicon-circle-arrow-down:before{content:"\\e134"}.glyphicon-globe:before{content:"\\e135"}.glyphicon-wrench:before{content:"\\e136"}.glyphicon-tasks:before{content:"\\e137"}.glyphicon-filter:before{content:"\\e138"}.glyphicon-briefcase:before{content:"\\e139"}.glyphicon-fullscreen:before{content:"\\e140"}.glyphicon-dashboard:before{content:"\\e141"}.glyphicon-paperclip:before{content:"\\e142"}.glyphicon-heart-empty:before{content:"\\e143"}.glyphicon-link:before{content:"\\e144"}.glyphicon-phone:before{content:"\\e145"}.glyphicon-pushpin:before{content:"\\e146"}.glyphicon-usd:before{content:"\\e148"}.glyphicon-gbp:before{content:"\\e149"}.glyphicon-sort:before{content:"\\e150"}.glyphicon-sort-by-alphabet:before{content:"\\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\\e152"}.glyphicon-sort-by-order:before{content:"\\e153"}.glyphicon-sort-by-order-alt:before{content:"\\e154"}.glyphicon-sort-by-attributes:before{content:"\\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\\e156"}.glyphicon-unchecked:before{content:"\\e157"}.glyphicon-expand:before{content:"\\e158"}.glyphicon-collapse-down:before{content:"\\e159"}.glyphicon-collapse-up:before{content:"\\e160"}.glyphicon-log-in:before{content:"\\e161"}.glyphicon-flash:before{content:"\\e162"}.glyphicon-log-out:before{content:"\\e163"}.glyphicon-new-window:before{content:"\\e164"}.glyphicon-record:before{content:"\\e165"}.glyphicon-save:before{content:"\\e166"}.glyphicon-open:before{content:"\\e167"}.glyphicon-saved:before{content:"\\e168"}.glyphicon-import:before{content:"\\e169"}.glyphicon-export:before{content:"\\e170"}.glyphicon-send:before{content:"\\e171"}.glyphicon-floppy-disk:before{content:"\\e172"}.glyphicon-floppy-saved:before{content:"\\e173"}.glyphicon-floppy-remove:before{content:"\\e174"}.glyphicon-floppy-save:before{content:"\\e175"}.glyphicon-floppy-open:before{content:"\\e176"}.glyphicon-credit-card:before{content:"\\e177"}.glyphicon-transfer:before{content:"\\e178"}.glyphicon-cutlery:before{content:"\\e179"}.glyphicon-header:before{content:"\\e180"}.glyphicon-compressed:before{content:"\\e181"}.glyphicon-earphone:before{content:"\\e182"}.glyphicon-phone-alt:before{content:"\\e183"}.glyphicon-tower:before{content:"\\e184"}.glyphicon-stats:before{content:"\\e185"}.glyphicon-sd-video:before{content:"\\e186"}.glyphicon-hd-video:before{content:"\\e187"}.glyphicon-subtitles:before{content:"\\e188"}.glyphicon-sound-stereo:before{content:"\\e189"}.glyphicon-sound-dolby:before{content:"\\e190"}.glyphicon-sound-5-1:before{content:"\\e191"}.glyphicon-sound-6-1:before{content:"\\e192"}.glyphicon-sound-7-1:before{content:"\\e193"}.glyphicon-copyright-mark:before{content:"\\e194"}.glyphicon-registration-mark:before{content:"\\e195"}.glyphicon-cloud-download:before{content:"\\e197"}.glyphicon-cloud-upload:before{content:"\\e198"}.glyphicon-tree-conifer:before{content:"\\e199"}.glyphicon-tree-deciduous:before{content:"\\e200"}.glyphicon-cd:before{content:"\\e201"}.glyphicon-save-file:before{content:"\\e202"}.glyphicon-open-file:before{content:"\\e203"}.glyphicon-level-up:before{content:"\\e204"}.glyphicon-copy:before{content:"\\e205"}.glyphicon-paste:before{content:"\\e206"}.glyphicon-alert:before{content:"\\e209"}.glyphicon-equalizer:before{content:"\\e210"}.glyphicon-king:before{content:"\\e211"}.glyphicon-queen:before{content:"\\e212"}.glyphicon-pawn:before{content:"\\e213"}.glyphicon-bishop:before{content:"\\e214"}.glyphicon-knight:before{content:"\\e215"}.glyphicon-baby-formula:before{content:"\\e216"}.glyphicon-tent:before{content:"\\26fa"}.glyphicon-blackboard:before{content:"\\e218"}.glyphicon-bed:before{content:"\\e219"}.glyphicon-apple:before{content:"\\f8ff"}.glyphicon-erase:before{content:"\\e221"}.glyphicon-hourglass:before{content:"\\231b"}.glyphicon-lamp:before{content:"\\e223"}.glyphicon-duplicate:before{content:"\\e224"}.glyphicon-piggy-bank:before{content:"\\e225"}.glyphicon-scissors:before{content:"\\e226"}.glyphicon-bitcoin:before{content:"\\e227"}.glyphicon-btc:before{content:"\\e227"}.glyphicon-xbt:before{content:"\\e227"}.glyphicon-yen:before{content:"\\00a5"}.glyphicon-jpy:before{content:"\\00a5"}.glyphicon-ruble:before{content:"\\20bd"}.glyphicon-rub:before{content:"\\20bd"}.glyphicon-scale:before{content:"\\e230"}.glyphicon-ice-lolly:before{content:"\\e231"}.glyphicon-ice-lolly-tasted:before{content:"\\e232"}.glyphicon-education:before{content:"\\e233"}.glyphicon-option-horizontal:before{content:"\\e234"}.glyphicon-option-vertical:before{content:"\\e235"}.glyphicon-menu-hamburger:before{content:"\\e236"}.glyphicon-modal-window:before{content:"\\e237"}.glyphicon-oil:before{content:"\\e238"}.glyphicon-grain:before{content:"\\e239"}.glyphicon-sunglasses:before{content:"\\e240"}.glyphicon-text-size:before{content:"\\e241"}.glyphicon-text-color:before{content:"\\e242"}.glyphicon-text-background:before{content:"\\e243"}.glyphicon-object-align-top:before{content:"\\e244"}.glyphicon-object-align-bottom:before{content:"\\e245"}.glyphicon-object-align-horizontal:before{content:"\\e246"}.glyphicon-object-align-left:before{content:"\\e247"}.glyphicon-object-align-vertical:before{content:"\\e248"}.glyphicon-object-align-right:before{content:"\\e249"}.glyphicon-triangle-right:before{content:"\\e250"}.glyphicon-triangle-left:before{content:"\\e251"}.glyphicon-triangle-bottom:before{content:"\\e252"}.glyphicon-triangle-top:before{content:"\\e253"}.glyphicon-console:before{content:"\\e254"}.glyphicon-superscript:before{content:"\\e255"}.glyphicon-subscript:before{content:"\\e256"}.glyphicon-menu-left:before{content:"\\e257"}.glyphicon-menu-right:before{content:"\\e258"}.glyphicon-menu-down:before{content:"\\e259"}.glyphicon-menu-up:before{content:"\\e260"}/*# sourceMappingURL=plone-glyphicons-compiled.css.map */\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-glyphicons-compiled.css.map b/src/plone/staticresources/static/plone-glyphicons-compiled.css.map\nindex 258d75108..17ea7d63d 100644\n--- a/src/plone/staticresources/static/plone-glyphicons-compiled.css.map\n+++ b/src/plone/staticresources/static/plone-glyphicons-compiled.css.map\n@@ -1 +1 @@\n-{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/components/bootstrap/less/glyphicons.less"],"names":[],"mappings":"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","sourcesContent":["// stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword\\n\\n//\\n// Glyphicons for Bootstrap\\n//\\n// Since icons are fonts, they can be placed anywhere text is placed and are\\n// thus automatically sized to match the surrounding child. To use, create an\\n// inline element with the appropriate classes, like so:\\n//\\n// Star\\n\\n// Import the fonts\\n@font-face {\\n font-family: \\"Glyphicons Halflings\\";\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot\\");\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot?#iefix\\") format(\\"embedded-opentype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff2\\") format(\\"woff2\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff\\") format(\\"woff\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.ttf\\") format(\\"truetype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}\\") format(\\"svg\\");\\n}\\n\\n// Catchall baseclass\\n.glyphicon {\\n position: relative;\\n top: 1px;\\n display: inline-block;\\n font-family: \\"Glyphicons Halflings\\";\\n font-style: normal;\\n font-weight: 400;\\n line-height: 1;\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n}\\n\\n// Individual icons\\n.glyphicon-asterisk { &:before { content: \\"\\\\002a\\"; } }\\n.glyphicon-plus { &:before { content: \\"\\\\002b\\"; } }\\n.glyphicon-euro,\\n.glyphicon-eur { &:before { content: \\"\\\\20ac\\"; } }\\n.glyphicon-minus { &:before { content: \\"\\\\2212\\"; } }\\n.glyphicon-cloud { &:before { content: \\"\\\\2601\\"; } }\\n.glyphicon-envelope { &:before { content: \\"\\\\2709\\"; } }\\n.glyphicon-pencil { &:before { content: \\"\\\\270f\\"; } }\\n.glyphicon-glass { &:before { content: \\"\\\\e001\\"; } }\\n.glyphicon-music { &:before { content: \\"\\\\e002\\"; } }\\n.glyphicon-search { &:before { content: \\"\\\\e003\\"; } }\\n.glyphicon-heart { &:before { content: \\"\\\\e005\\"; } }\\n.glyphicon-star { &:before { content: \\"\\\\e006\\"; } }\\n.glyphicon-star-empty { &:before { content: \\"\\\\e007\\"; } }\\n.glyphicon-user { &:before { content: \\"\\\\e008\\"; } }\\n.glyphicon-film { &:before { content: \\"\\\\e009\\"; } }\\n.glyphicon-th-large { &:before { content: \\"\\\\e010\\"; } }\\n.glyphicon-th { &:before { content: \\"\\\\e011\\"; } }\\n.glyphicon-th-list { &:before { content: \\"\\\\e012\\"; } }\\n.glyphicon-ok { &:before { content: \\"\\\\e013\\"; } }\\n.glyphicon-remove { &:before { content: \\"\\\\e014\\"; } }\\n.glyphicon-zoom-in { &:before { content: \\"\\\\e015\\"; } }\\n.glyphicon-zoom-out { &:before { content: \\"\\\\e016\\"; } }\\n.glyphicon-off { &:before { content: \\"\\\\e017\\"; } }\\n.glyphicon-signal { &:before { content: \\"\\\\e018\\"; } }\\n.glyphicon-cog { &:before { content: \\"\\\\e019\\"; } }\\n.glyphicon-trash { &:before { content: \\"\\\\e020\\"; } }\\n.glyphicon-home { &:before { content: \\"\\\\e021\\"; } }\\n.glyphicon-file { &:before { content: \\"\\\\e022\\"; } }\\n.glyphicon-time { &:before { content: \\"\\\\e023\\"; } }\\n.glyphicon-road { &:before { content: \\"\\\\e024\\"; } }\\n.glyphicon-download-alt { &:before { content: \\"\\\\e025\\"; } }\\n.glyphicon-download { &:before { content: \\"\\\\e026\\"; } }\\n.glyphicon-upload { &:before { content: \\"\\\\e027\\"; } }\\n.glyphicon-inbox { &:before { content: \\"\\\\e028\\"; } }\\n.glyphicon-play-circle { &:before { content: \\"\\\\e029\\"; } }\\n.glyphicon-repeat { &:before { content: \\"\\\\e030\\"; } }\\n.glyphicon-refresh { &:before { content: \\"\\\\e031\\"; } }\\n.glyphicon-list-alt { &:before { content: \\"\\\\e032\\"; } }\\n.glyphicon-lock { &:before { content: \\"\\\\e033\\"; } }\\n.glyphicon-flag { &:before { content: \\"\\\\e034\\"; } }\\n.glyphicon-headphones { &:before { content: \\"\\\\e035\\"; } }\\n.glyphicon-volume-off { &:before { content: \\"\\\\e036\\"; } }\\n.glyphicon-volume-down { &:before { content: \\"\\\\e037\\"; } }\\n.glyphicon-volume-up { &:before { content: \\"\\\\e038\\"; } }\\n.glyphicon-qrcode { &:before { content: \\"\\\\e039\\"; } }\\n.glyphicon-barcode { &:before { content: \\"\\\\e040\\"; } }\\n.glyphicon-tag { &:before { content: \\"\\\\e041\\"; } }\\n.glyphicon-tags { &:before { content: \\"\\\\e042\\"; } }\\n.glyphicon-book { &:before { content: \\"\\\\e043\\"; } }\\n.glyphicon-bookmark { &:before { content: \\"\\\\e044\\"; } }\\n.glyphicon-print { &:before { content: \\"\\\\e045\\"; } }\\n.glyphicon-camera { &:before { content: \\"\\\\e046\\"; } }\\n.glyphicon-font { &:before { content: \\"\\\\e047\\"; } }\\n.glyphicon-bold { &:before { content: \\"\\\\e048\\"; } }\\n.glyphicon-italic { &:before { content: \\"\\\\e049\\"; } }\\n.glyphicon-text-height { &:before { content: \\"\\\\e050\\"; } }\\n.glyphicon-text-width { &:before { content: \\"\\\\e051\\"; } }\\n.glyphicon-align-left { &:before { content: \\"\\\\e052\\"; } }\\n.glyphicon-align-center { &:before { content: \\"\\\\e053\\"; } }\\n.glyphicon-align-right { &:before { content: \\"\\\\e054\\"; } }\\n.glyphicon-align-justify { &:before { content: \\"\\\\e055\\"; } }\\n.glyphicon-list { &:before { content: \\"\\\\e056\\"; } }\\n.glyphicon-indent-left { &:before { content: \\"\\\\e057\\"; } }\\n.glyphicon-indent-right { &:before { content: \\"\\\\e058\\"; } }\\n.glyphicon-facetime-video { &:before { content: \\"\\\\e059\\"; } }\\n.glyphicon-picture { &:before { content: \\"\\\\e060\\"; } }\\n.glyphicon-map-marker { &:before { content: \\"\\\\e062\\"; } }\\n.glyphicon-adjust { &:before { content: \\"\\\\e063\\"; } }\\n.glyphicon-tint { &:before { content: \\"\\\\e064\\"; } }\\n.glyphicon-edit { &:before { content: \\"\\\\e065\\"; } }\\n.glyphicon-share { &:before { content: \\"\\\\e066\\"; } }\\n.glyphicon-check { &:before { content: \\"\\\\e067\\"; } }\\n.glyphicon-move { &:before { content: \\"\\\\e068\\"; } }\\n.glyphicon-step-backward { &:before { content: \\"\\\\e069\\"; } }\\n.glyphicon-fast-backward { &:before { content: \\"\\\\e070\\"; } }\\n.glyphicon-backward { &:before { content: \\"\\\\e071\\"; } }\\n.glyphicon-play { &:before { content: \\"\\\\e072\\"; } }\\n.glyphicon-pause { &:before { content: \\"\\\\e073\\"; } }\\n.glyphicon-stop { &:before { content: \\"\\\\e074\\"; } }\\n.glyphicon-forward { &:before { content: \\"\\\\e075\\"; } }\\n.glyphicon-fast-forward { &:before { content: \\"\\\\e076\\"; } }\\n.glyphicon-step-forward { &:before { content: \\"\\\\e077\\"; } }\\n.glyphicon-eject { &:before { content: \\"\\\\e078\\"; } }\\n.glyphicon-chevron-left { &:before { content: \\"\\\\e079\\"; } }\\n.glyphicon-chevron-right { &:before { content: \\"\\\\e080\\"; } }\\n.glyphicon-plus-sign { &:before { content: \\"\\\\e081\\"; } }\\n.glyphicon-minus-sign { &:before { content: \\"\\\\e082\\"; } }\\n.glyphicon-remove-sign { &:before { content: \\"\\\\e083\\"; } }\\n.glyphicon-ok-sign { &:before { content: \\"\\\\e084\\"; } }\\n.glyphicon-question-sign { &:before { content: \\"\\\\e085\\"; } }\\n.glyphicon-info-sign { &:before { content: \\"\\\\e086\\"; } }\\n.glyphicon-screenshot { &:before { content: \\"\\\\e087\\"; } }\\n.glyphicon-remove-circle { &:before { content: \\"\\\\e088\\"; } }\\n.glyphicon-ok-circle { &:before { content: \\"\\\\e089\\"; } }\\n.glyphicon-ban-circle { &:before { content: \\"\\\\e090\\"; } }\\n.glyphicon-arrow-left { &:before { content: \\"\\\\e091\\"; } }\\n.glyphicon-arrow-right { &:before { content: \\"\\\\e092\\"; } }\\n.glyphicon-arrow-up { &:before { content: \\"\\\\e093\\"; } }\\n.glyphicon-arrow-down { &:before { content: \\"\\\\e094\\"; } }\\n.glyphicon-share-alt { &:before { content: \\"\\\\e095\\"; } }\\n.glyphicon-resize-full { &:before { content: \\"\\\\e096\\"; } }\\n.glyphicon-resize-small { &:before { content: \\"\\\\e097\\"; } }\\n.glyphicon-exclamation-sign { &:before { content: \\"\\\\e101\\"; } }\\n.glyphicon-gift { &:before { content: \\"\\\\e102\\"; } }\\n.glyphicon-leaf { &:before { content: \\"\\\\e103\\"; } }\\n.glyphicon-fire { &:before { content: \\"\\\\e104\\"; } }\\n.glyphicon-eye-open { &:before { content: \\"\\\\e105\\"; } }\\n.glyphicon-eye-close { &:before { content: \\"\\\\e106\\"; } }\\n.glyphicon-warning-sign { &:before { content: \\"\\\\e107\\"; } }\\n.glyphicon-plane { &:before { content: \\"\\\\e108\\"; } }\\n.glyphicon-calendar { &:before { content: \\"\\\\e109\\"; } }\\n.glyphicon-random { &:before { content: \\"\\\\e110\\"; } }\\n.glyphicon-comment { &:before { content: \\"\\\\e111\\"; } }\\n.glyphicon-magnet { &:before { content: \\"\\\\e112\\"; } }\\n.glyphicon-chevron-up { &:before { content: \\"\\\\e113\\"; } }\\n.glyphicon-chevron-down { &:before { content: \\"\\\\e114\\"; } }\\n.glyphicon-retweet { &:before { content: \\"\\\\e115\\"; } }\\n.glyphicon-shopping-cart { &:before { content: \\"\\\\e116\\"; } }\\n.glyphicon-folder-close { &:before { content: \\"\\\\e117\\"; } }\\n.glyphicon-folder-open { &:before { content: \\"\\\\e118\\"; } }\\n.glyphicon-resize-vertical { &:before { content: \\"\\\\e119\\"; } }\\n.glyphicon-resize-horizontal { &:before { content: \\"\\\\e120\\"; } }\\n.glyphicon-hdd { &:before { content: \\"\\\\e121\\"; } }\\n.glyphicon-bullhorn { &:before { content: \\"\\\\e122\\"; } }\\n.glyphicon-bell { &:before { content: \\"\\\\e123\\"; } }\\n.glyphicon-certificate { &:before { content: \\"\\\\e124\\"; } }\\n.glyphicon-thumbs-up { &:before { content: \\"\\\\e125\\"; } }\\n.glyphicon-thumbs-down { &:before { content: \\"\\\\e126\\"; } }\\n.glyphicon-hand-right { &:before { content: \\"\\\\e127\\"; } }\\n.glyphicon-hand-left { &:before { content: \\"\\\\e128\\"; } }\\n.glyphicon-hand-up { &:before { content: \\"\\\\e129\\"; } }\\n.glyphicon-hand-down { &:before { content: \\"\\\\e130\\"; } }\\n.glyphicon-circle-arrow-right { &:before { content: \\"\\\\e131\\"; } }\\n.glyphicon-circle-arrow-left { &:before { content: \\"\\\\e132\\"; } }\\n.glyphicon-circle-arrow-up { &:before { content: \\"\\\\e133\\"; } }\\n.glyphicon-circle-arrow-down { &:before { content: \\"\\\\e134\\"; } }\\n.glyphicon-globe { &:before { content: \\"\\\\e135\\"; } }\\n.glyphicon-wrench { &:before { content: \\"\\\\e136\\"; } }\\n.glyphicon-tasks { &:before { content: \\"\\\\e137\\"; } }\\n.glyphicon-filter { &:before { content: \\"\\\\e138\\"; } }\\n.glyphicon-briefcase { &:before { content: \\"\\\\e139\\"; } }\\n.glyphicon-fullscreen { &:before { content: \\"\\\\e140\\"; } }\\n.glyphicon-dashboard { &:before { content: \\"\\\\e141\\"; } }\\n.glyphicon-paperclip { &:before { content: \\"\\\\e142\\"; } }\\n.glyphicon-heart-empty { &:before { content: \\"\\\\e143\\"; } }\\n.glyphicon-link { &:before { content: \\"\\\\e144\\"; } }\\n.glyphicon-phone { &:before { content: \\"\\\\e145\\"; } }\\n.glyphicon-pushpin { &:before { content: \\"\\\\e146\\"; } }\\n.glyphicon-usd { &:before { content: \\"\\\\e148\\"; } }\\n.glyphicon-gbp { &:before { content: \\"\\\\e149\\"; } }\\n.glyphicon-sort { &:before { content: \\"\\\\e150\\"; } }\\n.glyphicon-sort-by-alphabet { &:before { content: \\"\\\\e151\\"; } }\\n.glyphicon-sort-by-alphabet-alt { &:before { content: \\"\\\\e152\\"; } }\\n.glyphicon-sort-by-order { &:before { content: \\"\\\\e153\\"; } }\\n.glyphicon-sort-by-order-alt { &:before { content: \\"\\\\e154\\"; } }\\n.glyphicon-sort-by-attributes { &:before { content: \\"\\\\e155\\"; } }\\n.glyphicon-sort-by-attributes-alt { &:before { content: \\"\\\\e156\\"; } }\\n.glyphicon-unchecked { &:before { content: \\"\\\\e157\\"; } }\\n.glyphicon-expand { &:before { content: \\"\\\\e158\\"; } }\\n.glyphicon-collapse-down { &:before { content: \\"\\\\e159\\"; } }\\n.glyphicon-collapse-up { &:before { content: \\"\\\\e160\\"; } }\\n.glyphicon-log-in { &:before { content: \\"\\\\e161\\"; } }\\n.glyphicon-flash { &:before { content: \\"\\\\e162\\"; } }\\n.glyphicon-log-out { &:before { content: \\"\\\\e163\\"; } }\\n.glyphicon-new-window { &:before { content: \\"\\\\e164\\"; } }\\n.glyphicon-record { &:before { content: \\"\\\\e165\\"; } }\\n.glyphicon-save { &:before { content: \\"\\\\e166\\"; } }\\n.glyphicon-open { &:before { content: \\"\\\\e167\\"; } }\\n.glyphicon-saved { &:before { content: \\"\\\\e168\\"; } }\\n.glyphicon-import { &:before { content: \\"\\\\e169\\"; } }\\n.glyphicon-export { &:before { content: \\"\\\\e170\\"; } }\\n.glyphicon-send { &:before { content: \\"\\\\e171\\"; } }\\n.glyphicon-floppy-disk { &:before { content: \\"\\\\e172\\"; } }\\n.glyphicon-floppy-saved { &:before { content: \\"\\\\e173\\"; } }\\n.glyphicon-floppy-remove { &:before { content: \\"\\\\e174\\"; } }\\n.glyphicon-floppy-save { &:before { content: \\"\\\\e175\\"; } }\\n.glyphicon-floppy-open { &:before { content: \\"\\\\e176\\"; } }\\n.glyphicon-credit-card { &:before { content: \\"\\\\e177\\"; } }\\n.glyphicon-transfer { &:before { content: \\"\\\\e178\\"; } }\\n.glyphicon-cutlery { &:before { content: \\"\\\\e179\\"; } }\\n.glyphicon-header { &:before { content: \\"\\\\e180\\"; } }\\n.glyphicon-compressed { &:before { content: \\"\\\\e181\\"; } }\\n.glyphicon-earphone { &:before { content: \\"\\\\e182\\"; } }\\n.glyphicon-phone-alt { &:before { content: \\"\\\\e183\\"; } }\\n.glyphicon-tower { &:before { content: \\"\\\\e184\\"; } }\\n.glyphicon-stats { &:before { content: \\"\\\\e185\\"; } }\\n.glyphicon-sd-video { &:before { content: \\"\\\\e186\\"; } }\\n.glyphicon-hd-video { &:before { content: \\"\\\\e187\\"; } }\\n.glyphicon-subtitles { &:before { content: \\"\\\\e188\\"; } }\\n.glyphicon-sound-stereo { &:before { content: \\"\\\\e189\\"; } }\\n.glyphicon-sound-dolby { &:before { content: \\"\\\\e190\\"; } }\\n.glyphicon-sound-5-1 { &:before { content: \\"\\\\e191\\"; } }\\n.glyphicon-sound-6-1 { &:before { content: \\"\\\\e192\\"; } }\\n.glyphicon-sound-7-1 { &:before { content: \\"\\\\e193\\"; } }\\n.glyphicon-copyright-mark { &:before { content: \\"\\\\e194\\"; } }\\n.glyphicon-registration-mark { &:before { content: \\"\\\\e195\\"; } }\\n.glyphicon-cloud-download { &:before { content: \\"\\\\e197\\"; } }\\n.glyphicon-cloud-upload { &:before { content: \\"\\\\e198\\"; } }\\n.glyphicon-tree-conifer { &:before { content: \\"\\\\e199\\"; } }\\n.glyphicon-tree-deciduous { &:before { content: \\"\\\\e200\\"; } }\\n.glyphicon-cd { &:before { content: \\"\\\\e201\\"; } }\\n.glyphicon-save-file { &:before { content: \\"\\\\e202\\"; } }\\n.glyphicon-open-file { &:before { content: \\"\\\\e203\\"; } }\\n.glyphicon-level-up { &:before { content: \\"\\\\e204\\"; } }\\n.glyphicon-copy { &:before { content: \\"\\\\e205\\"; } }\\n.glyphicon-paste { &:before { content: \\"\\\\e206\\"; } }\\n// The following 2 Glyphicons are omitted for the time being because\\n// they currently use Unicode codepoints that are outside the\\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can\'t handle\\n// non-BMP codepoints in CSS string escapes, and thus can\'t display these two icons.\\n// Notably, the bug affects some older versions of the Android Browser.\\n// More info: https://github.com/twbs/bootstrap/issues/10106\\n// .glyphicon-door { &:before { content: \\"\\\\1f6aa\\"; } }\\n// .glyphicon-key { &:before { content: \\"\\\\1f511\\"; } }\\n.glyphicon-alert { &:before { content: \\"\\\\e209\\"; } }\\n.glyphicon-equalizer { &:before { content: \\"\\\\e210\\"; } }\\n.glyphicon-king { &:before { content: \\"\\\\e211\\"; } }\\n.glyphicon-queen { &:before { content: \\"\\\\e212\\"; } }\\n.glyphicon-pawn { &:before { content: \\"\\\\e213\\"; } }\\n.glyphicon-bishop { &:before { content: \\"\\\\e214\\"; } }\\n.glyphicon-knight { &:before { content: \\"\\\\e215\\"; } }\\n.glyphicon-baby-formula { &:before { content: \\"\\\\e216\\"; } }\\n.glyphicon-tent { &:before { content: \\"\\\\26fa\\"; } }\\n.glyphicon-blackboard { &:before { content: \\"\\\\e218\\"; } }\\n.glyphicon-bed { &:before { content: \\"\\\\e219\\"; } }\\n.glyphicon-apple { &:before { content: \\"\\\\f8ff\\"; } }\\n.glyphicon-erase { &:before { content: \\"\\\\e221\\"; } }\\n.glyphicon-hourglass { &:before { content: \\"\\\\231b\\"; } }\\n.glyphicon-lamp { &:before { content: \\"\\\\e223\\"; } }\\n.glyphicon-duplicate { &:before { content: \\"\\\\e224\\"; } }\\n.glyphicon-piggy-bank { &:before { content: \\"\\\\e225\\"; } }\\n.glyphicon-scissors { &:before { content: \\"\\\\e226\\"; } }\\n.glyphicon-bitcoin { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-btc { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-xbt { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-yen { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-jpy { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-ruble { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-rub { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-scale { &:before { content: \\"\\\\e230\\"; } }\\n.glyphicon-ice-lolly { &:before { content: \\"\\\\e231\\"; } }\\n.glyphicon-ice-lolly-tasted { &:before { content: \\"\\\\e232\\"; } }\\n.glyphicon-education { &:before { content: \\"\\\\e233\\"; } }\\n.glyphicon-option-horizontal { &:before { content: \\"\\\\e234\\"; } }\\n.glyphicon-option-vertical { &:before { content: \\"\\\\e235\\"; } }\\n.glyphicon-menu-hamburger { &:before { content: \\"\\\\e236\\"; } }\\n.glyphicon-modal-window { &:before { content: \\"\\\\e237\\"; } }\\n.glyphicon-oil { &:before { content: \\"\\\\e238\\"; } }\\n.glyphicon-grain { &:before { content: \\"\\\\e239\\"; } }\\n.glyphicon-sunglasses { &:before { content: \\"\\\\e240\\"; } }\\n.glyphicon-text-size { &:before { content: \\"\\\\e241\\"; } }\\n.glyphicon-text-color { &:before { content: \\"\\\\e242\\"; } }\\n.glyphicon-text-background { &:before { content: \\"\\\\e243\\"; } }\\n.glyphicon-object-align-top { &:before { content: \\"\\\\e244\\"; } }\\n.glyphicon-object-align-bottom { &:before { content: \\"\\\\e245\\"; } }\\n.glyphicon-object-align-horizontal{ &:before { content: \\"\\\\e246\\"; } }\\n.glyphicon-object-align-left { &:before { content: \\"\\\\e247\\"; } }\\n.glyphicon-object-align-vertical { &:before { content: \\"\\\\e248\\"; } }\\n.glyphicon-object-align-right { &:before { content: \\"\\\\e249\\"; } }\\n.glyphicon-triangle-right { &:before { content: \\"\\\\e250\\"; } }\\n.glyphicon-triangle-left { &:before { content: \\"\\\\e251\\"; } }\\n.glyphicon-triangle-bottom { &:before { content: \\"\\\\e252\\"; } }\\n.glyphicon-triangle-top { &:before { content: \\"\\\\e253\\"; } }\\n.glyphicon-console { &:before { content: \\"\\\\e254\\"; } }\\n.glyphicon-superscript { &:before { content: \\"\\\\e255\\"; } }\\n.glyphicon-subscript { &:before { content: \\"\\\\e256\\"; } }\\n.glyphicon-menu-left { &:before { content: \\"\\\\e257\\"; } }\\n.glyphicon-menu-right { &:before { content: \\"\\\\e258\\"; } }\\n.glyphicon-menu-down { &:before { content: \\"\\\\e259\\"; } }\\n.glyphicon-menu-up { &:before { content: \\"\\\\e260\\"; } }\\n"]}\n\\ No newline at end of file\n+{"version":3,"sources":["src/plone.staticresources/src/plone/staticresources/static/components/bootstrap/less/glyphicons.less"],"names":[],"mappings":"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","sourcesContent":["// stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword\\n\\n//\\n// Glyphicons for Bootstrap\\n//\\n// Since icons are fonts, they can be placed anywhere text is placed and are\\n// thus automatically sized to match the surrounding child. To use, create an\\n// inline element with the appropriate classes, like so:\\n//\\n// Star\\n\\n// Import the fonts\\n@font-face {\\n font-family: \\"Glyphicons Halflings\\";\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot\\");\\n src: url(\\"@{icon-font-path}@{icon-font-name}.eot?#iefix\\") format(\\"embedded-opentype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff2\\") format(\\"woff2\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.woff\\") format(\\"woff\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.ttf\\") format(\\"truetype\\"),\\n url(\\"@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}\\") format(\\"svg\\");\\n}\\n\\n// Catchall baseclass\\n.glyphicon {\\n position: relative;\\n top: 1px;\\n display: inline-block;\\n font-family: \\"Glyphicons Halflings\\";\\n font-style: normal;\\n font-weight: 400;\\n line-height: 1;\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n}\\n\\n// Individual icons\\n.glyphicon-asterisk { &:before { content: \\"\\\\002a\\"; } }\\n.glyphicon-plus { &:before { content: \\"\\\\002b\\"; } }\\n.glyphicon-euro,\\n.glyphicon-eur { &:before { content: \\"\\\\20ac\\"; } }\\n.glyphicon-minus { &:before { content: \\"\\\\2212\\"; } }\\n.glyphicon-cloud { &:before { content: \\"\\\\2601\\"; } }\\n.glyphicon-envelope { &:before { content: \\"\\\\2709\\"; } }\\n.glyphicon-pencil { &:before { content: \\"\\\\270f\\"; } }\\n.glyphicon-glass { &:before { content: \\"\\\\e001\\"; } }\\n.glyphicon-music { &:before { content: \\"\\\\e002\\"; } }\\n.glyphicon-search { &:before { content: \\"\\\\e003\\"; } }\\n.glyphicon-heart { &:before { content: \\"\\\\e005\\"; } }\\n.glyphicon-star { &:before { content: \\"\\\\e006\\"; } }\\n.glyphicon-star-empty { &:before { content: \\"\\\\e007\\"; } }\\n.glyphicon-user { &:before { content: \\"\\\\e008\\"; } }\\n.glyphicon-film { &:before { content: \\"\\\\e009\\"; } }\\n.glyphicon-th-large { &:before { content: \\"\\\\e010\\"; } }\\n.glyphicon-th { &:before { content: \\"\\\\e011\\"; } }\\n.glyphicon-th-list { &:before { content: \\"\\\\e012\\"; } }\\n.glyphicon-ok { &:before { content: \\"\\\\e013\\"; } }\\n.glyphicon-remove { &:before { content: \\"\\\\e014\\"; } }\\n.glyphicon-zoom-in { &:before { content: \\"\\\\e015\\"; } }\\n.glyphicon-zoom-out { &:before { content: \\"\\\\e016\\"; } }\\n.glyphicon-off { &:before { content: \\"\\\\e017\\"; } }\\n.glyphicon-signal { &:before { content: \\"\\\\e018\\"; } }\\n.glyphicon-cog { &:before { content: \\"\\\\e019\\"; } }\\n.glyphicon-trash { &:before { content: \\"\\\\e020\\"; } }\\n.glyphicon-home { &:before { content: \\"\\\\e021\\"; } }\\n.glyphicon-file { &:before { content: \\"\\\\e022\\"; } }\\n.glyphicon-time { &:before { content: \\"\\\\e023\\"; } }\\n.glyphicon-road { &:before { content: \\"\\\\e024\\"; } }\\n.glyphicon-download-alt { &:before { content: \\"\\\\e025\\"; } }\\n.glyphicon-download { &:before { content: \\"\\\\e026\\"; } }\\n.glyphicon-upload { &:before { content: \\"\\\\e027\\"; } }\\n.glyphicon-inbox { &:before { content: \\"\\\\e028\\"; } }\\n.glyphicon-play-circle { &:before { content: \\"\\\\e029\\"; } }\\n.glyphicon-repeat { &:before { content: \\"\\\\e030\\"; } }\\n.glyphicon-refresh { &:before { content: \\"\\\\e031\\"; } }\\n.glyphicon-list-alt { &:before { content: \\"\\\\e032\\"; } }\\n.glyphicon-lock { &:before { content: \\"\\\\e033\\"; } }\\n.glyphicon-flag { &:before { content: \\"\\\\e034\\"; } }\\n.glyphicon-headphones { &:before { content: \\"\\\\e035\\"; } }\\n.glyphicon-volume-off { &:before { content: \\"\\\\e036\\"; } }\\n.glyphicon-volume-down { &:before { content: \\"\\\\e037\\"; } }\\n.glyphicon-volume-up { &:before { content: \\"\\\\e038\\"; } }\\n.glyphicon-qrcode { &:before { content: \\"\\\\e039\\"; } }\\n.glyphicon-barcode { &:before { content: \\"\\\\e040\\"; } }\\n.glyphicon-tag { &:before { content: \\"\\\\e041\\"; } }\\n.glyphicon-tags { &:before { content: \\"\\\\e042\\"; } }\\n.glyphicon-book { &:before { content: \\"\\\\e043\\"; } }\\n.glyphicon-bookmark { &:before { content: \\"\\\\e044\\"; } }\\n.glyphicon-print { &:before { content: \\"\\\\e045\\"; } }\\n.glyphicon-camera { &:before { content: \\"\\\\e046\\"; } }\\n.glyphicon-font { &:before { content: \\"\\\\e047\\"; } }\\n.glyphicon-bold { &:before { content: \\"\\\\e048\\"; } }\\n.glyphicon-italic { &:before { content: \\"\\\\e049\\"; } }\\n.glyphicon-text-height { &:before { content: \\"\\\\e050\\"; } }\\n.glyphicon-text-width { &:before { content: \\"\\\\e051\\"; } }\\n.glyphicon-align-left { &:before { content: \\"\\\\e052\\"; } }\\n.glyphicon-align-center { &:before { content: \\"\\\\e053\\"; } }\\n.glyphicon-align-right { &:before { content: \\"\\\\e054\\"; } }\\n.glyphicon-align-justify { &:before { content: \\"\\\\e055\\"; } }\\n.glyphicon-list { &:before { content: \\"\\\\e056\\"; } }\\n.glyphicon-indent-left { &:before { content: \\"\\\\e057\\"; } }\\n.glyphicon-indent-right { &:before { content: \\"\\\\e058\\"; } }\\n.glyphicon-facetime-video { &:before { content: \\"\\\\e059\\"; } }\\n.glyphicon-picture { &:before { content: \\"\\\\e060\\"; } }\\n.glyphicon-map-marker { &:before { content: \\"\\\\e062\\"; } }\\n.glyphicon-adjust { &:before { content: \\"\\\\e063\\"; } }\\n.glyphicon-tint { &:before { content: \\"\\\\e064\\"; } }\\n.glyphicon-edit { &:before { content: \\"\\\\e065\\"; } }\\n.glyphicon-share { &:before { content: \\"\\\\e066\\"; } }\\n.glyphicon-check { &:before { content: \\"\\\\e067\\"; } }\\n.glyphicon-move { &:before { content: \\"\\\\e068\\"; } }\\n.glyphicon-step-backward { &:before { content: \\"\\\\e069\\"; } }\\n.glyphicon-fast-backward { &:before { content: \\"\\\\e070\\"; } }\\n.glyphicon-backward { &:before { content: \\"\\\\e071\\"; } }\\n.glyphicon-play { &:before { content: \\"\\\\e072\\"; } }\\n.glyphicon-pause { &:before { content: \\"\\\\e073\\"; } }\\n.glyphicon-stop { &:before { content: \\"\\\\e074\\"; } }\\n.glyphicon-forward { &:before { content: \\"\\\\e075\\"; } }\\n.glyphicon-fast-forward { &:before { content: \\"\\\\e076\\"; } }\\n.glyphicon-step-forward { &:before { content: \\"\\\\e077\\"; } }\\n.glyphicon-eject { &:before { content: \\"\\\\e078\\"; } }\\n.glyphicon-chevron-left { &:before { content: \\"\\\\e079\\"; } }\\n.glyphicon-chevron-right { &:before { content: \\"\\\\e080\\"; } }\\n.glyphicon-plus-sign { &:before { content: \\"\\\\e081\\"; } }\\n.glyphicon-minus-sign { &:before { content: \\"\\\\e082\\"; } }\\n.glyphicon-remove-sign { &:before { content: \\"\\\\e083\\"; } }\\n.glyphicon-ok-sign { &:before { content: \\"\\\\e084\\"; } }\\n.glyphicon-question-sign { &:before { content: \\"\\\\e085\\"; } }\\n.glyphicon-info-sign { &:before { content: \\"\\\\e086\\"; } }\\n.glyphicon-screenshot { &:before { content: \\"\\\\e087\\"; } }\\n.glyphicon-remove-circle { &:before { content: \\"\\\\e088\\"; } }\\n.glyphicon-ok-circle { &:before { content: \\"\\\\e089\\"; } }\\n.glyphicon-ban-circle { &:before { content: \\"\\\\e090\\"; } }\\n.glyphicon-arrow-left { &:before { content: \\"\\\\e091\\"; } }\\n.glyphicon-arrow-right { &:before { content: \\"\\\\e092\\"; } }\\n.glyphicon-arrow-up { &:before { content: \\"\\\\e093\\"; } }\\n.glyphicon-arrow-down { &:before { content: \\"\\\\e094\\"; } }\\n.glyphicon-share-alt { &:before { content: \\"\\\\e095\\"; } }\\n.glyphicon-resize-full { &:before { content: \\"\\\\e096\\"; } }\\n.glyphicon-resize-small { &:before { content: \\"\\\\e097\\"; } }\\n.glyphicon-exclamation-sign { &:before { content: \\"\\\\e101\\"; } }\\n.glyphicon-gift { &:before { content: \\"\\\\e102\\"; } }\\n.glyphicon-leaf { &:before { content: \\"\\\\e103\\"; } }\\n.glyphicon-fire { &:before { content: \\"\\\\e104\\"; } }\\n.glyphicon-eye-open { &:before { content: \\"\\\\e105\\"; } }\\n.glyphicon-eye-close { &:before { content: \\"\\\\e106\\"; } }\\n.glyphicon-warning-sign { &:before { content: \\"\\\\e107\\"; } }\\n.glyphicon-plane { &:before { content: \\"\\\\e108\\"; } }\\n.glyphicon-calendar { &:before { content: \\"\\\\e109\\"; } }\\n.glyphicon-random { &:before { content: \\"\\\\e110\\"; } }\\n.glyphicon-comment { &:before { content: \\"\\\\e111\\"; } }\\n.glyphicon-magnet { &:before { content: \\"\\\\e112\\"; } }\\n.glyphicon-chevron-up { &:before { content: \\"\\\\e113\\"; } }\\n.glyphicon-chevron-down { &:before { content: \\"\\\\e114\\"; } }\\n.glyphicon-retweet { &:before { content: \\"\\\\e115\\"; } }\\n.glyphicon-shopping-cart { &:before { content: \\"\\\\e116\\"; } }\\n.glyphicon-folder-close { &:before { content: \\"\\\\e117\\"; } }\\n.glyphicon-folder-open { &:before { content: \\"\\\\e118\\"; } }\\n.glyphicon-resize-vertical { &:before { content: \\"\\\\e119\\"; } }\\n.glyphicon-resize-horizontal { &:before { content: \\"\\\\e120\\"; } }\\n.glyphicon-hdd { &:before { content: \\"\\\\e121\\"; } }\\n.glyphicon-bullhorn { &:before { content: \\"\\\\e122\\"; } }\\n.glyphicon-bell { &:before { content: \\"\\\\e123\\"; } }\\n.glyphicon-certificate { &:before { content: \\"\\\\e124\\"; } }\\n.glyphicon-thumbs-up { &:before { content: \\"\\\\e125\\"; } }\\n.glyphicon-thumbs-down { &:before { content: \\"\\\\e126\\"; } }\\n.glyphicon-hand-right { &:before { content: \\"\\\\e127\\"; } }\\n.glyphicon-hand-left { &:before { content: \\"\\\\e128\\"; } }\\n.glyphicon-hand-up { &:before { content: \\"\\\\e129\\"; } }\\n.glyphicon-hand-down { &:before { content: \\"\\\\e130\\"; } }\\n.glyphicon-circle-arrow-right { &:before { content: \\"\\\\e131\\"; } }\\n.glyphicon-circle-arrow-left { &:before { content: \\"\\\\e132\\"; } }\\n.glyphicon-circle-arrow-up { &:before { content: \\"\\\\e133\\"; } }\\n.glyphicon-circle-arrow-down { &:before { content: \\"\\\\e134\\"; } }\\n.glyphicon-globe { &:before { content: \\"\\\\e135\\"; } }\\n.glyphicon-wrench { &:before { content: \\"\\\\e136\\"; } }\\n.glyphicon-tasks { &:before { content: \\"\\\\e137\\"; } }\\n.glyphicon-filter { &:before { content: \\"\\\\e138\\"; } }\\n.glyphicon-briefcase { &:before { content: \\"\\\\e139\\"; } }\\n.glyphicon-fullscreen { &:before { content: \\"\\\\e140\\"; } }\\n.glyphicon-dashboard { &:before { content: \\"\\\\e141\\"; } }\\n.glyphicon-paperclip { &:before { content: \\"\\\\e142\\"; } }\\n.glyphicon-heart-empty { &:before { content: \\"\\\\e143\\"; } }\\n.glyphicon-link { &:before { content: \\"\\\\e144\\"; } }\\n.glyphicon-phone { &:before { content: \\"\\\\e145\\"; } }\\n.glyphicon-pushpin { &:before { content: \\"\\\\e146\\"; } }\\n.glyphicon-usd { &:before { content: \\"\\\\e148\\"; } }\\n.glyphicon-gbp { &:before { content: \\"\\\\e149\\"; } }\\n.glyphicon-sort { &:before { content: \\"\\\\e150\\"; } }\\n.glyphicon-sort-by-alphabet { &:before { content: \\"\\\\e151\\"; } }\\n.glyphicon-sort-by-alphabet-alt { &:before { content: \\"\\\\e152\\"; } }\\n.glyphicon-sort-by-order { &:before { content: \\"\\\\e153\\"; } }\\n.glyphicon-sort-by-order-alt { &:before { content: \\"\\\\e154\\"; } }\\n.glyphicon-sort-by-attributes { &:before { content: \\"\\\\e155\\"; } }\\n.glyphicon-sort-by-attributes-alt { &:before { content: \\"\\\\e156\\"; } }\\n.glyphicon-unchecked { &:before { content: \\"\\\\e157\\"; } }\\n.glyphicon-expand { &:before { content: \\"\\\\e158\\"; } }\\n.glyphicon-collapse-down { &:before { content: \\"\\\\e159\\"; } }\\n.glyphicon-collapse-up { &:before { content: \\"\\\\e160\\"; } }\\n.glyphicon-log-in { &:before { content: \\"\\\\e161\\"; } }\\n.glyphicon-flash { &:before { content: \\"\\\\e162\\"; } }\\n.glyphicon-log-out { &:before { content: \\"\\\\e163\\"; } }\\n.glyphicon-new-window { &:before { content: \\"\\\\e164\\"; } }\\n.glyphicon-record { &:before { content: \\"\\\\e165\\"; } }\\n.glyphicon-save { &:before { content: \\"\\\\e166\\"; } }\\n.glyphicon-open { &:before { content: \\"\\\\e167\\"; } }\\n.glyphicon-saved { &:before { content: \\"\\\\e168\\"; } }\\n.glyphicon-import { &:before { content: \\"\\\\e169\\"; } }\\n.glyphicon-export { &:before { content: \\"\\\\e170\\"; } }\\n.glyphicon-send { &:before { content: \\"\\\\e171\\"; } }\\n.glyphicon-floppy-disk { &:before { content: \\"\\\\e172\\"; } }\\n.glyphicon-floppy-saved { &:before { content: \\"\\\\e173\\"; } }\\n.glyphicon-floppy-remove { &:before { content: \\"\\\\e174\\"; } }\\n.glyphicon-floppy-save { &:before { content: \\"\\\\e175\\"; } }\\n.glyphicon-floppy-open { &:before { content: \\"\\\\e176\\"; } }\\n.glyphicon-credit-card { &:before { content: \\"\\\\e177\\"; } }\\n.glyphicon-transfer { &:before { content: \\"\\\\e178\\"; } }\\n.glyphicon-cutlery { &:before { content: \\"\\\\e179\\"; } }\\n.glyphicon-header { &:before { content: \\"\\\\e180\\"; } }\\n.glyphicon-compressed { &:before { content: \\"\\\\e181\\"; } }\\n.glyphicon-earphone { &:before { content: \\"\\\\e182\\"; } }\\n.glyphicon-phone-alt { &:before { content: \\"\\\\e183\\"; } }\\n.glyphicon-tower { &:before { content: \\"\\\\e184\\"; } }\\n.glyphicon-stats { &:before { content: \\"\\\\e185\\"; } }\\n.glyphicon-sd-video { &:before { content: \\"\\\\e186\\"; } }\\n.glyphicon-hd-video { &:before { content: \\"\\\\e187\\"; } }\\n.glyphicon-subtitles { &:before { content: \\"\\\\e188\\"; } }\\n.glyphicon-sound-stereo { &:before { content: \\"\\\\e189\\"; } }\\n.glyphicon-sound-dolby { &:before { content: \\"\\\\e190\\"; } }\\n.glyphicon-sound-5-1 { &:before { content: \\"\\\\e191\\"; } }\\n.glyphicon-sound-6-1 { &:before { content: \\"\\\\e192\\"; } }\\n.glyphicon-sound-7-1 { &:before { content: \\"\\\\e193\\"; } }\\n.glyphicon-copyright-mark { &:before { content: \\"\\\\e194\\"; } }\\n.glyphicon-registration-mark { &:before { content: \\"\\\\e195\\"; } }\\n.glyphicon-cloud-download { &:before { content: \\"\\\\e197\\"; } }\\n.glyphicon-cloud-upload { &:before { content: \\"\\\\e198\\"; } }\\n.glyphicon-tree-conifer { &:before { content: \\"\\\\e199\\"; } }\\n.glyphicon-tree-deciduous { &:before { content: \\"\\\\e200\\"; } }\\n.glyphicon-cd { &:before { content: \\"\\\\e201\\"; } }\\n.glyphicon-save-file { &:before { content: \\"\\\\e202\\"; } }\\n.glyphicon-open-file { &:before { content: \\"\\\\e203\\"; } }\\n.glyphicon-level-up { &:before { content: \\"\\\\e204\\"; } }\\n.glyphicon-copy { &:before { content: \\"\\\\e205\\"; } }\\n.glyphicon-paste { &:before { content: \\"\\\\e206\\"; } }\\n// The following 2 Glyphicons are omitted for the time being because\\n// they currently use Unicode codepoints that are outside the\\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can\'t handle\\n// non-BMP codepoints in CSS string escapes, and thus can\'t display these two icons.\\n// Notably, the bug affects some older versions of the Android Browser.\\n// More info: https://github.com/twbs/bootstrap/issues/10106\\n// .glyphicon-door { &:before { content: \\"\\\\1f6aa\\"; } }\\n// .glyphicon-key { &:before { content: \\"\\\\1f511\\"; } }\\n.glyphicon-alert { &:before { content: \\"\\\\e209\\"; } }\\n.glyphicon-equalizer { &:before { content: \\"\\\\e210\\"; } }\\n.glyphicon-king { &:before { content: \\"\\\\e211\\"; } }\\n.glyphicon-queen { &:before { content: \\"\\\\e212\\"; } }\\n.glyphicon-pawn { &:before { content: \\"\\\\e213\\"; } }\\n.glyphicon-bishop { &:before { content: \\"\\\\e214\\"; } }\\n.glyphicon-knight { &:before { content: \\"\\\\e215\\"; } }\\n.glyphicon-baby-formula { &:before { content: \\"\\\\e216\\"; } }\\n.glyphicon-tent { &:before { content: \\"\\\\26fa\\"; } }\\n.glyphicon-blackboard { &:before { content: \\"\\\\e218\\"; } }\\n.glyphicon-bed { &:before { content: \\"\\\\e219\\"; } }\\n.glyphicon-apple { &:before { content: \\"\\\\f8ff\\"; } }\\n.glyphicon-erase { &:before { content: \\"\\\\e221\\"; } }\\n.glyphicon-hourglass { &:before { content: \\"\\\\231b\\"; } }\\n.glyphicon-lamp { &:before { content: \\"\\\\e223\\"; } }\\n.glyphicon-duplicate { &:before { content: \\"\\\\e224\\"; } }\\n.glyphicon-piggy-bank { &:before { content: \\"\\\\e225\\"; } }\\n.glyphicon-scissors { &:before { content: \\"\\\\e226\\"; } }\\n.glyphicon-bitcoin { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-btc { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-xbt { &:before { content: \\"\\\\e227\\"; } }\\n.glyphicon-yen { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-jpy { &:before { content: \\"\\\\00a5\\"; } }\\n.glyphicon-ruble { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-rub { &:before { content: \\"\\\\20bd\\"; } }\\n.glyphicon-scale { &:before { content: \\"\\\\e230\\"; } }\\n.glyphicon-ice-lolly { &:before { content: \\"\\\\e231\\"; } }\\n.glyphicon-ice-lolly-tasted { &:before { content: \\"\\\\e232\\"; } }\\n.glyphicon-education { &:before { content: \\"\\\\e233\\"; } }\\n.glyphicon-option-horizontal { &:before { content: \\"\\\\e234\\"; } }\\n.glyphicon-option-vertical { &:before { content: \\"\\\\e235\\"; } }\\n.glyphicon-menu-hamburger { &:before { content: \\"\\\\e236\\"; } }\\n.glyphicon-modal-window { &:before { content: \\"\\\\e237\\"; } }\\n.glyphicon-oil { &:before { content: \\"\\\\e238\\"; } }\\n.glyphicon-grain { &:before { content: \\"\\\\e239\\"; } }\\n.glyphicon-sunglasses { &:before { content: \\"\\\\e240\\"; } }\\n.glyphicon-text-size { &:before { content: \\"\\\\e241\\"; } }\\n.glyphicon-text-color { &:before { content: \\"\\\\e242\\"; } }\\n.glyphicon-text-background { &:before { content: \\"\\\\e243\\"; } }\\n.glyphicon-object-align-top { &:before { content: \\"\\\\e244\\"; } }\\n.glyphicon-object-align-bottom { &:before { content: \\"\\\\e245\\"; } }\\n.glyphicon-object-align-horizontal{ &:before { content: \\"\\\\e246\\"; } }\\n.glyphicon-object-align-left { &:before { content: \\"\\\\e247\\"; } }\\n.glyphicon-object-align-vertical { &:before { content: \\"\\\\e248\\"; } }\\n.glyphicon-object-align-right { &:before { content: \\"\\\\e249\\"; } }\\n.glyphicon-triangle-right { &:before { content: \\"\\\\e250\\"; } }\\n.glyphicon-triangle-left { &:before { content: \\"\\\\e251\\"; } }\\n.glyphicon-triangle-bottom { &:before { content: \\"\\\\e252\\"; } }\\n.glyphicon-triangle-top { &:before { content: \\"\\\\e253\\"; } }\\n.glyphicon-console { &:before { content: \\"\\\\e254\\"; } }\\n.glyphicon-superscript { &:before { content: \\"\\\\e255\\"; } }\\n.glyphicon-subscript { &:before { content: \\"\\\\e256\\"; } }\\n.glyphicon-menu-left { &:before { content: \\"\\\\e257\\"; } }\\n.glyphicon-menu-right { &:before { content: \\"\\\\e258\\"; } }\\n.glyphicon-menu-down { &:before { content: \\"\\\\e259\\"; } }\\n.glyphicon-menu-up { &:before { content: \\"\\\\e260\\"; } }\\n"]}\n\\ No newline at end of file\ndiff --git a/src/plone/staticresources/static/plone-glyphicons.less b/src/plone/staticresources/static/plone-glyphicons.less\nindex cca9c0941..e1db922a6 100644\n--- a/src/plone/staticresources/static/plone-glyphicons.less\n+++ b/src/plone/staticresources/static/plone-glyphicons.less\n@@ -1,4 +1,4 @@\n @import "@{bowerPath}/bootstrap/less/variables.less"; // Modify this for custom colors, font-sizes, etc\n @import "@{bowerPath}/bootstrap/less/glyphicons.less";\n // this override only works because of modifyVarsNoEmbed is used in generated Gruntfile.js\n-@icon-font-path: "/++plone++static/fonts/";\n+@icon-font-path: "fonts/";\ndiff --git a/src/plone/staticresources/upgrades/17.zcml b/src/plone/staticresources/upgrades/17.zcml\nnew file mode 100644\nindex 000000000..c7be14dc9\n--- /dev/null\n+++ b/src/plone/staticresources/upgrades/17.zcml\n@@ -0,0 +1,28 @@\n+\n+\n+ \n+\n+ \n+\n+ \n+\n+ \n+\n+ \n+\n+\ndiff --git a/src/plone/staticresources/upgrades/configure.zcml b/src/plone/staticresources/upgrades/configure.zcml\nindex 347dd4946..170d2937b 100644\n--- a/src/plone/staticresources/upgrades/configure.zcml\n+++ b/src/plone/staticresources/upgrades/configure.zcml\n@@ -17,5 +17,6 @@\n \n \n \n+ \n \n \ndiff --git a/src/plone/staticresources/upgrades/profiles/17/registry.xml b/src/plone/staticresources/upgrades/profiles/17/registry.xml\nnew file mode 100644\nindex 000000000..e353c0603\n--- /dev/null\n+++ b/src/plone/staticresources/upgrades/profiles/17/registry.xml\n@@ -0,0 +1,14 @@\n+\n+\n+\n+ \n+ \n+ \n+\n+ \n+ \n+ \n+\n+\n'