@oat-sa/tao-core-ui 1.58.1 → 1.58.2
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/dist/actionbar.js +386 -395
- package/dist/adder.js +21 -19
- package/dist/animable/absorbable/absorbable.js +204 -213
- package/dist/animable/absorbable/css/absorb.css +1 -0
- package/dist/animable/absorbable/css/absorb.css.map +1 -1
- package/dist/animable/pulsable/pulsable.js +168 -177
- package/dist/autocomplete/css/autocomplete.css +1 -0
- package/dist/autocomplete/css/autocomplete.css.map +1 -1
- package/dist/autocomplete.js +68 -66
- package/dist/badge/badge.js +188 -197
- package/dist/badge/css/badge.css +1 -0
- package/dist/badge/css/badge.css.map +1 -1
- package/dist/breadcrumbs.js +275 -284
- package/dist/btngrouper.js +5 -5
- package/dist/bulkActionPopup.js +490 -495
- package/dist/button.js +283 -291
- package/dist/cascadingComboBox.js +249 -258
- package/dist/ckeditor/ckConfigurator.js +26 -19
- package/dist/ckeditor/dtdHandler.js +11 -9
- package/dist/class/selector.js +441 -450
- package/dist/component/resizable.js +1 -1
- package/dist/component/windowed.js +285 -294
- package/dist/component.js +419 -428
- package/dist/contextualPopup.js +417 -426
- package/dist/dashboard.js +300 -309
- package/dist/datalist.js +753 -762
- package/dist/datatable/filterStrategy/multiple.js +1 -1
- package/dist/datatable/filterStrategy/single.js +1 -1
- package/dist/datatable.js +1527 -1550
- package/dist/dateRange/dateRange.js +393 -402
- package/dist/datetime/picker.js +665 -672
- package/dist/deleter.js +368 -377
- package/dist/destination/selector.js +286 -295
- package/dist/dialog/alert.js +3 -3
- package/dist/dialog/confirm.js +1 -1
- package/dist/dialog/confirmDelete.js +216 -225
- package/dist/dialog.js +650 -654
- package/dist/disabler.js +8 -8
- package/dist/documentViewer/providers/pdfViewer/fallback/viewer.js +166 -175
- package/dist/documentViewer/providers/pdfViewer/pdfjs/findBar.js +518 -527
- package/dist/documentViewer/providers/pdfViewer/pdfjs/pageView.js +380 -389
- package/dist/documentViewer/providers/pdfViewer/pdfjs/searchEngine.js +539 -548
- package/dist/documentViewer/providers/pdfViewer/pdfjs/viewer.js +369 -378
- package/dist/documentViewer/providers/pdfViewer.js +184 -193
- package/dist/documentViewer.js +292 -301
- package/dist/dropdown.js +383 -392
- package/dist/durationer.js +5 -5
- package/dist/dynamicComponent.js +597 -598
- package/dist/feedback.js +356 -362
- package/dist/figure/FigureStateActive.js +117 -108
- package/dist/filesender.js +2 -2
- package/dist/filter.js +230 -239
- package/dist/form/dropdownForm.js +355 -357
- package/dist/form/form.js +919 -690
- package/dist/form/simpleForm.js +1 -1
- package/dist/form/validator/renderer.js +233 -235
- package/dist/form/validator/validator.js +257 -189
- package/dist/form/widget/definitions.js +1 -1
- package/dist/form/widget/providers/checkBox.js +254 -259
- package/dist/form/widget/providers/comboBox.js +187 -192
- package/dist/form/widget/providers/default.js +8 -9
- package/dist/form/widget/providers/hidden.js +170 -179
- package/dist/form/widget/providers/hiddenBox.js +262 -267
- package/dist/form/widget/providers/radioBox.js +216 -225
- package/dist/form/widget/providers/textArea.js +187 -196
- package/dist/form/widget/providers/textBox.js +2 -3
- package/dist/form/widget/widget.js +473 -475
- package/dist/formValidator/formValidator.js +1 -1
- package/dist/formValidator/highlighters/message.js +1 -1
- package/dist/generis/form/form.js +314 -323
- package/dist/generis/validator/validator.js +209 -218
- package/dist/generis/widget/checkBox/checkBox.js +218 -227
- package/dist/generis/widget/comboBox/comboBox.js +179 -188
- package/dist/generis/widget/hiddenBox/hiddenBox.js +220 -229
- package/dist/generis/widget/textBox/textBox.js +169 -178
- package/dist/generis/widget/widget.js +246 -255
- package/dist/groupedComboBox.js +222 -231
- package/dist/groupvalidator.js +2 -2
- package/dist/highlighter.js +967 -958
- package/dist/image/ImgStateActive/helper.js +7 -5
- package/dist/image/ImgStateActive/initHelper.js +49 -43
- package/dist/image/ImgStateActive/initMediaEditor.js +24 -20
- package/dist/image/ImgStateActive/mediaSizer.js +14 -12
- package/dist/image/ImgStateActive.js +72 -70
- package/dist/incrementer.js +6 -6
- package/dist/inplacer.js +6 -6
- package/dist/itemButtonList/css/item-button-list.css +1 -0
- package/dist/itemButtonList/css/item-button-list.css.map +1 -1
- package/dist/itemButtonList.js +439 -435
- package/dist/keyNavigation/navigableDomElement.js +51 -38
- package/dist/keyNavigation/navigator.js +85 -70
- package/dist/listbox.js +460 -469
- package/dist/liststyler.js +8 -8
- package/dist/loadingButton/loadingButton.js +209 -218
- package/dist/lock.js +476 -485
- package/dist/login/login.js +475 -484
- package/dist/maths/calculator/basicCalculator.js +235 -244
- package/dist/maths/calculator/calculatorComponent.js +3 -3
- package/dist/maths/calculator/core/board.js +772 -781
- package/dist/maths/calculator/core/expression.js +476 -485
- package/dist/maths/calculator/core/labels.js +228 -237
- package/dist/maths/calculator/core/tokenizer.js +1 -1
- package/dist/maths/calculator/core/tokens.js +163 -170
- package/dist/maths/calculator/plugins/keyboard/templateKeyboard/templateKeyboard.js +244 -253
- package/dist/maths/calculator/plugins/screen/simpleScreen/simpleScreen.js +279 -288
- package/dist/maths/calculator/scientificCalculator.js +327 -336
- package/dist/mediaEditor/mediaEditorComponent.js +238 -245
- package/dist/mediaEditor/plugins/mediaAlignment/helper.js +7 -7
- package/dist/mediaEditor/plugins/mediaAlignment/mediaAlignmentComponent.js +229 -235
- package/dist/mediaEditor/plugins/mediaDimension/mediaDimensionComponent.js +580 -589
- package/dist/mediaplayer/players/html5.js +666 -675
- package/dist/mediaplayer/players/youtube.js +419 -424
- package/dist/mediaplayer/support.js +11 -10
- package/dist/mediaplayer/utils/reminder.js +14 -13
- package/dist/mediaplayer/utils/timeObserver.js +10 -11
- package/dist/mediaplayer/youtubeManager.js +164 -145
- package/dist/mediaplayer.js +1565 -1520
- package/dist/mediasizer.js +669 -678
- package/dist/modal.js +10 -17
- package/dist/pageSizeSelector.js +219 -228
- package/dist/pagination/providers/pages.js +280 -289
- package/dist/pagination/providers/simple.js +192 -201
- package/dist/previewer.js +30 -30
- package/dist/progressbar.js +4 -4
- package/dist/report.js +347 -356
- package/dist/resource/filters.js +271 -280
- package/dist/resource/list.js +1264 -1273
- package/dist/resource/selector.js +865 -874
- package/dist/resource/tree.js +1483 -1492
- package/dist/resourcemgr/fileBrowser.js +564 -569
- package/dist/resourcemgr/filePreview.js +16 -16
- package/dist/resourcemgr/fileSelector.js +515 -524
- package/dist/resourcemgr/util/updatePermissions.js +2 -2
- package/dist/resourcemgr.js +306 -315
- package/dist/searchModal/advancedSearch.js +796 -767
- package/dist/searchModal.js +114 -91
- package/dist/switch/switch.js +298 -307
- package/dist/tabs.js +598 -575
- package/dist/taskQueue/status.js +312 -321
- package/dist/taskQueue/table.js +375 -384
- package/dist/taskQueue/taskQueueModel.js +488 -472
- package/dist/taskQueueButton/taskable.js +264 -273
- package/dist/taskQueueButton/treeButton.js +189 -198
- package/dist/themeLoader.js +24 -23
- package/dist/themes.js +1 -1
- package/dist/toggler.js +3 -3
- package/dist/tooltip.js +295 -304
- package/dist/transformer.js +2 -2
- package/dist/tristateCheckboxGroup.js +311 -320
- package/dist/uploader.js +687 -696
- package/dist/validator/Report.js +1 -1
- package/dist/validator/Validator.js +3 -3
- package/dist/validator/validators.js +9 -9
- package/dist/validator.js +240 -230
- package/dist/waitForMedia.js +1 -1
- package/package.json +3 -3
- package/src/animable/absorbable/css/absorb.css +1 -0
- package/src/animable/absorbable/css/absorb.css.map +1 -1
- package/src/autocomplete/css/autocomplete.css +1 -0
- package/src/autocomplete/css/autocomplete.css.map +1 -1
- package/src/badge/css/badge.css +1 -0
- package/src/badge/css/badge.css.map +1 -1
- package/src/ckeditor/ckConfigurator.js +4 -0
- package/src/itemButtonList/css/item-button-list.css +1 -0
- package/src/itemButtonList/css/item-button-list.css.map +1 -1
- package/src/.DS_Store +0 -0
- package/src/css/basic.css +0 -7826
- package/src/css/basic.css.map +0 -1
- package/src/css/ckeditor/skins/tao/css/dialog.css +0 -950
- package/src/css/ckeditor/skins/tao/css/dialog.css.map +0 -1
- package/src/css/ckeditor/skins/tao/css/editor.css +0 -1850
- package/src/css/ckeditor/skins/tao/css/editor.css.map +0 -1
- package/src/scss/.DS_Store +0 -0
- package/src/scss/basic.scss +0 -16
- package/src/scss/ckeditor/skins/tao/scss/dialog.scss +0 -763
- package/src/scss/ckeditor/skins/tao/scss/editor.scss +0 -111
- package/src/scss/ckeditor/skins/tao/scss/inc/_ck-icons.scss +0 -59
- package/src/scss/ckeditor/skins/tao/scss/inc/_colorpanel.scss +0 -118
- package/src/scss/ckeditor/skins/tao/scss/inc/_elementspath.scss +0 -69
- package/src/scss/ckeditor/skins/tao/scss/inc/_mainui.scss +0 -194
- package/src/scss/ckeditor/skins/tao/scss/inc/_menu.scss +0 -181
- package/src/scss/ckeditor/skins/tao/scss/inc/_panel.scss +0 -200
- package/src/scss/ckeditor/skins/tao/scss/inc/_presets.scss +0 -32
- package/src/scss/ckeditor/skins/tao/scss/inc/_reset.scss +0 -101
- package/src/scss/ckeditor/skins/tao/scss/inc/_richcombo.scss +0 -213
- package/src/scss/ckeditor/skins/tao/scss/inc/_tao.scss +0 -59
- package/src/scss/ckeditor/skins/tao/scss/inc/_toolbar.scss +0 -301
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot.b64 +0 -1
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
- package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff.b64 +0 -1
- package/src/scss/font/tao/tao.eot +0 -0
- package/src/scss/font/tao/tao.svg +0 -235
- package/src/scss/font/tao/tao.ttf +0 -0
- package/src/scss/font/tao/tao.woff +0 -0
- package/src/scss/inc/_base.scss +0 -496
- package/src/scss/inc/_bootstrap.scss +0 -6
- package/src/scss/inc/_buttons.scss +0 -114
- package/src/scss/inc/_colors.scss +0 -88
- package/src/scss/inc/_feedback.scss +0 -150
- package/src/scss/inc/_flex-grid.scss +0 -15
- package/src/scss/inc/_fonts.scss +0 -4
- package/src/scss/inc/_forms.scss +0 -827
- package/src/scss/inc/_functions.scss +0 -283
- package/src/scss/inc/_grid.scss +0 -66
- package/src/scss/inc/_jquery.nouislider.scss +0 -254
- package/src/scss/inc/_normalize.scss +0 -528
- package/src/scss/inc/_report.scss +0 -68
- package/src/scss/inc/_secondary-properties.scss +0 -89
- package/src/scss/inc/_select2.scss +0 -634
- package/src/scss/inc/_toolbars.scss +0 -155
- package/src/scss/inc/_tooltip.scss +0 -312
- package/src/scss/inc/_variables.scss +0 -21
- package/src/scss/inc/base/_highlight.scss +0 -5
- package/src/scss/inc/base/_list-style.scss +0 -59
- package/src/scss/inc/base/_svg.scss +0 -3
- package/src/scss/inc/base/_table.scss +0 -63
- package/src/scss/inc/fonts/_source-sans-pro.scss +0 -29
- package/src/scss/inc/fonts/_tao-icon-classes.scss +0 -226
- package/src/scss/inc/fonts/_tao-icon-def.scss +0 -12
- package/src/scss/inc/fonts/_tao-icon-vars.scss +0 -240
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
/* Do not edit */[class^="icon-"], [class*=" icon-"] { @include tao-icon-setup; }
|
|
2
|
-
.icon-info-bare:before { @include icon-info-bare; }
|
|
3
|
-
.icon-bookmark-outline:before { @include icon-bookmark-outline; }
|
|
4
|
-
.icon-bookmark:before { @include icon-bookmark; }
|
|
5
|
-
.icon-indicator:before { @include icon-indicator; }
|
|
6
|
-
.icon-add-subsection:before { @include icon-add-subsection; }
|
|
7
|
-
.icon-wrap-inline:before { @include icon-wrap-inline; }
|
|
8
|
-
.icon-wrap-left:before { @include icon-wrap-left; }
|
|
9
|
-
.icon-wrap-right:before { @include icon-wrap-right; }
|
|
10
|
-
.icon-offline:before { @include icon-offline; }
|
|
11
|
-
.icon-online:before { @include icon-online; }
|
|
12
|
-
.icon-tab:before { @include icon-tab; }
|
|
13
|
-
.icon-untab:before { @include icon-untab; }
|
|
14
|
-
.icon-multi-select:before { @include icon-multi-select; }
|
|
15
|
-
.icon-clipboard:before { @include icon-clipboard; }
|
|
16
|
-
.icon-filebox:before { @include icon-filebox; }
|
|
17
|
-
.icon-click-to-speak:before { @include icon-click-to-speak; }
|
|
18
|
-
.icon-speech-bubble:before { @include icon-speech-bubble; }
|
|
19
|
-
.icon-microphone:before { @include icon-microphone; }
|
|
20
|
-
.icon-microphone-off:before { @include icon-microphone-off; }
|
|
21
|
-
.icon-disconnect:before { @include icon-disconnect; }
|
|
22
|
-
.icon-connect:before { @include icon-connect; }
|
|
23
|
-
.icon-eliminate:before { @include icon-eliminate; }
|
|
24
|
-
.icon-wheelchair:before { @include icon-wheelchair; }
|
|
25
|
-
.icon-text-marker:before { @include icon-text-marker; }
|
|
26
|
-
.icon-unshield:before { @include icon-unshield; }
|
|
27
|
-
.icon-shield:before { @include icon-shield; }
|
|
28
|
-
.icon-tree:before { @include icon-tree; }
|
|
29
|
-
.icon-home:before { @include icon-home; }
|
|
30
|
-
.icon-shared-file:before { @include icon-shared-file; }
|
|
31
|
-
.icon-end-attempt:before { @include icon-end-attempt; }
|
|
32
|
-
.icon-icon:before { @include icon-icon; }
|
|
33
|
-
.icon-radio-bg:before { @include icon-radio-bg; }
|
|
34
|
-
.icon-checkbox-bg:before { @include icon-checkbox-bg; }
|
|
35
|
-
.icon-tag:before { @include icon-tag; }
|
|
36
|
-
.icon-style:before { @include icon-style; }
|
|
37
|
-
.icon-ownership-transfer:before { @include icon-ownership-transfer; }
|
|
38
|
-
.icon-property-advanced:before { @include icon-property-advanced; }
|
|
39
|
-
.icon-property-add:before { @include icon-property-add; }
|
|
40
|
-
.icon-repository-add:before { @include icon-repository-add; }
|
|
41
|
-
.icon-repository-remove:before { @include icon-repository-remove; }
|
|
42
|
-
.icon-repository:before { @include icon-repository; }
|
|
43
|
-
.icon-result-server:before { @include icon-result-server; }
|
|
44
|
-
.icon-folder:before { @include icon-folder; }
|
|
45
|
-
.icon-folder-open:before { @include icon-folder-open; }
|
|
46
|
-
.icon-left:before { @include icon-left; }
|
|
47
|
-
.icon-right:before { @include icon-right; }
|
|
48
|
-
.icon-up:before { @include icon-up; }
|
|
49
|
-
.icon-down:before { @include icon-down; }
|
|
50
|
-
.icon-undo:before { @include icon-undo; }
|
|
51
|
-
.icon-redo:before { @include icon-redo; }
|
|
52
|
-
.icon-screen:before { @include icon-screen; }
|
|
53
|
-
.icon-laptop:before { @include icon-laptop; }
|
|
54
|
-
.icon-tablet:before { @include icon-tablet; }
|
|
55
|
-
.icon-phone:before { @include icon-phone; }
|
|
56
|
-
.icon-move:before { @include icon-move; }
|
|
57
|
-
.icon-bin:before { @include icon-bin; }
|
|
58
|
-
.icon-shuffle:before { @include icon-shuffle; }
|
|
59
|
-
.icon-print:before { @include icon-print; }
|
|
60
|
-
.icon-tools:before { @include icon-tools; }
|
|
61
|
-
.icon-settings:before { @include icon-settings; }
|
|
62
|
-
.icon-video:before { @include icon-video; }
|
|
63
|
-
.icon-find:before { @include icon-find; }
|
|
64
|
-
.icon-image:before { @include icon-image; }
|
|
65
|
-
.icon-edit:before { @include icon-edit; }
|
|
66
|
-
.icon-document:before { @include icon-document; }
|
|
67
|
-
.icon-resize-grid:before { @include icon-resize-grid; }
|
|
68
|
-
.icon-resize:before { @include icon-resize; }
|
|
69
|
-
.icon-help:before { @include icon-help; }
|
|
70
|
-
.icon-mobile-menu:before { @include icon-mobile-menu; }
|
|
71
|
-
.icon-fix:before { @include icon-fix; }
|
|
72
|
-
.icon-unlock:before { @include icon-unlock; }
|
|
73
|
-
.icon-lock:before { @include icon-lock; }
|
|
74
|
-
.icon-ul:before { @include icon-ul; }
|
|
75
|
-
.icon-ol:before { @include icon-ol; }
|
|
76
|
-
.icon-email:before { @include icon-email; }
|
|
77
|
-
.icon-download:before { @include icon-download; }
|
|
78
|
-
.icon-logout:before { @include icon-logout; }
|
|
79
|
-
.icon-login:before { @include icon-login; }
|
|
80
|
-
.icon-spinner:before { @include icon-spinner; }
|
|
81
|
-
.icon-preview:before { @include icon-preview; }
|
|
82
|
-
.icon-external:before { @include icon-external; }
|
|
83
|
-
.icon-time:before { @include icon-time; }
|
|
84
|
-
.icon-save:before { @include icon-save; }
|
|
85
|
-
.icon-warning:before { @include icon-warning; }
|
|
86
|
-
.icon-add:before { @include icon-add; }
|
|
87
|
-
.icon-error:before { @include icon-error; }
|
|
88
|
-
.icon-close:before { @include icon-close; }
|
|
89
|
-
.icon-success:before { @include icon-success; }
|
|
90
|
-
.icon-remove:before { @include icon-remove; }
|
|
91
|
-
.icon-info:before { @include icon-info; }
|
|
92
|
-
.icon-danger:before { @include icon-danger; }
|
|
93
|
-
.icon-users:before { @include icon-users; }
|
|
94
|
-
.icon-user:before { @include icon-user; }
|
|
95
|
-
.icon-test-taker:before { @include icon-test-taker; }
|
|
96
|
-
.icon-test-takers:before { @include icon-test-takers; }
|
|
97
|
-
.icon-item:before { @include icon-item; }
|
|
98
|
-
.icon-test:before { @include icon-test; }
|
|
99
|
-
.icon-delivery:before { @include icon-delivery; }
|
|
100
|
-
.icon-eye-slash:before { @include icon-eye-slash; }
|
|
101
|
-
.icon-result:before { @include icon-result; }
|
|
102
|
-
.icon-delivery-small:before { @include icon-delivery-small; }
|
|
103
|
-
.icon-upload:before { @include icon-upload; }
|
|
104
|
-
.icon-result-small:before { @include icon-result-small; }
|
|
105
|
-
.icon-mobile-preview:before { @include icon-mobile-preview; }
|
|
106
|
-
.icon-extension:before { @include icon-extension; }
|
|
107
|
-
.icon-desktop-preview:before { @include icon-desktop-preview; }
|
|
108
|
-
.icon-tablet-preview:before { @include icon-tablet-preview; }
|
|
109
|
-
.icon-insert-horizontal-line:before { @include icon-insert-horizontal-line; }
|
|
110
|
-
.icon-table:before { @include icon-table; }
|
|
111
|
-
.icon-anchor:before { @include icon-anchor; }
|
|
112
|
-
.icon-unlink:before { @include icon-unlink; }
|
|
113
|
-
.icon-link:before { @include icon-link; }
|
|
114
|
-
.icon-right-left:before { @include icon-right-left; }
|
|
115
|
-
.icon-left-right:before { @include icon-left-right; }
|
|
116
|
-
.icon-special-character:before { @include icon-special-character; }
|
|
117
|
-
.icon-source:before { @include icon-source; }
|
|
118
|
-
.icon-new-page:before { @include icon-new-page; }
|
|
119
|
-
.icon-templates:before { @include icon-templates; }
|
|
120
|
-
.icon-cut:before { @include icon-cut; }
|
|
121
|
-
.icon-replace:before { @include icon-replace; }
|
|
122
|
-
.icon-copy:before { @include icon-copy; }
|
|
123
|
-
.icon-paste:before { @include icon-paste; }
|
|
124
|
-
.icon-select-all:before { @include icon-select-all; }
|
|
125
|
-
.icon-paste-text:before { @include icon-paste-text; }
|
|
126
|
-
.icon-paste-word:before { @include icon-paste-word; }
|
|
127
|
-
.icon-bold:before { @include icon-bold; }
|
|
128
|
-
.icon-italic:before { @include icon-italic; }
|
|
129
|
-
.icon-underline:before { @include icon-underline; }
|
|
130
|
-
.icon-subscript:before { @include icon-subscript; }
|
|
131
|
-
.icon-superscript:before { @include icon-superscript; }
|
|
132
|
-
.icon-strike-through:before { @include icon-strike-through; }
|
|
133
|
-
.icon-decrease-indent:before { @include icon-decrease-indent; }
|
|
134
|
-
.icon-increase-indent:before { @include icon-increase-indent; }
|
|
135
|
-
.icon-block-quote:before { @include icon-block-quote; }
|
|
136
|
-
.icon-div-container:before { @include icon-div-container; }
|
|
137
|
-
.icon-align-left:before { @include icon-align-left; }
|
|
138
|
-
.icon-center:before { @include icon-center; }
|
|
139
|
-
.icon-align-right:before { @include icon-align-right; }
|
|
140
|
-
.icon-justify:before { @include icon-justify; }
|
|
141
|
-
.icon-choice:before { @include icon-choice; }
|
|
142
|
-
.icon-inline-choice:before { @include icon-inline-choice; }
|
|
143
|
-
.icon-match:before { @include icon-match; }
|
|
144
|
-
.icon-associate:before { @include icon-associate; }
|
|
145
|
-
.icon-media:before { @include icon-media; }
|
|
146
|
-
.icon-graphic-order:before { @include icon-graphic-order; }
|
|
147
|
-
.icon-hotspot:before { @include icon-hotspot; }
|
|
148
|
-
.icon-graphic-gap:before { @include icon-graphic-gap; }
|
|
149
|
-
.icon-graphic-associate:before { @include icon-graphic-associate; }
|
|
150
|
-
.icon-select-point:before { @include icon-select-point; }
|
|
151
|
-
.icon-pin:before { @include icon-pin; }
|
|
152
|
-
.icon-import:before { @include icon-import; }
|
|
153
|
-
.icon-export:before { @include icon-export; }
|
|
154
|
-
.icon-move-item:before { @include icon-move-item; }
|
|
155
|
-
.icon-meta-data:before { @include icon-meta-data; }
|
|
156
|
-
.icon-slider:before { @include icon-slider; }
|
|
157
|
-
.icon-summary-report:before { @include icon-summary-report; }
|
|
158
|
-
.icon-text-entry:before { @include icon-text-entry; }
|
|
159
|
-
.icon-extended-text:before { @include icon-extended-text; }
|
|
160
|
-
.icon-eraser:before { @include icon-eraser; }
|
|
161
|
-
.icon-row:before { @include icon-row; }
|
|
162
|
-
.icon-column:before { @include icon-column; }
|
|
163
|
-
.icon-text-color:before { @include icon-text-color; }
|
|
164
|
-
.icon-background-color:before { @include icon-background-color; }
|
|
165
|
-
.icon-spell-check:before { @include icon-spell-check; }
|
|
166
|
-
.icon-polygon:before { @include icon-polygon; }
|
|
167
|
-
.icon-rectangle:before { @include icon-rectangle; }
|
|
168
|
-
.icon-gap-match:before { @include icon-gap-match; }
|
|
169
|
-
.icon-order:before { @include icon-order; }
|
|
170
|
-
.icon-hottext:before { @include icon-hottext; }
|
|
171
|
-
.icon-free-form:before { @include icon-free-form; }
|
|
172
|
-
.icon-step-backward:before { @include icon-step-backward; }
|
|
173
|
-
.icon-fast-backward:before { @include icon-fast-backward; }
|
|
174
|
-
.icon-backward:before { @include icon-backward; }
|
|
175
|
-
.icon-play:before { @include icon-play; }
|
|
176
|
-
.icon-pause:before { @include icon-pause; }
|
|
177
|
-
.icon-stop:before { @include icon-stop; }
|
|
178
|
-
.icon-forward:before { @include icon-forward; }
|
|
179
|
-
.icon-fast-forward:before { @include icon-fast-forward; }
|
|
180
|
-
.icon-step-forward:before { @include icon-step-forward; }
|
|
181
|
-
.icon-ellipsis:before { @include icon-ellipsis; }
|
|
182
|
-
.icon-circle:before { @include icon-circle; }
|
|
183
|
-
.icon-target:before { @include icon-target; }
|
|
184
|
-
.icon-guide-arrow:before { @include icon-guide-arrow; }
|
|
185
|
-
.icon-range-slider-right:before { @include icon-range-slider-right; }
|
|
186
|
-
.icon-range-slider-left:before { @include icon-range-slider-left; }
|
|
187
|
-
.icon-radio-checked:before { @include icon-radio-checked; }
|
|
188
|
-
.icon-checkbox-indeterminate:before { @include icon-checkbox-indeterminate; }
|
|
189
|
-
.icon-checkbox:before { @include icon-checkbox; }
|
|
190
|
-
.icon-checkbox-crossed:before { @include icon-checkbox-crossed; }
|
|
191
|
-
.icon-checkbox-checked:before { @include icon-checkbox-checked; }
|
|
192
|
-
.icon-result-nok:before { @include icon-result-nok; }
|
|
193
|
-
.icon-result-ok:before { @include icon-result-ok; }
|
|
194
|
-
.icon-not-evaluated:before { @include icon-not-evaluated; }
|
|
195
|
-
.icon-filter:before { @include icon-filter; }
|
|
196
|
-
.icon-translate:before { @include icon-translate; }
|
|
197
|
-
.icon-eject:before { @include icon-eject; }
|
|
198
|
-
.icon-continue:before { @include icon-continue; }
|
|
199
|
-
.icon-radio:before { @include icon-radio; }
|
|
200
|
-
.icon-sphere:before { @include icon-sphere; }
|
|
201
|
-
.icon-reset:before { @include icon-reset; }
|
|
202
|
-
.icon-smaller:before { @include icon-smaller; }
|
|
203
|
-
.icon-larger:before { @include icon-larger; }
|
|
204
|
-
.icon-clock:before { @include icon-clock; }
|
|
205
|
-
.icon-font:before { @include icon-font; }
|
|
206
|
-
.icon-maths:before { @include icon-maths; }
|
|
207
|
-
.icon-grip:before { @include icon-grip; }
|
|
208
|
-
.icon-rubric:before { @include icon-rubric; }
|
|
209
|
-
.icon-audio:before { @include icon-audio; }
|
|
210
|
-
.icon-grip-h:before { @include icon-grip-h; }
|
|
211
|
-
.icon-magicwand:before { @include icon-magicwand; }
|
|
212
|
-
.icon-loop:before { @include icon-loop; }
|
|
213
|
-
.icon-calendar:before { @include icon-calendar; }
|
|
214
|
-
.icon-reload:before { @include icon-reload; }
|
|
215
|
-
.icon-speed:before { @include icon-speed; }
|
|
216
|
-
.icon-volume:before { @include icon-volume; }
|
|
217
|
-
.icon-contrast:before { @include icon-contrast; }
|
|
218
|
-
.icon-headphones:before { @include icon-headphones; }
|
|
219
|
-
.icon-compress:before { @include icon-compress; }
|
|
220
|
-
.icon-map-o:before { @include icon-map-o; }
|
|
221
|
-
.icon-variable:before { @include icon-variable; }
|
|
222
|
-
.icon-tooltip:before { @include icon-tooltip; }
|
|
223
|
-
.icon-globe:before { @include icon-globe; }
|
|
224
|
-
.icon-highlighter:before { @include icon-highlighter; }
|
|
225
|
-
.icon-eliminate-crossed:before { @include icon-eliminate-crossed; }
|
|
226
|
-
.icon-play-from-here:before { @include icon-play-from-here; }
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/* Do not edit */@font-face {
|
|
2
|
-
font-family: 'tao';
|
|
3
|
-
src:
|
|
4
|
-
url('#{$fontPath}tao/tao.ttf?48xcon') format('truetype'),
|
|
5
|
-
url('#{$fontPath}tao/tao.woff?48xcon') format('woff'),
|
|
6
|
-
url('#{$fontPath}tao/tao.svg?48xcon#tao') format('svg');
|
|
7
|
-
font-weight: normal;
|
|
8
|
-
font-style: normal;
|
|
9
|
-
font-display: block;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
@@ -1,240 +0,0 @@
|
|
|
1
|
-
/* Do not edit */@mixin tao-icon-setup {
|
|
2
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
3
|
-
font-family: 'tao' !important;
|
|
4
|
-
speak: never;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-weight: normal;
|
|
7
|
-
font-variant: normal;
|
|
8
|
-
text-transform: none;
|
|
9
|
-
line-height: 1;
|
|
10
|
-
|
|
11
|
-
/* Better Font Rendering =========== */
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
@mixin icon-info-bare { content: "\e923"; }
|
|
17
|
-
@mixin icon-bookmark-outline { content: "\e922"; }
|
|
18
|
-
@mixin icon-bookmark { content: "\e921"; }
|
|
19
|
-
@mixin icon-indicator { content: "\e920"; }
|
|
20
|
-
@mixin icon-add-subsection { content: "\e918"; }
|
|
21
|
-
@mixin icon-wrap-inline { content: "\e915"; }
|
|
22
|
-
@mixin icon-wrap-left { content: "\e916"; }
|
|
23
|
-
@mixin icon-wrap-right { content: "\e917"; }
|
|
24
|
-
@mixin icon-offline { content: "\e913"; }
|
|
25
|
-
@mixin icon-online { content: "\e914"; }
|
|
26
|
-
@mixin icon-tab { content: "\e90d"; }
|
|
27
|
-
@mixin icon-untab { content: "\e90e"; }
|
|
28
|
-
@mixin icon-multi-select { content: "\e90b"; }
|
|
29
|
-
@mixin icon-clipboard { content: "\e90a"; }
|
|
30
|
-
@mixin icon-filebox { content: "\e909"; }
|
|
31
|
-
@mixin icon-click-to-speak { content: "\e907"; }
|
|
32
|
-
@mixin icon-speech-bubble { content: "\f0e5"; }
|
|
33
|
-
@mixin icon-microphone { content: "\f130"; }
|
|
34
|
-
@mixin icon-microphone-off { content: "\f131"; }
|
|
35
|
-
@mixin icon-disconnect { content: "\e905"; }
|
|
36
|
-
@mixin icon-connect { content: "\e906"; }
|
|
37
|
-
@mixin icon-eliminate { content: "\e904"; }
|
|
38
|
-
@mixin icon-wheelchair { content: "\e903"; }
|
|
39
|
-
@mixin icon-text-marker { content: "\e902"; }
|
|
40
|
-
@mixin icon-unshield { content: "\e32a"; }
|
|
41
|
-
@mixin icon-shield { content: "\e8e8"; }
|
|
42
|
-
@mixin icon-tree { content: "\e6b4"; }
|
|
43
|
-
@mixin icon-home { content: "\e6b3"; }
|
|
44
|
-
@mixin icon-shared-file { content: "\e6b2"; }
|
|
45
|
-
@mixin icon-end-attempt { content: "\e603"; }
|
|
46
|
-
@mixin icon-icon { content: "\f1c5"; }
|
|
47
|
-
@mixin icon-radio-bg { content: "\e600"; }
|
|
48
|
-
@mixin icon-checkbox-bg { content: "\e601"; }
|
|
49
|
-
@mixin icon-tag { content: "\e602"; }
|
|
50
|
-
@mixin icon-style { content: "\e604"; }
|
|
51
|
-
@mixin icon-ownership-transfer { content: "\e605"; }
|
|
52
|
-
@mixin icon-property-advanced { content: "\e606"; }
|
|
53
|
-
@mixin icon-property-add { content: "\e607"; }
|
|
54
|
-
@mixin icon-repository-add { content: "\e608"; }
|
|
55
|
-
@mixin icon-repository-remove { content: "\e609"; }
|
|
56
|
-
@mixin icon-repository { content: "\e60a"; }
|
|
57
|
-
@mixin icon-result-server { content: "\e60b"; }
|
|
58
|
-
@mixin icon-folder { content: "\e60c"; }
|
|
59
|
-
@mixin icon-folder-open { content: "\e60d"; }
|
|
60
|
-
@mixin icon-left { content: "\e60e"; }
|
|
61
|
-
@mixin icon-right { content: "\e60f"; }
|
|
62
|
-
@mixin icon-up { content: "\e610"; }
|
|
63
|
-
@mixin icon-down { content: "\e611"; }
|
|
64
|
-
@mixin icon-undo { content: "\e612"; }
|
|
65
|
-
@mixin icon-redo { content: "\e613"; }
|
|
66
|
-
@mixin icon-screen { content: "\e614"; }
|
|
67
|
-
@mixin icon-laptop { content: "\e615"; }
|
|
68
|
-
@mixin icon-tablet { content: "\e616"; }
|
|
69
|
-
@mixin icon-phone { content: "\e617"; }
|
|
70
|
-
@mixin icon-move { content: "\e618"; }
|
|
71
|
-
@mixin icon-bin { content: "\e619"; }
|
|
72
|
-
@mixin icon-shuffle { content: "\e61a"; }
|
|
73
|
-
@mixin icon-print { content: "\e61b"; }
|
|
74
|
-
@mixin icon-tools { content: "\e61c"; }
|
|
75
|
-
@mixin icon-settings { content: "\e61d"; }
|
|
76
|
-
@mixin icon-video { content: "\e61e"; }
|
|
77
|
-
@mixin icon-find { content: "\e61f"; }
|
|
78
|
-
@mixin icon-image { content: "\e620"; }
|
|
79
|
-
@mixin icon-edit { content: "\e621"; }
|
|
80
|
-
@mixin icon-document { content: "\e622"; }
|
|
81
|
-
@mixin icon-resize-grid { content: "\e623"; }
|
|
82
|
-
@mixin icon-resize { content: "\e624"; }
|
|
83
|
-
@mixin icon-help { content: "\e625"; }
|
|
84
|
-
@mixin icon-mobile-menu { content: "\e626"; }
|
|
85
|
-
@mixin icon-fix { content: "\e627"; }
|
|
86
|
-
@mixin icon-unlock { content: "\e628"; }
|
|
87
|
-
@mixin icon-lock { content: "\e629"; }
|
|
88
|
-
@mixin icon-ul { content: "\e62a"; }
|
|
89
|
-
@mixin icon-ol { content: "\e62b"; }
|
|
90
|
-
@mixin icon-email { content: "\e62c"; }
|
|
91
|
-
@mixin icon-download { content: "\e62d"; }
|
|
92
|
-
@mixin icon-logout { content: "\e62e"; }
|
|
93
|
-
@mixin icon-login { content: "\e62f"; }
|
|
94
|
-
@mixin icon-spinner { content: "\e630"; }
|
|
95
|
-
@mixin icon-preview { content: "\e631"; }
|
|
96
|
-
@mixin icon-external { content: "\e632"; }
|
|
97
|
-
@mixin icon-time { content: "\e633"; }
|
|
98
|
-
@mixin icon-save { content: "\e634"; }
|
|
99
|
-
@mixin icon-warning { content: "\e635"; }
|
|
100
|
-
@mixin icon-add { content: "\e636"; }
|
|
101
|
-
@mixin icon-error { content: "\e900"; }
|
|
102
|
-
@mixin icon-close { content: "\e637"; }
|
|
103
|
-
@mixin icon-success { content: "\e638"; }
|
|
104
|
-
@mixin icon-remove { content: "\e639"; }
|
|
105
|
-
@mixin icon-info { content: "\e63a"; }
|
|
106
|
-
@mixin icon-danger { content: "\e63b"; }
|
|
107
|
-
@mixin icon-users { content: "\e63c"; }
|
|
108
|
-
@mixin icon-user { content: "\e63d"; }
|
|
109
|
-
@mixin icon-test-taker { content: "\e63e"; }
|
|
110
|
-
@mixin icon-test-takers { content: "\e63f"; }
|
|
111
|
-
@mixin icon-item { content: "\e640"; }
|
|
112
|
-
@mixin icon-test { content: "\e641"; }
|
|
113
|
-
@mixin icon-delivery { content: "\e642"; }
|
|
114
|
-
@mixin icon-eye-slash { content: "\e643"; }
|
|
115
|
-
@mixin icon-result { content: "\e644"; }
|
|
116
|
-
@mixin icon-delivery-small { content: "\e645"; }
|
|
117
|
-
@mixin icon-upload { content: "\e646"; }
|
|
118
|
-
@mixin icon-result-small { content: "\e647"; }
|
|
119
|
-
@mixin icon-mobile-preview { content: "\e648"; }
|
|
120
|
-
@mixin icon-extension { content: "\e649"; }
|
|
121
|
-
@mixin icon-desktop-preview { content: "\e64a"; }
|
|
122
|
-
@mixin icon-tablet-preview { content: "\e64b"; }
|
|
123
|
-
@mixin icon-insert-horizontal-line { content: "\e64c"; }
|
|
124
|
-
@mixin icon-table { content: "\e64d"; }
|
|
125
|
-
@mixin icon-anchor { content: "\e64e"; }
|
|
126
|
-
@mixin icon-unlink { content: "\e64f"; }
|
|
127
|
-
@mixin icon-link { content: "\e650"; }
|
|
128
|
-
@mixin icon-right-left { content: "\e651"; }
|
|
129
|
-
@mixin icon-left-right { content: "\e652"; }
|
|
130
|
-
@mixin icon-special-character { content: "\e653"; }
|
|
131
|
-
@mixin icon-source { content: "\e654"; }
|
|
132
|
-
@mixin icon-new-page { content: "\e655"; }
|
|
133
|
-
@mixin icon-templates { content: "\e656"; }
|
|
134
|
-
@mixin icon-cut { content: "\e657"; }
|
|
135
|
-
@mixin icon-replace { content: "\e658"; }
|
|
136
|
-
@mixin icon-copy { content: "\e659"; }
|
|
137
|
-
@mixin icon-paste { content: "\e65a"; }
|
|
138
|
-
@mixin icon-select-all { content: "\e65b"; }
|
|
139
|
-
@mixin icon-paste-text { content: "\e65c"; }
|
|
140
|
-
@mixin icon-paste-word { content: "\e65d"; }
|
|
141
|
-
@mixin icon-bold { content: "\e65e"; }
|
|
142
|
-
@mixin icon-italic { content: "\e65f"; }
|
|
143
|
-
@mixin icon-underline { content: "\e660"; }
|
|
144
|
-
@mixin icon-subscript { content: "\e661"; }
|
|
145
|
-
@mixin icon-superscript { content: "\e662"; }
|
|
146
|
-
@mixin icon-strike-through { content: "\e663"; }
|
|
147
|
-
@mixin icon-decrease-indent { content: "\e664"; }
|
|
148
|
-
@mixin icon-increase-indent { content: "\e665"; }
|
|
149
|
-
@mixin icon-block-quote { content: "\e666"; }
|
|
150
|
-
@mixin icon-div-container { content: "\e667"; }
|
|
151
|
-
@mixin icon-align-left { content: "\e668"; }
|
|
152
|
-
@mixin icon-center { content: "\e669"; }
|
|
153
|
-
@mixin icon-align-right { content: "\e66a"; }
|
|
154
|
-
@mixin icon-justify { content: "\e66b"; }
|
|
155
|
-
@mixin icon-choice { content: "\e66c"; }
|
|
156
|
-
@mixin icon-inline-choice { content: "\e66d"; }
|
|
157
|
-
@mixin icon-match { content: "\e66e"; }
|
|
158
|
-
@mixin icon-associate { content: "\e66f"; }
|
|
159
|
-
@mixin icon-media { content: "\e670"; }
|
|
160
|
-
@mixin icon-graphic-order { content: "\e671"; }
|
|
161
|
-
@mixin icon-hotspot { content: "\e672"; }
|
|
162
|
-
@mixin icon-graphic-gap { content: "\e673"; }
|
|
163
|
-
@mixin icon-graphic-associate { content: "\e674"; }
|
|
164
|
-
@mixin icon-select-point { content: "\e675"; }
|
|
165
|
-
@mixin icon-pin { content: "\e676"; }
|
|
166
|
-
@mixin icon-import { content: "\e677"; }
|
|
167
|
-
@mixin icon-export { content: "\e678"; }
|
|
168
|
-
@mixin icon-move-item { content: "\e679"; }
|
|
169
|
-
@mixin icon-meta-data { content: "\e67a"; }
|
|
170
|
-
@mixin icon-slider { content: "\e67b"; }
|
|
171
|
-
@mixin icon-summary-report { content: "\e67c"; }
|
|
172
|
-
@mixin icon-text-entry { content: "\e67d"; }
|
|
173
|
-
@mixin icon-extended-text { content: "\e67e"; }
|
|
174
|
-
@mixin icon-eraser { content: "\e67f"; }
|
|
175
|
-
@mixin icon-row { content: "\e680"; }
|
|
176
|
-
@mixin icon-column { content: "\e681"; }
|
|
177
|
-
@mixin icon-text-color { content: "\e682"; }
|
|
178
|
-
@mixin icon-background-color { content: "\e683"; }
|
|
179
|
-
@mixin icon-spell-check { content: "\e684"; }
|
|
180
|
-
@mixin icon-polygon { content: "\e685"; }
|
|
181
|
-
@mixin icon-rectangle { content: "\e686"; }
|
|
182
|
-
@mixin icon-gap-match { content: "\e687"; }
|
|
183
|
-
@mixin icon-order { content: "\e688"; }
|
|
184
|
-
@mixin icon-hottext { content: "\e689"; }
|
|
185
|
-
@mixin icon-free-form { content: "\e68a"; }
|
|
186
|
-
@mixin icon-step-backward { content: "\e68b"; }
|
|
187
|
-
@mixin icon-fast-backward { content: "\e68c"; }
|
|
188
|
-
@mixin icon-backward { content: "\e68d"; }
|
|
189
|
-
@mixin icon-play { content: "\e68e"; }
|
|
190
|
-
@mixin icon-pause { content: "\e68f"; }
|
|
191
|
-
@mixin icon-stop { content: "\e690"; }
|
|
192
|
-
@mixin icon-forward { content: "\e691"; }
|
|
193
|
-
@mixin icon-fast-forward { content: "\e692"; }
|
|
194
|
-
@mixin icon-step-forward { content: "\e693"; }
|
|
195
|
-
@mixin icon-ellipsis { content: "\e694"; }
|
|
196
|
-
@mixin icon-circle { content: "\e695"; }
|
|
197
|
-
@mixin icon-target { content: "\e696"; }
|
|
198
|
-
@mixin icon-guide-arrow { content: "\e697"; }
|
|
199
|
-
@mixin icon-range-slider-right { content: "\e698"; }
|
|
200
|
-
@mixin icon-range-slider-left { content: "\e699"; }
|
|
201
|
-
@mixin icon-radio-checked { content: "\e69a"; }
|
|
202
|
-
@mixin icon-checkbox-indeterminate { content: "\e901"; }
|
|
203
|
-
@mixin icon-checkbox { content: "\e69b"; }
|
|
204
|
-
@mixin icon-checkbox-crossed { content: "\e69c"; }
|
|
205
|
-
@mixin icon-checkbox-checked { content: "\e69d"; }
|
|
206
|
-
@mixin icon-result-nok { content: "\e69e"; }
|
|
207
|
-
@mixin icon-result-ok { content: "\e69f"; }
|
|
208
|
-
@mixin icon-not-evaluated { content: "\e6a0"; }
|
|
209
|
-
@mixin icon-filter { content: "\e6a1"; }
|
|
210
|
-
@mixin icon-translate { content: "\e6a2"; }
|
|
211
|
-
@mixin icon-eject { content: "\e6a3"; }
|
|
212
|
-
@mixin icon-continue { content: "\e6a4"; }
|
|
213
|
-
@mixin icon-radio { content: "\e6a5"; }
|
|
214
|
-
@mixin icon-sphere { content: "\e6a6"; }
|
|
215
|
-
@mixin icon-reset { content: "\e6a7"; }
|
|
216
|
-
@mixin icon-smaller { content: "\e6a8"; }
|
|
217
|
-
@mixin icon-larger { content: "\e6a9"; }
|
|
218
|
-
@mixin icon-clock { content: "\e6aa"; }
|
|
219
|
-
@mixin icon-font { content: "\e6ab"; }
|
|
220
|
-
@mixin icon-maths { content: "\e6ac"; }
|
|
221
|
-
@mixin icon-grip { content: "\e6ad"; }
|
|
222
|
-
@mixin icon-rubric { content: "\e6ae"; }
|
|
223
|
-
@mixin icon-audio { content: "\e6af"; }
|
|
224
|
-
@mixin icon-grip-h { content: "\e6b0"; }
|
|
225
|
-
@mixin icon-magicwand { content: "\e6b1"; }
|
|
226
|
-
@mixin icon-loop { content: "\ea2e"; }
|
|
227
|
-
@mixin icon-calendar { content: "\e953"; }
|
|
228
|
-
@mixin icon-reload { content: "\e984"; }
|
|
229
|
-
@mixin icon-speed { content: "\e9a6"; }
|
|
230
|
-
@mixin icon-volume { content: "\ea27"; }
|
|
231
|
-
@mixin icon-contrast { content: "\e9d5"; }
|
|
232
|
-
@mixin icon-headphones { content: "\e910"; }
|
|
233
|
-
@mixin icon-compress { content: "\f066"; }
|
|
234
|
-
@mixin icon-map-o { content: "\f278"; }
|
|
235
|
-
@mixin icon-variable { content: "\e908"; }
|
|
236
|
-
@mixin icon-tooltip { content: "\e90c"; }
|
|
237
|
-
@mixin icon-globe { content: "\e9c9"; }
|
|
238
|
-
@mixin icon-highlighter { content: "\e90f"; }
|
|
239
|
-
@mixin icon-eliminate-crossed { content: "\e911"; }
|
|
240
|
-
@mixin icon-play-from-here { content: "\e912"; }
|