@widgetic/editor 3.11.4 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +245 -0
- package/dist/assets/fonts.json +331 -0
- package/dist/assets/icons/ic-browser/audio.svg +7 -0
- package/dist/assets/icons/ic-browser/document.svg +11 -0
- package/dist/assets/icons/ic-browser/error.svg +5 -0
- package/dist/assets/icons/ic-browser/folder.svg +28 -0
- package/dist/assets/icons/ic-browser/player-pause.svg +1 -0
- package/dist/assets/icons/ic-browser/player-play.svg +1 -0
- package/dist/assets/icons/ic-browser/trash.svg +1 -0
- package/dist/assets/icons/ic-fixed-position/background-deselected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/background-selected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/bottom-left-background-deselected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/bottom-left-background-selected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/bottom-left-icon.svg +4 -0
- package/dist/assets/icons/ic-fixed-position/bottom-right-background-deselected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/bottom-right-background-selected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/bottom-right-icon.svg +4 -0
- package/dist/assets/icons/ic-fixed-position/center-bottom-icon.svg +5 -0
- package/dist/assets/icons/ic-fixed-position/center-center-icon.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/center-left-icon.svg +5 -0
- package/dist/assets/icons/ic-fixed-position/center-right-icon.svg +5 -0
- package/dist/assets/icons/ic-fixed-position/center-top-icon.svg +5 -0
- package/dist/assets/icons/ic-fixed-position/top-left-background-deselected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/top-left-background-selected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/top-left-icon.svg +4 -0
- package/dist/assets/icons/ic-fixed-position/top-right-background-deselected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/top-right-background-selected.svg +3 -0
- package/dist/assets/icons/ic-fixed-position/top-right-icon.svg +4 -0
- package/dist/assets/icons/trash.svg +1 -0
- package/dist/components/MockWidget.svelte +108 -0
- package/dist/components/MockWidget.svelte.d.ts +22 -0
- package/dist/components/WidgetPreview.svelte +852 -0
- package/dist/components/WidgetPreview.svelte.d.ts +100 -0
- package/dist/components/color-select/ColorSelect.svelte +258 -0
- package/dist/components/color-select/ColorSelect.svelte.d.ts +42 -0
- package/dist/components/color-select/color.d.ts +25 -0
- package/dist/components/color-select/color.js +21 -0
- package/dist/components/color-select/constants.d.ts +5 -0
- package/dist/components/color-select/constants.js +5 -0
- package/dist/components/color-select/render.d.ts +5 -0
- package/dist/components/color-select/render.js +77 -0
- package/dist/components/color-select/shaders.d.ts +3 -0
- package/dist/components/color-select/shaders.js +8 -0
- package/dist/components/editors/EmbedEditor.svelte +700 -0
- package/dist/components/editors/EmbedEditor.svelte.d.ts +50 -0
- package/dist/components/editors/PropsEditor.svelte +3952 -0
- package/dist/components/editors/PropsEditor.svelte.d.ts +62 -0
- package/dist/components/editors/props-editor.css +73 -0
- package/dist/components/ic/AngleInputController.svelte +276 -0
- package/dist/components/ic/AngleInputController.svelte.d.ts +26 -0
- package/dist/components/ic/BrowserInputController.svelte +724 -0
- package/dist/components/ic/BrowserInputController.svelte.d.ts +39 -0
- package/dist/components/ic/CheckboxInputController.svelte +203 -0
- package/dist/components/ic/CheckboxInputController.svelte.d.ts +41 -0
- package/dist/components/ic/ColorPickerInputController.svelte +1584 -0
- package/dist/components/ic/ColorPickerInputController.svelte.d.ts +50 -0
- package/dist/components/ic/DateFieldInputController.svelte +453 -0
- package/dist/components/ic/DateFieldInputController.svelte.d.ts +35 -0
- package/dist/components/ic/DatePickerInputController.svelte +364 -0
- package/dist/components/ic/DatePickerInputController.svelte.d.ts +28 -0
- package/dist/components/ic/DropdownInputController.svelte +226 -0
- package/dist/components/ic/DropdownInputController.svelte.d.ts +43 -0
- package/dist/components/ic/FixedPositionInputController.svelte +353 -0
- package/dist/components/ic/FixedPositionInputController.svelte.d.ts +23 -0
- package/dist/components/ic/FontInputController.svelte +2062 -0
- package/dist/components/ic/FontInputController.svelte.d.ts +47 -0
- package/dist/components/ic/InputControllerHeader.svelte +147 -0
- package/dist/components/ic/InputControllerHeader.svelte.d.ts +23 -0
- package/dist/components/ic/NumberControls.svelte +299 -0
- package/dist/components/ic/NumberControls.svelte.d.ts +30 -0
- package/dist/components/ic/NumberInputController.svelte +397 -0
- package/dist/components/ic/NumberInputController.svelte.d.ts +30 -0
- package/dist/components/ic/PositionInputController.svelte +252 -0
- package/dist/components/ic/PositionInputController.svelte.d.ts +37 -0
- package/dist/components/ic/RadioGroupInputController.svelte +162 -0
- package/dist/components/ic/RadioGroupInputController.svelte.d.ts +38 -0
- package/dist/components/ic/RangeCalendarInputController.svelte +262 -0
- package/dist/components/ic/RangeCalendarInputController.svelte.d.ts +32 -0
- package/dist/components/ic/RoundedCornersInputController.svelte +469 -0
- package/dist/components/ic/RoundedCornersInputController.svelte.d.ts +37 -0
- package/dist/components/ic/SliderInputController.svelte +411 -0
- package/dist/components/ic/SliderInputController.svelte.d.ts +46 -0
- package/dist/components/ic/SliderRangeInputController.svelte +155 -0
- package/dist/components/ic/SliderRangeInputController.svelte.d.ts +33 -0
- package/dist/components/ic/SwitchInputController.svelte +107 -0
- package/dist/components/ic/SwitchInputController.svelte.d.ts +24 -0
- package/dist/components/ic/TagsInputController.svelte +125 -0
- package/dist/components/ic/TagsInputController.svelte.d.ts +27 -0
- package/dist/components/ic/TextAreaInputController.svelte +1804 -0
- package/dist/components/ic/TextAreaInputController.svelte.d.ts +13 -0
- package/dist/components/ic/TextAreaPreviewInputController.svelte +476 -0
- package/dist/components/ic/TextAreaPreviewInputController.svelte.d.ts +28 -0
- package/dist/components/ic/TextInputController.svelte +70 -0
- package/dist/components/ic/TextInputController.svelte.d.ts +30 -0
- package/dist/components/ic/TimeInputController.svelte +434 -0
- package/dist/components/ic/TimeInputController.svelte.d.ts +25 -0
- package/dist/components/ic/VectorInputController.svelte +1826 -0
- package/dist/components/ic/VectorInputController.svelte.d.ts +47 -0
- package/dist/components/ic/index.d.ts +39 -0
- package/dist/components/ic/index.js +24 -0
- package/dist/components/ic/shared/CategoryTabs.svelte +40 -0
- package/dist/components/ic/shared/CategoryTabs.svelte.d.ts +25 -0
- package/dist/components/ic/shared/ItemGrid.svelte +181 -0
- package/dist/components/ic/shared/ItemGrid.svelte.d.ts +35 -0
- package/dist/components/ic/shared/RecentItemsSection.svelte +260 -0
- package/dist/components/ic/shared/RecentItemsSection.svelte.d.ts +35 -0
- package/dist/components/ic/shared/index.d.ts +8 -0
- package/dist/components/ic/shared/index.js +9 -0
- package/dist/components/icons/addnew.svelte +21 -0
- package/dist/components/icons/addnew.svelte.d.ts +20 -0
- package/dist/components/icons/drag.svelte +29 -0
- package/dist/components/icons/drag.svelte.d.ts +20 -0
- package/dist/components/icons/drag.svg +1 -0
- package/dist/components/icons/locked.svelte +4 -0
- package/dist/components/icons/locked.svelte.d.ts +26 -0
- package/dist/components/icons/locked.svg +4 -0
- package/dist/components/icons/ok.svelte +20 -0
- package/dist/components/icons/ok.svelte.d.ts +20 -0
- package/dist/components/icons/ok.svg +11 -0
- package/dist/components/icons/unlocked.svelte +4 -0
- package/dist/components/icons/unlocked.svelte.d.ts +26 -0
- package/dist/components/icons/unlocked.svg +4 -0
- package/dist/components/icons/x.svelte +14 -0
- package/dist/components/icons/x.svelte.d.ts +20 -0
- package/dist/components/icons/x.svg +5 -0
- package/dist/components/ui/arrows/OpacitySliderArrows.svelte +43 -0
- package/dist/components/ui/arrows/OpacitySliderArrows.svelte.d.ts +23 -0
- package/dist/components/ui/checkerboard-background/CheckerboardBackground.svelte +15 -0
- package/dist/components/ui/checkerboard-background/CheckerboardBackground.svelte.d.ts +20 -0
- package/dist/config.d.ts +5 -0
- package/dist/config.js +19 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +8 -0
- package/dist/stores/userSession.d.ts +7 -0
- package/dist/stores/userSession.js +28 -0
- package/dist/utils/FontManager.d.ts +276 -0
- package/dist/utils/FontManager.js +1283 -0
- package/dist/utils/MediaManager.d.ts +35 -0
- package/dist/utils/MediaManager.js +59 -0
- package/dist/utils/VectorManager.d.ts +190 -0
- package/dist/utils/VectorManager.js +754 -0
- package/dist/utils/colorAutocomplete.d.ts +10 -0
- package/dist/utils/colorAutocomplete.js +28 -0
- package/dist/utils/colorNames.d.ts +3 -0
- package/dist/utils/colorNames.js +152 -0
- package/dist/utils/colorTransparency.d.ts +52 -0
- package/dist/utils/colorTransparency.js +114 -0
- package/dist/utils/fontUtils.d.ts +34 -0
- package/dist/utils/fontUtils.js +132 -0
- package/dist/utils/passiveEvents.js +20 -0
- package/dist/utils/recentColors.d.ts +10 -0
- package/dist/utils/recentColors.js +63 -0
- package/dist/utils/skipFonts.d.ts +3 -0
- package/dist/utils/skipFonts.js +49 -0
- package/dist/utils/vectorUtils.d.ts +34 -0
- package/dist/utils/vectorUtils.js +71 -0
- package/dist/utils.d.ts +11 -0
- package/dist/utils.js +38 -0
- package/package.json +134 -74
- package/.babelrc +0 -10
- package/.bowerrc +0 -4
- package/.nvmrc +0 -1
- package/Gruntfile.coffee +0 -69
- package/bower.json +0 -28
- package/css/browser/entries/activateable.styl +0 -29
- package/css/browser/entries/audio.styl +0 -39
- package/css/browser/entries/folder.styl +0 -79
- package/css/browser/entries/image.styl +0 -26
- package/css/browser/entries/index.styl +0 -66
- package/css/browser/entries/rss.styl +0 -11
- package/css/browser/entries/video.styl +0 -11
- package/css/browser/index.styl +0 -86
- package/css/browser/intent/index.styl +0 -61
- package/css/browser/nav/index.styl +0 -73
- package/css/browser/social-browser.styl +0 -23
- package/css/controls/clock.styl +0 -110
- package/css/controls/config.styl +0 -6
- package/css/controls/control-audio-details.styl +0 -63
- package/css/controls/control-audio.styl +0 -28
- package/css/controls/control-browser.styl +0 -48
- package/css/controls/control-color.styl +0 -423
- package/css/controls/control-date_time.styl +0 -191
- package/css/controls/control-dropdown.styl +0 -79
- package/css/controls/control-font.styl +0 -147
- package/css/controls/control-image-details.styl +0 -35
- package/css/controls/control-image.styl +0 -43
- package/css/controls/control-order-picker.styl +0 -29
- package/css/controls/control-position.styl +0 -390
- package/css/controls/control-range.styl +0 -68
- package/css/controls/control-scale.styl +0 -30
- package/css/controls/control-slider.styl +0 -38
- package/css/controls/control-spinner.styl +0 -39
- package/css/controls/control-textarea.styl +0 -52
- package/css/controls/control-toggle.styl +0 -34
- package/css/controls/control-url.styl +0 -32
- package/css/controls/control-video-details.styl +0 -85
- package/css/controls/control-video.styl +0 -43
- package/css/controls/general.styl +0 -98
- package/css/controls/index.styl +0 -25
- package/css/editor/colors.styl +0 -7
- package/css/editor/content/directinput.styl +0 -47
- package/css/editor/content/index.styl +0 -111
- package/css/editor/content/message.styl +0 -53
- package/css/editor/content/tabs.styl +0 -75
- package/css/editor/copied-from-old-style.styl +0 -197
- package/css/editor/details/bulk-editor.styl +0 -104
- package/css/editor/details/index.styl +0 -21
- package/css/editor/details/item.styl +0 -153
- package/css/editor/embed.styl +0 -106
- package/css/editor/footer.styl +0 -180
- package/css/editor/full-editor.styl +0 -16
- package/css/editor/index.styl +0 -124
- package/css/editor/login-popup.styl +0 -13
- package/css/editor/preview.styl +0 -257
- package/css/editor/skin/editor/index.styl +0 -54
- package/css/editor/skin/editor/tabs.styl +0 -111
- package/css/editor/skin/index.styl +0 -138
- package/css/editor/skin/popup.styl +0 -152
- package/css/editor/skin/presets/dropdown.styl +0 -61
- package/css/editor/skin/presets/index.styl +0 -86
- package/css/editor/skin/presets/list.styl +0 -244
- package/css/editor/tooltips.styl +0 -85
- package/css/fonts.styl +0 -47
- package/css/icons/BlogvioEditor.dev.svg +0 -112
- package/css/icons.styl +0 -16
- package/css/img/arrow-right-rounded-v-small.png +0 -0
- package/css/img/browser-folder-separator.png +0 -0
- package/css/img/calendar-input-icons.png +0 -0
- package/css/img/check.png +0 -0
- package/css/img/close.png +0 -0
- package/css/img/composition/edit-icon.png +0 -0
- package/css/img/content/audio-icon.png +0 -0
- package/css/img/content/folder-icon.png +0 -0
- package/css/img/content/messages/error-background.png +0 -0
- package/css/img/content/messages/error-icon.png +0 -0
- package/css/img/content/messages/notification-background.png +0 -0
- package/css/img/content/messages/notification-icon.png +0 -0
- package/css/img/content/no-files-audio.png +0 -0
- package/css/img/content/no-files-image.png +0 -0
- package/css/img/content/no-files-video.png +0 -0
- package/css/img/content/no-files.png +0 -0
- package/css/img/content/rss-icon.png +0 -0
- package/css/img/content/selected.png +0 -0
- package/css/img/content/video-icon.png +0 -0
- package/css/img/content/with-control-text.png +0 -0
- package/css/img/control-dropdown-arrow.png +0 -0
- package/css/img/control-image-valid.png +0 -0
- package/css/img/control-position-icon.png +0 -0
- package/css/img/control-scale-lock-icon.png +0 -0
- package/css/img/control-slider-arrows-hover.png +0 -0
- package/css/img/control-slider-arrows.png +0 -0
- package/css/img/control-spinner-buttons-hover.png +0 -0
- package/css/img/control-spinner-buttons.png +0 -0
- package/css/img/control-textarea-bold-active.png +0 -0
- package/css/img/control-textarea-bold.png +0 -0
- package/css/img/control-textarea-italic-active.png +0 -0
- package/css/img/control-textarea-italic.png +0 -0
- package/css/img/control-textarea-underline-active.png +0 -0
- package/css/img/control-textarea-underline.png +0 -0
- package/css/img/custom-checkbox-sprite.png +0 -0
- package/css/img/details/item-collapse-icon.png +0 -0
- package/css/img/details/item-expand-icon.png +0 -0
- package/css/img/details/item-sort-icon.png +0 -0
- package/css/img/done-arrow.png +0 -0
- package/css/img/fb-logo-icon-w.png +0 -0
- package/css/img/grid-icons.png +0 -0
- package/css/img/icon-reference.png +0 -0
- package/css/img/indicator.png +0 -0
- package/css/img/loader.gif +0 -0
- package/css/img/loaders/audio-white.png +0 -0
- package/css/img/loaders/audio.png +0 -0
- package/css/img/loaders/photo-white.png +0 -0
- package/css/img/loaders/photo.png +0 -0
- package/css/img/loaders/util-white.png +0 -0
- package/css/img/loaders/util.png +0 -0
- package/css/img/loaders/video-white.png +0 -0
- package/css/img/loaders/video.png +0 -0
- package/css/img/maximize.png +0 -0
- package/css/img/minimize.png +0 -0
- package/css/img/next-btn.png +0 -0
- package/css/img/search-icon-sprite.png +0 -0
- package/css/img/services/blogvio.png +0 -0
- package/css/img/services/drive.png +0 -0
- package/css/img/services/dropbox-login.png +0 -0
- package/css/img/services/dropbox.png +0 -0
- package/css/img/services/facebook-login.png +0 -0
- package/css/img/services/facebook.png +0 -0
- package/css/img/services/flickr-login.png +0 -0
- package/css/img/services/flickr.png +0 -0
- package/css/img/services/instagram-login.png +0 -0
- package/css/img/services/instagram.png +0 -0
- package/css/img/services/text.png +0 -0
- package/css/img/services/uploads.png +0 -0
- package/css/img/services/uploads.svg +0 -689
- package/css/img/services/webaddress-bw.png +0 -0
- package/css/img/services/webaddress.png +0 -0
- package/css/img/services/webadress.png +0 -0
- package/css/img/services/websearch.png +0 -0
- package/css/img/services/wix.png +0 -0
- package/css/img/skin/item-active-indicator.png +0 -0
- package/css/img/skin/item-hover-icon.png +0 -0
- package/css/img/skin/overwrite.png +0 -0
- package/css/img/skin/popup-name-icon.png +0 -0
- package/css/img/skin/popup-save.png +0 -0
- package/css/img/skin/preset.png +0 -0
- package/css/img/skin/presets-arrow-purple.png +0 -0
- package/css/img/tw-icon-w.png +0 -0
- package/css/img/warning.png +0 -0
- package/css/img/white-rounded-check.png +0 -0
- package/css/index.styl +0 -9
- package/css/mixins.styl +0 -62
- package/css/scrollable.styl +0 -101
- package/karma.conf.js +0 -73
- package/lib/control.js +0 -1
- package/lib/controls.js +0 -1
- package/lib/core.editor.js +0 -4
- package/lib/core.js +0 -1
- package/lib/core.vendor.js +0 -3
- package/lib/dev/control.js +0 -845
- package/lib/dev/controls.js +0 -7774
- package/lib/dev/core.editor.js +0 -6439
- package/lib/dev/core.js +0 -1486
- package/lib/dev/core.vendor.js +0 -10708
- package/lib/dev/editor.css +0 -166
- package/lib/dev/editor.js +0 -29710
- package/lib/dev/editor.vendor.js +0 -15119
- package/lib/dev/jquery.nanoscroller.js.map +0 -10
- package/lib/editor.css +0 -167
- package/lib/editor.js +0 -49
- package/lib/editor.vendor.js +0 -11
- package/src/api/index.coffee +0 -23
- package/src/api/mixin.coffee +0 -89
- package/src/browser/controller/entry/audio.coffee +0 -38
- package/src/browser/controller/entry/button.coffee +0 -16
- package/src/browser/controller/entry/file.coffee +0 -35
- package/src/browser/controller/entry/folder.coffee +0 -14
- package/src/browser/controller/entry/image.coffee +0 -24
- package/src/browser/controller/entry/index.coffee +0 -18
- package/src/browser/controller/entry/rss.coffee +0 -5
- package/src/browser/controller/entry/video.coffee +0 -4
- package/src/browser/controller/index.coffee +0 -289
- package/src/browser/controller/instagram.coffee +0 -129
- package/src/browser/controller/navbar.coffee +0 -48
- package/src/browser/controller/social.coffee +0 -213
- package/src/browser/model/entry.coffee +0 -18
- package/src/browser/model/index.coffee +0 -34
- package/src/core/controller/font-loader.coffee +0 -65
- package/src/core/controller/lazyload.coffee +0 -14
- package/src/core/controller/overlay.coffee +0 -146
- package/src/core/controller/popup.coffee +0 -36
- package/src/core/controller/scrollable.coffee +0 -68
- package/src/core/controls/audio.coffee +0 -56
- package/src/core/controls/browser.coffee +0 -271
- package/src/core/controls/color.coffee +0 -121
- package/src/core/controls/date-time/calendar/index.coffee +0 -99
- package/src/core/controls/date-time/calendar/months.coffee +0 -52
- package/src/core/controls/date-time/calendar/years.coffee +0 -58
- package/src/core/controls/date-time/clock.coffee +0 -62
- package/src/core/controls/date-time/helper.coffee +0 -31
- package/src/core/controls/date-time/index.coffee +0 -62
- package/src/core/controls/date-time/popup.coffee +0 -56
- package/src/core/controls/details/audio.coffee +0 -33
- package/src/core/controls/details/image.coffee +0 -19
- package/src/core/controls/details/video.coffee +0 -14
- package/src/core/controls/dropdown.coffee +0 -100
- package/src/core/controls/font/font-item.coffee +0 -22
- package/src/core/controls/font/font-list.coffee +0 -108
- package/src/core/controls/font/fonts-popup.coffee +0 -91
- package/src/core/controls/font/index.coffee +0 -66
- package/src/core/controls/image.coffee +0 -37
- package/src/core/controls/index.coffee +0 -88
- package/src/core/controls/orderPicker.coffee +0 -93
- package/src/core/controls/position/grid-panel.coffee +0 -75
- package/src/core/controls/position/index.coffee +0 -98
- package/src/core/controls/position/panel.coffee +0 -68
- package/src/core/controls/position/pixel-panel.coffee +0 -54
- package/src/core/controls/position/popup.coffee +0 -63
- package/src/core/controls/position/reference-panel.coffee +0 -26
- package/src/core/controls/range.coffee +0 -191
- package/src/core/controls/rss.coffee +0 -16
- package/src/core/controls/scale.coffee +0 -78
- package/src/core/controls/slider.coffee +0 -122
- package/src/core/controls/stepper.coffee +0 -97
- package/src/core/controls/text.coffee +0 -54
- package/src/core/controls/textarea.coffee +0 -78
- package/src/core/controls/toggle.coffee +0 -29
- package/src/core/controls/url.coffee +0 -88
- package/src/core/controls/video.coffee +0 -9
- package/src/core/embed/api.js +0 -178
- package/src/core/embed/controller.js +0 -331
- package/src/core/models/composition.coffee +0 -178
- package/src/core/models/content.coffee +0 -79
- package/src/core/models/skin.coffee +0 -91
- package/src/core/models/user.coffee +0 -6
- package/src/core/models/widget.coffee +0 -88
- package/src/core/router/index.coffee +0 -44
- package/src/core/services/container/index.js +0 -18
- package/src/core/services/container/instance.js +0 -3
- package/src/core/services/content.js +0 -80
- package/src/core/services/instagram.coffee +0 -47
- package/src/core/services/mixin/events.js +0 -17
- package/src/core/services/service.js +0 -1
- package/src/core/services/sounds.js +0 -81
- package/src/core/services/uploads.js +0 -299
- package/src/core/utils/popup.coffee +0 -67
- package/src/core/utils/should-show.coffee +0 -12
- package/src/core/views/audio-details.pug +0 -9
- package/src/core/views/audio.pug +0 -7
- package/src/core/views/browser.pug +0 -4
- package/src/core/views/color.pug +0 -8
- package/src/core/views/date-time/calendar.pug +0 -3
- package/src/core/views/date-time/clock.pug +0 -12
- package/src/core/views/date-time/grid.pug +0 -6
- package/src/core/views/date-time/input.pug +0 -4
- package/src/core/views/date-time/table.pug +0 -6
- package/src/core/views/dropdown.pug +0 -9
- package/src/core/views/font/font-item.pug +0 -3
- package/src/core/views/font/fonts-list.pug +0 -7
- package/src/core/views/font/fonts-popup.pug +0 -5
- package/src/core/views/font/index.pug +0 -7
- package/src/core/views/image-details.pug +0 -6
- package/src/core/views/image.pug +0 -5
- package/src/core/views/input-layout.pug +0 -15
- package/src/core/views/order-items.pug +0 -7
- package/src/core/views/order-picker.pug +0 -7
- package/src/core/views/pixelpanel.pug +0 -69
- package/src/core/views/position.pug +0 -10
- package/src/core/views/range.pug +0 -9
- package/src/core/views/scale.pug +0 -7
- package/src/core/views/slider.pug +0 -6
- package/src/core/views/stepper.pug +0 -6
- package/src/core/views/text.pug +0 -4
- package/src/core/views/textarea.pug +0 -8
- package/src/core/views/toggle.pug +0 -5
- package/src/core/views/video-details.pug +0 -7
- package/src/core/views/video.pug +0 -4
- package/src/core/widget/index.coffee +0 -66
- package/src/editor/content/browser/dropzone.html +0 -268
- package/src/editor/content/browser/file.html +0 -124
- package/src/editor/content/browser/scroll-pane.html +0 -32
- package/src/editor/content/browser/service.html +0 -53
- package/src/editor/content/browser/upload.coffee +0 -44
- package/src/editor/content/browser/upload.html +0 -439
- package/src/editor/content/index.coffee +0 -294
- package/src/editor/content/input/field.coffee +0 -45
- package/src/editor/content/input/index.coffee +0 -115
- package/src/editor/content/service/base/photoitem.coffee +0 -49
- package/src/editor/content/service/cache.coffee +0 -20
- package/src/editor/content/service/default.coffee +0 -59
- package/src/editor/content/service/dropbox.coffee +0 -71
- package/src/editor/content/service/facebook.coffee +0 -143
- package/src/editor/content/service/flickr.coffee +0 -85
- package/src/editor/content/service/google-drive-sdk.coffee +0 -18
- package/src/editor/content/service/google-drive.coffee +0 -144
- package/src/editor/content/service/instagram-social.coffee +0 -84
- package/src/editor/content/service/instagram.coffee +0 -168
- package/src/editor/content/service/share-popup.coffee +0 -15
- package/src/editor/content/service/soundcloud.coffee +0 -163
- package/src/editor/content/tab.coffee +0 -27
- package/src/editor/details/bulk-editor/attributes-panel.coffee +0 -11
- package/src/editor/details/bulk-editor/index.coffee +0 -86
- package/src/editor/details/index.coffee +0 -156
- package/src/editor/details/item/attributes.coffee +0 -45
- package/src/editor/details/item/index.coffee +0 -82
- package/src/editor/editor.coffee +0 -274
- package/src/editor/footer/breadcrumb.coffee +0 -17
- package/src/editor/footer/index.coffee +0 -36
- package/src/editor/index.coffee +0 -79
- package/src/editor/listeners/embed-listener.coffee +0 -143
- package/src/editor/login-popup.coffee +0 -29
- package/src/editor/notification-controller.coffee +0 -35
- package/src/editor/popup.coffee +0 -68
- package/src/editor/remote-preview.coffee +0 -68
- package/src/editor/save/index.coffee +0 -62
- package/src/editor/skin/delete.coffee +0 -33
- package/src/editor/skin/editor/index.coffee +0 -188
- package/src/editor/skin/editor/panel.coffee +0 -37
- package/src/editor/skin/index.coffee +0 -126
- package/src/editor/skin/save.coffee +0 -58
- package/src/editor/skin/selector/index.coffee +0 -59
- package/src/editor/skin/selector/item.coffee +0 -123
- package/src/editor/skin/selector/list.coffee +0 -97
- package/src/editor/views/embed.pug +0 -10
- package/src/editor/views/loginbutton.pug +0 -8
- package/src/editor/views/popup.pug +0 -17
- package/src/editor/views/presets.pug +0 -8
- package/src/editor/views/presetslist-header.pug +0 -8
- package/src/editor/views/skinitem.pug +0 -13
- package/src/modules/control.js +0 -3
- package/src/modules/controls.js +0 -29
- package/src/modules/core.js +0 -19
- package/src/modules/editor.js +0 -80
- package/test/config.js +0 -3
- package/test/core/models/skin-spec.js +0 -209
- package/webpack.config.js +0 -46
- package/webpack.config.prod.js +0 -9
- /package/{src/core/views/date-time/popup.pug → dist/utils/passiveEvents.d.ts} +0 -0
|
@@ -1,244 +0,0 @@
|
|
|
1
|
-
.presets-list
|
|
2
|
-
top 70px
|
|
3
|
-
bottom 0
|
|
4
|
-
z-index 1
|
|
5
|
-
left 0
|
|
6
|
-
right 0
|
|
7
|
-
position absolute
|
|
8
|
-
.scrolling-container > .scroll-content
|
|
9
|
-
right -16px
|
|
10
|
-
.mCSB_draggerContainer
|
|
11
|
-
bottom 20px
|
|
12
|
-
top 20px
|
|
13
|
-
.mCSB_scrollTools
|
|
14
|
-
right auto
|
|
15
|
-
left 2px
|
|
16
|
-
.editor[userskins='0'],
|
|
17
|
-
.presets-list[data-filter='presets']
|
|
18
|
-
.is-preset:after
|
|
19
|
-
background transparent!important
|
|
20
|
-
.presets-list-changes
|
|
21
|
-
user-select none
|
|
22
|
-
font-smoothing antialiased
|
|
23
|
-
color #a0a0a0
|
|
24
|
-
text-align center
|
|
25
|
-
width 60px
|
|
26
|
-
overflow hidden
|
|
27
|
-
white-space normal
|
|
28
|
-
.total,.text,.savetxt
|
|
29
|
-
line-height 1
|
|
30
|
-
.total
|
|
31
|
-
font-size 36px
|
|
32
|
-
font-family 'ProximaNova-Thin',Helvetica,sans-serif
|
|
33
|
-
padding-top 30px
|
|
34
|
-
padding-bottom 5px
|
|
35
|
-
.text,.savetxt
|
|
36
|
-
font-size 14px
|
|
37
|
-
font-family 'ProximaNova-Semibold',Helvetica,sans-serif
|
|
38
|
-
.savetxt
|
|
39
|
-
margin-top 18px
|
|
40
|
-
.save
|
|
41
|
-
.cancel
|
|
42
|
-
pointer-events auto !important
|
|
43
|
-
cursor pointer
|
|
44
|
-
font-size 14px
|
|
45
|
-
line-height 25px
|
|
46
|
-
display inline-block
|
|
47
|
-
width 50px
|
|
48
|
-
height 25px
|
|
49
|
-
margin 0
|
|
50
|
-
color white
|
|
51
|
-
border-radius 2px
|
|
52
|
-
.save
|
|
53
|
-
background #0055FF
|
|
54
|
-
margin-top 20px
|
|
55
|
-
&:hover
|
|
56
|
-
background #0040C1
|
|
57
|
-
.cancel
|
|
58
|
-
background #645966
|
|
59
|
-
margin-top 5px
|
|
60
|
-
&:hover
|
|
61
|
-
background lighten(#645966, 20%)
|
|
62
|
-
|
|
63
|
-
.presets-list-item
|
|
64
|
-
height 60px
|
|
65
|
-
width 100px
|
|
66
|
-
min-width 91px
|
|
67
|
-
overflow hidden
|
|
68
|
-
padding-left 20px
|
|
69
|
-
position absolute
|
|
70
|
-
display inline-block
|
|
71
|
-
vertical-align top
|
|
72
|
-
transition height 0.4s ease .3s, margin .15s ease .3s, width .5s ease .3s, opacity .3s ease, top .5s ease .2s, left .5s ease .2s
|
|
73
|
-
box-sizing border-box
|
|
74
|
-
white-space nowrap
|
|
75
|
-
zoom 1
|
|
76
|
-
cursor pointer
|
|
77
|
-
opacity 0
|
|
78
|
-
&.skin--added
|
|
79
|
-
opacity 1
|
|
80
|
-
&:first-child
|
|
81
|
-
margin-top 20px
|
|
82
|
-
height 40px
|
|
83
|
-
& + &
|
|
84
|
-
padding-top 20px
|
|
85
|
-
&.changed
|
|
86
|
-
height 430px
|
|
87
|
-
padding-top 20px
|
|
88
|
-
transition height .5s ease .2s, top 0.5s ease 0.2s
|
|
89
|
-
.presets-list-colors
|
|
90
|
-
pointer-events none
|
|
91
|
-
&:first-child
|
|
92
|
-
padding-top 0
|
|
93
|
-
&.is-preset .presets-list-colors:after
|
|
94
|
-
box-shadow inset 0px 0px 3px rgba(0,0,0,0.40)
|
|
95
|
-
&.can-delete
|
|
96
|
-
.presets-list-delete
|
|
97
|
-
display block
|
|
98
|
-
&.active
|
|
99
|
-
cursor default
|
|
100
|
-
.presets-list-colors .before
|
|
101
|
-
display block
|
|
102
|
-
.presets-list-colors:after
|
|
103
|
-
.presets-list-colors:hover:after
|
|
104
|
-
@extend [data-icon]:before
|
|
105
|
-
content "✓"
|
|
106
|
-
color litepurple
|
|
107
|
-
background rgba(white, 80%)
|
|
108
|
-
box-shadow inset 0 0 0 2px litepurple, inset 0px 0px 3px rgba(0,0,0,0.60)
|
|
109
|
-
border-radius 0px
|
|
110
|
-
font-size 13px
|
|
111
|
-
line-height 41px
|
|
112
|
-
text-align center
|
|
113
|
-
&.active, &:hover
|
|
114
|
-
.presets-list-name
|
|
115
|
-
color litepurple
|
|
116
|
-
&:after
|
|
117
|
-
content ""
|
|
118
|
-
display block
|
|
119
|
-
absolute top left
|
|
120
|
-
bottom 0
|
|
121
|
-
right 1px
|
|
122
|
-
z-index -1
|
|
123
|
-
&.is-preset .presets-list-colors:before
|
|
124
|
-
content ""
|
|
125
|
-
&.is-preset.active .presets-list-colors:before
|
|
126
|
-
content none
|
|
127
|
-
.presets-list-delete
|
|
128
|
-
position absolute
|
|
129
|
-
width 21px
|
|
130
|
-
display none
|
|
131
|
-
height 21px
|
|
132
|
-
border-radius 11px
|
|
133
|
-
background #fff
|
|
134
|
-
overflow hidden
|
|
135
|
-
color #c4363e
|
|
136
|
-
font-size 12px
|
|
137
|
-
text-align center
|
|
138
|
-
line-height 25px
|
|
139
|
-
left -13px
|
|
140
|
-
top -4px
|
|
141
|
-
z-index 1
|
|
142
|
-
opacity 0
|
|
143
|
-
transition top .25s ease, left 0.25s ease,opacity 0.1s ease
|
|
144
|
-
box-shadow inset 0 0 0 1px #d5d5d5
|
|
145
|
-
&:hover
|
|
146
|
-
color white
|
|
147
|
-
background #c4363e
|
|
148
|
-
box-shadow inset 0 0 0 1px #c4363e
|
|
149
|
-
|
|
150
|
-
.presets-list-colors
|
|
151
|
-
width 60px
|
|
152
|
-
height 40px
|
|
153
|
-
position relative
|
|
154
|
-
border-radius 2px
|
|
155
|
-
white-space nowrap
|
|
156
|
-
font-size 0
|
|
157
|
-
display inline-block
|
|
158
|
-
vertical-align top
|
|
159
|
-
// overflow hidden
|
|
160
|
-
//after is used for hover state
|
|
161
|
-
&:hover .presets-list-delete
|
|
162
|
-
opacity 1
|
|
163
|
-
left -6px
|
|
164
|
-
top -4px
|
|
165
|
-
&:after
|
|
166
|
-
absolute bottom right
|
|
167
|
-
top 0px
|
|
168
|
-
left 0px
|
|
169
|
-
content ""
|
|
170
|
-
border-radius 2px
|
|
171
|
-
color rgba(#6a5e6c, 65%)
|
|
172
|
-
font-size 13px
|
|
173
|
-
text-align center
|
|
174
|
-
box-shadow inset 0px 0px 3px rgba(0,0,0,0.60)
|
|
175
|
-
.before
|
|
176
|
-
width 14px
|
|
177
|
-
height 14px
|
|
178
|
-
position absolute
|
|
179
|
-
right -30px
|
|
180
|
-
top 10px
|
|
181
|
-
content ""
|
|
182
|
-
display none
|
|
183
|
-
opacity 1
|
|
184
|
-
background white
|
|
185
|
-
transition opacity .3s ease .65s
|
|
186
|
-
border 2px dashed mediumgray
|
|
187
|
-
transform rotate(45deg)
|
|
188
|
-
&:before
|
|
189
|
-
absolute bottom right
|
|
190
|
-
display block
|
|
191
|
-
width 33px
|
|
192
|
-
height 9px
|
|
193
|
-
background bgreen url('img/skin/preset.png') no-repeat center
|
|
194
|
-
z-index 1
|
|
195
|
-
// &:before
|
|
196
|
-
// content ""
|
|
197
|
-
// position absolute
|
|
198
|
-
// width 125px
|
|
199
|
-
// height 36px
|
|
200
|
-
// background transparent none
|
|
201
|
-
// right -125px
|
|
202
|
-
|
|
203
|
-
.expanded .presets-list-item:hover .presets-list-colors:after
|
|
204
|
-
.presets-list-colors:hover:after
|
|
205
|
-
@extend [data-icon]:before
|
|
206
|
-
content "✓"
|
|
207
|
-
line-height 41px
|
|
208
|
-
pointer-events none
|
|
209
|
-
|
|
210
|
-
.presets-list-color
|
|
211
|
-
height 100%
|
|
212
|
-
display inline-block
|
|
213
|
-
|
|
214
|
-
.presets-list-name
|
|
215
|
-
display inline-block
|
|
216
|
-
vertical-align top
|
|
217
|
-
font 14px/36px 'ProximaNova-Regular'
|
|
218
|
-
width 115px
|
|
219
|
-
color darkpurple
|
|
220
|
-
padding-left 10px
|
|
221
|
-
opacity 0
|
|
222
|
-
transition opacity .15s ease
|
|
223
|
-
white-space normal
|
|
224
|
-
span
|
|
225
|
-
display inline-block
|
|
226
|
-
vertical-align middle
|
|
227
|
-
line-height 18px
|
|
228
|
-
|
|
229
|
-
for num in 2 3 4 5
|
|
230
|
-
.presets-list-colors[colors="{num}")] .presets-list-color
|
|
231
|
-
width (100/num)%
|
|
232
|
-
|
|
233
|
-
.presets-list-delete + .presets-list-color
|
|
234
|
-
border-top-left-radius 2px
|
|
235
|
-
border-bottom-left-radius 2px
|
|
236
|
-
.presets-list-color:last-child
|
|
237
|
-
border-top-right-radius 2px
|
|
238
|
-
border-bottom-right-radius 2px
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
html.isTouch .presets-list-delete
|
|
242
|
-
opacity 1
|
|
243
|
-
left -6px
|
|
244
|
-
top -4px
|
package/css/editor/tooltips.styl
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
.general-help-tooltip
|
|
2
|
-
display block
|
|
3
|
-
position absolute
|
|
4
|
-
background rgba(0,0,0,0.9)
|
|
5
|
-
border-radius 2px
|
|
6
|
-
color #fff
|
|
7
|
-
font-size 14px
|
|
8
|
-
line-height 16px
|
|
9
|
-
font-smoothing antialiased
|
|
10
|
-
padding 10px 15px
|
|
11
|
-
font-family 'ProximaNova-Semibold'
|
|
12
|
-
box-sizing border-box
|
|
13
|
-
|
|
14
|
-
width auto
|
|
15
|
-
min-width 50px
|
|
16
|
-
pointer-events none
|
|
17
|
-
z-index 109
|
|
18
|
-
max-width 300px
|
|
19
|
-
margin 0 0 5px
|
|
20
|
-
&:before
|
|
21
|
-
content none
|
|
22
|
-
.nub
|
|
23
|
-
content ""
|
|
24
|
-
display block
|
|
25
|
-
position absolute
|
|
26
|
-
border 4px solid transparent
|
|
27
|
-
top 100%
|
|
28
|
-
border-top-color rgba(0,0,0,.9)
|
|
29
|
-
left auto
|
|
30
|
-
right auto
|
|
31
|
-
min-width 1px
|
|
32
|
-
&.right
|
|
33
|
-
margin-left 10px
|
|
34
|
-
&.left
|
|
35
|
-
margin-left -10px
|
|
36
|
-
&.bottom
|
|
37
|
-
margin-top 10px
|
|
38
|
-
.nub
|
|
39
|
-
border-top-color transparent
|
|
40
|
-
border-bottom-color rgba(0,0,0,.9)
|
|
41
|
-
top -8px
|
|
42
|
-
&.top
|
|
43
|
-
margin-bottom 13px
|
|
44
|
-
.nub
|
|
45
|
-
top 100%
|
|
46
|
-
border-top-color rgba(0,0,0,.9)
|
|
47
|
-
&.center
|
|
48
|
-
&.right .nub
|
|
49
|
-
right 100%
|
|
50
|
-
top 50%
|
|
51
|
-
margin-top -4px
|
|
52
|
-
border-top-color transparent
|
|
53
|
-
border-right-color rgba(0,0,0,.9)
|
|
54
|
-
&.top .nub
|
|
55
|
-
right 100%
|
|
56
|
-
top 100%
|
|
57
|
-
border-top-color rgba(0,0,0,.9)
|
|
58
|
-
&.bottom .nub
|
|
59
|
-
border-top-color transparent
|
|
60
|
-
border-bottom-color rgba(0,0,0,.9)
|
|
61
|
-
top -8px
|
|
62
|
-
right 100%
|
|
63
|
-
&.left .nub
|
|
64
|
-
border-top-color transparent
|
|
65
|
-
border-left-color rgba(0,0,0,.9)
|
|
66
|
-
top 50%
|
|
67
|
-
margin-top -4px
|
|
68
|
-
right -8px
|
|
69
|
-
.no-tooltip &
|
|
70
|
-
display none
|
|
71
|
-
|
|
72
|
-
.info-tooltip
|
|
73
|
-
font 20px/1 'BlogvioEditor'
|
|
74
|
-
speak none
|
|
75
|
-
font-weight normal
|
|
76
|
-
font-variant normal
|
|
77
|
-
text-transform none
|
|
78
|
-
-webkit-font-smoothing antialiased
|
|
79
|
-
color #c8c8c8
|
|
80
|
-
vertical-align middle
|
|
81
|
-
display inline-block
|
|
82
|
-
cursor pointer
|
|
83
|
-
transition color .2s ease
|
|
84
|
-
&:hover
|
|
85
|
-
color darkpurple
|
package/css/fonts.styl
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'BlogvioEditor';
|
|
3
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/BlogvioEditor.ttf");
|
|
4
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/BlogvioEditor.eot?#iefix") format('embedded-opentype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/BlogvioEditor.woff") format('woff'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/BlogvioEditor.ttf") format('truetype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/BlogvioEditor.svg#BlogvioEditor") format('svg');
|
|
5
|
-
font-weight: normal;
|
|
6
|
-
font-style: normal
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: 'ProximaNova-Thin';
|
|
11
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-thin-webfont.eot");
|
|
12
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-thin-webfont.eot?#iefix") format('embedded-opentype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-thin-webfont.woff") format('woff'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-thin-webfont.ttf") format('truetype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-thin-webfont.svg#proxima_nova_thregular") format('svg');
|
|
13
|
-
font-weight: normal;
|
|
14
|
-
font-style: normal
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@font-face {
|
|
18
|
-
font-family: 'ProximaNova-Regular';
|
|
19
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_reg-webfont.eot");
|
|
20
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_reg-webfont.eot?#iefix") format('embedded-opentype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_reg-webfont.woff") format('woff'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_reg-webfont.ttf") format('truetype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_reg-webfont.svg#proxima_nova_rgregular") format('svg');
|
|
21
|
-
font-weight: normal;
|
|
22
|
-
font-style: normal
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@font-face {
|
|
26
|
-
font-family: 'ProximaNova-Semibold';
|
|
27
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-sbold-webfont.eot");
|
|
28
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-sbold-webfont.eot?#iefix") format('embedded-opentype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-sbold-webfont.woff") format('woff'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-sbold-webfont.ttf") format('truetype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-sbold-webfont.svg#proxima_nova_ltbold") format('svg');
|
|
29
|
-
font-weight: normal;
|
|
30
|
-
font-style: normal
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@font-face {
|
|
34
|
-
font-family: 'ProximaNova-Bold';
|
|
35
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_bold-webfont.eot");
|
|
36
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_bold-webfont.eot?#iefix") format('embedded-opentype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_bold-webfont.woff") format('woff'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_bold-webfont.ttf") format('truetype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proxima_nova_bold-webfont.svg#proxima_nova_ltbold") format('svg');
|
|
37
|
-
font-weight: normal;
|
|
38
|
-
font-style: normal
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@font-face {
|
|
42
|
-
font-family: 'ProximaNova-Light';
|
|
43
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-light-webfont.eot");
|
|
44
|
-
src: url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-light-webfont.eot?#iefix") format('embedded-opentype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-light-webfont.woff") format('woff'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-light-webfont.ttf") format('truetype'), url("https://widgetic.com/bundles/blogvioapp/css/fonts/proximanova-light-webfont.svg#proxima_nova_ltbold") format('svg');
|
|
45
|
-
font-weight: normal;
|
|
46
|
-
font-style: normal
|
|
47
|
-
}
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>
|
|
5
|
-
This is a custom SVG font generated by IcoMoon.
|
|
6
|
-
<iconset grid="16"></iconset>
|
|
7
|
-
</metadata>
|
|
8
|
-
<defs>
|
|
9
|
-
<font id="BlogvioEditor" horiz-adv-x="512" >
|
|
10
|
-
<font-face units-per-em="512" ascent="480" descent="-32" />
|
|
11
|
-
<missing-glyph horiz-adv-x="512" />
|
|
12
|
-
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
|
13
|
-
<glyph unicode="▮" d="M 64,416L 224,416L 224,32L 64,32zM 288,416L 448,416L 448,32L 288,32z" />
|
|
14
|
-
<glyph unicode="?" d="M 256-32C 115.2-32,0,83.2,0,224S 115.2,480, 256,480s 256-115.2, 256-256S 396.8-32, 256-32z
|
|
15
|
-
M 256,96c 15.36,0, 25.6,10.24, 25.6,25.6s-10.24,25.6-25.6,25.6c-15.36,0-25.6-10.24-25.6-25.6S 240.64,96, 256,96z M 256,352C 212.48,352, 179.2,318.72, 179.2,275.2l 51.2,0 c0,15.36, 10.24,25.6, 25.6,25.6c 15.36,0, 25.6-10.24, 25.6-25.6
|
|
16
|
-
s-10.24-25.6-25.6-25.6c-15.36,0-25.6-10.24-25.6-25.6l0-25.6 c0-15.36, 10.24-25.6, 25.6-25.6c 15.36,0, 25.6,10.24, 25.6,25.6l0,5.12 c 30.72,10.24, 51.2,38.4, 51.2,71.68C 332.8,318.72, 299.52,352, 256,352z" />
|
|
17
|
-
<glyph unicode="✢" d="M 508.8,233.6c-6.4,3.2-102.4,80-112,86.4c-6.4,3.2-12.8,0-12.8-9.6L 384,256 L 288,256
|
|
18
|
-
L 288,352 l 54.4,0 c 6.4,0, 12.8,6.4, 9.6,12.8c-3.2,6.4-80,102.4-86.4,112C 262.4,480, 252.8,480, 246.4,476.8C 243.2,470.4, 166.4,371.2, 163.2,364.8C 156.8,358.4, 163.2,352, 172.8,352L 224,352 l0-96 L 128,256
|
|
19
|
-
L 128,307.2 c0,9.6-6.4,12.8-12.8,9.6C 108.8,313.6, 9.6,236.8, 3.2,233.6C0,227.2,0,217.6, 3.2,214.4c 9.6-6.4, 105.6-80, 112-86.4c 6.4-3.2, 12.8,0, 12.8,9.6L 128,192 l 96,0 l0-96
|
|
20
|
-
L 172.8,96 c-9.6,0-12.8-6.4-9.6-12.8c 6.4-6.4, 80-105.6, 86.4-112c 3.2-6.4, 12.8-6.4, 19.2,0c 6.4,9.6, 80,105.6, 86.4,112c 3.2,6.4,0,12.8-9.6,12.8L 288,96 L 288,192 l 96,0
|
|
21
|
-
l0-54.4 c0-6.4, 6.4-12.8, 12.8-9.6c 6.4,3.2, 102.4,80, 112,86.4C 512,217.6, 512,227.2, 508.8,233.6z" />
|
|
22
|
-
<glyph unicode="⇉" d="M 6.4,380.8c0,0, 131.2-124.8, 131.2-124.8c 25.6-25.6, 25.6-32,0-57.6
|
|
23
|
-
C 137.6,192, 28.8,89.6, 6.4,70.4c-28.8-28.8, 32-86.4, 60.8-60.8c 28.8,28.8, 163.2,153.6, 192,185.6c 16,16, 16,44.8,0,60.8C 230.4,281.6, 96,412.8, 67.2,438.4
|
|
24
|
-
C 41.6,467.2-22.4,406.4, 6.4,380.8zM 246.4,380.8c0,0, 131.2-124.8, 134.4-124.8c 25.6-25.6, 25.6-32,0-57.6
|
|
25
|
-
c-3.2-3.2-112-105.6-131.2-124.8c-28.8-28.8, 32-86.4, 60.8-60.8c 28.8,28.8, 163.2,153.6, 192,185.6c 16,16, 16,44.8,0,60.8c-28.8,28.8-166.4,156.8-192,185.6
|
|
26
|
-
C 278.4,467.2, 217.6,406.4, 246.4,380.8z" />
|
|
27
|
-
<glyph unicode="✓" d="M 106.607,258.114c 46.907-46.907, 72.493-72.493, 98.078-98.078c 25.586-25.586, 76.757-25.586, 98.078,0
|
|
28
|
-
c 21.321,29.85, 157.779,238.8, 191.893,289.971c 34.114,51.171, 127.929-42.643, 98.078-98.078c-29.85-51.171-196.157-281.443-238.8-336.879c-38.379-51.171-144.986-46.907-191.893,0S 59.7,117.392, 12.793,164.3
|
|
29
|
-
C-34.114,206.942, 59.7,305.022, 106.607,258.114z" horiz-adv-x="597" />
|
|
30
|
-
<glyph unicode="►" d="M 14.344-3.84C 14.344,19.808, 14.344,434.816, 14.344,451.136C 14.344,472.288, 37.64,488, 60.648,475.616
|
|
31
|
-
c 18.432-9.888, 386.848-209.92, 418.368-227.008c 20.64-11.264, 20.288-38.016,0-49.312c-22.656-12.544-392.544-213.6-419.328-227.552
|
|
32
|
-
C 40.072-38.432, 14.344-27.168, 14.344-3.84z" />
|
|
33
|
-
<glyph unicode="⏍" d="M0,53.333c0-46.933, 38.4-85.333, 85.333-85.333l 213.333,0 c 46.933,0, 85.333,38.4, 85.333,85.333L 384,309.333 L0,309.333 L0,53.333 z M 256,206.933
|
|
34
|
-
C 256,215.467, 264.533,224, 277.333,224S 298.667,215.467, 298.667,206.933l0-136.533 C 298.667,61.867, 290.133,53.333, 277.333,53.333S 256,61.867, 256,70.4L 256,206.933 z M 170.667,206.933C 170.667,215.467, 179.2,224, 192,224S 213.333,215.467, 213.333,206.933l0-136.533
|
|
35
|
-
C 213.333,61.867, 204.8,53.333, 192,53.333S 170.667,61.867, 170.667,70.4L 170.667,206.933 z M 85.333,206.933C 85.333,215.467, 93.867,224, 106.667,224S 128,215.467, 128,206.933l0-136.533 C 128,61.867, 119.467,53.333, 106.667,53.333S 85.333,61.867, 85.333,70.4L 85.333,206.933 z M 42.667,352l 298.667,0
|
|
36
|
-
c 25.6,0, 42.667,17.067, 42.667,42.667S 366.933,437.333, 341.333,437.333L 256,437.333 c0,25.6-17.067,42.667-42.667,42.667L 170.667,480 C 145.067,480, 128,462.933, 128,437.333L 42.667,437.333 C 17.067,437.333,0,420.267,0,394.667S 17.067,352, 42.667,352z" horiz-adv-x="384" />
|
|
37
|
-
<glyph unicode="x" d="M 504.123,401.231c0,0-149.662-141.785-153.6-145.723c-27.569-31.508-27.569-35.446,0-66.954
|
|
38
|
-
c 3.938-3.938, 129.969-122.092, 153.6-145.723c 31.508-31.508-35.446-102.4-70.892-66.954c-23.631,23.631-118.154,114.215-177.231,169.354C 196.923,90.092, 102.4-0.492, 78.769-24.123c-31.508-31.508-102.4,35.446-70.892,66.954
|
|
39
|
-
c0,0, 149.662,141.785, 153.6,145.723c 27.569,31.508, 27.569,35.446,0,66.954C 157.538,263.385, 31.508,377.6, 7.877,401.231C-23.631,436.677, 47.262,503.631, 78.769,472.123c 23.631-23.631, 118.154-110.277, 177.231-169.354
|
|
40
|
-
C 315.077,357.908, 409.6,448.492, 433.231,472.123C 464.738,503.631, 535.631,436.677, 504.123,401.231z" />
|
|
41
|
-
<glyph unicode="❯" d="M 7.839,405.169c0,0, 149.662-141.785, 153.6-145.723c 27.569-31.508, 27.569-35.446,0-66.954
|
|
42
|
-
C 157.5,184.615, 31.47,66.462, 7.839,46.769c-31.508-31.508, 35.446-102.4, 70.892-66.954C 110.239,7.385, 267.777,157.046, 303.224,188.554c 15.754,15.754, 19.692,51.2,0,66.954C 267.777,290.954, 110.239,440.615, 78.731,472.123
|
|
43
|
-
C 47.224,503.631-23.669,436.677, 7.839,405.169z" horiz-adv-x="315" />
|
|
44
|
-
<glyph unicode="u" d="M 80.192,362.592l 3.2,3.104L 141.12,309.632l 31.904,30.944L 115.296,396.64
|
|
45
|
-
l 3.2,3.104l-3.2,27.872l-79.296,52.16L0,444.704l 51.488-79.008L 80.192,362.592z M 426.528,174.624l-35.168-33.888l 77.12-73.696
|
|
46
|
-
c 9.728-9.344, 9.728-24.512,0-33.888c-9.728-9.312-25.44-9.312-35.168,0l-77.152,73.728l-35.168-33.856l 94.72-90.624
|
|
47
|
-
c 19.424-18.688, 50.912-18.688, 70.336,0l 35.168,33.856c 19.424,18.688, 19.424,48.992,0,67.712L 426.528,174.624z M 521.824,392.576
|
|
48
|
-
c-26.656,0-35.52,0-35.52,0l-17.76-16.672c0,0, 4.192-7.584, 10.272-16.928c-16.64,1.728-34.272,6.112-45.6,16.704
|
|
49
|
-
c-11.392,10.688-16.16,27.328-18.080,43.040c 9.888-5.664, 17.888-9.536, 17.888-9.536l 17.76,16.672c0,0,0,8.352,0,33.312
|
|
50
|
-
c-24.96,23.424-39.584,24.032-51.2,17.344c-20.704,2.048-41.984-4.768-64.256-25.664C 303.264,420.8, 289.312,381.024, 293.152,344
|
|
51
|
-
c-0.32-0.288-0.768-0.384-1.088-0.672l-278.208-260.864c-19.424-18.208-19.296-47.904, 0.352-66.272l 35.488-33.312
|
|
52
|
-
c 19.616-18.4, 51.296-18.56, 70.72-0.32l 278.208,260.832c 0.448,0.416, 0.576,0.96, 0.96,1.376c 39.328-3.424, 81.472,9.664, 113.344,39.552
|
|
53
|
-
c 22.272,20.896, 29.568,40.8, 27.328,60.256C 547.424,355.424, 546.784,369.152, 521.824,392.576z M 468.544,309.312
|
|
54
|
-
c-23.2-21.728-57.568-26.080-85.568-13.6l-36.8-34.528c 0.032,0, 0.032,0, 0.032,0c-0.256-0.32-0.384-0.672-0.672-0.96l-243.040-227.872
|
|
55
|
-
c-9.728-9.088-25.536-9.024-35.328,0.16s-9.888,24.064-0.16,33.152l 17.376,16.32c-8.768-9.248-8.672-23.328, 0.768-32.224
|
|
56
|
-
c 9.824-9.184, 25.728-9.184, 35.52,0s 9.824,24.128,0,33.312c-9.472,8.864-24.512,8.96-34.336,0.704l 204.768,192.032L 290.912,276l 17.76,16.672
|
|
57
|
-
l 1.984,1.856l 36.832,34.528c-13.312,26.24-8.672,58.464, 14.496,80.192c 3.744,3.52, 7.904,6.368, 12.192,8.928
|
|
58
|
-
c-9.504-19.552, 0.32-53.952, 23.52-75.744c 23.136-21.664, 59.136-31.136, 80.224-21.824C 475.232,316.608, 472.256,312.768, 468.544,309.312z" horiz-adv-x="544" />
|
|
59
|
-
<glyph unicode="a" d="M0,64c0-52.992, 42.976-96, 96-96c 11.296,0, 21.952,2.304, 32,5.888l0,180.256
|
|
60
|
-
C 117.952,157.696, 107.296,160, 96,160C 42.976,160,0,116.992,0,64z M 32.16,235.712L 32.16,244.352 C 32.16,239.072, 32.128,236.512, 32.16,235.712z M 480,160
|
|
61
|
-
c-11.296,0-21.952-2.304-32-5.888l0-180.256 C 458.048-29.696, 468.704-32, 480-32c 52.992,0, 96,43.008, 96,96S 532.992,160, 480,160z M 492.672,244.352l0-26.176
|
|
62
|
-
c0-14.464, 11.456-26.176, 25.6-26.176s 25.568,11.712, 25.568,26.176L 543.84,235.712 c-0.192-4.416-3.296,53.216-33.952,104.8
|
|
63
|
-
c 1.568,1.6, 3.328,3.392, 4.768,4.896c 10.144,10.368-8,44.192-8,44.192C 459.744,444.864, 390.752,480, 313.568,480L 262.432,480
|
|
64
|
-
C 185.248,480, 116.224,444.864, 69.344,389.6c0,0-18.144-33.824-8-44.192c 1.472-1.504, 3.232-3.328, 4.8-4.896
|
|
65
|
-
C 35.456,288.896, 32.384,231.296, 32.16,235.712l0-17.536 C 32.16,203.712, 43.616,192, 57.76,192s 25.568,11.712, 25.568,26.176L 83.328,244.352
|
|
66
|
-
c0,0, 1.088,20.864, 21.312,59.776c 12.928-6.432, 29.856-7.392, 29.856-7.392c 28.096,36.512, 78.976,78.56, 127.936,78.56l 51.136,0
|
|
67
|
-
c 48.928,0, 99.808-42.048, 127.936-78.56c0,0, 14.016,7.808, 28.928,9.504C 491.872,266.208, 492.672,244.352, 492.672,244.352z M 543.808,244.352l0-8.672
|
|
68
|
-
C 543.872,236.512, 543.808,239.072, 543.808,244.352z M 181.344,160C 169.536,160, 160,152.8, 160,144l0-160 C 160-24.832, 169.536-32, 181.344-32
|
|
69
|
-
c 11.776,0, 21.344,7.168, 21.344,16l0,160 C 202.656,152.8, 193.12,160, 181.344,160z M 394.688,160c-11.808,0-21.376-7.2-21.376-16l0-160
|
|
70
|
-
c0-8.832, 9.568-16, 21.376-16C 406.432-32, 416-24.832, 416-16l0,160 C 416,152.8, 406.432,160, 394.688,160z" horiz-adv-x="576" />
|
|
71
|
-
<glyph unicode="p" d="M 576,416l-64,0 c-31.008,0-66.016,64-96,64s-64,0-64,0S 254.016,480, 224,480S 159.008,416, 128,416
|
|
72
|
-
c0,17.664-14.304,32-32,32L 64,448 C 46.304,448, 32,433.664, 32,416c0-2.848, 0.928-5.376, 1.6-8C 13.696,397.152,0,376.288,0,352l0-256 c0-35.36, 28.672-64, 64-64l 96,0
|
|
73
|
-
c0,0, 78.688-64, 158.016-64C 398.688-32, 480,32, 480,32l 96,0 c 35.328,0, 64,28.64, 64,64L 640,352 C 640,387.328, 611.328,416, 576,416z M 576,128c0-17.696-14.304-32-32-32l-40.32,0
|
|
74
|
-
c-1.6-2.272-3.456-4.384-5.152-6.592C 493.248,93.248, 487.072,96, 480,96c0,0-81.312-64-161.984-64C 238.688,32, 160,96, 160,96
|
|
75
|
-
c-7.072,0-13.248-2.752-18.528-6.592C 139.776,91.616, 137.92,93.728, 136.32,96L 96,96 c-17.696,0-32,14.304-32,32L 64,320 c0,17.664, 14.304,32, 32,32l 40.32,0
|
|
76
|
-
c 1.6,2.304, 3.456,4.384, 5.152,6.592C 146.752,354.72, 152.928,352, 160,352c0,0, 81.312,64, 161.984,64C 401.312,416, 480,352, 480,352
|
|
77
|
-
c 7.072,0, 13.248,2.72, 18.528,6.592C 500.224,356.384, 502.080,354.304, 503.68,352L 544,352 c 17.696,0, 32-14.336, 32-32L 576,128 z M 320,352C 249.312,352, 192,294.688, 192,224
|
|
78
|
-
c0-70.656, 57.312-128, 128-128s 128,57.312, 128,128C 448,294.688, 390.688,352, 320,352z M 224,192c-32.416,46.336-11.808,140, 96,128C 285.44,294.656, 240.64,241.344, 224,192z" horiz-adv-x="640" />
|
|
79
|
-
<glyph unicode="v" d="M 595.072,316.768C 603.072,332.192, 608,349.44, 608,368
|
|
80
|
-
C 608,429.856, 557.856,480, 496,480c-3.648,0-7.104-0.736-10.656-1.088C 483.52,479.232, 481.92,480, 480,480c0,0-1.472-0.8-3.616-1.984
|
|
81
|
-
c-17.28-3.136-32.896-10.432-46.432-20.608C 414.848,452.16, 398.496,448, 384,448c-14.336,0-30.944,4.288-46.24,9.664
|
|
82
|
-
C 324.32,467.68, 308.8,474.88, 291.68,477.984C 289.504,479.168, 288,480, 288,480C 286.112,480, 284.48,479.232, 282.656,478.912C 279.104,479.264, 275.648,480, 272,480
|
|
83
|
-
C 210.144,480, 160,429.856, 160,368c0-18.56, 4.928-35.808, 12.928-51.232C 146.976,308.64, 128,284.672, 128,256C 109.632,271.040, 95.008,277.984, 64,288C 32.992,288,0,259.328,0,224
|
|
84
|
-
l0-160 c0-35.328, 31.84-62.88, 64-64c 28.8,8.864, 40.64,16.96, 64,32c0-35.328, 28.672-64, 64-64l 384,0 c 35.328,0, 64,28.672, 64,64L 640,256
|
|
85
|
-
C 640,284.672, 621.024,308.64, 595.072,316.768z M 576,64c0-17.696-14.336-32-32-32L 224,32 c-17.696,0-32,14.304-32,32l0,32 c0,0-58.016-14.496-95.936-24
|
|
86
|
-
c-30.144-16.864-46.336,27.616-46.72,72C 48.96,188.16, 64.256,232.224, 96.96,215.744C 134.912,206.272, 192,192, 192,192L 192,224 c0,17.664, 14.304,32, 32,32l 32,0
|
|
87
|
-
C 238.304,256, 272.224,280.992, 256,288C 237.728,295.904, 209.248,307.744, 236.256,314.592C 228.64,325.152, 224,337.984, 224,352c0,35.328, 28.672,64, 64,64c0,0, 56.192-32, 96-32
|
|
88
|
-
c 40.192,0, 96,32, 96,32c 35.328,0, 64-28.672, 64-64c0-15.776-5.952-30.016-15.36-41.184C 539.488,303.456, 524.576,293.504, 512,288c-16.192-7.136, 17.696-32,0-32l 32,0
|
|
89
|
-
c 17.664,0, 32-14.336, 32-32L 576,64 z" horiz-adv-x="640" />
|
|
90
|
-
<glyph unicode="⇙" d="M 474.496,442.496C 449.504,467.504, 416.752,480, 384,480s-65.504-12.496-90.496-37.504L 0.496,149.504L0-32l 180.992,0
|
|
91
|
-
l 293.504,293.504C 524.496,311.504, 524.496,392.496, 474.496,442.496z M 154.496,32L 153.808,32 c 24.992,24.992, 24.992,66,0,91.008
|
|
92
|
-
c-23.936,23.936-61.744,24.256-86.88,2.368L 338.192,396.624l 90.496-90.496L 154.496,32z" data-tags="pen-alt-stroke, write, blog" />
|
|
93
|
-
<glyph unicode="〉" d="M 20.060,480l 143.36-245.76l0-20.48 L 20.060-32L-0.42-32 l 143.36,245.76l0,20.48 L-0.42,480L 20.060,480 z" horiz-adv-x="163" data-tags="breadcrumbs divider" />
|
|
94
|
-
<glyph unicode="☖" d="M 604.933,386.866c0,0-69.893,0-139.6,0C 375.245,386.866, 369.894,479.933, 279.2,479.933C 203.77,479.933, 96.278,479.933, 96.278,479.933
|
|
95
|
-
C 43.090,479.933,0,436.284,0,382.445l0-316.845 C0,11.715, 43.090-31.934, 96.278-31.934l 505.491,0 C 654.91-31.934, 698,11.715, 698,65.6L 698,293.8 C 698,347.638, 658.12,386.866, 604.933,386.866z M 604.933,107.666
|
|
96
|
-
c0-25.733-20.801-46.533-46.533-46.533L 139.6,61.133 C 113.913,61.133, 93.067,81.934, 93.067,107.666L 93.067,340.333 c0,25.686, 20.847,46.533, 46.533,46.533c0,0, 20.242,0, 93.067,0c 91.112,0, 125.407-93.067, 184.691-93.067C 473.662,293.8, 558.399,293.8, 558.399,293.8
|
|
97
|
-
c 25.733,0, 46.533-20.847, 46.533-46.533L 604.933,107.666 z" horiz-adv-x="698" data-tags="small folder" />
|
|
98
|
-
<glyph unicode="☗" d="M 97.517,479.983c0,0, 108.488,0, 185.282,0c 91.423,0, 101.174-97.517, 192.597-97.517c 70.7,0, 134.086,0, 134.086,0
|
|
99
|
-
c 53.634,0, 97.517-31.693, 97.517-85.327l0-231.603 c0-53.634-43.883-97.517-97.517-97.517L 97.517-31.982 c-53.634,0-97.517,43.883-97.517,97.517L0,382.466 C0,436.1, 43.883,479.983, 97.517,479.983z" horiz-adv-x="707" data-tags="folder" />
|
|
100
|
-
<glyph unicode="♩" d="M 280.19,114.286c0-41.448-25.6-74.362-60.952-102.4C 182.667-14.933, 136.343-32, 94.896-32
|
|
101
|
-
c-25.6,0-49.981,8.533-67.048,21.943C 10.781,3.352,-0.19,24.076,-0.19,47.238c0,37.79, 25.6,75.581, 62.171,102.4c 35.352,28.038, 80.457,46.324, 118.248,46.324c 32.914,0, 59.733-6.095, 76.8-21.943L 257.029,480 l 24.381,0 L 281.41,114.286 z" horiz-adv-x="280" data-tags="soundnote" />
|
|
102
|
-
<glyph unicode="⚅" d="M 523.478,479.652l0-36.521 l-73.044,0 L 450.435,479.652 L 109.565,479.652 l0-36.521 L 36.521,443.131 L 36.521,479.652 L0,479.652 l0-511.304 l 36.521,0 l0,36.521 l 73.044,0 l0-36.521 l 340.869,0 l0,36.521 l 73.044,0 l0-36.521 l 36.521,0 L 560,479.652 L 523.478,479.652 z M 109.565,53.565L 36.521,53.565
|
|
103
|
-
l0,73.044 l 73.044,0 L 109.565,53.565 z M 109.565,187.479L 36.521,187.479 l0,73.044 l 73.044,0 L 109.565,187.479 z M 109.565,321.391L 36.521,321.391 L 36.521,394.435 l 73.044,0 L 109.565,321.391 z M 523.478,53.565l-73.044,0 l0,73.044 l 73.044,0 L 523.478,53.565 z M 523.478,187.479l-73.044,0 l0,73.044 l 73.044,0 L 523.478,187.479 z M 523.478,321.391l-73.044,0 L 450.435,394.435 l 73.044,0 L 523.478,321.391 z" horiz-adv-x="560" data-tags="videoitem" />
|
|
104
|
-
<glyph unicode="↯" d="M 164.992,480c0,0, 165.415,0, 181.169,0s 27.569-19.692, 15.754-31.508S 275.269,322.462, 275.269,322.462s 86.646,0, 98.462,0
|
|
105
|
-
c 23.631,0, 23.631-15.754, 15.754-23.631S 66.531,3.446, 38.962-20.185c-27.569-23.631-55.138-3.938-31.508,31.508C 31.085,46.769, 129.546,204.308, 129.546,204.308S 58.654,204.308, 42.9,204.308S 23.208,216.123, 27.146,231.877s 114.215,224.492, 122.092,236.308
|
|
106
|
-
C 153.177,480, 164.992,480, 164.992,480z" horiz-adv-x="393" data-tags="lightingbolt" />
|
|
107
|
-
<glyph unicode="-" d="M 469.333,266.667L 42.667,266.667 C 19.115,266.667,0,247.552,0,224s 19.115-42.667, 42.667-42.667l 426.667,0 c 23.595,0, 42.667,19.115, 42.667,42.667
|
|
108
|
-
S 492.928,266.667, 469.333,266.667z" data-tags="minus" />
|
|
109
|
-
<glyph unicode="+" d="M 469.333,266.667L 298.667,266.667 L 298.667,437.333 c0,23.552-19.072,42.667-42.667,42.667C 232.448,480, 213.333,460.885, 213.333,437.333l0-170.667 L 42.667,266.667
|
|
110
|
-
C 19.115,266.667,0,247.552,0,224s 19.115-42.667, 42.667-42.667l 170.667,0 l0-170.667 c0-23.595, 19.115-42.667, 42.667-42.667c 23.595,0, 42.667,19.072, 42.667,42.667L 298.667,181.333 l 170.667,0 c 23.595,0, 42.667,19.115, 42.667,42.667S 492.928,266.667, 469.333,266.667z" data-tags="plus" />
|
|
111
|
-
<glyph unicode=" " horiz-adv-x="256" />
|
|
112
|
-
</font></defs></svg>
|
package/css/icons.styl
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@font-face
|
|
2
|
-
font-family 'BlogvioEditor'
|
|
3
|
-
src url('/bundles/blogvioapp/css/fonts/BlogvioEditor.ttf')
|
|
4
|
-
src url('/bundles/blogvioapp/css/fonts/BlogvioEditor.eot?#iefix') format('embedded-opentype'), url('/bundles/blogvioapp/css/fonts/BlogvioEditor.woff') format('woff'), url('/bundles/blogvioapp/css/fonts/BlogvioEditor.ttf') format('truetype'), url('/bundles/blogvioapp/css/fonts/BlogvioEditor.svg#BlogvioEditor') format('svg')
|
|
5
|
-
font-weight normal
|
|
6
|
-
font-style normal
|
|
7
|
-
|
|
8
|
-
[data-icon]:before
|
|
9
|
-
font-family 'BlogvioEditor'
|
|
10
|
-
content attr(data-icon)
|
|
11
|
-
speak none
|
|
12
|
-
font-weight normal
|
|
13
|
-
font-variant normal
|
|
14
|
-
text-transform none
|
|
15
|
-
line-height 1
|
|
16
|
-
font-smoothing antialiased
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/css/img/check.png
DELETED
|
Binary file
|
package/css/img/close.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/css/img/done-arrow.png
DELETED
|
Binary file
|
|
Binary file
|
package/css/img/grid-icons.png
DELETED
|
Binary file
|
|
Binary file
|
package/css/img/indicator.png
DELETED
|
Binary file
|
package/css/img/loader.gif
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/css/img/loaders/util.png
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|