@syncfusion/ej2-image-editor 20.3.47

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.
Files changed (131) hide show
  1. package/.eslintrc.json +244 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
  3. package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
  4. package/CHANGELOG.md +18 -0
  5. package/README.md +6 -0
  6. package/dist/ej2-image-editor.umd.min.js +11 -0
  7. package/dist/ej2-image-editor.umd.min.js.map +1 -0
  8. package/dist/es6/ej2-image-editor.es2015.js +7511 -0
  9. package/dist/es6/ej2-image-editor.es2015.js.map +1 -0
  10. package/dist/es6/ej2-image-editor.es5.js +7550 -0
  11. package/dist/es6/ej2-image-editor.es5.js.map +1 -0
  12. package/dist/global/ej2-image-editor.min.js +11 -0
  13. package/dist/global/ej2-image-editor.min.js.map +1 -0
  14. package/dist/global/index.d.ts +14 -0
  15. package/helpers/e2e/imageEditorHelper.d.ts +37 -0
  16. package/helpers/e2e/imageEditorHelper.js +53 -0
  17. package/helpers/e2e/index.d.ts +1 -0
  18. package/helpers/e2e/index.js +8 -0
  19. package/helpers/e2e/querybuilderHelper.d.ts +37 -0
  20. package/image-editor.d.ts +4 -0
  21. package/image-editor.js +4 -0
  22. package/index.d.ts +4 -0
  23. package/index.js +4 -0
  24. package/license +10 -0
  25. package/package.json +74 -0
  26. package/src/global.js +1 -0
  27. package/src/image-editor/image-editor-model.d.ts +206 -0
  28. package/src/image-editor/image-editor.d.ts +961 -0
  29. package/src/image-editor/image-editor.js +7542 -0
  30. package/src/image-editor/index.d.ts +5 -0
  31. package/src/image-editor/index.js +4 -0
  32. package/src/index.d.ts +4 -0
  33. package/src/index.js +4 -0
  34. package/styles/bootstrap-dark.css +283 -0
  35. package/styles/bootstrap-dark.scss +1 -0
  36. package/styles/bootstrap.css +283 -0
  37. package/styles/bootstrap.scss +1 -0
  38. package/styles/bootstrap4.css +279 -0
  39. package/styles/bootstrap4.scss +1 -0
  40. package/styles/bootstrap5-dark.css +301 -0
  41. package/styles/bootstrap5-dark.scss +1 -0
  42. package/styles/bootstrap5.css +301 -0
  43. package/styles/bootstrap5.scss +1 -0
  44. package/styles/fabric-dark.css +283 -0
  45. package/styles/fabric-dark.scss +1 -0
  46. package/styles/fabric.css +283 -0
  47. package/styles/fabric.scss +1 -0
  48. package/styles/fluent-dark.css +290 -0
  49. package/styles/fluent-dark.scss +1 -0
  50. package/styles/fluent.css +290 -0
  51. package/styles/fluent.scss +1 -0
  52. package/styles/highcontrast-light.css +281 -0
  53. package/styles/highcontrast-light.scss +1 -0
  54. package/styles/highcontrast.css +281 -0
  55. package/styles/highcontrast.scss +1 -0
  56. package/styles/image-editor/_all.scss +2 -0
  57. package/styles/image-editor/_bootstrap-dark-definition.scss +10 -0
  58. package/styles/image-editor/_bootstrap-definition.scss +10 -0
  59. package/styles/image-editor/_bootstrap4-definition.scss +10 -0
  60. package/styles/image-editor/_bootstrap5-dark-definition.scss +1 -0
  61. package/styles/image-editor/_bootstrap5-definition.scss +10 -0
  62. package/styles/image-editor/_fabric-dark-definition.scss +10 -0
  63. package/styles/image-editor/_fabric-definition.scss +10 -0
  64. package/styles/image-editor/_fluent-dark-definition.scss +1 -0
  65. package/styles/image-editor/_fluent-definition.scss +10 -0
  66. package/styles/image-editor/_fusionnew-definition.scss +10 -0
  67. package/styles/image-editor/_highcontrast-definition.scss +10 -0
  68. package/styles/image-editor/_highcontrast-light-definition.scss +10 -0
  69. package/styles/image-editor/_layout.scss +204 -0
  70. package/styles/image-editor/_material-dark-definition.scss +10 -0
  71. package/styles/image-editor/_material-definition.scss +10 -0
  72. package/styles/image-editor/_material3-definition.scss +10 -0
  73. package/styles/image-editor/_tailwind-dark-definition.scss +1 -0
  74. package/styles/image-editor/_tailwind-definition.scss +10 -0
  75. package/styles/image-editor/_theme.scss +97 -0
  76. package/styles/image-editor/bootstrap-dark.css +283 -0
  77. package/styles/image-editor/bootstrap-dark.scss +12 -0
  78. package/styles/image-editor/bootstrap.css +283 -0
  79. package/styles/image-editor/bootstrap.scss +12 -0
  80. package/styles/image-editor/bootstrap4.css +279 -0
  81. package/styles/image-editor/bootstrap4.scss +12 -0
  82. package/styles/image-editor/bootstrap5-dark.css +301 -0
  83. package/styles/image-editor/bootstrap5-dark.scss +12 -0
  84. package/styles/image-editor/bootstrap5.css +301 -0
  85. package/styles/image-editor/bootstrap5.scss +12 -0
  86. package/styles/image-editor/fabric-dark.css +283 -0
  87. package/styles/image-editor/fabric-dark.scss +12 -0
  88. package/styles/image-editor/fabric.css +283 -0
  89. package/styles/image-editor/fabric.scss +12 -0
  90. package/styles/image-editor/fluent-dark.css +290 -0
  91. package/styles/image-editor/fluent-dark.scss +12 -0
  92. package/styles/image-editor/fluent.css +290 -0
  93. package/styles/image-editor/fluent.scss +12 -0
  94. package/styles/image-editor/highcontrast-light.css +281 -0
  95. package/styles/image-editor/highcontrast-light.scss +12 -0
  96. package/styles/image-editor/highcontrast.css +281 -0
  97. package/styles/image-editor/highcontrast.scss +12 -0
  98. package/styles/image-editor/icons/_bootstrap-dark.scss +218 -0
  99. package/styles/image-editor/icons/_bootstrap.scss +218 -0
  100. package/styles/image-editor/icons/_bootstrap4.scss +218 -0
  101. package/styles/image-editor/icons/_bootstrap5-dark.scss +1 -0
  102. package/styles/image-editor/icons/_bootstrap5.scss +224 -0
  103. package/styles/image-editor/icons/_fabric-dark.scss +218 -0
  104. package/styles/image-editor/icons/_fabric.scss +218 -0
  105. package/styles/image-editor/icons/_fluent-dark.scss +1 -0
  106. package/styles/image-editor/icons/_fluent.scss +224 -0
  107. package/styles/image-editor/icons/_fusionnew.scss +224 -0
  108. package/styles/image-editor/icons/_highcontrast-light.scss +218 -0
  109. package/styles/image-editor/icons/_highcontrast.scss +218 -0
  110. package/styles/image-editor/icons/_material-dark.scss +218 -0
  111. package/styles/image-editor/icons/_material.scss +218 -0
  112. package/styles/image-editor/icons/_material3.scss +230 -0
  113. package/styles/image-editor/icons/_tailwind-dark.scss +1 -0
  114. package/styles/image-editor/icons/_tailwind.scss +218 -0
  115. package/styles/image-editor/material-dark.css +299 -0
  116. package/styles/image-editor/material-dark.scss +12 -0
  117. package/styles/image-editor/material.css +299 -0
  118. package/styles/image-editor/material.scss +12 -0
  119. package/styles/image-editor/tailwind-dark.css +288 -0
  120. package/styles/image-editor/tailwind-dark.scss +12 -0
  121. package/styles/image-editor/tailwind.css +288 -0
  122. package/styles/image-editor/tailwind.scss +12 -0
  123. package/styles/material-dark.css +299 -0
  124. package/styles/material-dark.scss +1 -0
  125. package/styles/material.css +299 -0
  126. package/styles/material.scss +1 -0
  127. package/styles/tailwind-dark.css +288 -0
  128. package/styles/tailwind-dark.scss +1 -0
  129. package/styles/tailwind.css +288 -0
  130. package/styles/tailwind.scss +1 -0
  131. package/tslint.json +111 -0
