@syncfusion/ej2-angular-splitbuttons 24.1.41-ngcc → 24.1.41

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 (301) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
  3. package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
  4. package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
  5. package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
  6. package/esm2020/src/index.mjs +13 -0
  7. package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
  8. package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
  9. package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
  10. package/esm2020/src/split-button/items.directive.mjs +46 -0
  11. package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
  12. package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
  13. package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
  14. package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
  16. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
  18. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
  19. package/package.json +26 -12
  20. package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
  21. package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
  22. package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
  23. package/src/drop-down-button/items.directive.d.ts +5 -0
  24. package/src/progress-button/progressbutton-all.module.d.ts +6 -0
  25. package/src/progress-button/progressbutton.component.d.ts +3 -0
  26. package/src/progress-button/progressbutton.module.d.ts +6 -0
  27. package/src/split-button/items.directive.d.ts +5 -0
  28. package/src/split-button/splitbutton-all.module.d.ts +6 -0
  29. package/src/split-button/splitbutton.component.d.ts +3 -0
  30. package/src/split-button/splitbutton.module.d.ts +7 -0
  31. package/styles/bootstrap-dark.css +1761 -1
  32. package/styles/bootstrap.css +1811 -1
  33. package/styles/bootstrap4.css +1836 -1
  34. package/styles/bootstrap5-dark.css +1851 -1
  35. package/styles/bootstrap5.css +1851 -1
  36. package/styles/button-group/_all.scss +2 -0
  37. package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
  38. package/styles/button-group/_bootstrap-definition.scss +30 -0
  39. package/styles/button-group/_bootstrap4-definition.scss +30 -0
  40. package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
  41. package/styles/button-group/_bootstrap5-definition.scss +31 -0
  42. package/styles/button-group/_fabric-dark-definition.scss +33 -0
  43. package/styles/button-group/_fabric-definition.scss +30 -0
  44. package/styles/button-group/_fluent-dark-definition.scss +1 -0
  45. package/styles/button-group/_fluent-definition.scss +31 -0
  46. package/styles/button-group/_fusionnew-definition.scss +31 -0
  47. package/styles/button-group/_group-button-mixin.scss +72 -0
  48. package/styles/button-group/_highcontrast-definition.scss +32 -0
  49. package/styles/button-group/_highcontrast-light-definition.scss +35 -0
  50. package/styles/button-group/_layout.scss +294 -0
  51. package/styles/button-group/_material-dark-definition.scss +33 -0
  52. package/styles/button-group/_material-definition.scss +30 -0
  53. package/styles/button-group/_material3-dark-definition.scss +1 -0
  54. package/styles/button-group/_material3-definition.scss +31 -0
  55. package/styles/button-group/_tailwind-dark-definition.scss +1 -0
  56. package/styles/button-group/_tailwind-definition.scss +31 -0
  57. package/styles/button-group/_theme.scss +454 -0
  58. package/styles/button-group/bootstrap-dark.css +752 -1
  59. package/styles/button-group/bootstrap-dark.scss +4 -1
  60. package/styles/button-group/bootstrap.css +726 -1
  61. package/styles/button-group/bootstrap.scss +4 -1
  62. package/styles/button-group/bootstrap4.css +756 -1
  63. package/styles/button-group/bootstrap4.scss +4 -1
  64. package/styles/button-group/bootstrap5-dark.css +751 -1
  65. package/styles/button-group/bootstrap5-dark.scss +4 -1
  66. package/styles/button-group/bootstrap5.css +751 -1
  67. package/styles/button-group/bootstrap5.scss +4 -1
  68. package/styles/button-group/fabric-dark.css +752 -1
  69. package/styles/button-group/fabric-dark.scss +4 -1
  70. package/styles/button-group/fabric.css +758 -1
  71. package/styles/button-group/fabric.scss +4 -1
  72. package/styles/button-group/fluent-dark.css +755 -1
  73. package/styles/button-group/fluent-dark.scss +4 -1
  74. package/styles/button-group/fluent.css +755 -1
  75. package/styles/button-group/fluent.scss +4 -1
  76. package/styles/button-group/highcontrast-light.css +752 -1
  77. package/styles/button-group/highcontrast-light.scss +4 -1
  78. package/styles/button-group/highcontrast.css +803 -1
  79. package/styles/button-group/highcontrast.scss +4 -1
  80. package/styles/button-group/material-dark.css +752 -1
  81. package/styles/button-group/material-dark.scss +4 -1
  82. package/styles/button-group/material.css +756 -1
  83. package/styles/button-group/material.scss +4 -1
  84. package/styles/button-group/material3-dark.css +901 -1
  85. package/styles/button-group/material3-dark.scss +4 -1
  86. package/styles/button-group/material3.css +957 -1
  87. package/styles/button-group/material3.scss +4 -1
  88. package/styles/button-group/tailwind-dark.css +739 -1
  89. package/styles/button-group/tailwind-dark.scss +4 -1
  90. package/styles/button-group/tailwind.css +739 -1
  91. package/styles/button-group/tailwind.scss +4 -1
  92. package/styles/drop-down-button/_all.scss +2 -0
  93. package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
  94. package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
  95. package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
  96. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
  97. package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
  98. package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
  99. package/styles/drop-down-button/_fabric-definition.scss +48 -0
  100. package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
  101. package/styles/drop-down-button/_fluent-definition.scss +52 -0
  102. package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
  103. package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
  104. package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
  105. package/styles/drop-down-button/_layout.scss +238 -0
  106. package/styles/drop-down-button/_material-dark-definition.scss +51 -0
  107. package/styles/drop-down-button/_material-definition.scss +48 -0
  108. package/styles/drop-down-button/_material3-dark-definition.scss +1 -0
  109. package/styles/drop-down-button/_material3-definition.scss +51 -0
  110. package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
  111. package/styles/drop-down-button/_tailwind-definition.scss +49 -0
  112. package/styles/drop-down-button/_theme.scss +83 -0
  113. package/styles/drop-down-button/bootstrap-dark.css +231 -1
  114. package/styles/drop-down-button/bootstrap-dark.scss +6 -1
  115. package/styles/drop-down-button/bootstrap.css +231 -1
  116. package/styles/drop-down-button/bootstrap.scss +6 -1
  117. package/styles/drop-down-button/bootstrap4.css +226 -1
  118. package/styles/drop-down-button/bootstrap4.scss +6 -1
  119. package/styles/drop-down-button/bootstrap5-dark.css +236 -1
  120. package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
  121. package/styles/drop-down-button/bootstrap5.css +236 -1
  122. package/styles/drop-down-button/bootstrap5.scss +6 -1
  123. package/styles/drop-down-button/fabric-dark.css +231 -1
  124. package/styles/drop-down-button/fabric-dark.scss +6 -1
  125. package/styles/drop-down-button/fabric.css +231 -1
  126. package/styles/drop-down-button/fabric.scss +6 -1
  127. package/styles/drop-down-button/fluent-dark.css +233 -1
  128. package/styles/drop-down-button/fluent-dark.scss +6 -1
  129. package/styles/drop-down-button/fluent.css +233 -1
  130. package/styles/drop-down-button/fluent.scss +6 -1
  131. package/styles/drop-down-button/highcontrast-light.css +231 -1
  132. package/styles/drop-down-button/highcontrast-light.scss +6 -1
  133. package/styles/drop-down-button/highcontrast.css +232 -1
  134. package/styles/drop-down-button/highcontrast.scss +6 -1
  135. package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
  136. package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
  137. package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
  138. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
  139. package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
  140. package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
  141. package/styles/drop-down-button/icons/_fabric.scss +10 -0
  142. package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
  143. package/styles/drop-down-button/icons/_fluent.scss +10 -0
  144. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  145. package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
  146. package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
  147. package/styles/drop-down-button/icons/_material-dark.scss +10 -0
  148. package/styles/drop-down-button/icons/_material.scss +10 -0
  149. package/styles/drop-down-button/icons/_material3-dark.scss +1 -0
  150. package/styles/drop-down-button/icons/_material3.scss +10 -0
  151. package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
  152. package/styles/drop-down-button/icons/_tailwind.scss +10 -0
  153. package/styles/drop-down-button/material-dark.css +231 -1
  154. package/styles/drop-down-button/material-dark.scss +6 -1
  155. package/styles/drop-down-button/material.css +231 -1
  156. package/styles/drop-down-button/material.scss +6 -1
  157. package/styles/drop-down-button/material3-dark.css +292 -1
  158. package/styles/drop-down-button/material3-dark.scss +6 -1
  159. package/styles/drop-down-button/material3.css +348 -1
  160. package/styles/drop-down-button/material3.scss +6 -1
  161. package/styles/drop-down-button/tailwind-dark.css +241 -1
  162. package/styles/drop-down-button/tailwind-dark.scss +6 -1
  163. package/styles/drop-down-button/tailwind.css +241 -1
  164. package/styles/drop-down-button/tailwind.scss +6 -1
  165. package/styles/fabric-dark.css +1761 -1
  166. package/styles/fabric.css +1841 -1
  167. package/styles/fluent-dark.css +1852 -1
  168. package/styles/fluent.css +1852 -1
  169. package/styles/highcontrast-light.css +1761 -1
  170. package/styles/highcontrast.css +1813 -1
  171. package/styles/material-dark.css +1761 -1
  172. package/styles/material.css +1839 -1
  173. package/styles/material3-dark.css +1999 -1
  174. package/styles/material3-dark.scss +1 -0
  175. package/styles/material3.css +2049 -1
  176. package/styles/material3.scss +1 -0
  177. package/styles/progress-button/_all.scss +2 -0
  178. package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
  179. package/styles/progress-button/_bootstrap-definition.scss +24 -0
  180. package/styles/progress-button/_bootstrap4-definition.scss +24 -0
  181. package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
  182. package/styles/progress-button/_bootstrap5-definition.scss +21 -0
  183. package/styles/progress-button/_fabric-dark-definition.scss +27 -0
  184. package/styles/progress-button/_fabric-definition.scss +24 -0
  185. package/styles/progress-button/_fluent-dark-definition.scss +1 -0
  186. package/styles/progress-button/_fluent-definition.scss +21 -0
  187. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  188. package/styles/progress-button/_highcontrast-definition.scss +24 -0
  189. package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
  190. package/styles/progress-button/_layout.scss +396 -0
  191. package/styles/progress-button/_material-dark-definition.scss +27 -0
  192. package/styles/progress-button/_material-definition.scss +24 -0
  193. package/styles/progress-button/_material3-dark-definition.scss +1 -0
  194. package/styles/progress-button/_material3-definition.scss +25 -0
  195. package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
  196. package/styles/progress-button/_tailwind-definition.scss +21 -0
  197. package/styles/progress-button/_theme.scss +638 -0
  198. package/styles/progress-button/bootstrap-dark.css +445 -1
  199. package/styles/progress-button/bootstrap-dark.scss +5 -1
  200. package/styles/progress-button/bootstrap.css +522 -1
  201. package/styles/progress-button/bootstrap.scss +5 -1
  202. package/styles/progress-button/bootstrap4.css +525 -1
  203. package/styles/progress-button/bootstrap4.scss +5 -1
  204. package/styles/progress-button/bootstrap5-dark.css +538 -1
  205. package/styles/progress-button/bootstrap5-dark.scss +5 -1
  206. package/styles/progress-button/bootstrap5.css +538 -1
  207. package/styles/progress-button/bootstrap5.scss +5 -1
  208. package/styles/progress-button/fabric-dark.css +445 -1
  209. package/styles/progress-button/fabric-dark.scss +5 -1
  210. package/styles/progress-button/fabric.css +522 -1
  211. package/styles/progress-button/fabric.scss +5 -1
  212. package/styles/progress-button/fluent-dark.css +538 -1
  213. package/styles/progress-button/fluent-dark.scss +5 -1
  214. package/styles/progress-button/fluent.css +538 -1
  215. package/styles/progress-button/fluent.scss +5 -1
  216. package/styles/progress-button/highcontrast-light.css +445 -1
  217. package/styles/progress-button/highcontrast-light.scss +5 -1
  218. package/styles/progress-button/highcontrast.css +445 -1
  219. package/styles/progress-button/highcontrast.scss +5 -1
  220. package/styles/progress-button/material-dark.css +445 -1
  221. package/styles/progress-button/material-dark.scss +5 -1
  222. package/styles/progress-button/material.css +522 -1
  223. package/styles/progress-button/material.scss +5 -1
  224. package/styles/progress-button/material3-dark.css +556 -1
  225. package/styles/progress-button/material3-dark.scss +5 -1
  226. package/styles/progress-button/material3.css +612 -1
  227. package/styles/progress-button/material3.scss +5 -1
  228. package/styles/progress-button/tailwind-dark.css +542 -1
  229. package/styles/progress-button/tailwind-dark.scss +5 -1
  230. package/styles/progress-button/tailwind.css +542 -1
  231. package/styles/progress-button/tailwind.scss +5 -1
  232. package/styles/split-button/_all.scss +2 -0
  233. package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
  234. package/styles/split-button/_bootstrap-definition.scss +23 -0
  235. package/styles/split-button/_bootstrap4-definition.scss +26 -0
  236. package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
  237. package/styles/split-button/_bootstrap5-definition.scss +24 -0
  238. package/styles/split-button/_fabric-dark-definition.scss +26 -0
  239. package/styles/split-button/_fabric-definition.scss +23 -0
  240. package/styles/split-button/_fluent-dark-definition.scss +1 -0
  241. package/styles/split-button/_fluent-definition.scss +24 -0
  242. package/styles/split-button/_fusionnew-definition.scss +24 -0
  243. package/styles/split-button/_highcontrast-definition.scss +23 -0
  244. package/styles/split-button/_highcontrast-light-definition.scss +26 -0
  245. package/styles/split-button/_layout.scss +484 -0
  246. package/styles/split-button/_material-dark-definition.scss +26 -0
  247. package/styles/split-button/_material-definition.scss +23 -0
  248. package/styles/split-button/_material3-dark-definition.scss +1 -0
  249. package/styles/split-button/_material3-definition.scss +26 -0
  250. package/styles/split-button/_tailwind-dark-definition.scss +1 -0
  251. package/styles/split-button/_tailwind-definition.scss +24 -0
  252. package/styles/split-button/_theme.scss +187 -0
  253. package/styles/split-button/bootstrap-dark.css +330 -1
  254. package/styles/split-button/bootstrap-dark.scss +6 -1
  255. package/styles/split-button/bootstrap.css +330 -1
  256. package/styles/split-button/bootstrap.scss +6 -1
  257. package/styles/split-button/bootstrap4.css +326 -1
  258. package/styles/split-button/bootstrap4.scss +6 -1
  259. package/styles/split-button/bootstrap5-dark.css +323 -1
  260. package/styles/split-button/bootstrap5-dark.scss +6 -1
  261. package/styles/split-button/bootstrap5.css +323 -1
  262. package/styles/split-button/bootstrap5.scss +6 -1
  263. package/styles/split-button/fabric-dark.css +330 -1
  264. package/styles/split-button/fabric-dark.scss +6 -1
  265. package/styles/split-button/fabric.css +327 -1
  266. package/styles/split-button/fabric.scss +6 -1
  267. package/styles/split-button/fluent-dark.css +323 -1
  268. package/styles/split-button/fluent-dark.scss +6 -1
  269. package/styles/split-button/fluent.css +323 -1
  270. package/styles/split-button/fluent.scss +6 -1
  271. package/styles/split-button/highcontrast-light.css +330 -1
  272. package/styles/split-button/highcontrast-light.scss +6 -1
  273. package/styles/split-button/highcontrast.css +330 -1
  274. package/styles/split-button/highcontrast.scss +6 -1
  275. package/styles/split-button/material-dark.css +330 -1
  276. package/styles/split-button/material-dark.scss +6 -1
  277. package/styles/split-button/material.css +327 -1
  278. package/styles/split-button/material.scss +6 -1
  279. package/styles/split-button/material3-dark.css +412 -1
  280. package/styles/split-button/material3-dark.scss +6 -1
  281. package/styles/split-button/material3.css +462 -1
  282. package/styles/split-button/material3.scss +6 -1
  283. package/styles/split-button/tailwind-dark.css +344 -1
  284. package/styles/split-button/tailwind-dark.scss +6 -1
  285. package/styles/split-button/tailwind.css +344 -1
  286. package/styles/split-button/tailwind.scss +6 -1
  287. package/styles/tailwind-dark.css +1868 -1
  288. package/styles/tailwind.css +1868 -1
  289. package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
  290. package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
  291. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
  292. package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
  293. package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
  294. package/CHANGELOG.md +0 -256
  295. package/dist/ej2-angular-splitbuttons.umd.js +0 -603
  296. package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
  297. package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
  298. package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
  299. package/ej2-angular-splitbuttons.d.ts +0 -7
  300. package/ej2-angular-splitbuttons.metadata.json +0 -1
  301. package/postinstall/tagchange.js +0 -18
