sccoreui 3.2.4 → 3.2.6
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/assets/App.scss +105 -0
- package/dist/assets/flex.css +21618 -0
- package/dist/assets/fonts/Lato-Black.ttf +0 -0
- package/dist/assets/fonts/Lato-Bold.ttf +0 -0
- package/dist/assets/fonts/Lato-Light.ttf +0 -0
- package/dist/assets/fonts/Lato-Thin.ttf +0 -0
- package/dist/assets/images/Payment-method-apple-card.png +0 -0
- package/dist/assets/images/Payment-method-card-white.png +0 -0
- package/dist/assets/images/Payment-method-master-card.png +0 -0
- package/dist/assets/images/avatar.png +0 -0
- package/dist/assets/images/avatar1.png +0 -0
- package/dist/assets/images/avatar2.png +0 -0
- package/dist/assets/images/avatar3.png +0 -0
- package/dist/assets/images/avatar4.png +0 -0
- package/dist/assets/images/avatar5.png +0 -0
- package/dist/assets/images/avatar6.png +0 -0
- package/dist/assets/images/avatar7.png +0 -0
- package/dist/assets/images/avatar8.png +0 -0
- package/dist/assets/images/avatar9.png +0 -0
- package/dist/assets/images/company.png +0 -0
- package/dist/assets/images/company1.png +0 -0
- package/dist/assets/images/company2.png +0 -0
- package/dist/assets/images/company3.png +0 -0
- package/dist/assets/images/company4.png +0 -0
- package/dist/assets/images/company5.png +0 -0
- package/dist/assets/images/company6.png +0 -0
- package/dist/assets/images/demoImage.png +0 -0
- package/dist/assets/images/label-image.png +0 -0
- package/dist/assets/images/profile-square-image.png +0 -0
- package/dist/assets/png/salseforce-img.png +0 -0
- package/dist/assets/sccoreicons.css +1105 -0
- package/dist/assets/sccoreui.css +8871 -0
- package/dist/assets/svg/add.svg +3 -0
- package/dist/assets/svg/back-button.svg +3 -0
- package/dist/assets/svg/check-white.svg +3 -0
- package/dist/assets/svg/check2.svg +3 -0
- package/dist/assets/svg/close.svg +3 -0
- package/dist/assets/svg/delete.svg +3 -0
- package/dist/assets/svg/done_all.svg +3 -0
- package/dist/assets/svg/down_arrow.svg +3 -0
- package/dist/assets/svg/edit.svg +3 -0
- package/dist/assets/svg/hyphen.svg +3 -0
- package/dist/assets/svg/info.svg +3 -0
- package/dist/assets/svg/input-info.svg +0 -0
- package/dist/assets/svg/message-info.svg +3 -0
- package/dist/assets/svg/payment_method.svg +7 -0
- package/dist/assets/svg/svg.js +143 -25
- package/dist/assets/svg/user.svg +3 -0
- package/dist/assets/theme.css +6459 -0
- package/dist/src/App.css +0 -0
- package/dist/{main.js → src/App.js} +1 -1
- package/dist/src/assets/svg/svg.js +32 -0
- package/dist/{index.js → src/index.js} +6 -5
- package/dist/src/pages/avatar/avatar.js +50 -0
- package/dist/src/pages/badges/badge.js +73 -0
- package/dist/src/pages/breadcrumb/breadcrumb.js +14 -0
- package/dist/src/pages/button/button.js +10 -0
- package/dist/src/pages/button-group/button-group.js +10 -0
- package/dist/src/pages/chart/chart.js +257 -0
- package/dist/src/pages/checkbox/checkbox.js +26 -0
- package/dist/src/pages/checkbox-group/checkbox-group-component.js +21 -0
- package/dist/src/pages/color-picker/color-picker.js +13 -0
- package/dist/src/pages/content-dividers/content-dividers.js +11 -0
- package/dist/src/pages/date-picker/date-picker.js +12 -0
- package/dist/src/pages/dropdown/dropdown-component.js +38 -0
- package/dist/src/pages/file-upload/file-upload.js +34 -0
- package/dist/src/pages/flex.js +15 -0
- package/dist/src/pages/home.js +40 -0
- package/dist/src/pages/input/input-text.js +112 -0
- package/dist/src/pages/loader-indicator/loader-indicator.js +10 -0
- package/dist/src/pages/mega-mennu/mega-menu.js +84 -0
- package/dist/src/pages/not-found/not-found.js +10 -0
- package/dist/src/pages/paginator/pagination.js +122 -0
- package/dist/src/pages/progress-bar/progress-bar.js +27 -0
- package/dist/src/pages/progress-steps/progress-steps.js +24 -0
- package/dist/src/pages/radio-button/radio-button-component.js +11 -0
- package/dist/src/pages/shadows/shadows.js +7 -0
- package/dist/src/pages/slideout-menus/slideout-menus.js +104 -0
- package/dist/src/pages/sliders/slider.js +39 -0
- package/dist/src/pages/tabels/table-data.js +2193 -0
- package/dist/src/pages/tabels/table.js +98 -0
- package/dist/src/pages/tabs/tabs.js +9 -0
- package/dist/src/pages/tags/tags.js +70 -0
- package/dist/src/pages/toast/toast.js +47 -0
- package/dist/src/pages/toggle/toggle.js +10 -0
- package/dist/src/pages/tooltip/tooltip.js +13 -0
- package/dist/src/pages/types/type.js +2 -0
- package/dist/types/customSlider.js +5 -0
- package/dist/types/{Main.d.ts → src/App.d.ts} +1 -1
- package/dist/types/{index.d.ts → src/index.d.ts} +1 -0
- package/dist/types/src/pages/avatar/avatar.d.ts +3 -0
- package/dist/types/src/pages/badges/badge.d.ts +3 -0
- package/dist/types/src/pages/breadcrumb/breadcrumb.d.ts +2 -0
- package/dist/types/src/pages/button/button.d.ts +2 -0
- package/dist/types/src/pages/button-group/button-group.d.ts +2 -0
- package/dist/types/src/pages/chart/chart.d.ts +2 -0
- package/dist/types/src/pages/checkbox/checkbox.d.ts +2 -0
- package/dist/types/src/pages/checkbox-group/checkbox-group-component.d.ts +3 -0
- package/dist/types/src/pages/color-picker/color-picker.d.ts +2 -0
- package/dist/types/src/pages/content-dividers/content-dividers.d.ts +2 -0
- package/dist/types/src/pages/date-picker/date-picker.d.ts +2 -0
- package/dist/types/src/pages/dropdown/dropdown-component.d.ts +2 -0
- package/dist/types/src/pages/file-upload/file-upload.d.ts +3 -0
- package/dist/types/src/pages/flex.d.ts +2 -0
- package/dist/types/src/pages/home.d.ts +2 -0
- package/dist/types/src/pages/input/input-text.d.ts +3 -0
- package/dist/types/src/pages/loader-indicator/loader-indicator.d.ts +3 -0
- package/dist/types/src/pages/mega-mennu/mega-menu.d.ts +2 -0
- package/dist/types/src/pages/not-found/not-found.d.ts +2 -0
- package/dist/types/src/pages/paginator/pagination.d.ts +2 -0
- package/dist/types/src/pages/progress-bar/progress-bar.d.ts +3 -0
- package/dist/types/src/pages/progress-steps/progress-steps.d.ts +2 -0
- package/dist/types/src/pages/radio-button/radio-button-component.d.ts +2 -0
- package/dist/types/src/pages/shadows/shadows.d.ts +2 -0
- package/dist/types/src/pages/slideout-menus/slideout-menus.d.ts +2 -0
- package/dist/types/src/pages/sliders/slider.d.ts +1 -0
- package/dist/types/src/pages/tabels/table-data.d.ts +3 -0
- package/dist/types/src/pages/tabels/table.d.ts +2 -0
- package/dist/types/src/pages/tabs/tabs.d.ts +3 -0
- package/dist/types/src/pages/tags/tags.d.ts +3 -0
- package/dist/types/src/pages/toast/toast.d.ts +2 -0
- package/dist/types/src/pages/toggle/toggle.d.ts +2 -0
- package/dist/types/src/pages/tooltip/tooltip.d.ts +2 -0
- package/dist/types/src/pages/types/type.d.ts +64 -0
- package/dist/types/types/customSlider.d.ts +2 -0
- package/package.json +7 -1
- package/dist/261.js +0 -2
- package/dist/261.js.LICENSE.txt +0 -13
- /package/dist/{633ffe4a4b5b7277cc35.ttf → assets/fonts/Lato-Regular.ttf} +0 -0
- /package/dist/{d44157bdfa026dc877af.eot → assets/fonts/primeicons.eot} +0 -0
- /package/dist/{305db783e966ca4304db.svg → assets/fonts/primeicons.svg} +0 -0
- /package/dist/{ea5358601d0a3fd6670b.ttf → assets/fonts/primeicons.ttf} +0 -0
- /package/dist/{10d3152104f2208ac82a.woff → assets/fonts/primeicons.woff} +0 -0
- /package/dist/{78172950b335ccdb94e2.woff2 → assets/fonts/primeicons.woff2} +0 -0
- /package/dist/{dcc2da6eff4ea773fe90.svg → assets/svg/check.svg} +0 -0
- /package/dist/{7bb38108c5456785f29e.svg → assets/svg/remove.svg} +0 -0
- /package/dist/{9373894c9cc9f6a4db94.svg → assets/svg/sort-down-arrow.svg} +0 -0
- /package/dist/{11bc05747691413233e4.svg → assets/svg/sort-up-arrow.svg} +0 -0
- /package/dist/{components → src/components}/accordion/accordion.js +0 -0
- /package/dist/{components → src/components}/auto-complete/auto-complete.js +0 -0
- /package/dist/{components → src/components}/avatar/avatar-group.js +0 -0
- /package/dist/{components → src/components}/avatar/avatar.js +0 -0
- /package/dist/{components → src/components}/badge/badge.js +0 -0
- /package/dist/{components → src/components}/breadcrumb/breacrumb.js +0 -0
- /package/dist/{components → src/components}/button/button.js +0 -0
- /package/dist/{components → src/components}/button/menu-item.js +0 -0
- /package/dist/{components → src/components}/button/speed-dial.js +0 -0
- /package/dist/{components → src/components}/button/split-button.js +0 -0
- /package/dist/{components → src/components}/calendar/calendar.js +0 -0
- /package/dist/{components → src/components}/card/card.js +0 -0
- /package/dist/{components → src/components}/carousel/carousel.js +0 -0
- /package/dist/{components → src/components}/carousel/tag.js +0 -0
- /package/dist/{components → src/components}/chart/chart.js +0 -0
- /package/dist/{components → src/components}/checkbox/checkbox.js +0 -0
- /package/dist/{components → src/components}/chips/chip.js +0 -0
- /package/dist/{components → src/components}/chips/chips.js +0 -0
- /package/dist/{components → src/components}/color-picker/color-picker.js +0 -0
- /package/dist/{components → src/components}/custom-slider/custom-slider.js +0 -0
- /package/dist/{components → src/components}/data-table/column.js +0 -0
- /package/dist/{components → src/components}/data-table/data-table.js +0 -0
- /package/dist/{components → src/components}/data-table/paginator.js +0 -0
- /package/dist/{components → src/components}/data-view/data-view.js +0 -0
- /package/dist/{components → src/components}/dialogs/confirm-dialog.js +0 -0
- /package/dist/{components → src/components}/dialogs/confirm-popup.js +0 -0
- /package/dist/{components → src/components}/dialogs/dialog.js +0 -0
- /package/dist/{components → src/components}/divider/divider.js +0 -0
- /package/dist/{components → src/components}/dropdown/dropdown.js +0 -0
- /package/dist/{components → src/components}/file-upload/file-upload.js +0 -0
- /package/dist/{components → src/components}/galleria/galleria.js +0 -0
- /package/dist/{components → src/components}/image/image.js +0 -0
- /package/dist/{components → src/components}/input/input-mask.js +0 -0
- /package/dist/{components → src/components}/input/input-number.js +0 -0
- /package/dist/{components → src/components}/input/input-switch.js +0 -0
- /package/dist/{components → src/components}/input/input-textarea.js +0 -0
- /package/dist/{components → src/components}/input/input.js +0 -0
- /package/dist/{components → src/components}/loading-indicator/loading-indicator-custom.js +0 -0
- /package/dist/{components → src/components}/megamenu/mega-menu.js +0 -0
- /package/dist/{components → src/components}/multi-select/multi-select.js +0 -0
- /package/dist/{components → src/components}/overlays/overlay-panel.js +0 -0
- /package/dist/{components → src/components}/password/password.js +0 -0
- /package/dist/{components → src/components}/progress-bar/progress-bar.js +0 -0
- /package/dist/{components → src/components}/progress-steps/progress-steps.js +0 -0
- /package/dist/{components → src/components}/progress_bar_round/circle-progress-bar.js +0 -0
- /package/dist/{components → src/components}/progress_bar_round/half-circle-progres-bar.js +0 -0
- /package/dist/{components → src/components}/radio-button/radio-button.js +0 -0
- /package/dist/{components → src/components}/range-slider/slider.js +0 -0
- /package/dist/{components → src/components}/rating/rating.js +0 -0
- /package/dist/{components → src/components}/side-panel/side-panel.js +0 -0
- /package/dist/{components → src/components}/skeleton/skeleton.js +0 -0
- /package/dist/{components → src/components}/slider/slider.js +0 -0
- /package/dist/{components → src/components}/spinner/spinner.js +0 -0
- /package/dist/{components → src/components}/tab-menu/tab-menu.js +0 -0
- /package/dist/{components → src/components}/tabview/tabview.js +0 -0
- /package/dist/{components → src/components}/toast/toast.js +0 -0
- /package/dist/{components → src/components}/toggle/toggle-button.js +0 -0
- /package/dist/{components → src/components}/tooltip/tooltip.js +0 -0
- /package/dist/{components → src/components}/types/type.js +0 -0
- /package/dist/{components → src/components}/utils/classnames.js +0 -0
- /package/dist/{directives → src/directives}/svg-component.js +0 -0
- /package/dist/{directives → src/directives}/svg-icons.js +0 -0
- /package/dist/types/{assets → src/assets}/svg/svg.d.ts +0 -0
- /package/dist/types/{components → src/components}/accordion/accordion.d.ts +0 -0
- /package/dist/types/{components → src/components}/auto-complete/auto-complete.d.ts +0 -0
- /package/dist/types/{components → src/components}/avatar/avatar-group.d.ts +0 -0
- /package/dist/types/{components → src/components}/avatar/avatar.d.ts +0 -0
- /package/dist/types/{components → src/components}/badge/badge.d.ts +0 -0
- /package/dist/types/{components → src/components}/breadcrumb/breacrumb.d.ts +0 -0
- /package/dist/types/{components → src/components}/button/button.d.ts +0 -0
- /package/dist/types/{components → src/components}/button/menu-item.d.ts +0 -0
- /package/dist/types/{components → src/components}/button/speed-dial.d.ts +0 -0
- /package/dist/types/{components → src/components}/button/split-button.d.ts +0 -0
- /package/dist/types/{components → src/components}/calendar/calendar.d.ts +0 -0
- /package/dist/types/{components → src/components}/card/card.d.ts +0 -0
- /package/dist/types/{components → src/components}/carousel/carousel.d.ts +0 -0
- /package/dist/types/{components → src/components}/carousel/tag.d.ts +0 -0
- /package/dist/types/{components → src/components}/chart/chart.d.ts +0 -0
- /package/dist/types/{components → src/components}/checkbox/checkbox.d.ts +0 -0
- /package/dist/types/{components → src/components}/chips/chip.d.ts +0 -0
- /package/dist/types/{components → src/components}/chips/chips.d.ts +0 -0
- /package/dist/types/{components → src/components}/color-picker/color-picker.d.ts +0 -0
- /package/dist/types/{components → src/components}/custom-slider/custom-slider.d.ts +0 -0
- /package/dist/types/{components → src/components}/data-table/column.d.ts +0 -0
- /package/dist/types/{components → src/components}/data-table/data-table.d.ts +0 -0
- /package/dist/types/{components → src/components}/data-table/paginator.d.ts +0 -0
- /package/dist/types/{components → src/components}/data-view/data-view.d.ts +0 -0
- /package/dist/types/{components → src/components}/dialogs/confirm-dialog.d.ts +0 -0
- /package/dist/types/{components → src/components}/dialogs/confirm-popup.d.ts +0 -0
- /package/dist/types/{components → src/components}/dialogs/dialog.d.ts +0 -0
- /package/dist/types/{components → src/components}/divider/divider.d.ts +0 -0
- /package/dist/types/{components → src/components}/dropdown/dropdown.d.ts +0 -0
- /package/dist/types/{components → src/components}/file-upload/file-upload.d.ts +0 -0
- /package/dist/types/{components → src/components}/galleria/galleria.d.ts +0 -0
- /package/dist/types/{components → src/components}/image/image.d.ts +0 -0
- /package/dist/types/{components → src/components}/input/input-mask.d.ts +0 -0
- /package/dist/types/{components → src/components}/input/input-number.d.ts +0 -0
- /package/dist/types/{components → src/components}/input/input-switch.d.ts +0 -0
- /package/dist/types/{components → src/components}/input/input-textarea.d.ts +0 -0
- /package/dist/types/{components → src/components}/input/input.d.ts +0 -0
- /package/dist/types/{components → src/components}/loading-indicator/loading-indicator-custom.d.ts +0 -0
- /package/dist/types/{components → src/components}/megamenu/mega-menu.d.ts +0 -0
- /package/dist/types/{components → src/components}/multi-select/multi-select.d.ts +0 -0
- /package/dist/types/{components → src/components}/overlays/overlay-panel.d.ts +0 -0
- /package/dist/types/{components → src/components}/password/password.d.ts +0 -0
- /package/dist/types/{components → src/components}/progress-bar/progress-bar.d.ts +0 -0
- /package/dist/types/{components → src/components}/progress-steps/progress-steps.d.ts +0 -0
- /package/dist/types/{components → src/components}/progress_bar_round/circle-progress-bar.d.ts +0 -0
- /package/dist/types/{components → src/components}/progress_bar_round/half-circle-progres-bar.d.ts +0 -0
- /package/dist/types/{components → src/components}/radio-button/radio-button.d.ts +0 -0
- /package/dist/types/{components → src/components}/range-slider/slider.d.ts +0 -0
- /package/dist/types/{components → src/components}/rating/rating.d.ts +0 -0
- /package/dist/types/{components → src/components}/side-panel/side-panel.d.ts +0 -0
- /package/dist/types/{components → src/components}/skeleton/skeleton.d.ts +0 -0
- /package/dist/types/{components → src/components}/slider/slider.d.ts +0 -0
- /package/dist/types/{components → src/components}/spinner/spinner.d.ts +0 -0
- /package/dist/types/{components → src/components}/tab-menu/tab-menu.d.ts +0 -0
- /package/dist/types/{components → src/components}/tabview/tabview.d.ts +0 -0
- /package/dist/types/{components → src/components}/toast/toast.d.ts +0 -0
- /package/dist/types/{components → src/components}/toggle/toggle-button.d.ts +0 -0
- /package/dist/types/{components → src/components}/tooltip/tooltip.d.ts +0 -0
- /package/dist/types/{components → src/components}/types/type.d.ts +0 -0
- /package/dist/types/{components → src/components}/utils/classnames.d.ts +0 -0
- /package/dist/types/{directives → src/directives}/svg-component.d.ts +0 -0
- /package/dist/types/{directives → src/directives}/svg-icons.d.ts +0 -0
|
@@ -0,0 +1,1105 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'primeicons';
|
|
3
|
+
font-display: block;
|
|
4
|
+
src: url('./fonts/primeicons.eot');
|
|
5
|
+
src: url('./fonts/primeicons.eot?#iefix') format('embedded-opentype'), url('./fonts/primeicons.woff2') format('woff2'), url('./fonts/primeicons.woff') format('woff'), url('./fonts/primeicons.ttf') format('truetype'), url('./fonts/primeicons.svg?#primeicons') format('svg');
|
|
6
|
+
font-weight: normal;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.pi {
|
|
11
|
+
font-family: 'primeicons';
|
|
12
|
+
speak: none;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: normal;
|
|
15
|
+
font-variant: normal;
|
|
16
|
+
text-transform: none;
|
|
17
|
+
line-height: 1;
|
|
18
|
+
display: inline-block;
|
|
19
|
+
-webkit-font-smoothing: antialiased;
|
|
20
|
+
-moz-osx-font-smoothing: grayscale;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.pi:before {
|
|
24
|
+
--webkit-backface-visibility:hidden;
|
|
25
|
+
backface-visibility: hidden;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.pi-fw {
|
|
29
|
+
width: 1.28571429em;
|
|
30
|
+
text-align: center;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.pi-spin {
|
|
34
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
|
35
|
+
animation: fa-spin 2s infinite linear;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@-webkit-keyframes fa-spin {
|
|
39
|
+
0% {
|
|
40
|
+
-webkit-transform: rotate(0deg);
|
|
41
|
+
transform: rotate(0deg);
|
|
42
|
+
}
|
|
43
|
+
100% {
|
|
44
|
+
-webkit-transform: rotate(359deg);
|
|
45
|
+
transform: rotate(359deg);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@keyframes fa-spin {
|
|
50
|
+
0% {
|
|
51
|
+
-webkit-transform: rotate(0deg);
|
|
52
|
+
transform: rotate(0deg);
|
|
53
|
+
}
|
|
54
|
+
100% {
|
|
55
|
+
-webkit-transform: rotate(359deg);
|
|
56
|
+
transform: rotate(359deg);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.pi-eraser:before {
|
|
61
|
+
content: "\ea04";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.pi-stopwatch:before {
|
|
65
|
+
content: "\ea01";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.pi-verified:before {
|
|
69
|
+
content: "\ea02";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.pi-delete-left:before {
|
|
73
|
+
content: "\ea03";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.pi-hourglass:before {
|
|
77
|
+
content: "\e9fe";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.pi-truck:before {
|
|
81
|
+
content: "\ea00";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.pi-wrench:before {
|
|
85
|
+
content: "\e9ff";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.pi-microphone:before {
|
|
89
|
+
content: "\e9fa";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.pi-megaphone:before {
|
|
93
|
+
content: "\e9fb";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.pi-arrow-right-arrow-left:before {
|
|
97
|
+
content: "\e9fc";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.pi-bitcoin:before {
|
|
101
|
+
content: "\e9fd";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.pi-file-edit:before {
|
|
105
|
+
content: "\e9f6";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.pi-language:before {
|
|
109
|
+
content: "\e9f7";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.pi-file-export:before {
|
|
113
|
+
content: "\e9f8";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.pi-file-import:before {
|
|
117
|
+
content: "\e9f9";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.pi-file-word:before {
|
|
121
|
+
content: "\e9f1";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.pi-gift:before {
|
|
125
|
+
content: "\e9f2";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.pi-cart-plus:before {
|
|
129
|
+
content: "\e9f3";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.pi-thumbs-down-fill:before {
|
|
133
|
+
content: "\e9f4";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.pi-thumbs-up-fill:before {
|
|
137
|
+
content: "\e9f5";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.pi-arrows-alt:before {
|
|
141
|
+
content: "\e9f0";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.pi-calculator:before {
|
|
145
|
+
content: "\e9ef";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.pi-sort-alt-slash:before {
|
|
149
|
+
content: "\e9ee";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.pi-arrows-h:before {
|
|
153
|
+
content: "\e9ec";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.pi-arrows-v:before {
|
|
157
|
+
content: "\e9ed";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.pi-pound:before {
|
|
161
|
+
content: "\e9eb";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.pi-prime:before {
|
|
165
|
+
content: "\e9ea";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.pi-chart-pie:before {
|
|
169
|
+
content: "\e9e9";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.pi-reddit:before {
|
|
173
|
+
content: "\e9e8";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.pi-code:before {
|
|
177
|
+
content: "\e9e7";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.pi-sync:before {
|
|
181
|
+
content: "\e9e6";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.pi-shopping-bag:before {
|
|
185
|
+
content: "\e9e5";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.pi-server:before {
|
|
189
|
+
content: "\e9e4";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.pi-database:before {
|
|
193
|
+
content: "\e9e3";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.pi-hashtag:before {
|
|
197
|
+
content: "\e9e2";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.pi-bookmark-fill:before {
|
|
201
|
+
content: "\e9df";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.pi-filter-fill:before {
|
|
205
|
+
content: "\e9e0";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.pi-heart-fill:before {
|
|
209
|
+
content: "\e9e1";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.pi-flag-fill:before {
|
|
213
|
+
content: "\e9de";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.pi-circle:before {
|
|
217
|
+
content: "\e9dc";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.pi-circle-fill:before {
|
|
221
|
+
content: "\e9dd";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.pi-bolt:before {
|
|
225
|
+
content: "\e9db";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.pi-history:before {
|
|
229
|
+
content: "\e9da";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.pi-box:before {
|
|
233
|
+
content: "\e9d9";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.pi-at:before {
|
|
237
|
+
content: "\e9d8";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.pi-arrow-up-right:before {
|
|
241
|
+
content: "\e9d4";
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.pi-arrow-up-left:before {
|
|
245
|
+
content: "\e9d5";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.pi-arrow-down-left:before {
|
|
249
|
+
content: "\e9d6";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.pi-arrow-down-right:before {
|
|
253
|
+
content: "\e9d7";
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.pi-telegram:before {
|
|
257
|
+
content: "\e9d3";
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.pi-stop-circle:before {
|
|
261
|
+
content: "\e9d2";
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.pi-stop:before {
|
|
265
|
+
content: "\e9d1";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.pi-whatsapp:before {
|
|
269
|
+
content: "\e9d0";
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.pi-building:before {
|
|
273
|
+
content: "\e9cf";
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.pi-qrcode:before {
|
|
277
|
+
content: "\e9ce";
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.pi-car:before {
|
|
281
|
+
content: "\e9cd";
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.pi-instagram:before {
|
|
285
|
+
content: "\e9cc";
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.pi-linkedin:before {
|
|
289
|
+
content: "\e9cb";
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.pi-send:before {
|
|
293
|
+
content: "\e9ca";
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.pi-slack:before {
|
|
297
|
+
content: "\e9c9";
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.pi-sun:before {
|
|
301
|
+
content: "\e9c8";
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.pi-moon:before {
|
|
305
|
+
content: "\e9c7";
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.pi-vimeo:before {
|
|
309
|
+
content: "\e9c6";
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.pi-youtube:before {
|
|
313
|
+
content: "\e9c5";
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.pi-flag:before {
|
|
317
|
+
content: "\e9c4";
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.pi-wallet:before {
|
|
321
|
+
content: "\e9c3";
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.pi-map:before {
|
|
325
|
+
content: "\e9c2";
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.pi-link:before {
|
|
329
|
+
content: "\e9c1";
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.pi-credit-card:before {
|
|
333
|
+
content: "\e9bf";
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.pi-discord:before {
|
|
337
|
+
content: "\e9c0";
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.pi-percentage:before {
|
|
341
|
+
content: "\e9be";
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.pi-euro:before {
|
|
345
|
+
content: "\e9bd";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.pi-book:before {
|
|
349
|
+
content: "\e9ba";
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.pi-shield:before {
|
|
353
|
+
content: "\e9b9";
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.pi-paypal:before {
|
|
357
|
+
content: "\e9bb";
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.pi-amazon:before {
|
|
361
|
+
content: "\e9bc";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.pi-phone:before {
|
|
365
|
+
content: "\e9b8";
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.pi-filter-slash:before {
|
|
369
|
+
content: "\e9b7";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.pi-facebook:before {
|
|
373
|
+
content: "\e9b4";
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.pi-github:before {
|
|
377
|
+
content: "\e9b5";
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.pi-twitter:before {
|
|
381
|
+
content: "\e9b6";
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.pi-step-backward-alt:before {
|
|
385
|
+
content: "\e9ac";
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.pi-step-forward-alt:before {
|
|
389
|
+
content: "\e9ad";
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.pi-forward:before {
|
|
393
|
+
content: "\e9ae";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.pi-backward:before {
|
|
397
|
+
content: "\e9af";
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.pi-fast-backward:before {
|
|
401
|
+
content: "\e9b0";
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.pi-fast-forward:before {
|
|
405
|
+
content: "\e9b1";
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.pi-pause:before {
|
|
409
|
+
content: "\e9b2";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.pi-play:before {
|
|
413
|
+
content: "\e9b3";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.pi-compass:before {
|
|
417
|
+
content: "\e9ab";
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.pi-id-card:before {
|
|
421
|
+
content: "\e9aa";
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.pi-ticket:before {
|
|
425
|
+
content: "\e9a9";
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.pi-file-o:before {
|
|
429
|
+
content: "\e9a8";
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.pi-reply:before {
|
|
433
|
+
content: "\e9a7";
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.pi-directions-alt:before {
|
|
437
|
+
content: "\e9a5";
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.pi-directions:before {
|
|
441
|
+
content: "\e9a6";
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.pi-thumbs-up:before {
|
|
445
|
+
content: "\e9a3";
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.pi-thumbs-down:before {
|
|
449
|
+
content: "\e9a4";
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.pi-sort-numeric-down-alt:before {
|
|
453
|
+
content: "\e996";
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.pi-sort-numeric-up-alt:before {
|
|
457
|
+
content: "\e997";
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.pi-sort-alpha-down-alt:before {
|
|
461
|
+
content: "\e998";
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.pi-sort-alpha-up-alt:before {
|
|
465
|
+
content: "\e999";
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.pi-sort-numeric-down:before {
|
|
469
|
+
content: "\e99a";
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.pi-sort-numeric-up:before {
|
|
473
|
+
content: "\e99b";
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.pi-sort-alpha-down:before {
|
|
477
|
+
content: "\e99c";
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.pi-sort-alpha-up:before {
|
|
481
|
+
content: "\e99d";
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.pi-sort-alt:before {
|
|
485
|
+
content: "\e99e";
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.pi-sort-amount-up:before {
|
|
489
|
+
content: "\e99f";
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.pi-sort-amount-down:before {
|
|
493
|
+
content: "\e9a0";
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.pi-sort-amount-down-alt:before {
|
|
497
|
+
content: "\e9a1";
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.pi-sort-amount-up-alt:before {
|
|
501
|
+
content: "\e9a2";
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.pi-palette:before {
|
|
505
|
+
content: "\e995";
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.pi-undo:before {
|
|
509
|
+
content: "\e994";
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.pi-desktop:before {
|
|
513
|
+
content: "\e993";
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.pi-sliders-v:before {
|
|
517
|
+
content: "\e991";
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.pi-sliders-h:before {
|
|
521
|
+
content: "\e992";
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.pi-search-plus:before {
|
|
525
|
+
content: "\e98f";
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.pi-search-minus:before {
|
|
529
|
+
content: "\e990";
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.pi-file-excel:before {
|
|
533
|
+
content: "\e98e";
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.pi-file-pdf:before {
|
|
537
|
+
content: "\e98d";
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.pi-check-square:before {
|
|
541
|
+
content: "\e98c";
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.pi-chart-line:before {
|
|
545
|
+
content: "\e98b";
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.pi-user-edit:before {
|
|
549
|
+
content: "\e98a";
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.pi-exclamation-circle:before {
|
|
553
|
+
content: "\e989";
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.pi-android:before {
|
|
557
|
+
content: "\e985";
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.pi-google:before {
|
|
561
|
+
content: "\e986";
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.pi-apple:before {
|
|
565
|
+
content: "\e987";
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.pi-microsoft:before {
|
|
569
|
+
content: "\e988";
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.pi-heart:before {
|
|
573
|
+
content: "\e984";
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.pi-mobile:before {
|
|
577
|
+
content: "\e982";
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.pi-tablet:before {
|
|
581
|
+
content: "\e983";
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.pi-key:before {
|
|
585
|
+
content: "\e981";
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.pi-shopping-cart:before {
|
|
589
|
+
content: "\e980";
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.pi-comments:before {
|
|
593
|
+
content: "\e97e";
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.pi-comment:before {
|
|
597
|
+
content: "\e97f";
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.pi-briefcase:before {
|
|
601
|
+
content: "\e97d";
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.pi-bell:before {
|
|
605
|
+
content: "\e97c";
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.pi-paperclip:before {
|
|
609
|
+
content: "\e97b";
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.pi-share-alt:before {
|
|
613
|
+
content: "\e97a";
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.pi-envelope:before {
|
|
617
|
+
content: "\e979";
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.pi-volume-down:before {
|
|
621
|
+
content: "\e976";
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.pi-volume-up:before {
|
|
625
|
+
content: "\e977";
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.pi-volume-off:before {
|
|
629
|
+
content: "\e978";
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.pi-eject:before {
|
|
633
|
+
content: "\e975";
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.pi-money-bill:before {
|
|
637
|
+
content: "\e974";
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.pi-images:before {
|
|
641
|
+
content: "\e973";
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.pi-image:before {
|
|
645
|
+
content: "\e972";
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.pi-sign-in:before {
|
|
649
|
+
content: "\e970";
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.pi-sign-out:before {
|
|
653
|
+
content: "\e971";
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.pi-wifi:before {
|
|
657
|
+
content: "\e96f";
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.pi-sitemap:before {
|
|
661
|
+
content: "\e96e";
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.pi-chart-bar:before {
|
|
665
|
+
content: "\e96d";
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.pi-camera:before {
|
|
669
|
+
content: "\e96c";
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.pi-dollar:before {
|
|
673
|
+
content: "\e96b";
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.pi-lock-open:before {
|
|
677
|
+
content: "\e96a";
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.pi-table:before {
|
|
681
|
+
content: "\e969";
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.pi-map-marker:before {
|
|
685
|
+
content: "\e968";
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.pi-list:before {
|
|
689
|
+
content: "\e967";
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.pi-eye-slash:before {
|
|
693
|
+
content: "\e965";
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.pi-eye:before {
|
|
697
|
+
content: "\e966";
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.pi-folder-open:before {
|
|
701
|
+
content: "\e964";
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.pi-folder:before {
|
|
705
|
+
content: "\e963";
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.pi-video:before {
|
|
709
|
+
content: "\e962";
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.pi-inbox:before {
|
|
713
|
+
content: "\e961";
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.pi-lock:before {
|
|
717
|
+
content: "\e95f";
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.pi-unlock:before {
|
|
721
|
+
content: "\e960";
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.pi-tags:before {
|
|
725
|
+
content: "\e95d";
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.pi-tag:before {
|
|
729
|
+
content: "\e95e";
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.pi-power-off:before {
|
|
733
|
+
content: "\e95c";
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.pi-save:before {
|
|
737
|
+
content: "\e95b";
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.pi-question-circle:before {
|
|
741
|
+
content: "\e959";
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.pi-question:before {
|
|
745
|
+
content: "\e95a";
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.pi-copy:before {
|
|
749
|
+
content: "\e957";
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.pi-file:before {
|
|
753
|
+
content: "\e958";
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.pi-clone:before {
|
|
757
|
+
content: "\e955";
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.pi-calendar-times:before {
|
|
761
|
+
content: "\e952";
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.pi-calendar-minus:before {
|
|
765
|
+
content: "\e953";
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.pi-calendar-plus:before {
|
|
769
|
+
content: "\e954";
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.pi-ellipsis-v:before {
|
|
773
|
+
content: "\e950";
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.pi-ellipsis-h:before {
|
|
777
|
+
content: "\e951";
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.pi-bookmark:before {
|
|
781
|
+
content: "\e94e";
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.pi-globe:before {
|
|
785
|
+
content: "\e94f";
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.pi-replay:before {
|
|
789
|
+
content: "\e94d";
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.pi-filter:before {
|
|
793
|
+
content: "\e94c";
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.pi-print:before {
|
|
797
|
+
content: "\e94b";
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.pi-align-right:before {
|
|
801
|
+
content: "\e946";
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.pi-align-left:before {
|
|
805
|
+
content: "\e947";
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.pi-align-center:before {
|
|
809
|
+
content: "\e948";
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.pi-align-justify:before {
|
|
813
|
+
content: "\e949";
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.pi-cog:before {
|
|
817
|
+
content: "\e94a";
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.pi-cloud-download:before {
|
|
821
|
+
content: "\e943";
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.pi-cloud-upload:before {
|
|
825
|
+
content: "\e944";
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.pi-cloud:before {
|
|
829
|
+
content: "\e945";
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.pi-pencil:before {
|
|
833
|
+
content: "\e942";
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.pi-users:before {
|
|
837
|
+
content: "\e941";
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.pi-clock:before {
|
|
841
|
+
content: "\e940";
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.pi-user-minus:before {
|
|
845
|
+
content: "\e93e";
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.pi-user-plus:before {
|
|
849
|
+
content: "\e93f";
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.pi-trash:before {
|
|
853
|
+
content: "\e93d";
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.pi-external-link:before {
|
|
857
|
+
content: "\e93c";
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.pi-window-maximize:before {
|
|
861
|
+
content: "\e93b";
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.pi-window-minimize:before {
|
|
865
|
+
content: "\e93a";
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.pi-refresh:before {
|
|
869
|
+
content: "\e938";
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.pi-user:before {
|
|
873
|
+
content: "\e939";
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.pi-exclamation-triangle:before {
|
|
877
|
+
content: "\e922";
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.pi-calendar:before {
|
|
881
|
+
content: "\e927";
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.pi-chevron-circle-left:before {
|
|
885
|
+
content: "\e928";
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.pi-chevron-circle-down:before {
|
|
889
|
+
content: "\e929";
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.pi-chevron-circle-right:before {
|
|
893
|
+
content: "\e92a";
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.pi-chevron-circle-up:before {
|
|
897
|
+
content: "\e92b";
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.pi-angle-double-down:before {
|
|
901
|
+
content: "\e92c";
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.pi-angle-double-left:before {
|
|
905
|
+
content: "\e92d";
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.pi-angle-double-right:before {
|
|
909
|
+
content: "\e92e";
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.pi-angle-double-up:before {
|
|
913
|
+
content: "\e92f";
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.pi-angle-down:before {
|
|
917
|
+
content: "\e930";
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.pi-angle-left:before {
|
|
921
|
+
content: "\e931";
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.pi-angle-right:before {
|
|
925
|
+
content: "\e932";
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.pi-angle-up:before {
|
|
929
|
+
content: "\e933";
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.pi-upload:before {
|
|
933
|
+
content: "\e934";
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.pi-download:before {
|
|
937
|
+
content: "\e956";
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.pi-ban:before {
|
|
941
|
+
content: "\e935";
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.pi-star-fill:before {
|
|
945
|
+
content: "\e936";
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.pi-star:before {
|
|
949
|
+
content: "\e937";
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.pi-chevron-left:before {
|
|
953
|
+
content: "\e900";
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.pi-chevron-right:before {
|
|
957
|
+
content: "\e901";
|
|
958
|
+
font-size: 13px;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
.pi-chevron-down:before {
|
|
962
|
+
content: "\e902";
|
|
963
|
+
font-size: 13px;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.pi-chevron-up:before {
|
|
967
|
+
content: "\e903";
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.pi-caret-left:before {
|
|
971
|
+
content: "\e904";
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.pi-caret-right:before {
|
|
975
|
+
content: "\e905";
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.pi-caret-down:before {
|
|
979
|
+
content: "\e906";
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.pi-caret-up:before {
|
|
983
|
+
content: "\e907";
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.pi-search:before {
|
|
987
|
+
content: "\e908";
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.pi-check:before {
|
|
991
|
+
content: "\e909";
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
.pi-check-circle:before {
|
|
996
|
+
content: "\e90a";
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.pi-times:before {
|
|
1000
|
+
content: "\e90b";
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.pi-times-circle:before {
|
|
1004
|
+
content: "\e90c";
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.pi-plus:before {
|
|
1008
|
+
content: "\e90d";
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.pi-plus-circle:before {
|
|
1012
|
+
content: "\e90e";
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.pi-minus:before {
|
|
1016
|
+
content: "\e90f";
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.pi-minus-circle:before {
|
|
1020
|
+
content: "\e910";
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.pi-circle-on:before {
|
|
1024
|
+
content: "\e911";
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.pi-circle-off:before {
|
|
1028
|
+
content: "\e912";
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.pi-sort-down:before {
|
|
1032
|
+
content: "\e913";
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.pi-sort-up:before {
|
|
1036
|
+
content: "\e914";
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.pi-sort:before {
|
|
1040
|
+
content: "\e915";
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.pi-step-backward:before {
|
|
1044
|
+
content: "\e916";
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.pi-step-forward:before {
|
|
1048
|
+
content: "\e917";
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.pi-th-large:before {
|
|
1052
|
+
content: "\e918";
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.pi-arrow-down:before {
|
|
1056
|
+
content: "\e919";
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.pi-arrow-left:before {
|
|
1060
|
+
content: "\e91a";
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.pi-arrow-right:before {
|
|
1064
|
+
content: "\e91b";
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.pi-arrow-up:before {
|
|
1068
|
+
content: "\e91c";
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.pi-bars:before {
|
|
1072
|
+
content: "\e91d";
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.pi-arrow-circle-down:before {
|
|
1076
|
+
content: "\e91e";
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.pi-arrow-circle-left:before {
|
|
1080
|
+
content: "\e91f";
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.pi-arrow-circle-right:before {
|
|
1084
|
+
content: "\e920";
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.pi-arrow-circle-up:before {
|
|
1088
|
+
content: "\e921";
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.pi-info:before {
|
|
1092
|
+
content: "\e923";
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.pi-info-circle:before {
|
|
1096
|
+
content: "\e924";
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.pi-home:before {
|
|
1100
|
+
content: "\e925";
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.pi-spinner:before {
|
|
1104
|
+
content: "\e926";
|
|
1105
|
+
}
|