@@ -0,0 +1,97 @@
1
+ @include export-module('image-editor-theme') {
2
+ .e-image-editor {
3
+ background: $image-editor-background;
4
+
5
+ & .e-toolbar {
6
+ & .e-toolbar-items {
7
+ & .e-tbar-btn.e-btn {
8
+ & .e-icons {
9
+ @if $skin-name != 'bootstrap4' and $skin-name != 'bootstrap5' and $skin-name != 'bootstrap5-dark' {
10
+ color: $image-editor-toolbar-icon-color;
11
+ }
12
+ }
13
+
14
+ &.e-selected-btn {
15
+ background: $image-editor-icon-sel-bg-color !important; /* stylelint-disable-line declaration-no-important */
16
+ & .e-icons {
17
+ @if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
18
+ color: $secondary-text-color-focus;
19
+ }
20
+ }
21
+ }
22
+ }
23
+
24
+ & .e-dropdown-btn {
25
+ background: inherit;
26
+ border: none;
27
+ margin-top: $image-editor-ddbtn-margin-top;
28
+ @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' $skin-name == 'bootstrap5-dark' {
29
+ background-color: $tbar-default-bg;
30
+ color: $tbar-default-icon-color;
31
+ }
32
+
33
+ & .e-caret-hide {
34
+ display: none !important; /* stylelint-disable-line declaration-no-important */
35
+ }
36
+
37
+ &:hover {
38
+ background-color: $btn-hover-bgcolor;
39
+ box-shadow: none;
40
+ color: $btn-hover-color;
41
+ }
42
+
43
+ &:focus {
44
+ background-color: $btn-focus-bgcolor;
45
+ box-shadow: none;
46
+ color: $btn-focus-color;
47
+ }
48
+
49
+ &:active {
50
+ background-color: $btn-active-bgcolor;
51
+ box-shadow: none;
52
+ color: $btn-active-color;
53
+ }
54
+ }
55
+
56
+ & .e-colorpicker-wrapper {
57
+ &.e-shape-fill-color,
58
+ &.e-shape-stroke-color,
59
+ &.e-text-stroke-color,
60
+ &.e-pen-stroke-color {
61
+ & .e-split-btn-wrapper .e-split-btn {
62
+ & .e-selected-color {
63
+ background: none;
64
+ border-bottom-style: solid;
65
+ border-bottom-width: 3px;
66
+ width: 14px;
67
+ margin: 0 2px;
68
+ border-bottom-color: $img-editor-cp-preview-border-bottom-color;
69
+
70
+ & .e-split-preview {
71
+ display: none;
72
+ }
73
+ }
74
+ }
75
+ }
76
+ }
77
+
78
+ & .e-nocolor-item {
79
+ background: transparent url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+') !important; /* stylelint-disable-line declaration-no-important */
80
+ background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }
86
+
87
+ .e-dropdown-popup {
88
+ & .e-selected-btn {
89
+ background: $image-editor-icon-sel-bg-color !important; /* stylelint-disable-line declaration-no-important */
90
+ @if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
91
+ color: $secondary-text-color-focus !important; /* stylelint-disable-line declaration-no-important */
92
+ }
93
+ @if $skin-name == 'bootstrap4' {
94
+ color: $drop-down-btn-selected-color !important; /* stylelint-disable-line declaration-no-important */
95
+ }
96
+ }
97
+ }
@@ -0,0 +1,283 @@
1
+ /* stylelint-disable-line no-empty-source */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ @keyframes material-spinner-rotate {
4
+ 0% {
5
+ transform: rotate(0);
6
+ }
7
+ 100% {
8
+ transform: rotate(360deg);
9
+ }
10
+ }
11
+ @keyframes fabric-spinner-rotate {
12
+ 0% {
13
+ transform: rotate(0);
14
+ }
15
+ 100% {
16
+ transform: rotate(360deg);
17
+ }
18
+ }
19
+ .e-image-editor .e-upload-icon::before {
20
+ content: "\ec2b";
21
+ }
22
+ .e-image-editor .e-zoom-in::before {
23
+ content: "\e22c";
24
+ }
25
+ .e-image-editor .e-zoom-out::before {
26
+ content: "\e22b";
27
+ }
28
+ .e-image-editor .e-pan::before {
29
+ content: "\ebcb";
30
+ }
31
+ .e-image-editor .e-select::before {
32
+ content: "\e949";
33
+ }
34
+ .e-image-editor .e-transform::before {
35
+ content: "\e97c";
36
+ }
37
+ .e-image-editor .e-annotation::before {
38
+ content: "\ebd8";
39
+ }
40
+ .e-image-editor .e-shapes::before {
41
+ content: "\ebd5";
42
+ }
43
+ .e-image-editor .e-mouse::before {
44
+ content: "\ebce";
45
+ }
46
+ .e-image-editor .e-btn-reset::before {
47
+ content: "\e953";
48
+ }
49
+ .e-image-editor .e-btn-save::before {
50
+ content: "\e701";
51
+ }
52
+ .e-image-editor .e-custom::before {
53
+ content: "\e974";
54
+ }
55
+ .e-image-editor .e-close::before {
56
+ content: "\ebc0";
57
+ }
58
+ .e-image-editor .e-check::before {
59
+ content: "\e97d";
60
+ }
61
+ .e-image-editor .e-text-font-color.e-template .e-caret::before {
62
+ content: "\e35f";
63
+ }
64
+ .e-image-editor .e-stroke.e-template .e-caret::before, .e-image-editor .e-pen-stroke-color.e-template .e-caret::before {
65
+ content: "\ebc6";
66
+ }
67
+ .e-image-editor .e-fill.e-template .e-caret::before {
68
+ content: "\e35c";
69
+ }
70
+
71
+ .e-dropdown-popup.e-image-popup .e-custom::before {
72
+ content: "\e974";
73
+ }
74
+ .e-dropdown-popup.e-image-popup .e-circle::before {
75
+ content: "\e671";
76
+ }
77
+ .e-dropdown-popup.e-image-popup .e-square::before {
78
+ content: "\e976";
79
+ }
80
+ .e-dropdown-popup.e-image-popup .e-custom-a::before {
81
+ content: "\e977";
82
+ }
83
+ .e-dropdown-popup.e-image-popup .e-custom-b::before {
84
+ content: "\e978";
85
+ }
86
+ .e-dropdown-popup.e-image-popup .e-custom-c::before {
87
+ content: "\e979";
88
+ }
89
+ .e-dropdown-popup.e-image-popup .e-custom-d::before {
90
+ content: "\e97a";
91
+ }
92
+ .e-dropdown-popup.e-image-popup .e-custom-e::before {
93
+ content: "\e97b";
94
+ }
95
+ .e-dropdown-popup.e-image-popup .e-rectangle::before {
96
+ content: "\e670";
97
+ }
98
+ .e-dropdown-popup.e-image-popup .e-circle::before {
99
+ content: "\e671";
100
+ }
101
+ .e-dropdown-popup.e-image-popup .e-triangle::before {
102
+ content: "\e954";
103
+ }
104
+ .e-dropdown-popup.e-image-popup .e-line::before {
105
+ content: "\e668";
106
+ }
107
+ .e-dropdown-popup.e-image-popup .e-add-text::before {
108
+ content: "\e35b";
109
+ }
110
+ .e-dropdown-popup.e-image-popup .e-free-pen::before {
111
+ content: "\e767";
112
+ }
113
+ .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
114
+ content: "\e95b";
115
+ }
116
+ .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
117
+ content: "\e96f";
118
+ }
119
+ .e-dropdown-popup.e-image-popup .e-clock-wise::before {
120
+ content: "\e971";
121
+ }
122
+ .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
123
+ content: "\e970";
124
+ }
125
+
126
+ .e-device.e-image-editor .e-img-font-style.e-template {
127
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
128
+ }
129
+
130
+ .e-bigger .e-image-editor .e-toolbar,
131
+ .e-image-editor.e-bigger .e-toolbar {
132
+ height: 52px !important; /* stylelint-disable-line declaration-no-important */
133
+ min-height: 52px !important; /* stylelint-disable-line declaration-no-important */
134
+ }
135
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
136
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
137
+ padding: 0;
138
+ font-size: 18px;
139
+ }
140
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
141
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
142
+ font-size: 18px;
143
+ }
144
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
145
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
146
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
147
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
148
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
149
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
150
+ font-size: 18px;
151
+ }
152
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
153
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
154
+ margin-top: -4px;
155
+ }
156
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save,
157
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
158
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
159
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
160
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save {
161
+ font-size: 18px;
162
+ }
163
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret,
164
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
165
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
166
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
167
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret {
168
+ font-size: 10px;
169
+ }
170
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
171
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
172
+ line-height: 1;
173
+ }
174
+
175
+ .e-image-editor {
176
+ border: 1px solid #acacac;
177
+ position: relative;
178
+ display: block;
179
+ }
180
+ .e-image-editor .e-toolbar {
181
+ border: none;
182
+ height: 42px !important; /* stylelint-disable-line declaration-no-important */
183
+ min-height: 42px !important; /* stylelint-disable-line declaration-no-important */
184
+ }
185
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
186
+ padding: 0;
187
+ font-size: 16px;
188
+ }
189
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
190
+ font-size: 16px;
191
+ }
192
+ .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
193
+ border: none;
194
+ }
195
+ .e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
196
+ padding: 0;
197
+ }
198
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-select, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-drop, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-upload-files {
199
+ display: none;
200
+ }
201
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
202
+ border: none;
203
+ }
204
+ .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
205
+ font-size: 16px;
206
+ }
207
+ .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
208
+ margin-top: -4px;
209
+ }
210
+ .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
211
+ height: 18px;
212
+ width: 18px;
213
+ margin-top: -4px;
214
+ }
215
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save {
216
+ font-size: 16px;
217
+ }
218
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret {
219
+ font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
220
+ }
221
+ .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
222
+ line-height: 1;
223
+ }
224
+ .e-image-editor .e-toolbar-area + .e-canvas-wrapper {
225
+ border-top: 1px solid #acacac;
226
+ }
227
+ .e-image-editor .e-bottom-toolbar {
228
+ border-top: 1px solid #acacac;
229
+ }
230
+
231
+ .e-image-editor {
232
+ background: #959595;
233
+ }
234
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
235
+ color: #f0f0f0;
236
+ }
237
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
238
+ background: #959595 !important; /* stylelint-disable-line declaration-no-important */
239
+ }
240
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
241
+ background: inherit;
242
+ border: none;
243
+ margin-top: 2px;
244
+ background-color: #131313;
245
+ color: #f0f0f0;
246
+ }
247
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
248
+ display: none !important; /* stylelint-disable-line declaration-no-important */
249
+ }
250
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
251
+ background-color: #313131;
252
+ box-shadow: none;
253
+ color: #f0f0f0;
254
+ }
255
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
256
+ background-color: #2a2a2a;
257
+ box-shadow: none;
258
+ color: #fff;
259
+ }
260
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
261
+ background-color: #2a2a2a;
262
+ box-shadow: none;
263
+ color: #fff;
264
+ }
265
+ .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color {
266
+ background: none;
267
+ border-bottom-style: solid;
268
+ border-bottom-width: 3px;
269
+ width: 14px;
270
+ margin: 0 2px;
271
+ border-bottom-color: #000;
272
+ }
273
+ .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview {
274
+ display: none;
275
+ }
276
+ .e-image-editor .e-toolbar .e-toolbar-items .e-nocolor-item {
277
+ background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
278
+ background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
279
+ }
280
+
281
+ .e-dropdown-popup .e-selected-btn {
282
+ background: #959595 !important; /* stylelint-disable-line declaration-no-important */
283
+ }
@@ -0,0 +1,12 @@
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
3
+ @import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-dark-definition.scss';
4
+ @import 'ej2-inputs/styles/numerictextbox/bootstrap-dark-definition.scss';
5
+ @import 'ej2-inputs/styles/textbox/bootstrap-dark-definition.scss';
6
+ @import 'ej2-inputs/styles/uploader/bootstrap-dark-definition.scss';
7
+ @import 'ej2-popups/styles/tooltip/bootstrap-dark-definition.scss';
8
+ @import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
9
+ @import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
10
+ @import 'bootstrap-dark-definition.scss';
11
+ @import 'icons/bootstrap-dark.scss';
12
+ @import 'all.scss';
@@ -0,0 +1,283 @@
1
+ /* stylelint-disable-line no-empty-source */ /*! component's theme wise override definitions and variables */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ @keyframes material-spinner-rotate {
4
+ 0% {
5
+ transform: rotate(0);
6
+ }
7
+ 100% {
8
+ transform: rotate(360deg);
9
+ }
10
+ }
11
+ @keyframes fabric-spinner-rotate {
12
+ 0% {
13
+ transform: rotate(0);
14
+ }
15
+ 100% {
16
+ transform: rotate(360deg);
17
+ }
18
+ }
19
+ .e-image-editor .e-upload-icon::before {
20
+ content: "\ec2b";
21
+ }
22
+ .e-image-editor .e-zoom-in::before {
23
+ content: "\e22c";
24
+ }
25
+ .e-image-editor .e-zoom-out::before {
26
+ content: "\e22b";
27
+ }
28
+ .e-image-editor .e-pan::before {
29
+ content: "\ebcb";
30
+ }
31
+ .e-image-editor .e-select::before {
32
+ content: "\e949";
33
+ }
34
+ .e-image-editor .e-transform::before {
35
+ content: "\e97c";
36
+ }
37
+ .e-image-editor .e-annotation::before {
38
+ content: "\ebd8";
39
+ }
40
+ .e-image-editor .e-shapes::before {
41
+ content: "\ebd5";
42
+ }
43
+ .e-image-editor .e-mouse::before {
44
+ content: "\ebce";
45
+ }
46
+ .e-image-editor .e-btn-reset::before {
47
+ content: "\e953";
48
+ }
49
+ .e-image-editor .e-btn-save::before {
50
+ content: "\e701";
51
+ }
52
+ .e-image-editor .e-custom::before {
53
+ content: "\e974";
54
+ }
55
+ .e-image-editor .e-close::before {
56
+ content: "\ebc0";
57
+ }
58
+ .e-image-editor .e-check::before {
59
+ content: "\e97d";
60
+ }
61
+ .e-image-editor .e-text-font-color.e-template .e-caret::before {
62
+ content: "\e35f";
63
+ }
64
+ .e-image-editor .e-stroke.e-template .e-caret::before, .e-image-editor .e-pen-stroke-color.e-template .e-caret::before {
65
+ content: "\ebc6";
66
+ }
67
+ .e-image-editor .e-fill.e-template .e-caret::before {
68
+ content: "\e35c";
69
+ }
70
+
71
+ .e-dropdown-popup.e-image-popup .e-custom::before {
72
+ content: "\e974";
73
+ }
74
+ .e-dropdown-popup.e-image-popup .e-circle::before {
75
+ content: "\e671";
76
+ }
77
+ .e-dropdown-popup.e-image-popup .e-square::before {
78
+ content: "\e976";
79
+ }
80
+ .e-dropdown-popup.e-image-popup .e-custom-a::before {
81
+ content: "\e977";
82
+ }
83
+ .e-dropdown-popup.e-image-popup .e-custom-b::before {
84
+ content: "\e978";
85
+ }
86
+ .e-dropdown-popup.e-image-popup .e-custom-c::before {
87
+ content: "\e979";
88
+ }
89
+ .e-dropdown-popup.e-image-popup .e-custom-d::before {
90
+ content: "\e97a";
91
+ }
92
+ .e-dropdown-popup.e-image-popup .e-custom-e::before {
93
+ content: "\e97b";
94
+ }
95
+ .e-dropdown-popup.e-image-popup .e-rectangle::before {
96
+ content: "\e670";
97
+ }
98
+ .e-dropdown-popup.e-image-popup .e-circle::before {
99
+ content: "\e671";
100
+ }
101
+ .e-dropdown-popup.e-image-popup .e-triangle::before {
102
+ content: "\e954";
103
+ }
104
+ .e-dropdown-popup.e-image-popup .e-line::before {
105
+ content: "\e668";
106
+ }
107
+ .e-dropdown-popup.e-image-popup .e-add-text::before {
108
+ content: "\e35b";
109
+ }
110
+ .e-dropdown-popup.e-image-popup .e-free-pen::before {
111
+ content: "\e767";
112
+ }
113
+ .e-dropdown-popup.e-image-popup .e-horizontal-flip::before {
114
+ content: "\e95b";
115
+ }
116
+ .e-dropdown-popup.e-image-popup .e-vertical-flip::before {
117
+ content: "\e96f";
118
+ }
119
+ .e-dropdown-popup.e-image-popup .e-clock-wise::before {
120
+ content: "\e971";
121
+ }
122
+ .e-dropdown-popup.e-image-popup .e-anti-clock-wise::before {
123
+ content: "\e970";
124
+ }
125
+
126
+ .e-device.e-image-editor .e-img-font-style.e-template {
127
+ margin-left: 0 !important; /* stylelint-disable-line declaration-no-important */
128
+ }
129
+
130
+ .e-bigger .e-image-editor .e-toolbar,
131
+ .e-image-editor.e-bigger .e-toolbar {
132
+ height: 52px !important; /* stylelint-disable-line declaration-no-important */
133
+ min-height: 52px !important; /* stylelint-disable-line declaration-no-important */
134
+ }
135
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
136
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
137
+ padding: 0;
138
+ font-size: 18px;
139
+ }
140
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
141
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
142
+ font-size: 18px;
143
+ }
144
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret,
145
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret,
146
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret,
147
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret,
148
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
149
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
150
+ font-size: 18px;
151
+ }
152
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret,
153
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
154
+ margin-top: -4px;
155
+ }
156
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save,
157
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select,
158
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation,
159
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform,
160
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save {
161
+ font-size: 18px;
162
+ }
163
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret, .e-bigger .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret,
164
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret,
165
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret,
166
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret,
167
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret {
168
+ font-size: 10px;
169
+ }
170
+ .e-bigger .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
171
+ .e-image-editor.e-bigger .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
172
+ line-height: 1;
173
+ }
174
+
175
+ .e-image-editor {
176
+ border: 1px solid #ccc;
177
+ position: relative;
178
+ display: block;
179
+ }
180
+ .e-image-editor .e-toolbar {
181
+ border: none;
182
+ height: 42px !important; /* stylelint-disable-line declaration-no-important */
183
+ min-height: 42px !important; /* stylelint-disable-line declaration-no-important */
184
+ }
185
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
186
+ padding: 0;
187
+ font-size: 16px;
188
+ }
189
+ .e-image-editor .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
190
+ font-size: 16px;
191
+ }
192
+ .e-image-editor .e-toolbar .e-toolbar-items .e-upload {
193
+ border: none;
194
+ }
195
+ .e-image-editor .e-toolbar .e-toolbar-items .e-file-select-wrap {
196
+ padding: 0;
197
+ }
198
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-select, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-file-drop, .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-upload-files {
199
+ display: none;
200
+ }
201
+ .e-image-editor .e-toolbar .e-toolbar-items .e-image-upload .e-image-upload .e-upload {
202
+ border: none;
203
+ }
204
+ .e-image-editor .e-toolbar .e-toolbar-items .e-fill.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-stroke.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-pen-stroke-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-save.e-template .e-dropdown-btn .e-icons.e-caret {
205
+ font-size: 16px;
206
+ }
207
+ .e-image-editor .e-toolbar .e-toolbar-items .e-text-font-color.e-template .e-dropdown-btn .e-icons.e-caret {
208
+ margin-top: -4px;
209
+ }
210
+ .e-image-editor .e-toolbar .e-toolbar-items .e-btn-icon.e-dropdownbtn-preview {
211
+ height: 18px;
212
+ width: 18px;
213
+ margin-top: -4px;
214
+ }
215
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save {
216
+ font-size: 16px;
217
+ }
218
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-select .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-annotation .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-transform .e-icons.e-caret, .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn.e-image-popup .e-save .e-icons.e-caret {
219
+ font-size: 10px !important; /* stylelint-disable-line declaration-no-important */
220
+ }
221
+ .e-image-editor .e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
222
+ line-height: 1;
223
+ }
224
+ .e-image-editor .e-toolbar-area + .e-canvas-wrapper {
225
+ border-top: 1px solid #ccc;
226
+ }
227
+ .e-image-editor .e-bottom-toolbar {
228
+ border-top: 1px solid #ccc;
229
+ }
230
+
231
+ .e-image-editor {
232
+ background: #e6e6e6;
233
+ }
234
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn .e-icons {
235
+ color: #333;
236
+ }
237
+ .e-image-editor .e-toolbar .e-toolbar-items .e-tbar-btn.e-btn.e-selected-btn {
238
+ background: #e6e6e6 !important; /* stylelint-disable-line declaration-no-important */
239
+ }
240
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn {
241
+ background: inherit;
242
+ border: none;
243
+ margin-top: 2px;
244
+ background-color: #f8f8f8;
245
+ color: #333;
246
+ }
247
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn .e-caret-hide {
248
+ display: none !important; /* stylelint-disable-line declaration-no-important */
249
+ }
250
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:hover {
251
+ background-color: #e6e6e6;
252
+ box-shadow: none;
253
+ color: #333;
254
+ }
255
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:focus {
256
+ background-color: #e6e6e6;
257
+ box-shadow: none;
258
+ color: #333;
259
+ }
260
+ .e-image-editor .e-toolbar .e-toolbar-items .e-dropdown-btn:active {
261
+ background-color: #e6e6e6;
262
+ box-shadow: none;
263
+ color: #333;
264
+ }
265
+ .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color {
266
+ background: none;
267
+ border-bottom-style: solid;
268
+ border-bottom-width: 3px;
269
+ width: 14px;
270
+ margin: 0 2px;
271
+ border-bottom-color: #000;
272
+ }
273
+ .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-fill-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-shape-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-text-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview, .e-image-editor .e-toolbar .e-toolbar-items .e-colorpicker-wrapper.e-pen-stroke-color .e-split-btn-wrapper .e-split-btn .e-selected-color .e-split-preview {
274
+ display: none;
275
+ }
276
+ .e-image-editor .e-toolbar .e-toolbar-items .e-nocolor-item {
277
+ background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNnB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDYgNiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNTAgKDU0OTgzKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5Hcm91cCA5PC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiPgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExIiBmaWxsPSIjRTBFMEUwIiB4PSIwIiB5PSIwIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weS0yIiBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIzIiB3aWR0aD0iMyIgaGVpZ2h0PSIzIj48L3JlY3Q+CiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUtMTEtQ29weSIgZmlsbD0iI0ZGRkZGRiIgeD0iMyIgeT0iMCIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLTExLUNvcHktMyIgZmlsbD0iI0UwRTBFMCIgeD0iMyIgeT0iMyIgd2lkdGg9IjMiIGhlaWdodD0iMyI+PC9yZWN0PgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+") !important; /* stylelint-disable-line declaration-no-important */
278
+ background-size: 8px !important; /* stylelint-disable-line declaration-no-important */
279
+ }
280
+
281
+ .e-dropdown-popup .e-selected-btn {
282
+ background: #e6e6e6 !important; /* stylelint-disable-line declaration-no-important */
283
+ }