@@ -1 +1,292 @@
1
- @import '@syncfusion/ej2-splitbuttons/styles/drop-down-button/material3-dark.css';
1
+ :root {
2
+ --color-sf-black: 0, 0, 0;
3
+ --color-sf-white: 255, 255, 255;
4
+ --color-sf-primary: 208, 188, 255;
5
+ --color-sf-primary-container: 79, 55, 139;
6
+ --color-sf-secondary: 204, 194, 220;
7
+ --color-sf-secondary-container: 74, 68, 88;
8
+ --color-sf-tertiary: 239, 184, 200;
9
+ --color-sf-tertiary-container: 99, 59, 72;
10
+ --color-sf-surface: 28, 27, 31;
11
+ --color-sf-surface-variant: 73, 69, 79;
12
+ --color-sf-background: var(--color-sf-surface);
13
+ --color-sf-on-primary: 55, 30, 115;
14
+ --color-sf-on-primary-container: 234, 221, 255;
15
+ --color-sf-on-secondary: 51, 45, 65;
16
+ --color-sf-on-secondary-container: 232, 222, 248;
17
+ --color-sf-on-tertiary: 73, 37, 50;
18
+ --color-sf-on-tertiary-containe: 255, 216, 228;
19
+ --color-sf-on-surface: 230, 225, 229;
20
+ --color-sf-on-surface-variant: 202, 196, 208;
21
+ --color-sf-on-background: 230, 225, 229;
22
+ --color-sf-outline: 147, 143, 153;
23
+ --color-sf-outline-variant: 68, 71, 70;
24
+ --color-sf-shadow: 0, 0, 0;
25
+ --color-sf-surface-tint-color: 208, 188, 255;
26
+ --color-sf-inverse-surface: 230, 225, 229;
27
+ --color-sf-inverse-on-surface: 49, 48, 51;
28
+ --color-sf-inverse-primary: 103, 80, 164;
29
+ --color-sf-scrim: 0, 0, 0;
30
+ --color-sf-error: 242, 184, 181;
31
+ --color-sf-error-container: 140, 29, 24;
32
+ --color-sf-on-error: 96, 20, 16;
33
+ --color-sf-on-error-container: 249, 222, 220;
34
+ --color-sf-success: 83, 202, 23;
35
+ --color-sf-success-container: 22, 62, 2;
36
+ --color-sf-on-success: 13, 39, 0;
37
+ --color-sf-on-success-container: 183, 250, 150;
38
+ --color-sf-info: 71, 172, 251;
39
+ --color-sf-info-container: 0, 67, 120;
40
+ --color-sf-on-info: 0, 51, 91;
41
+ --color-sf-on-info-container: 173, 219, 255;
42
+ --color-sf-warning: 245, 180, 130;
43
+ --color-sf-warning-container: 123, 65, 0;
44
+ --color-sf-on-warning: 99, 52, 0;
45
+ --color-sf-on-warning-container: 255, 220, 193;
46
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
47
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
48
+ --color-sf-success-text: 0, 0, 0;
49
+ --color-sf-warning-text: 0, 0, 0;
50
+ --color-sf-info-text: 0, 0, 0;
51
+ --color-sf-danger-text: 0, 0, 0;
52
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
53
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
54
+ }
55
+
56
+ /* stylelint-disable-line no-empty-source */
57
+ .e-dropdown-btn .e-caret::before,
58
+ .e-dropdown-btn.e-btn .e-caret::before {
59
+ content: "\e70d";
60
+ }
61
+
62
+ /*! drop-down button layout */
63
+ .e-dropdown-btn,
64
+ .e-dropdown-btn.e-btn {
65
+ box-shadow: none;
66
+ text-transform: none;
67
+ white-space: normal;
68
+ border-radius: 4px;
69
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
70
+ padding: 7px 16px;
71
+ }
72
+ .e-dropdown-btn:focus,
73
+ .e-dropdown-btn.e-btn:focus {
74
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
75
+ }
76
+ .e-dropdown-btn:focus-visible,
77
+ .e-dropdown-btn.e-btn:focus-visible {
78
+ box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
79
+ }
80
+ .e-dropdown-btn:active,
81
+ .e-dropdown-btn.e-btn:active {
82
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
83
+ }
84
+ .e-dropdown-btn .e-btn-icon,
85
+ .e-dropdown-btn.e-btn .e-btn-icon {
86
+ font-size: 16px;
87
+ }
88
+ .e-dropdown-btn .e-caret,
89
+ .e-dropdown-btn.e-btn .e-caret {
90
+ font-size: 14px;
91
+ }
92
+ .e-dropdown-btn.e-vertical,
93
+ .e-dropdown-btn.e-btn.e-vertical {
94
+ line-height: 1;
95
+ padding: 6px 12px;
96
+ }
97
+ .e-dropdown-btn.e-caret-hide .e-caret,
98
+ .e-dropdown-btn.e-btn.e-caret-hide .e-caret {
99
+ display: none;
100
+ }
101
+ .e-dropdown-btn.e-small .e-dropdown-popup ul,
102
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul {
103
+ padding: 4px 0;
104
+ }
105
+ .e-dropdown-btn.e-small .e-dropdown-popup ul .e-item,
106
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul .e-item {
107
+ padding: 0 8px;
108
+ height: 24px;
109
+ }
110
+ .e-dropdown-btn.e-small.e-vertical,
111
+ .e-dropdown-btn.e-btn.e-small.e-vertical {
112
+ line-height: 1;
113
+ padding: 6px 12px;
114
+ }
115
+
116
+ .e-bigger .e-dropdown-btn .e-btn-icon,
117
+ .e-bigger.e-dropdown-btn .e-btn-icon {
118
+ font-size: 18px;
119
+ }
120
+ .e-bigger .e-dropdown-btn .e-caret,
121
+ .e-bigger.e-dropdown-btn .e-caret {
122
+ font-size: 16px;
123
+ }
124
+ .e-bigger .e-dropdown-btn.e-vertical,
125
+ .e-bigger.e-dropdown-btn.e-vertical {
126
+ line-height: 1;
127
+ padding: 8px 16px;
128
+ }
129
+ .e-bigger .e-dropdown-btn.e-small.e-vertical,
130
+ .e-bigger.e-dropdown-btn.e-small.e-vertical {
131
+ line-height: 1;
132
+ padding: 8px 16px;
133
+ }
134
+
135
+ .e-dropdown-popup {
136
+ position: absolute;
137
+ }
138
+ .e-dropdown-popup ul {
139
+ border: 0 solid rgba(var(--color-sf-outline-variant));
140
+ border-radius: 4px;
141
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
142
+ box-sizing: border-box;
143
+ font-size: 14px;
144
+ font-weight: 400;
145
+ list-style-image: none;
146
+ list-style-position: outside;
147
+ list-style-type: none;
148
+ margin: 0;
149
+ min-width: 120px;
150
+ overflow: hidden;
151
+ padding: 4px 0;
152
+ -webkit-user-select: none;
153
+ -ms-user-select: none;
154
+ user-select: none;
155
+ white-space: nowrap;
156
+ }
157
+ .e-dropdown-popup ul .e-item {
158
+ cursor: pointer;
159
+ display: -ms-flexbox;
160
+ display: flex;
161
+ height: 32px;
162
+ line-height: 32px;
163
+ padding: 0 12px;
164
+ }
165
+ .e-dropdown-popup ul .e-item.e-url {
166
+ padding: 0;
167
+ }
168
+ .e-dropdown-popup ul .e-item .e-menu-url {
169
+ display: block;
170
+ padding: 0 12px;
171
+ text-decoration: none;
172
+ width: 100%;
173
+ }
174
+ .e-dropdown-popup ul .e-item .e-menu-icon {
175
+ float: left;
176
+ font-size: 16px;
177
+ line-height: 32px;
178
+ margin-right: 11px;
179
+ vertical-align: middle;
180
+ width: 1em;
181
+ }
182
+ .e-dropdown-popup ul .e-item.e-disabled {
183
+ cursor: auto;
184
+ pointer-events: none;
185
+ box-shadow: none;
186
+ }
187
+ .e-dropdown-popup ul .e-item.e-separator {
188
+ border-bottom-style: solid;
189
+ border-bottom-width: 1px;
190
+ cursor: auto;
191
+ height: auto;
192
+ line-height: normal;
193
+ margin: 3px 0;
194
+ pointer-events: none;
195
+ }
196
+ .e-dropdown-popup.e-transparent {
197
+ background: transparent;
198
+ box-shadow: none;
199
+ }
200
+ .e-dropdown-popup.e-transparent .e-dropdown-menu {
201
+ border: 0;
202
+ height: 1px;
203
+ min-width: 0;
204
+ padding: 0;
205
+ width: 1px;
206
+ }
207
+
208
+ .e-rtl.e-dropdown-popup .e-item .e-menu-icon {
209
+ float: right;
210
+ margin-left: 11px;
211
+ margin-right: 0;
212
+ }
213
+
214
+ *.e-bigger .e-dropdown-popup ul,
215
+ *.e-bigger.e-dropdown-popup ul {
216
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
217
+ font-size: 16px;
218
+ max-width: 202px;
219
+ min-width: 112px;
220
+ padding: 8px 0;
221
+ }
222
+ *.e-bigger .e-dropdown-popup ul .e-item,
223
+ *.e-bigger.e-dropdown-popup ul .e-item {
224
+ height: 40px;
225
+ line-height: 40px;
226
+ padding: 0 16px;
227
+ }
228
+ *.e-bigger .e-dropdown-popup ul .e-item.e-url,
229
+ *.e-bigger.e-dropdown-popup ul .e-item.e-url {
230
+ padding: 0;
231
+ }
232
+ *.e-bigger .e-dropdown-popup ul .e-item .e-menu-icon,
233
+ *.e-bigger.e-dropdown-popup ul .e-item .e-menu-icon {
234
+ font-size: 20px;
235
+ line-height: 40px;
236
+ }
237
+ *.e-bigger .e-dropdown-popup ul .e-item.e-separator,
238
+ *.e-bigger.e-dropdown-popup ul .e-item.e-separator {
239
+ height: auto;
240
+ line-height: normal;
241
+ }
242
+
243
+ /*! drop-down button theme */
244
+ .e-dropdown-popup {
245
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
246
+ color: rgba(var(--color-sf-on-surface));
247
+ }
248
+ .e-dropdown-popup ul .e-item .e-menu-url {
249
+ color: rgba(var(--color-sf-on-surface));
250
+ }
251
+ .e-dropdown-popup ul .e-item .e-menu-icon {
252
+ color: rgba(var(--color-sf-on-surface-variant));
253
+ }
254
+ .e-dropdown-popup ul .e-item.e-focused {
255
+ background-color: rgba(var(--color-sf-on-surface), 0.04);
256
+ box-shadow: none;
257
+ }
258
+ .e-dropdown-popup ul .e-item:hover {
259
+ background-color: rgba(var(--color-sf-on-surface), 0.05);
260
+ color: rgba(var(--color-sf-on-surface));
261
+ }
262
+ .e-dropdown-popup ul .e-item:active, .e-dropdown-popup ul .e-item.e-selected {
263
+ background-color: rgba(var(--color-sf-primary-container), 0.65);
264
+ color: rgba(var(--color-sf-on-surface));
265
+ }
266
+ .e-dropdown-popup ul .e-item:active .e-menu-url, .e-dropdown-popup ul .e-item.e-selected .e-menu-url {
267
+ color: rgba(var(--color-sf-on-surface));
268
+ }
269
+ .e-dropdown-popup ul .e-item:active .e-menu-icon, .e-dropdown-popup ul .e-item.e-selected .e-menu-icon {
270
+ color: rgba(var(--color-sf-on-surface));
271
+ }
272
+ .e-dropdown-popup ul .e-separator {
273
+ border-bottom-color: rgba(var(--color-sf-outline-variant));
274
+ }
275
+
276
+ .e-dropdown-btn.e-inherit,
277
+ .e-dropdown-btn.e-btn.e-inherit {
278
+ background: inherit;
279
+ border-color: transparent;
280
+ box-shadow: none;
281
+ color: inherit;
282
+ }
283
+ .e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
284
+ .e-dropdown-btn.e-btn.e-inherit:hover,
285
+ .e-dropdown-btn.e-btn.e-inherit:focus,
286
+ .e-dropdown-btn.e-btn.e-inherit:active,
287
+ .e-dropdown-btn.e-btn.e-inherit.e-active {
288
+ background-color: rgba(0, 0, 0, 0.056);
289
+ border-color: transparent;
290
+ box-shadow: none;
291
+ color: inherit;
292
+ }
@@ -1,2 +1,7 @@
1
1
 
2
- @import 'ej2-splitbuttons/styles/drop-down-button/material3-dark.scss';
2
+
3
+ @import 'ej2-buttons/styles/button/material3-dark-definition.scss';
4
+ @import 'ej2-popups/styles/popup/material3-dark-definition.scss';
5
+ @import 'material3-dark-definition.scss';
6
+ @import 'icons/material3-dark.scss';
7
+ @import 'all.scss';
@@ -1 +1,348 @@
1
- @import '@syncfusion/ej2-splitbuttons/styles/drop-down-button/material3.css';
1
+ :root {
2
+ --color-sf-black: 0, 0, 0;
3
+ --color-sf-white: 255, 255, 255;
4
+ --color-sf-primary: 103, 80, 164;
5
+ --color-sf-primary-container: 234, 221, 255;
6
+ --color-sf-secondary: 98, 91, 113;
7
+ --color-sf-secondary-container: 232, 222, 248;
8
+ --color-sf-tertiary: 125, 82, 96;
9
+ --color-sf-tertiary-container: 255, 216, 228;
10
+ --color-sf-surface: 255, 255, 255;
11
+ --color-sf-surface-variant: 231, 224, 236;
12
+ --color-sf-background: var(--color-sf-surface);
13
+ --color-sf-on-primary: 255, 255, 255;
14
+ --color-sf-on-primary-container: 33, 0, 94;
15
+ --color-sf-on-secondary: 255, 255, 255;
16
+ --color-sf-on-secondary-container: 30, 25, 43;
17
+ --color-sf-on-tertiary: 255, 255, 255;
18
+ --color-sf-on-tertiary-containe: 55, 11, 30;
19
+ --color-sf-on-surface: 28, 27, 31;
20
+ --color-sf-on-surface-variant: 73, 69, 78;
21
+ --color-sf-on-background: 28, 27, 31;
22
+ --color-sf-outline: 121, 116, 126;
23
+ --color-sf-outline-variant: 196, 199, 197;
24
+ --color-sf-shadow: 0, 0, 0;
25
+ --color-sf-surface-tint-color: 103, 80, 164;
26
+ --color-sf-inverse-surface: 49, 48, 51;
27
+ --color-sf-inverse-on-surface: 244, 239, 244;
28
+ --color-sf-inverse-primary: 208, 188, 255;
29
+ --color-sf-scrim: 0, 0, 0;
30
+ --color-sf-error: 179, 38, 30;
31
+ --color-sf-error-container: 249, 222, 220;
32
+ --color-sf-on-error: 255, 250, 250;
33
+ --color-sf-on-error-container: 65, 14, 11;
34
+ --color-sf-success: 32, 81, 7;
35
+ --color-sf-success-container: 209, 255, 186;
36
+ --color-sf-on-success: 244, 255, 239;
37
+ --color-sf-on-success-container: 13, 39, 0;
38
+ --color-sf-info: 1, 87, 155;
39
+ --color-sf-info-container: 233, 245, 255;
40
+ --color-sf-on-info: 250, 253, 255;
41
+ --color-sf-on-info-container: 0, 51, 91;
42
+ --color-sf-warning: 145, 76, 0;
43
+ --color-sf-warning-container: 254, 236, 222;
44
+ --color-sf-on-warning: 255, 255, 255;
45
+ --color-sf-on-warning-container: 47, 21, 0;
46
+ --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
47
+ --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
48
+ --color-sf-diagram-palette-background: --color-sf-white;
49
+ --color-sf-success-text: 255, 255, 255;
50
+ --color-sf-warning-text: 255, 255, 255;
51
+ --color-sf-danger-text: 255, 255, 255;
52
+ --color-sf-info-text: 255, 255, 255;
53
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
54
+ --color-sf-secondary-bg-color: var(--color-sf-surface);
55
+ }
56
+
57
+ .e-dark-mode {
58
+ --color-sf-black: 0, 0, 0;
59
+ --color-sf-white: 255, 255, 255;
60
+ --color-sf-primary: 208, 188, 255;
61
+ --color-sf-primary-container: 79, 55, 139;
62
+ --color-sf-secondary: 204, 194, 220;
63
+ --color-sf-secondary-container: 74, 68, 88;
64
+ --color-sf-tertiary: 239, 184, 200;
65
+ --color-sf-tertiary-container: 99, 59, 72;
66
+ --color-sf-surface: 28, 27, 31;
67
+ --color-sf-surface-variant: 28, 27, 31;
68
+ --color-sf-background: var(--color-sf-surface);
69
+ --color-sf-on-primary: 55, 30, 115;
70
+ --color-sf-on-primary-container: 234, 221, 255;
71
+ --color-sf-on-secondary: 51, 45, 65;
72
+ --color-sf-on-secondary-container: 232, 222, 248;
73
+ --color-sf-on-tertiary: 73, 37, 50;
74
+ --color-sf-on-tertiary-containe: 255, 216, 228;
75
+ --color-sf-on-surface: 230, 225, 229;
76
+ --color-sf-on-surface-variant: 202, 196, 208;
77
+ --color-sf-on-background: 230, 225, 229;
78
+ --color-sf-outline: 147, 143, 153;
79
+ --color-sf-outline-variant: 68, 71, 70;
80
+ --color-sf-shadow: 0, 0, 0;
81
+ --color-sf-surface-tint-color: 208, 188, 255;
82
+ --color-sf-inverse-surface: 230, 225, 229;
83
+ --color-sf-inverse-on-surface: 49, 48, 51;
84
+ --color-sf-inverse-primary: 103, 80, 164;
85
+ --color-sf-scrim: 0, 0, 0;
86
+ --color-sf-error: 242, 184, 181;
87
+ --color-sf-error-container: 140, 29, 24;
88
+ --color-sf-on-error: 96, 20, 16;
89
+ --color-sf-on-error-container: 249, 222, 220;
90
+ --color-sf-success: 83, 202, 23;
91
+ --color-sf-success-container: 22, 62, 2;
92
+ --color-sf-on-success: 13, 39, 0;
93
+ --color-sf-on-success-container: 183, 250, 150;
94
+ --color-sf-info: 71, 172, 251;
95
+ --color-sf-info-container: 0, 67, 120;
96
+ --color-sf-on-info: 0, 51, 91;
97
+ --color-sf-on-info-container: 173, 219, 255;
98
+ --color-sf-warning: 245, 180, 130;
99
+ --color-sf-warning-container: 123, 65, 0;
100
+ --color-sf-on-warning: 99, 52, 0;
101
+ --color-sf-on-warning-container: 255, 220, 193;
102
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
103
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
104
+ --color-sf-success-text: 0, 0, 0;
105
+ --color-sf-warning-text: 0, 0, 0;
106
+ --color-sf-info-text: 0, 0, 0;
107
+ --color-sf-danger-text: 0, 0, 0;
108
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
109
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
110
+ }
111
+
112
+ /* stylelint-disable-line no-empty-source */
113
+ .e-dropdown-btn .e-caret::before,
114
+ .e-dropdown-btn.e-btn .e-caret::before {
115
+ content: "\e70d";
116
+ }
117
+
118
+ /*! drop-down button layout */
119
+ .e-dropdown-btn,
120
+ .e-dropdown-btn.e-btn {
121
+ box-shadow: none;
122
+ text-transform: none;
123
+ white-space: normal;
124
+ border-radius: 4px;
125
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
126
+ padding: 7px 16px;
127
+ }
128
+ .e-dropdown-btn:focus,
129
+ .e-dropdown-btn.e-btn:focus {
130
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
131
+ }
132
+ .e-dropdown-btn:focus-visible,
133
+ .e-dropdown-btn.e-btn:focus-visible {
134
+ box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #000000;
135
+ }
136
+ .e-dropdown-btn:active,
137
+ .e-dropdown-btn.e-btn:active {
138
+ box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
139
+ }
140
+ .e-dropdown-btn .e-btn-icon,
141
+ .e-dropdown-btn.e-btn .e-btn-icon {
142
+ font-size: 16px;
143
+ }
144
+ .e-dropdown-btn .e-caret,
145
+ .e-dropdown-btn.e-btn .e-caret {
146
+ font-size: 14px;
147
+ }
148
+ .e-dropdown-btn.e-vertical,
149
+ .e-dropdown-btn.e-btn.e-vertical {
150
+ line-height: 1;
151
+ padding: 6px 12px;
152
+ }
153
+ .e-dropdown-btn.e-caret-hide .e-caret,
154
+ .e-dropdown-btn.e-btn.e-caret-hide .e-caret {
155
+ display: none;
156
+ }
157
+ .e-dropdown-btn.e-small .e-dropdown-popup ul,
158
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul {
159
+ padding: 4px 0;
160
+ }
161
+ .e-dropdown-btn.e-small .e-dropdown-popup ul .e-item,
162
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul .e-item {
163
+ padding: 0 8px;
164
+ height: 24px;
165
+ }
166
+ .e-dropdown-btn.e-small.e-vertical,
167
+ .e-dropdown-btn.e-btn.e-small.e-vertical {
168
+ line-height: 1;
169
+ padding: 6px 12px;
170
+ }
171
+
172
+ .e-bigger .e-dropdown-btn .e-btn-icon,
173
+ .e-bigger.e-dropdown-btn .e-btn-icon {
174
+ font-size: 18px;
175
+ }
176
+ .e-bigger .e-dropdown-btn .e-caret,
177
+ .e-bigger.e-dropdown-btn .e-caret {
178
+ font-size: 16px;
179
+ }
180
+ .e-bigger .e-dropdown-btn.e-vertical,
181
+ .e-bigger.e-dropdown-btn.e-vertical {
182
+ line-height: 1;
183
+ padding: 8px 16px;
184
+ }
185
+ .e-bigger .e-dropdown-btn.e-small.e-vertical,
186
+ .e-bigger.e-dropdown-btn.e-small.e-vertical {
187
+ line-height: 1;
188
+ padding: 8px 16px;
189
+ }
190
+
191
+ .e-dropdown-popup {
192
+ position: absolute;
193
+ }
194
+ .e-dropdown-popup ul {
195
+ border: 0 solid rgba(var(--color-sf-outline-variant));
196
+ border-radius: 4px;
197
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
198
+ box-sizing: border-box;
199
+ font-size: 14px;
200
+ font-weight: 400;
201
+ list-style-image: none;
202
+ list-style-position: outside;
203
+ list-style-type: none;
204
+ margin: 0;
205
+ min-width: 120px;
206
+ overflow: hidden;
207
+ padding: 4px 0;
208
+ -webkit-user-select: none;
209
+ -ms-user-select: none;
210
+ user-select: none;
211
+ white-space: nowrap;
212
+ }
213
+ .e-dropdown-popup ul .e-item {
214
+ cursor: pointer;
215
+ display: -ms-flexbox;
216
+ display: flex;
217
+ height: 32px;
218
+ line-height: 32px;
219
+ padding: 0 12px;
220
+ }
221
+ .e-dropdown-popup ul .e-item.e-url {
222
+ padding: 0;
223
+ }
224
+ .e-dropdown-popup ul .e-item .e-menu-url {
225
+ display: block;
226
+ padding: 0 12px;
227
+ text-decoration: none;
228
+ width: 100%;
229
+ }
230
+ .e-dropdown-popup ul .e-item .e-menu-icon {
231
+ float: left;
232
+ font-size: 16px;
233
+ line-height: 32px;
234
+ margin-right: 11px;
235
+ vertical-align: middle;
236
+ width: 1em;
237
+ }
238
+ .e-dropdown-popup ul .e-item.e-disabled {
239
+ cursor: auto;
240
+ pointer-events: none;
241
+ box-shadow: none;
242
+ }
243
+ .e-dropdown-popup ul .e-item.e-separator {
244
+ border-bottom-style: solid;
245
+ border-bottom-width: 1px;
246
+ cursor: auto;
247
+ height: auto;
248
+ line-height: normal;
249
+ margin: 3px 0;
250
+ pointer-events: none;
251
+ }
252
+ .e-dropdown-popup.e-transparent {
253
+ background: transparent;
254
+ box-shadow: none;
255
+ }
256
+ .e-dropdown-popup.e-transparent .e-dropdown-menu {
257
+ border: 0;
258
+ height: 1px;
259
+ min-width: 0;
260
+ padding: 0;
261
+ width: 1px;
262
+ }
263
+
264
+ .e-rtl.e-dropdown-popup .e-item .e-menu-icon {
265
+ float: right;
266
+ margin-left: 11px;
267
+ margin-right: 0;
268
+ }
269
+
270
+ *.e-bigger .e-dropdown-popup ul,
271
+ *.e-bigger.e-dropdown-popup ul {
272
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
273
+ font-size: 16px;
274
+ max-width: 202px;
275
+ min-width: 112px;
276
+ padding: 8px 0;
277
+ }
278
+ *.e-bigger .e-dropdown-popup ul .e-item,
279
+ *.e-bigger.e-dropdown-popup ul .e-item {
280
+ height: 40px;
281
+ line-height: 40px;
282
+ padding: 0 16px;
283
+ }
284
+ *.e-bigger .e-dropdown-popup ul .e-item.e-url,
285
+ *.e-bigger.e-dropdown-popup ul .e-item.e-url {
286
+ padding: 0;
287
+ }
288
+ *.e-bigger .e-dropdown-popup ul .e-item .e-menu-icon,
289
+ *.e-bigger.e-dropdown-popup ul .e-item .e-menu-icon {
290
+ font-size: 20px;
291
+ line-height: 40px;
292
+ }
293
+ *.e-bigger .e-dropdown-popup ul .e-item.e-separator,
294
+ *.e-bigger.e-dropdown-popup ul .e-item.e-separator {
295
+ height: auto;
296
+ line-height: normal;
297
+ }
298
+
299
+ /*! drop-down button theme */
300
+ .e-dropdown-popup {
301
+ background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
302
+ color: rgba(var(--color-sf-on-surface));
303
+ }
304
+ .e-dropdown-popup ul .e-item .e-menu-url {
305
+ color: rgba(var(--color-sf-on-surface));
306
+ }
307
+ .e-dropdown-popup ul .e-item .e-menu-icon {
308
+ color: rgba(var(--color-sf-on-surface-variant));
309
+ }
310
+ .e-dropdown-popup ul .e-item.e-focused {
311
+ background-color: rgba(var(--color-sf-on-surface), 0.04);
312
+ box-shadow: none;
313
+ }
314
+ .e-dropdown-popup ul .e-item:hover {
315
+ background-color: rgba(var(--color-sf-on-surface), 0.05);
316
+ color: rgba(var(--color-sf-on-surface));
317
+ }
318
+ .e-dropdown-popup ul .e-item:active, .e-dropdown-popup ul .e-item.e-selected {
319
+ background-color: rgba(var(--color-sf-primary-container), 0.65);
320
+ color: rgba(var(--color-sf-on-surface));
321
+ }
322
+ .e-dropdown-popup ul .e-item:active .e-menu-url, .e-dropdown-popup ul .e-item.e-selected .e-menu-url {
323
+ color: rgba(var(--color-sf-on-surface));
324
+ }
325
+ .e-dropdown-popup ul .e-item:active .e-menu-icon, .e-dropdown-popup ul .e-item.e-selected .e-menu-icon {
326
+ color: rgba(var(--color-sf-on-surface));
327
+ }
328
+ .e-dropdown-popup ul .e-separator {
329
+ border-bottom-color: rgba(var(--color-sf-outline-variant));
330
+ }
331
+
332
+ .e-dropdown-btn.e-inherit,
333
+ .e-dropdown-btn.e-btn.e-inherit {
334
+ background: inherit;
335
+ border-color: transparent;
336
+ box-shadow: none;
337
+ color: inherit;
338
+ }
339
+ .e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
340
+ .e-dropdown-btn.e-btn.e-inherit:hover,
341
+ .e-dropdown-btn.e-btn.e-inherit:focus,
342
+ .e-dropdown-btn.e-btn.e-inherit:active,
343
+ .e-dropdown-btn.e-btn.e-inherit.e-active {
344
+ background-color: rgba(0, 0, 0, 0.056);
345
+ border-color: transparent;
346
+ box-shadow: none;
347
+ color: inherit;
348
+ }
@@ -1,2 +1,7 @@
1
1
 
2
- @import 'ej2-splitbuttons/styles/drop-down-button/material3.scss';
2
+
3
+ @import 'ej2-buttons/styles/button/material3-definition.scss';
4
+ @import 'ej2-popups/styles/popup/material3-definition.scss';
5
+ @import 'material3-definition.scss';
6
+ @import 'icons/material3.scss';
7
+ @import 'all.scss';