@limetech/lime-elements 34.1.0-next.6 → 34.1.0

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 (170) hide show
  1. package/dist/cjs/{_arrayIncludesWith-d69e30af.js → _arrayIncludesWith-36a6fafb.js} +7 -6
  2. package/dist/cjs/{_assignValue-493aac17.js → _assignValue-c9fc3712.js} +2 -2
  3. package/dist/cjs/{_defineProperty-c081d04c.js → _defineProperty-8351e789.js} +4 -3
  4. package/dist/cjs/{checkbox.template-d4423721.js → checkbox.template-312308d8.js} +9 -1
  5. package/dist/cjs/eq-9a943b00.js +75 -0
  6. package/dist/cjs/{isArrayLike-2bebb99c.js → isArrayLike-ac53bdac.js} +1 -30
  7. package/dist/cjs/{isEqual-1ce0c121.js → isEqual-e3b9c27c.js} +21 -19
  8. package/dist/cjs/{eq-3b43a5ca.js → isObject-e28b7997.js} +0 -71
  9. package/dist/cjs/isObjectLike-3e3f0cba.js +31 -0
  10. package/dist/cjs/{isSymbol-4666002c.js → isSymbol-d22b2798.js} +3 -3
  11. package/dist/cjs/lime-elements.cjs.js +1 -1
  12. package/dist/cjs/limel-checkbox.cjs.entry.js +3 -3
  13. package/dist/cjs/limel-chip-set.cjs.entry.js +50 -28
  14. package/dist/cjs/limel-code-editor.cjs.entry.js +1 -1
  15. package/dist/cjs/limel-color-picker-palette_2.cjs.entry.js +188 -0
  16. package/dist/cjs/limel-color-picker.cjs.entry.js +51 -0
  17. package/dist/cjs/limel-file.cjs.entry.js +1 -1
  18. package/dist/cjs/{limel-flatpickr-adapter_2.cjs.entry.js → limel-flatpickr-adapter.cjs.entry.js} +8 -801
  19. package/dist/cjs/limel-form.cjs.entry.js +59 -26
  20. package/dist/cjs/limel-grid.cjs.entry.js +1 -1
  21. package/dist/cjs/limel-input-field.cjs.entry.js +713 -0
  22. package/dist/cjs/limel-list_3.cjs.entry.js +2431 -0
  23. package/dist/cjs/limel-menu-list.cjs.entry.js +1 -1
  24. package/dist/cjs/limel-menu.cjs.entry.js +5 -4
  25. package/dist/cjs/limel-picker.cjs.entry.js +1 -1
  26. package/dist/cjs/limel-progress-flow-item.cjs.entry.js +1 -1
  27. package/dist/cjs/limel-slider.cjs.entry.js +69 -13
  28. package/dist/cjs/limel-tab-bar.cjs.entry.js +7 -5
  29. package/dist/cjs/limel-table.cjs.entry.js +9 -7
  30. package/dist/cjs/{limel-tooltip.cjs.entry.js → limel-tooltip_2.cjs.entry.js} +16 -0
  31. package/dist/cjs/loader.cjs.js +1 -1
  32. package/dist/cjs/{pickBy-64252559.js → pickBy-88b0430a.js} +10 -10
  33. package/dist/cjs/toNumber-062ea29c.js +99 -0
  34. package/dist/cjs/{zipObject-2f430e94.js → zipObject-4050a45f.js} +1 -1
  35. package/dist/collection/collection-manifest.json +2 -0
  36. package/dist/collection/components/checkbox/checkbox.css +96 -0
  37. package/dist/collection/components/checkbox/checkbox.js +19 -1
  38. package/dist/collection/components/checkbox/checkbox.template.js +9 -1
  39. package/dist/collection/components/chip-set/chip-set.css +14 -0
  40. package/dist/collection/components/chip-set/chip-set.js +75 -35
  41. package/dist/collection/components/code-editor/code-editor.css +7 -0
  42. package/dist/collection/components/color-picker/color-picker-palette.css +1239 -0
  43. package/dist/collection/components/color-picker/color-picker-palette.js +135 -0
  44. package/dist/collection/components/color-picker/color-picker.css +108 -0
  45. package/dist/collection/components/color-picker/color-picker.js +189 -0
  46. package/dist/collection/components/color-picker/swatches.js +29 -0
  47. package/dist/collection/components/file/file.js +1 -1
  48. package/dist/collection/components/form/adapters/widget-adapter.js +4 -1
  49. package/dist/collection/components/form/form.js +50 -0
  50. package/dist/collection/components/form/templates/array-field-collapsible-item.js +8 -8
  51. package/dist/collection/components/form/templates/common.js +1 -1
  52. package/dist/collection/components/form/widgets/select.js +3 -4
  53. package/dist/collection/components/grid/grid.css +1 -1
  54. package/dist/collection/components/input-field/input-field.css +13 -0
  55. package/dist/collection/components/list/list-renderer.js +17 -0
  56. package/dist/collection/components/list/list.css +423 -3
  57. package/dist/collection/components/list/list.js +1 -0
  58. package/dist/collection/components/menu-list/menu-list.css +1408 -60
  59. package/dist/collection/components/picker/picker.js +18 -1
  60. package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.css +1 -2
  61. package/dist/collection/components/slider/slider.js +69 -13
  62. package/dist/esm/{_arrayIncludesWith-3f5ce249.js → _arrayIncludesWith-b5d3fd9e.js} +5 -4
  63. package/dist/esm/{_assignValue-94fb6adc.js → _assignValue-08fe10bc.js} +2 -2
  64. package/dist/esm/{_defineProperty-cbf98a2a.js → _defineProperty-8c869077.js} +2 -1
  65. package/dist/esm/{checkbox.template-dbdd27c8.js → checkbox.template-4be69ce6.js} +9 -1
  66. package/dist/esm/eq-c1c7f528.js +72 -0
  67. package/dist/esm/{isArrayLike-14db8f02.js → isArrayLike-dd37ba9a.js} +2 -30
  68. package/dist/esm/{isEqual-4d982635.js → isEqual-4f22635f.js} +5 -3
  69. package/dist/esm/{eq-f40dd1d6.js → isObject-c74e273c.js} +1 -70
  70. package/dist/esm/isObjectLike-38996507.js +29 -0
  71. package/dist/esm/{isSymbol-84252d8e.js → isSymbol-5bf20921.js} +2 -2
  72. package/dist/esm/lime-elements.js +1 -1
  73. package/dist/esm/limel-checkbox.entry.js +3 -3
  74. package/dist/esm/limel-chip-set.entry.js +50 -28
  75. package/dist/esm/limel-code-editor.entry.js +1 -1
  76. package/dist/esm/limel-color-picker-palette_2.entry.js +183 -0
  77. package/dist/esm/limel-color-picker.entry.js +47 -0
  78. package/dist/esm/limel-file.entry.js +1 -1
  79. package/dist/esm/{limel-flatpickr-adapter_2.entry.js → limel-flatpickr-adapter.entry.js} +8 -800
  80. package/dist/esm/limel-form.entry.js +55 -22
  81. package/dist/esm/limel-grid.entry.js +1 -1
  82. package/dist/esm/limel-input-field.entry.js +709 -0
  83. package/dist/esm/limel-list_3.entry.js +2425 -0
  84. package/dist/esm/limel-menu-list.entry.js +1 -1
  85. package/dist/esm/limel-menu.entry.js +5 -4
  86. package/dist/esm/limel-picker.entry.js +1 -1
  87. package/dist/esm/limel-progress-flow-item.entry.js +1 -1
  88. package/dist/esm/limel-slider.entry.js +69 -13
  89. package/dist/esm/limel-tab-bar.entry.js +7 -5
  90. package/dist/esm/limel-table.entry.js +9 -7
  91. package/dist/esm/{limel-tooltip.entry.js → limel-tooltip_2.entry.js} +16 -1
  92. package/dist/esm/loader.js +1 -1
  93. package/dist/esm/{pickBy-c485c1b5.js → pickBy-8a849e46.js} +5 -5
  94. package/dist/esm/toNumber-a6ed64f0.js +97 -0
  95. package/dist/esm/{zipObject-53fcafb3.js → zipObject-22e88ce9.js} +1 -1
  96. package/dist/lime-elements/lime-elements.esm.js +1 -1
  97. package/dist/lime-elements/{p-fc691234.entry.js → p-03aa01b5.entry.js} +2 -2
  98. package/dist/lime-elements/p-090bc949.js +1 -0
  99. package/dist/lime-elements/p-0c121e2f.js +1 -0
  100. package/dist/lime-elements/{p-c6b97214.entry.js → p-0ce9165f.entry.js} +1 -1
  101. package/dist/lime-elements/p-13f0e4f4.entry.js +1 -0
  102. package/dist/lime-elements/p-1876a96a.entry.js +1 -0
  103. package/dist/lime-elements/{p-425a0596.js → p-1a64b531.js} +1 -1
  104. package/dist/lime-elements/p-365098fe.js +1 -0
  105. package/dist/lime-elements/p-379955f4.js +1 -0
  106. package/dist/lime-elements/p-426d11b4.js +1 -0
  107. package/dist/lime-elements/p-440084ea.js +1 -0
  108. package/dist/lime-elements/p-468e940e.entry.js +16 -0
  109. package/dist/lime-elements/p-46af5a60.entry.js +82 -0
  110. package/dist/lime-elements/p-4bc5d3fc.entry.js +1 -0
  111. package/dist/lime-elements/p-511d71e0.entry.js +1 -0
  112. package/dist/lime-elements/{p-11d5a71a.entry.js → p-5170a62c.entry.js} +1 -1
  113. package/dist/lime-elements/{p-ab049a50.entry.js → p-58cbe99d.entry.js} +1 -1
  114. package/dist/lime-elements/p-5a9ecd77.entry.js +73 -0
  115. package/dist/lime-elements/p-6003f817.entry.js +1 -0
  116. package/dist/lime-elements/p-622be09b.entry.js +126 -0
  117. package/dist/lime-elements/p-7f43b0c4.js +1 -0
  118. package/dist/lime-elements/p-858c6b82.js +1 -0
  119. package/dist/lime-elements/p-8a2c1038.entry.js +16 -0
  120. package/dist/lime-elements/{p-a1153d2a.entry.js → p-8ad5e143.entry.js} +1 -1
  121. package/dist/lime-elements/{p-b386bfeb.entry.js → p-a2cf74c1.entry.js} +1 -1
  122. package/dist/lime-elements/p-a77cbb08.entry.js +1 -0
  123. package/dist/lime-elements/p-c93050d6.js +1 -0
  124. package/dist/lime-elements/p-d529bb7d.js +1 -0
  125. package/dist/lime-elements/p-eda23c05.js +1 -0
  126. package/dist/lime-elements/{p-ff0217b3.entry.js → p-f2c706b8.entry.js} +1 -1
  127. package/dist/lime-elements/p-f83213b8.js +1 -0
  128. package/dist/lime-elements/{p-23d59a30.entry.js → p-fbe6100e.entry.js} +1 -1
  129. package/dist/types/components/checkbox/checkbox.d.ts +5 -0
  130. package/dist/types/components/checkbox/checkbox.template.d.ts +1 -0
  131. package/dist/types/components/chip-set/chip-set.d.ts +12 -0
  132. package/dist/types/components/color-picker/color-picker-palette.d.ts +32 -0
  133. package/dist/types/components/color-picker/color-picker.d.ts +54 -0
  134. package/dist/types/components/color-picker/swatches.d.ts +4 -0
  135. package/dist/types/components/form/form.d.ts +7 -1
  136. package/dist/types/components/list/list-item.types.d.ts +14 -0
  137. package/dist/types/components/list/list-renderer.d.ts +2 -0
  138. package/dist/types/components/list/list.d.ts +1 -0
  139. package/dist/types/components/picker/picker.d.ts +4 -0
  140. package/dist/types/components/slider/slider.d.ts +8 -0
  141. package/dist/types/components.d.ts +147 -1
  142. package/package.json +1 -1
  143. package/dist/cjs/limel-list_2.cjs.entry.js +0 -485
  144. package/dist/cjs/limel-popover.cjs.entry.js +0 -116
  145. package/dist/cjs/limel-portal.cjs.entry.js +0 -1935
  146. package/dist/cjs/limel-tooltip-content.cjs.entry.js +0 -22
  147. package/dist/esm/limel-list_2.entry.js +0 -480
  148. package/dist/esm/limel-popover.entry.js +0 -112
  149. package/dist/esm/limel-portal.entry.js +0 -1931
  150. package/dist/esm/limel-tooltip-content.entry.js +0 -18
  151. package/dist/lime-elements/p-1cf833c8.entry.js +0 -16
  152. package/dist/lime-elements/p-227d2c5a.entry.js +0 -1
  153. package/dist/lime-elements/p-3ce2d46a.js +0 -1
  154. package/dist/lime-elements/p-77afe6dd.entry.js +0 -1
  155. package/dist/lime-elements/p-7c4d91f5.js +0 -1
  156. package/dist/lime-elements/p-845e645a.entry.js +0 -1
  157. package/dist/lime-elements/p-89b5a983.js +0 -1
  158. package/dist/lime-elements/p-8bbe3720.js +0 -1
  159. package/dist/lime-elements/p-8d8bd2ab.entry.js +0 -73
  160. package/dist/lime-elements/p-8e4ff107.js +0 -1
  161. package/dist/lime-elements/p-acfbf7ac.js +0 -1
  162. package/dist/lime-elements/p-b5d6abc3.entry.js +0 -126
  163. package/dist/lime-elements/p-bbc1bb01.entry.js +0 -1
  164. package/dist/lime-elements/p-c0765c9b.js +0 -1
  165. package/dist/lime-elements/p-df55ee67.entry.js +0 -82
  166. package/dist/lime-elements/p-e28a4246.entry.js +0 -1
  167. package/dist/lime-elements/p-ee7355e7.js +0 -1
  168. package/dist/lime-elements/p-f4495f59.entry.js +0 -1
  169. package/dist/lime-elements/p-fbe32287.entry.js +0 -16
  170. package/dist/lime-elements/p-fc610f15.js +0 -1
@@ -1,3 +1,9 @@
1
+ /*
2
+ * This file is imported into every component!
3
+ *
4
+ * Nothing in this file may output any CSS
5
+ * without being explicitly called by outside code.
6
+ */
1
7
  /*
2
8
  * This file is imported into every component!
3
9
  *
@@ -68,7 +74,7 @@
68
74
  * @prop --list-grid-item-min-width: Minimum width of items in a list that has `has-grid-layout` class. Defaults to `7.5rem`.
69
75
  * @prop --list-grid-gap: Distance between items in a list that has `has-grid-layout` class. Defaults to `0.75rem`.
70
76
  */
71
- :host {
77
+ :host(limel-list) {
72
78
  display: block;
73
79
  }
74
80
 
@@ -3052,10 +3058,6 @@ a.mdc-list-item {
3052
3058
  pointer-events: none;
3053
3059
  }
3054
3060
 
3055
- .mdc-menu {
3056
- max-height: 70vh;
3057
- }
3058
-
3059
3061
  .mdc-deprecated-list {
3060
3062
  --mdc-theme-text-icon-on-background: var(
3061
3063
  --icon-color,
@@ -3065,6 +3067,7 @@ a.mdc-list-item {
3065
3067
  border-radius: 0.375rem;
3066
3068
  }
3067
3069
  .mdc-deprecated-list .mdc-deprecated-list-item {
3070
+ box-sizing: border-box;
3068
3071
  z-index: 0;
3069
3072
  }
3070
3073
  .mdc-deprecated-list .mdc-deprecated-list-item.mdc-deprecated-list-item--disabled {
@@ -3088,6 +3091,9 @@ a.mdc-list-item {
3088
3091
  line-height: 100%;
3089
3092
  margin-right: -0.5rem;
3090
3093
  }
3094
+ .mdc-deprecated-list .mdc-deprecated-list-item__graphic {
3095
+ margin-right: 0.5rem;
3096
+ }
3091
3097
  .mdc-deprecated-list.mdc-deprecated-list--avatar-list {
3092
3098
  position: relative;
3093
3099
  }
@@ -3123,14 +3129,9 @@ a.mdc-list-item {
3123
3129
  .mdc-deprecated-list.mdc-deprecated-list--avatar-list .mdc-deprecated-list-item:last-child hr.mdc-deprecated-list-divider {
3124
3130
  display: none;
3125
3131
  }
3126
- .mdc-deprecated-list .mdc-deprecated-list-item[role=menuitem] {
3127
- font-size: 0.8125rem;
3128
- }
3129
- .mdc-deprecated-list .mdc-deprecated-list-item[role=menuitem] .mdc-deprecated-list-item__graphic {
3130
- margin-right: 0.875rem;
3131
- }
3132
3132
  .mdc-deprecated-list.mdc-deprecated-list--two-line .mdc-deprecated-list-item__text {
3133
- padding: 0.5rem 0;
3133
+ padding-top: 0.5rem;
3134
+ padding-bottom: 0.5rem;
3134
3135
  }
3135
3136
  .mdc-deprecated-list.mdc-deprecated-list--two-line .mdc-deprecated-list-item__primary-text {
3136
3137
  margin-bottom: 0.25rem;
@@ -3155,6 +3156,9 @@ a.mdc-list-item {
3155
3156
  align-self: center;
3156
3157
  width: 100%;
3157
3158
  }
3159
+ .mdc-deprecated-list .has-primary-component .mdc-deprecated-list-item__text {
3160
+ margin-left: 0.5rem;
3161
+ }
3158
3162
  .mdc-deprecated-list .mdc-deprecated-list-item__primary-command-text {
3159
3163
  display: flex;
3160
3164
  flex-direction: row;
@@ -3299,69 +3303,1413 @@ a.mdc-list-item {
3299
3303
  * Nothing in this file may output any CSS
3300
3304
  * without being explicitly called by outside code.
3301
3305
  */
3302
- :host(.has-striped-rows) .mdc-deprecated-list {
3303
- border: 1px solid rgb(var(--contrast-400));
3304
- }
3305
- :host(.has-striped-rows) .mdc-deprecated-list-item:nth-child(even) {
3306
- background-color: rgb(var(--contrast-200));
3306
+ /*
3307
+ * This file is imported into every component that uses MDC!
3308
+ *
3309
+ * Anything in this file that generates CSS output on its own,
3310
+ * without being explicitly used, will output that CSS in every
3311
+ * single component, increasing the size of the production build.
3312
+ * Avoid that unless there's very good reason for it!
3313
+ */
3314
+ /*
3315
+ * This file is imported into every component that uses MDC!
3316
+ *
3317
+ * Anything in this file that generates CSS output on its own,
3318
+ * without being explicitly used, will output that CSS in every
3319
+ * single component, increasing the size of the production build.
3320
+ * Avoid that unless there's very good reason for it!
3321
+ */
3322
+ :host {
3323
+ --mdc-theme-primary: var(
3324
+ --lime-primary-color,
3325
+ rgb(var(--color-teal-default))
3326
+ );
3327
+ --mdc-theme-secondary: var(
3328
+ --lime-secondary-color,
3329
+ rgb(var(--contrast-1100))
3330
+ );
3331
+ --mdc-theme-on-primary: var(
3332
+ --lime-on-primary-color,
3333
+ rgb(var(--contrast-100))
3334
+ );
3335
+ --mdc-theme-on-secondary: var(
3336
+ --lime-on-secondary-color,
3337
+ rgb(var(--contrast-100))
3338
+ );
3339
+ --mdc-theme-text-disabled-on-background: var(
3340
+ --lime-text-disabled-on-background-color,
3341
+ rgba(var(--contrast-1700), 0.38)
3342
+ );
3343
+ --mdc-theme-text-primary-on-background: var(
3344
+ --lime-text-primary-on-background-color,
3345
+ rgba(var(--contrast-1700), 0.87)
3346
+ );
3347
+ --mdc-theme-text-secondary-on-background: var(
3348
+ --lime-text-secondary-on-background-color,
3349
+ rgba(var(--contrast-1700), 0.54)
3350
+ );
3351
+ --lime-error-text-color: rgb(var(--color-red-darker));
3352
+ --mdc-theme-surface: var(
3353
+ --lime-surface-background-color,
3354
+ rgb(var(--contrast-100))
3355
+ );
3356
+ --mdc-theme-on-surface: var(
3357
+ --lime-on-surface-color,
3358
+ var(--lime-text-primary-on-background-color)
3359
+ );
3307
3360
  }
3308
- :host(.has-striped-rows) .mdc-deprecated-list-item:nth-child(odd) {
3309
- background-color: rgb(var(--contrast-100));
3361
+
3362
+ :host {
3363
+ --mdc-checkbox-checked-color: var(--mdc-theme-primary);
3310
3364
  }
3311
3365
 
3312
- :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled) {
3313
- transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
3366
+ .mdc-checkbox {
3367
+ padding: calc((40px - 18px) / 2);
3368
+ /* @alternate */
3369
+ padding: calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);
3370
+ margin: calc((40px - 40px) / 2);
3371
+ /* @alternate */
3372
+ margin: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-ripple-size, 40px)) / 2);
3314
3373
  }
3315
- :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):hover {
3316
- box-shadow: var(--button-shadow-hovered);
3374
+ .mdc-checkbox .mdc-checkbox__ripple::before, .mdc-checkbox .mdc-checkbox__ripple::after {
3375
+ background-color: #000;
3376
+ /* @alternate */
3377
+ background-color: var(--mdc-ripple-color, #000);
3317
3378
  }
3318
- :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):active {
3319
- box-shadow: var(--button-shadow-pressed);
3320
- transform: translate3d(0, 0.08rem, 0);
3379
+ .mdc-checkbox:hover .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-ripple-surface--hover .mdc-checkbox__ripple::before {
3380
+ opacity: 0.04;
3381
+ /* @alternate */
3382
+ opacity: var(--mdc-ripple-hover-opacity, 0.04);
3321
3383
  }
3322
- :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):hover {
3323
- z-index: 1;
3324
- background-color: rgb(var(--contrast-100));
3384
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__ripple::before, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__ripple::before {
3385
+ transition-duration: 75ms;
3386
+ opacity: 0.12;
3387
+ /* @alternate */
3388
+ opacity: var(--mdc-ripple-focus-opacity, 0.12);
3325
3389
  }
3326
- :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):hover:before {
3327
- background-color: rgb(var(--contrast-100));
3390
+ .mdc-checkbox:not(.mdc-ripple-upgraded) .mdc-checkbox__ripple::after {
3391
+ transition: opacity 150ms linear;
3392
+ }
3393
+ .mdc-checkbox:not(.mdc-ripple-upgraded):active .mdc-checkbox__ripple::after {
3394
+ transition-duration: 75ms;
3395
+ opacity: 0.12;
3396
+ /* @alternate */
3397
+ opacity: var(--mdc-ripple-press-opacity, 0.12);
3398
+ }
3399
+ .mdc-checkbox.mdc-ripple-upgraded {
3400
+ --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
3401
+ }
3402
+ .mdc-checkbox.mdc-checkbox--selected .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected .mdc-checkbox__ripple::after {
3403
+ background-color: #575756;
3404
+ /* @alternate */
3405
+ background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #575756));
3406
+ }
3407
+ .mdc-checkbox.mdc-checkbox--selected:hover .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-surface--hover .mdc-checkbox__ripple::before {
3408
+ opacity: 0.04;
3409
+ /* @alternate */
3410
+ opacity: var(--mdc-ripple-hover-opacity, 0.04);
3411
+ }
3412
+ .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded--background-focused .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):focus .mdc-checkbox__ripple::before {
3413
+ transition-duration: 75ms;
3414
+ opacity: 0.12;
3415
+ /* @alternate */
3416
+ opacity: var(--mdc-ripple-focus-opacity, 0.12);
3417
+ }
3418
+ .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded) .mdc-checkbox__ripple::after {
3419
+ transition: opacity 150ms linear;
3420
+ }
3421
+ .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):active .mdc-checkbox__ripple::after {
3422
+ transition-duration: 75ms;
3423
+ opacity: 0.12;
3424
+ /* @alternate */
3425
+ opacity: var(--mdc-ripple-press-opacity, 0.12);
3426
+ }
3427
+ .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded {
3428
+ --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
3429
+ }
3430
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected .mdc-checkbox__ripple::before,
3431
+ .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected .mdc-checkbox__ripple::after {
3432
+ background-color: #575756;
3433
+ /* @alternate */
3434
+ background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #575756));
3435
+ }
3436
+ .mdc-checkbox .mdc-checkbox__background {
3437
+ top: calc((40px - 18px) / 2);
3438
+ /* @alternate */
3439
+ top: calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);
3440
+ left: calc((40px - 18px) / 2);
3441
+ /* @alternate */
3442
+ left: calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);
3443
+ }
3444
+ .mdc-checkbox .mdc-checkbox__native-control {
3445
+ top: calc((40px - 40px) / 2);
3446
+ /* @alternate */
3447
+ top: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-ripple-size, 40px)) / 2);
3448
+ right: calc((40px - 40px) / 2);
3449
+ /* @alternate */
3450
+ right: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-ripple-size, 40px)) / 2);
3451
+ left: calc((40px - 40px) / 2);
3452
+ /* @alternate */
3453
+ left: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-ripple-size, 40px)) / 2);
3454
+ width: 40px;
3455
+ /* @alternate */
3456
+ width: var(--mdc-checkbox-ripple-size, 40px);
3457
+ height: 40px;
3458
+ /* @alternate */
3459
+ height: var(--mdc-checkbox-ripple-size, 40px);
3460
+ }
3461
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true]) ~ .mdc-checkbox__background {
3462
+ border-color: rgba(0, 0, 0, 0.54);
3463
+ /* @alternate */
3464
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
3465
+ background-color: transparent;
3466
+ }
3467
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
3468
+ .mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background,
3469
+ .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled ~ .mdc-checkbox__background {
3470
+ border-color: #575756;
3471
+ /* @alternate */
3472
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #575756));
3473
+ background-color: #575756;
3474
+ /* @alternate */
3475
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #575756));
3476
+ }
3477
+ @keyframes mdc-checkbox-fade-in-background-8A000000FF57575600000000FF575756 {
3478
+ 0% {
3479
+ border-color: rgba(0, 0, 0, 0.54);
3480
+ /* @alternate */
3481
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
3482
+ background-color: transparent;
3483
+ }
3484
+ 50% {
3485
+ border-color: #575756;
3486
+ /* @alternate */
3487
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #575756));
3488
+ background-color: #575756;
3489
+ /* @alternate */
3490
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #575756));
3491
+ }
3492
+ }
3493
+ @keyframes mdc-checkbox-fade-out-background-8A000000FF57575600000000FF575756 {
3494
+ 0%, 80% {
3495
+ border-color: #575756;
3496
+ /* @alternate */
3497
+ border-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #575756));
3498
+ background-color: #575756;
3499
+ /* @alternate */
3500
+ background-color: var(--mdc-checkbox-checked-color, var(--mdc-theme-secondary, #575756));
3501
+ }
3502
+ 100% {
3503
+ border-color: rgba(0, 0, 0, 0.54);
3504
+ /* @alternate */
3505
+ border-color: var(--mdc-checkbox-unchecked-color, rgba(0, 0, 0, 0.54));
3506
+ background-color: transparent;
3507
+ }
3508
+ }
3509
+ .mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
3510
+ animation-name: mdc-checkbox-fade-in-background-8A000000FF57575600000000FF575756;
3511
+ }
3512
+ .mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
3513
+ animation-name: mdc-checkbox-fade-out-background-8A000000FF57575600000000FF575756;
3514
+ }
3515
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true]) ~ .mdc-checkbox__background {
3516
+ border-color: rgba(0, 0, 0, 0.38);
3517
+ /* @alternate */
3518
+ border-color: var(--mdc-checkbox-disabled-color, rgba(0, 0, 0, 0.38));
3519
+ background-color: transparent;
3520
+ }
3521
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:checked ~ .mdc-checkbox__background,
3522
+ .mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate ~ .mdc-checkbox__background,
3523
+ .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled] ~ .mdc-checkbox__background {
3524
+ border-color: transparent;
3525
+ background-color: rgba(0, 0, 0, 0.38);
3526
+ /* @alternate */
3527
+ background-color: var(--mdc-checkbox-disabled-color, rgba(0, 0, 0, 0.38));
3528
+ }
3529
+ .mdc-checkbox .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
3530
+ color: #fff;
3531
+ /* @alternate */
3532
+ color: var(--mdc-checkbox-ink-color, #fff);
3533
+ }
3534
+ .mdc-checkbox .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
3535
+ border-color: #fff;
3536
+ /* @alternate */
3537
+ border-color: var(--mdc-checkbox-ink-color, #fff);
3538
+ }
3539
+ .mdc-checkbox .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
3540
+ color: #fff;
3541
+ /* @alternate */
3542
+ color: var(--mdc-checkbox-ink-color, #fff);
3543
+ }
3544
+ .mdc-checkbox .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
3545
+ border-color: #fff;
3546
+ /* @alternate */
3547
+ border-color: var(--mdc-checkbox-ink-color, #fff);
3328
3548
  }
3329
3549
 
3330
- :host {
3331
- --line-height-of-secondary-text: 1.2rem;
3550
+ .mdc-touch-target-wrapper {
3551
+ display: inline;
3332
3552
  }
3333
3553
 
3334
- .mdc-deprecated-list-item {
3335
- height: auto !important;
3336
- min-height: 3rem;
3554
+ @keyframes mdc-checkbox-unchecked-checked-checkmark-path {
3555
+ 0%, 50% {
3556
+ stroke-dashoffset: 29.7833385;
3557
+ }
3558
+ 50% {
3559
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
3560
+ }
3561
+ 100% {
3562
+ stroke-dashoffset: 0;
3563
+ }
3337
3564
  }
3338
- .mdc-deprecated-list-item .mdc-deprecated-list-item__secondary-text {
3339
- line-height: var(--line-height-of-secondary-text);
3340
- white-space: normal;
3341
- display: -webkit-box;
3342
- -webkit-line-clamp: var(--maxLinesSecondaryText);
3343
- -webkit-box-orient: vertical;
3565
+ @keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
3566
+ 0%, 68.2% {
3567
+ transform: scaleX(0);
3568
+ }
3569
+ 68.2% {
3570
+ animation-timing-function: cubic-bezier(0, 0, 0, 1);
3571
+ }
3572
+ 100% {
3573
+ transform: scaleX(1);
3574
+ }
3344
3575
  }
3345
-
3346
- :host(.has-grid-layout) {
3347
- --gap: var(--list-grid-gap, 0.75rem);
3348
- padding: var(--gap);
3349
- /* prettier-ignore */
3576
+ @keyframes mdc-checkbox-checked-unchecked-checkmark-path {
3577
+ from {
3578
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
3579
+ opacity: 1;
3580
+ stroke-dashoffset: 0;
3581
+ }
3582
+ to {
3583
+ opacity: 0;
3584
+ stroke-dashoffset: -29.7833385;
3585
+ }
3350
3586
  }
3351
- :host(.has-grid-layout) .mdc-deprecated-list {
3352
- display: grid;
3353
- grid-gap: var(--gap);
3354
- grid-template-columns: repeat(auto-fit, minmax(min(100%, max(calc(var(--list-grid-item-max-width, 10rem) - var(--gap)), var(--list-grid-item-min-width, 7.5rem))), 1fr));
3355
- max-width: var(--list-grid-max-width, 100%);
3587
+ @keyframes mdc-checkbox-checked-indeterminate-checkmark {
3588
+ from {
3589
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
3590
+ transform: rotate(0deg);
3591
+ opacity: 1;
3592
+ }
3593
+ to {
3594
+ transform: rotate(45deg);
3595
+ opacity: 0;
3596
+ }
3356
3597
  }
3357
- :host(.has-grid-layout) .mdc-deprecated-list-divider {
3358
- grid-column: 1/-1;
3598
+ @keyframes mdc-checkbox-indeterminate-checked-checkmark {
3599
+ from {
3600
+ animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
3601
+ transform: rotate(45deg);
3602
+ opacity: 0;
3603
+ }
3604
+ to {
3605
+ transform: rotate(360deg);
3606
+ opacity: 1;
3607
+ }
3359
3608
  }
3360
- :host(.has-grid-layout) .mdc-deprecated-list-item {
3361
- border-radius: 0.25rem;
3362
- background-color: rgb(var(--contrast-100));
3609
+ @keyframes mdc-checkbox-checked-indeterminate-mixedmark {
3610
+ from {
3611
+ animation-timing-function: mdc-animation-deceleration-curve-timing-function;
3612
+ transform: rotate(-45deg);
3613
+ opacity: 0;
3614
+ }
3615
+ to {
3616
+ transform: rotate(0deg);
3617
+ opacity: 1;
3618
+ }
3363
3619
  }
3364
- :host(.has-grid-layout) .mdc-deprecated-list--avatar-list limel-icon {
3365
- margin-right: 0.25rem;
3366
- margin-left: -0.5rem;
3620
+ @keyframes mdc-checkbox-indeterminate-checked-mixedmark {
3621
+ from {
3622
+ animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
3623
+ transform: rotate(0deg);
3624
+ opacity: 1;
3625
+ }
3626
+ to {
3627
+ transform: rotate(315deg);
3628
+ opacity: 0;
3629
+ }
3630
+ }
3631
+ @keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
3632
+ 0% {
3633
+ animation-timing-function: linear;
3634
+ transform: scaleX(1);
3635
+ opacity: 1;
3636
+ }
3637
+ 32.8%, 100% {
3638
+ transform: scaleX(0);
3639
+ opacity: 0;
3640
+ }
3641
+ }
3642
+ .mdc-checkbox {
3643
+ display: inline-block;
3644
+ position: relative;
3645
+ flex: 0 0 18px;
3646
+ box-sizing: content-box;
3647
+ width: 18px;
3648
+ height: 18px;
3649
+ line-height: 0;
3650
+ white-space: nowrap;
3651
+ cursor: pointer;
3652
+ vertical-align: bottom;
3653
+ }
3654
+
3655
+ @media screen and (-ms-high-contrast: active) {
3656
+ .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true]) ~ .mdc-checkbox__background {
3657
+ border-color: GrayText;
3658
+ /* @alternate */
3659
+ border-color: var(--mdc-checkbox-disabled-color, GrayText);
3660
+ background-color: transparent;
3661
+ }
3662
+
3663
+ .mdc-checkbox__native-control[disabled]:checked ~ .mdc-checkbox__background,
3664
+ .mdc-checkbox__native-control[disabled]:indeterminate ~ .mdc-checkbox__background,
3665
+ .mdc-checkbox__native-control[data-indeterminate=true][disabled] ~ .mdc-checkbox__background {
3666
+ border-color: GrayText;
3667
+ background-color: transparent;
3668
+ /* @alternate */
3669
+ background-color: var(--mdc-checkbox-disabled-color, transparent);
3670
+ }
3671
+
3672
+ .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
3673
+ color: GrayText;
3674
+ /* @alternate */
3675
+ color: var(--mdc-checkbox-ink-color, GrayText);
3676
+ }
3677
+ .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
3678
+ border-color: GrayText;
3679
+ /* @alternate */
3680
+ border-color: var(--mdc-checkbox-ink-color, GrayText);
3681
+ }
3682
+
3683
+ .mdc-checkbox__mixedmark {
3684
+ margin: 0 1px;
3685
+ }
3686
+ }
3687
+ .mdc-checkbox--disabled {
3688
+ cursor: default;
3689
+ pointer-events: none;
3690
+ }
3691
+
3692
+ .mdc-checkbox__background {
3693
+ display: inline-flex;
3694
+ position: absolute;
3695
+ align-items: center;
3696
+ justify-content: center;
3697
+ box-sizing: border-box;
3698
+ width: 18px;
3699
+ height: 18px;
3700
+ border: 2px solid currentColor;
3701
+ border-radius: 2px;
3702
+ background-color: transparent;
3703
+ pointer-events: none;
3704
+ will-change: background-color, border-color;
3705
+ transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
3706
+ }
3707
+
3708
+ .mdc-checkbox__checkmark {
3709
+ position: absolute;
3710
+ top: 0;
3711
+ right: 0;
3712
+ bottom: 0;
3713
+ left: 0;
3714
+ width: 100%;
3715
+ opacity: 0;
3716
+ transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
3717
+ }
3718
+ .mdc-checkbox--upgraded .mdc-checkbox__checkmark {
3719
+ opacity: 1;
3720
+ }
3721
+
3722
+ .mdc-checkbox__checkmark-path {
3723
+ transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
3724
+ stroke: currentColor;
3725
+ stroke-width: 3.12px;
3726
+ stroke-dashoffset: 29.7833385;
3727
+ stroke-dasharray: 29.7833385;
3728
+ }
3729
+
3730
+ .mdc-checkbox__mixedmark {
3731
+ width: 100%;
3732
+ height: 0;
3733
+ transform: scaleX(0) rotate(0deg);
3734
+ border-width: 1px;
3735
+ border-style: solid;
3736
+ opacity: 0;
3737
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
3738
+ }
3739
+
3740
+ .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background, .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background {
3741
+ animation-duration: 180ms;
3742
+ animation-timing-function: linear;
3743
+ }
3744
+ .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
3745
+ animation: mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
3746
+ transition: none;
3747
+ }
3748
+ .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
3749
+ animation: mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
3750
+ transition: none;
3751
+ }
3752
+ .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
3753
+ animation: mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
3754
+ transition: none;
3755
+ }
3756
+ .mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
3757
+ animation: mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;
3758
+ transition: none;
3759
+ }
3760
+ .mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
3761
+ animation: mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
3762
+ transition: none;
3763
+ }
3764
+ .mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
3765
+ animation: mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;
3766
+ transition: none;
3767
+ }
3768
+ .mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
3769
+ animation: mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
3770
+ transition: none;
3771
+ }
3772
+ .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
3773
+ animation: mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
3774
+ transition: none;
3775
+ }
3776
+
3777
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background,
3778
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
3779
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background {
3780
+ transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
3781
+ }
3782
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
3783
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
3784
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
3785
+ stroke-dashoffset: 0;
3786
+ }
3787
+
3788
+ .mdc-checkbox__native-control {
3789
+ position: absolute;
3790
+ margin: 0;
3791
+ padding: 0;
3792
+ opacity: 0;
3793
+ cursor: inherit;
3794
+ }
3795
+ .mdc-checkbox__native-control:disabled {
3796
+ cursor: default;
3797
+ pointer-events: none;
3798
+ }
3799
+
3800
+ .mdc-checkbox--touch {
3801
+ margin: calc((48px - 40px) / 2);
3802
+ /* @alternate */
3803
+ margin: calc((var(--mdc-checkbox-touch-target-size, 48px) - var(--mdc-checkbox-ripple-size, 40px)) / 2);
3804
+ }
3805
+ .mdc-checkbox--touch .mdc-checkbox__native-control {
3806
+ top: calc((40px - 48px) / 2);
3807
+ /* @alternate */
3808
+ top: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-touch-target-size, 48px)) / 2);
3809
+ right: calc((40px - 48px) / 2);
3810
+ /* @alternate */
3811
+ right: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-touch-target-size, 48px)) / 2);
3812
+ left: calc((40px - 48px) / 2);
3813
+ /* @alternate */
3814
+ left: calc((var(--mdc-checkbox-ripple-size, 40px) - var(--mdc-checkbox-touch-target-size, 48px)) / 2);
3815
+ width: 48px;
3816
+ /* @alternate */
3817
+ width: var(--mdc-checkbox-touch-target-size, 48px);
3818
+ height: 48px;
3819
+ /* @alternate */
3820
+ height: var(--mdc-checkbox-touch-target-size, 48px);
3821
+ }
3822
+
3823
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
3824
+ transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
3825
+ opacity: 1;
3826
+ }
3827
+ .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
3828
+ transform: scaleX(1) rotate(-45deg);
3829
+ }
3830
+
3831
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark,
3832
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
3833
+ transform: rotate(45deg);
3834
+ opacity: 0;
3835
+ transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
3836
+ }
3837
+ .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark,
3838
+ .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
3839
+ transform: scaleX(1) rotate(0deg);
3840
+ opacity: 1;
3841
+ }
3842
+
3843
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,
3844
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,
3845
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,
3846
+ .mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
3847
+ transition: none;
3848
+ }
3849
+
3850
+ .mdc-checkbox {
3851
+ --mdc-ripple-fg-size: 0;
3852
+ --mdc-ripple-left: 0;
3853
+ --mdc-ripple-top: 0;
3854
+ --mdc-ripple-fg-scale: 1;
3855
+ --mdc-ripple-fg-translate-end: 0;
3856
+ --mdc-ripple-fg-translate-start: 0;
3857
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
3858
+ will-change: transform, opacity;
3859
+ }
3860
+ .mdc-checkbox .mdc-checkbox__ripple::before,
3861
+ .mdc-checkbox .mdc-checkbox__ripple::after {
3862
+ position: absolute;
3863
+ border-radius: 50%;
3864
+ opacity: 0;
3865
+ pointer-events: none;
3866
+ content: "";
3867
+ }
3868
+ .mdc-checkbox .mdc-checkbox__ripple::before {
3869
+ transition: opacity 15ms linear, background-color 15ms linear;
3870
+ z-index: 1;
3871
+ /* @alternate */
3872
+ z-index: var(--mdc-ripple-z-index, 1);
3873
+ }
3874
+ .mdc-checkbox .mdc-checkbox__ripple::after {
3875
+ z-index: 0;
3876
+ /* @alternate */
3877
+ z-index: var(--mdc-ripple-z-index, 0);
3878
+ }
3879
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::before {
3880
+ transform: scale(var(--mdc-ripple-fg-scale, 1));
3881
+ }
3882
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
3883
+ top: 0;
3884
+ /* @noflip */
3885
+ left: 0;
3886
+ transform: scale(0);
3887
+ transform-origin: center center;
3888
+ }
3889
+ .mdc-checkbox.mdc-ripple-upgraded--unbounded .mdc-checkbox__ripple::after {
3890
+ top: var(--mdc-ripple-top, 0);
3891
+ /* @noflip */
3892
+ left: var(--mdc-ripple-left, 0);
3893
+ }
3894
+ .mdc-checkbox.mdc-ripple-upgraded--foreground-activation .mdc-checkbox__ripple::after {
3895
+ animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
3896
+ }
3897
+ .mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation .mdc-checkbox__ripple::after {
3898
+ animation: mdc-ripple-fg-opacity-out 150ms;
3899
+ transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
3900
+ }
3901
+ .mdc-checkbox .mdc-checkbox__ripple::before,
3902
+ .mdc-checkbox .mdc-checkbox__ripple::after {
3903
+ top: calc(50% - 50%);
3904
+ /* @noflip */
3905
+ left: calc(50% - 50%);
3906
+ width: 100%;
3907
+ height: 100%;
3908
+ }
3909
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::before,
3910
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
3911
+ top: var(--mdc-ripple-top, calc(50% - 50%));
3912
+ /* @noflip */
3913
+ left: var(--mdc-ripple-left, calc(50% - 50%));
3914
+ width: var(--mdc-ripple-fg-size, 100%);
3915
+ height: var(--mdc-ripple-fg-size, 100%);
3916
+ }
3917
+ .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
3918
+ width: var(--mdc-ripple-fg-size, 100%);
3919
+ height: var(--mdc-ripple-fg-size, 100%);
3920
+ }
3921
+ .mdc-checkbox {
3922
+ z-index: 0;
3923
+ }
3924
+ .mdc-checkbox .mdc-checkbox__ripple::before,
3925
+ .mdc-checkbox .mdc-checkbox__ripple::after {
3926
+ z-index: -1;
3927
+ /* @alternate */
3928
+ z-index: var(--mdc-ripple-z-index, -1);
3929
+ }
3930
+
3931
+ .mdc-checkbox__ripple {
3932
+ position: absolute;
3933
+ top: 0;
3934
+ left: 0;
3935
+ width: 100%;
3936
+ height: 100%;
3937
+ pointer-events: none;
3938
+ }
3939
+
3940
+ .mdc-form-field {
3941
+ -moz-osx-font-smoothing: grayscale;
3942
+ -webkit-font-smoothing: antialiased;
3943
+ font-family: Roboto, sans-serif;
3944
+ /* @alternate */
3945
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
3946
+ font-size: 0.8125rem;
3947
+ /* @alternate */
3948
+ font-size: var(--mdc-typography-body2-font-size, 0.8125rem);
3949
+ line-height: 1.625rem;
3950
+ /* @alternate */
3951
+ line-height: var(--mdc-typography-body2-line-height, 1.625rem);
3952
+ font-weight: 400;
3953
+ /* @alternate */
3954
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
3955
+ letter-spacing: 0.0178571429em;
3956
+ /* @alternate */
3957
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
3958
+ text-decoration: inherit;
3959
+ /* @alternate */
3960
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
3961
+ text-transform: inherit;
3962
+ /* @alternate */
3963
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
3964
+ color: rgba(0, 0, 0, 0.87);
3965
+ /* @alternate */
3966
+ color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
3967
+ display: inline-flex;
3968
+ align-items: center;
3969
+ vertical-align: middle;
3970
+ }
3971
+ .mdc-form-field > label {
3972
+ /* @noflip */
3973
+ margin-left: 0;
3974
+ /* @noflip */
3975
+ margin-right: auto;
3976
+ /* @noflip */
3977
+ padding-left: 4px;
3978
+ /* @noflip */
3979
+ padding-right: 0;
3980
+ order: 0;
3981
+ }
3982
+ [dir=rtl] .mdc-form-field > label, .mdc-form-field > label[dir=rtl] {
3983
+ /* @noflip */
3984
+ margin-left: auto;
3985
+ /* @noflip */
3986
+ margin-right: 0;
3987
+ }
3988
+ [dir=rtl] .mdc-form-field > label, .mdc-form-field > label[dir=rtl] {
3989
+ /* @noflip */
3990
+ padding-left: 0;
3991
+ /* @noflip */
3992
+ padding-right: 4px;
3993
+ }
3994
+
3995
+ .mdc-form-field--nowrap > label {
3996
+ text-overflow: ellipsis;
3997
+ overflow: hidden;
3998
+ white-space: nowrap;
3999
+ }
4000
+
4001
+ .mdc-form-field--align-end > label {
4002
+ /* @noflip */
4003
+ margin-left: auto;
4004
+ /* @noflip */
4005
+ margin-right: 0;
4006
+ /* @noflip */
4007
+ padding-left: 0;
4008
+ /* @noflip */
4009
+ padding-right: 4px;
4010
+ order: -1;
4011
+ }
4012
+ [dir=rtl] .mdc-form-field--align-end > label, .mdc-form-field--align-end > label[dir=rtl] {
4013
+ /* @noflip */
4014
+ margin-left: 0;
4015
+ /* @noflip */
4016
+ margin-right: auto;
4017
+ }
4018
+ [dir=rtl] .mdc-form-field--align-end > label, .mdc-form-field--align-end > label[dir=rtl] {
4019
+ /* @noflip */
4020
+ padding-left: 4px;
4021
+ /* @noflip */
4022
+ padding-right: 0;
4023
+ }
4024
+
4025
+ .mdc-form-field--space-between {
4026
+ justify-content: space-between;
4027
+ }
4028
+ .mdc-form-field--space-between > label {
4029
+ margin: 0;
4030
+ }
4031
+ [dir=rtl] .mdc-form-field--space-between > label, .mdc-form-field--space-between > label[dir=rtl] {
4032
+ margin: 0;
4033
+ }
4034
+
4035
+ .mdc-form-field {
4036
+ display: flex;
4037
+ flex-wrap: wrap;
4038
+ }
4039
+ .mdc-form-field .mdc-checkbox.mdc-checkbox--invalid .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
4040
+ border-color: var(--lime-error-text-color);
4041
+ }
4042
+ .mdc-form-field .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__native-control:focus-visible + .mdc-checkbox__background:after {
4043
+ content: "";
4044
+ display: block;
4045
+ position: absolute;
4046
+ top: -0.75rem;
4047
+ right: -0.75rem;
4048
+ bottom: -0.75rem;
4049
+ left: -0.75rem;
4050
+ border-radius: 50%;
4051
+ box-shadow: var(--shadow-depth-8-focused);
4052
+ }
4053
+ .mdc-form-field label {
4054
+ cursor: pointer;
4055
+ line-height: normal;
4056
+ padding-left: 0;
4057
+ }
4058
+ .mdc-form-field label.mdc-checkbox--disabled {
4059
+ opacity: 0.37;
4060
+ }
4061
+ .mdc-form-field label.mdc-checkbox--required::after {
4062
+ margin-left: 0.0625rem;
4063
+ content: "*";
4064
+ }
4065
+ .mdc-form-field label.mdc-checkbox--invalid {
4066
+ color: var(--lime-error-text-color);
4067
+ }
4068
+
4069
+ .mdc-form-field .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple:before {
4070
+ animation: fade-out-focus-style 1s ease forwards;
4071
+ }
4072
+
4073
+ @keyframes fade-out-focus-style {
4074
+ 0% {
4075
+ opacity: 0.12;
4076
+ }
4077
+ 100% {
4078
+ opacity: 0;
4079
+ }
4080
+ }
4081
+ /*
4082
+ * This file is imported into every component!
4083
+ *
4084
+ * Nothing in this file may output any CSS
4085
+ * without being explicitly called by outside code.
4086
+ */
4087
+ /*
4088
+ * This file is imported into every component that uses MDC!
4089
+ *
4090
+ * Anything in this file that generates CSS output on its own,
4091
+ * without being explicitly used, will output that CSS in every
4092
+ * single component, increasing the size of the production build.
4093
+ * Avoid that unless there's very good reason for it!
4094
+ */
4095
+ /*
4096
+ * This file is imported into every component that uses MDC!
4097
+ *
4098
+ * Anything in this file that generates CSS output on its own,
4099
+ * without being explicitly used, will output that CSS in every
4100
+ * single component, increasing the size of the production build.
4101
+ * Avoid that unless there's very good reason for it!
4102
+ */
4103
+ :host {
4104
+ --mdc-theme-primary: var(
4105
+ --lime-primary-color,
4106
+ rgb(var(--color-teal-default))
4107
+ );
4108
+ --mdc-theme-secondary: var(
4109
+ --lime-secondary-color,
4110
+ rgb(var(--contrast-1100))
4111
+ );
4112
+ --mdc-theme-on-primary: var(
4113
+ --lime-on-primary-color,
4114
+ rgb(var(--contrast-100))
4115
+ );
4116
+ --mdc-theme-on-secondary: var(
4117
+ --lime-on-secondary-color,
4118
+ rgb(var(--contrast-100))
4119
+ );
4120
+ --mdc-theme-text-disabled-on-background: var(
4121
+ --lime-text-disabled-on-background-color,
4122
+ rgba(var(--contrast-1700), 0.38)
4123
+ );
4124
+ --mdc-theme-text-primary-on-background: var(
4125
+ --lime-text-primary-on-background-color,
4126
+ rgba(var(--contrast-1700), 0.87)
4127
+ );
4128
+ --mdc-theme-text-secondary-on-background: var(
4129
+ --lime-text-secondary-on-background-color,
4130
+ rgba(var(--contrast-1700), 0.54)
4131
+ );
4132
+ --lime-error-text-color: rgb(var(--color-red-darker));
4133
+ --mdc-theme-surface: var(
4134
+ --lime-surface-background-color,
4135
+ rgb(var(--contrast-100))
4136
+ );
4137
+ --mdc-theme-on-surface: var(
4138
+ --lime-on-surface-color,
4139
+ var(--lime-text-primary-on-background-color)
4140
+ );
4141
+ }
4142
+
4143
+ .limel-checkbox-helper-line {
4144
+ flex-basis: 100%;
4145
+ padding-right: 1rem;
4146
+ padding-left: 1rem;
4147
+ }
4148
+
4149
+ .limel-checkbox-helper-text {
4150
+ font-family: Roboto, sans-serif;
4151
+ -moz-osx-font-smoothing: grayscale;
4152
+ -webkit-font-smoothing: antialiased;
4153
+ font-size: 0.6875rem;
4154
+ font-weight: 400;
4155
+ letter-spacing: 0.0333333333em;
4156
+ text-decoration: inherit;
4157
+ text-transform: inherit;
4158
+ display: block;
4159
+ margin-top: 0;
4160
+ line-height: normal;
4161
+ margin: 0;
4162
+ transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
4163
+ opacity: 0;
4164
+ color: rgba(var(--contrast-1200), 1);
4165
+ }
4166
+
4167
+ .mdc-form-field:hover .limel-checkbox-helper-text, .mdc-form-field:focus .limel-checkbox-helper-text, .mdc-form-field:focus-visible .limel-checkbox-helper-text, .mdc-form-field:focus-within .limel-checkbox-helper-text {
4168
+ opacity: 1;
4169
+ }
4170
+
4171
+ @media (pointer: coarse) {
4172
+ .limel-checkbox-helper-text {
4173
+ opacity: 1;
4174
+ }
4175
+ }
4176
+ .mdc-radio {
4177
+ padding: 10px;
4178
+ display: inline-block;
4179
+ position: relative;
4180
+ flex: 0 0 auto;
4181
+ box-sizing: content-box;
4182
+ width: 20px;
4183
+ height: 20px;
4184
+ cursor: pointer;
4185
+ /* @alternate */
4186
+ will-change: opacity, transform, border-color, color;
4187
+ }
4188
+
4189
+ .mdc-radio .mdc-radio__native-control:enabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
4190
+ border-color: rgba(0, 0, 0, 0.54);
4191
+ }
4192
+
4193
+ .mdc-radio .mdc-radio__native-control:enabled:checked + .mdc-radio__background .mdc-radio__outer-circle {
4194
+ border-color: #575756;
4195
+ /* @alternate */
4196
+ border-color: var(--mdc-theme-secondary, #575756);
4197
+ }
4198
+
4199
+ .mdc-radio .mdc-radio__native-control:enabled + .mdc-radio__background .mdc-radio__inner-circle {
4200
+ border-color: #575756;
4201
+ /* @alternate */
4202
+ border-color: var(--mdc-theme-secondary, #575756);
4203
+ }
4204
+
4205
+ .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle,
4206
+ .mdc-radio .mdc-radio__native-control:disabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
4207
+ border-color: rgba(0, 0, 0, 0.38);
4208
+ }
4209
+
4210
+ .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle,
4211
+ .mdc-radio .mdc-radio__native-control:disabled:checked + .mdc-radio__background .mdc-radio__outer-circle {
4212
+ border-color: rgba(0, 0, 0, 0.38);
4213
+ }
4214
+
4215
+ .mdc-radio [aria-disabled=true] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__inner-circle,
4216
+ .mdc-radio .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
4217
+ border-color: rgba(0, 0, 0, 0.38);
4218
+ }
4219
+
4220
+ .mdc-radio .mdc-radio__background::before {
4221
+ background-color: #575756;
4222
+ /* @alternate */
4223
+ background-color: var(--mdc-theme-secondary, #575756);
4224
+ }
4225
+
4226
+ .mdc-radio .mdc-radio__background::before {
4227
+ top: -10px;
4228
+ left: -10px;
4229
+ width: 40px;
4230
+ height: 40px;
4231
+ }
4232
+
4233
+ .mdc-radio .mdc-radio__native-control {
4234
+ top: 0px;
4235
+ right: 0px;
4236
+ left: 0px;
4237
+ width: 40px;
4238
+ height: 40px;
4239
+ }
4240
+
4241
+ @media screen and (-ms-high-contrast: active) {
4242
+ .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle,
4243
+ .mdc-radio .mdc-radio__native-control:disabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
4244
+ border-color: GrayText;
4245
+ }
4246
+
4247
+ .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle,
4248
+ .mdc-radio .mdc-radio__native-control:disabled:checked + .mdc-radio__background .mdc-radio__outer-circle {
4249
+ border-color: GrayText;
4250
+ }
4251
+
4252
+ .mdc-radio [aria-disabled=true] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__inner-circle,
4253
+ .mdc-radio .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
4254
+ border-color: GrayText;
4255
+ }
4256
+ }
4257
+ .mdc-radio__background {
4258
+ display: inline-block;
4259
+ position: relative;
4260
+ box-sizing: border-box;
4261
+ width: 20px;
4262
+ height: 20px;
4263
+ }
4264
+
4265
+ .mdc-radio__background::before {
4266
+ position: absolute;
4267
+ transform: scale(0, 0);
4268
+ border-radius: 50%;
4269
+ opacity: 0;
4270
+ pointer-events: none;
4271
+ content: "";
4272
+ transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
4273
+ }
4274
+
4275
+ .mdc-radio__outer-circle {
4276
+ position: absolute;
4277
+ top: 0;
4278
+ left: 0;
4279
+ box-sizing: border-box;
4280
+ width: 100%;
4281
+ height: 100%;
4282
+ border-width: 2px;
4283
+ border-style: solid;
4284
+ border-radius: 50%;
4285
+ transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
4286
+ }
4287
+
4288
+ .mdc-radio__inner-circle {
4289
+ position: absolute;
4290
+ top: 0;
4291
+ left: 0;
4292
+ box-sizing: border-box;
4293
+ width: 100%;
4294
+ height: 100%;
4295
+ transform: scale(0, 0);
4296
+ border-width: 10px;
4297
+ border-style: solid;
4298
+ border-radius: 50%;
4299
+ transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
4300
+ }
4301
+
4302
+ .mdc-radio__native-control {
4303
+ position: absolute;
4304
+ margin: 0;
4305
+ padding: 0;
4306
+ opacity: 0;
4307
+ cursor: inherit;
4308
+ z-index: 1;
4309
+ }
4310
+
4311
+ .mdc-radio--touch {
4312
+ margin-top: 4px;
4313
+ margin-bottom: 4px;
4314
+ margin-right: 4px;
4315
+ margin-left: 4px;
4316
+ }
4317
+
4318
+ .mdc-radio--touch .mdc-radio__native-control {
4319
+ top: -4px;
4320
+ right: -4px;
4321
+ left: -4px;
4322
+ width: 48px;
4323
+ height: 48px;
4324
+ }
4325
+
4326
+ .mdc-radio__native-control:checked + .mdc-radio__background,
4327
+ .mdc-radio__native-control:disabled + .mdc-radio__background {
4328
+ transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
4329
+ }
4330
+
4331
+ .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle,
4332
+ .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle {
4333
+ transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
4334
+ }
4335
+
4336
+ .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle,
4337
+ .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
4338
+ transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
4339
+ }
4340
+
4341
+ .mdc-radio--disabled {
4342
+ cursor: default;
4343
+ pointer-events: none;
4344
+ }
4345
+
4346
+ .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle {
4347
+ transform: scale(0.5);
4348
+ transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
4349
+ }
4350
+
4351
+ .mdc-radio__native-control:disabled + .mdc-radio__background,
4352
+ [aria-disabled=true] .mdc-radio__native-control + .mdc-radio__background {
4353
+ cursor: default;
4354
+ }
4355
+
4356
+ .mdc-radio__native-control:focus + .mdc-radio__background::before {
4357
+ transform: scale(1);
4358
+ opacity: 0.12;
4359
+ transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
4360
+ }
4361
+
4362
+ .mdc-radio {
4363
+ --mdc-ripple-fg-size: 0;
4364
+ --mdc-ripple-left: 0;
4365
+ --mdc-ripple-top: 0;
4366
+ --mdc-ripple-fg-scale: 1;
4367
+ --mdc-ripple-fg-translate-end: 0;
4368
+ --mdc-ripple-fg-translate-start: 0;
4369
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
4370
+ will-change: transform, opacity;
4371
+ }
4372
+
4373
+ .mdc-radio .mdc-radio__ripple::before,
4374
+ .mdc-radio .mdc-radio__ripple::after {
4375
+ position: absolute;
4376
+ border-radius: 50%;
4377
+ opacity: 0;
4378
+ pointer-events: none;
4379
+ content: "";
4380
+ }
4381
+
4382
+ .mdc-radio .mdc-radio__ripple::before {
4383
+ transition: opacity 15ms linear, background-color 15ms linear;
4384
+ z-index: 1;
4385
+ /* @alternate */
4386
+ z-index: var(--mdc-ripple-z-index, 1);
4387
+ }
4388
+
4389
+ .mdc-radio .mdc-radio__ripple::after {
4390
+ z-index: 0;
4391
+ /* @alternate */
4392
+ z-index: var(--mdc-ripple-z-index, 0);
4393
+ }
4394
+
4395
+ .mdc-radio.mdc-ripple-upgraded .mdc-radio__ripple::before {
4396
+ transform: scale(var(--mdc-ripple-fg-scale, 1));
4397
+ }
4398
+
4399
+ .mdc-radio.mdc-ripple-upgraded .mdc-radio__ripple::after {
4400
+ top: 0;
4401
+ /* @noflip */
4402
+ left: 0;
4403
+ transform: scale(0);
4404
+ transform-origin: center center;
4405
+ }
4406
+
4407
+ .mdc-radio.mdc-ripple-upgraded--unbounded .mdc-radio__ripple::after {
4408
+ top: var(--mdc-ripple-top, 0);
4409
+ /* @noflip */
4410
+ left: var(--mdc-ripple-left, 0);
4411
+ }
4412
+
4413
+ .mdc-radio.mdc-ripple-upgraded--foreground-activation .mdc-radio__ripple::after {
4414
+ animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
4415
+ }
4416
+
4417
+ .mdc-radio.mdc-ripple-upgraded--foreground-deactivation .mdc-radio__ripple::after {
4418
+ animation: mdc-ripple-fg-opacity-out 150ms;
4419
+ transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
4420
+ }
4421
+
4422
+ .mdc-radio .mdc-radio__ripple::before,
4423
+ .mdc-radio .mdc-radio__ripple::after {
4424
+ top: calc(50% - 50%);
4425
+ /* @noflip */
4426
+ left: calc(50% - 50%);
4427
+ width: 100%;
4428
+ height: 100%;
4429
+ }
4430
+
4431
+ .mdc-radio.mdc-ripple-upgraded .mdc-radio__ripple::before,
4432
+ .mdc-radio.mdc-ripple-upgraded .mdc-radio__ripple::after {
4433
+ top: var(--mdc-ripple-top, calc(50% - 50%));
4434
+ /* @noflip */
4435
+ left: var(--mdc-ripple-left, calc(50% - 50%));
4436
+ width: var(--mdc-ripple-fg-size, 100%);
4437
+ height: var(--mdc-ripple-fg-size, 100%);
4438
+ }
4439
+
4440
+ .mdc-radio.mdc-ripple-upgraded .mdc-radio__ripple::after {
4441
+ width: var(--mdc-ripple-fg-size, 100%);
4442
+ height: var(--mdc-ripple-fg-size, 100%);
4443
+ }
4444
+
4445
+ .mdc-radio .mdc-radio__ripple::before, .mdc-radio .mdc-radio__ripple::after {
4446
+ background-color: #575756;
4447
+ /* @alternate */
4448
+ background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #575756));
4449
+ }
4450
+
4451
+ .mdc-radio:hover .mdc-radio__ripple::before, .mdc-radio.mdc-ripple-surface--hover .mdc-radio__ripple::before {
4452
+ opacity: 0.04;
4453
+ /* @alternate */
4454
+ opacity: var(--mdc-ripple-hover-opacity, 0.04);
4455
+ }
4456
+
4457
+ .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__ripple::before, .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__ripple::before {
4458
+ transition-duration: 75ms;
4459
+ opacity: 0.12;
4460
+ /* @alternate */
4461
+ opacity: var(--mdc-ripple-focus-opacity, 0.12);
4462
+ }
4463
+
4464
+ .mdc-radio:not(.mdc-ripple-upgraded) .mdc-radio__ripple::after {
4465
+ transition: opacity 150ms linear;
4466
+ }
4467
+
4468
+ .mdc-radio:not(.mdc-ripple-upgraded):active .mdc-radio__ripple::after {
4469
+ transition-duration: 75ms;
4470
+ opacity: 0.12;
4471
+ /* @alternate */
4472
+ opacity: var(--mdc-ripple-press-opacity, 0.12);
4473
+ }
4474
+
4475
+ .mdc-radio.mdc-ripple-upgraded {
4476
+ --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
4477
+ }
4478
+
4479
+ .mdc-radio.mdc-ripple-upgraded .mdc-radio__background::before, .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__background::before {
4480
+ content: none;
4481
+ }
4482
+
4483
+ .mdc-radio__ripple {
4484
+ position: absolute;
4485
+ top: 0;
4486
+ left: 0;
4487
+ width: 100%;
4488
+ height: 100%;
4489
+ pointer-events: none;
4490
+ }
4491
+
4492
+ .mdc-form-field {
4493
+ -moz-osx-font-smoothing: grayscale;
4494
+ -webkit-font-smoothing: antialiased;
4495
+ font-family: Roboto, sans-serif;
4496
+ /* @alternate */
4497
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
4498
+ font-size: 0.8125rem;
4499
+ /* @alternate */
4500
+ font-size: var(--mdc-typography-body2-font-size, 0.8125rem);
4501
+ line-height: 1.625rem;
4502
+ /* @alternate */
4503
+ line-height: var(--mdc-typography-body2-line-height, 1.625rem);
4504
+ font-weight: 400;
4505
+ /* @alternate */
4506
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
4507
+ letter-spacing: 0.0178571429em;
4508
+ /* @alternate */
4509
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
4510
+ text-decoration: inherit;
4511
+ /* @alternate */
4512
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
4513
+ text-transform: inherit;
4514
+ /* @alternate */
4515
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
4516
+ color: rgba(0, 0, 0, 0.87);
4517
+ /* @alternate */
4518
+ color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
4519
+ display: inline-flex;
4520
+ align-items: center;
4521
+ vertical-align: middle;
4522
+ }
4523
+ .mdc-form-field > label {
4524
+ /* @noflip */
4525
+ margin-left: 0;
4526
+ /* @noflip */
4527
+ margin-right: auto;
4528
+ /* @noflip */
4529
+ padding-left: 4px;
4530
+ /* @noflip */
4531
+ padding-right: 0;
4532
+ order: 0;
4533
+ }
4534
+ [dir=rtl] .mdc-form-field > label, .mdc-form-field > label[dir=rtl] {
4535
+ /* @noflip */
4536
+ margin-left: auto;
4537
+ /* @noflip */
4538
+ margin-right: 0;
4539
+ }
4540
+ [dir=rtl] .mdc-form-field > label, .mdc-form-field > label[dir=rtl] {
4541
+ /* @noflip */
4542
+ padding-left: 0;
4543
+ /* @noflip */
4544
+ padding-right: 4px;
4545
+ }
4546
+
4547
+ .mdc-form-field--nowrap > label {
4548
+ text-overflow: ellipsis;
4549
+ overflow: hidden;
4550
+ white-space: nowrap;
4551
+ }
4552
+
4553
+ .mdc-form-field--align-end > label {
4554
+ /* @noflip */
4555
+ margin-left: auto;
4556
+ /* @noflip */
4557
+ margin-right: 0;
4558
+ /* @noflip */
4559
+ padding-left: 0;
4560
+ /* @noflip */
4561
+ padding-right: 4px;
4562
+ order: -1;
4563
+ }
4564
+ [dir=rtl] .mdc-form-field--align-end > label, .mdc-form-field--align-end > label[dir=rtl] {
4565
+ /* @noflip */
4566
+ margin-left: 0;
4567
+ /* @noflip */
4568
+ margin-right: auto;
4569
+ }
4570
+ [dir=rtl] .mdc-form-field--align-end > label, .mdc-form-field--align-end > label[dir=rtl] {
4571
+ /* @noflip */
4572
+ padding-left: 4px;
4573
+ /* @noflip */
4574
+ padding-right: 0;
4575
+ }
4576
+
4577
+ .mdc-form-field--space-between {
4578
+ justify-content: space-between;
4579
+ }
4580
+ .mdc-form-field--space-between > label {
4581
+ margin: 0;
4582
+ }
4583
+ [dir=rtl] .mdc-form-field--space-between > label, .mdc-form-field--space-between > label[dir=rtl] {
4584
+ margin: 0;
4585
+ }
4586
+
4587
+ .mdc-form-field {
4588
+ display: flex;
4589
+ }
4590
+ .mdc-form-field .mdc-radio .mdc-radio__native-control:enabled + .mdc-radio__background .mdc-radio__inner-circle {
4591
+ border-color: #26a69a;
4592
+ /* @alternate */
4593
+ border-color: var(--mdc-theme-primary, #26a69a);
4594
+ }
4595
+
4596
+ /*
4597
+ * This file is imported into every component!
4598
+ *
4599
+ * Nothing in this file may output any CSS
4600
+ * without being explicitly called by outside code.
4601
+ */
4602
+ :host(.has-striped-rows) .mdc-deprecated-list {
4603
+ border: 1px solid rgb(var(--contrast-400));
4604
+ }
4605
+ :host(.has-striped-rows) .mdc-deprecated-list-item:nth-child(even) {
4606
+ background-color: rgb(var(--contrast-200));
4607
+ }
4608
+ :host(.has-striped-rows) .mdc-deprecated-list-item:nth-child(odd) {
4609
+ background-color: rgb(var(--contrast-100));
4610
+ }
4611
+
4612
+ :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled) {
4613
+ transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease-out;
4614
+ }
4615
+ :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):hover {
4616
+ box-shadow: var(--button-shadow-hovered);
4617
+ }
4618
+ :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):active {
4619
+ box-shadow: var(--button-shadow-pressed);
4620
+ transform: translate3d(0, 0.08rem, 0);
4621
+ }
4622
+ :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):hover {
4623
+ z-index: 1;
4624
+ background-color: rgb(var(--contrast-100));
4625
+ }
4626
+ :host(.has-interactive-items) .mdc-deprecated-list-item:not(.mdc-deprecated-list-item--disabled):hover:before {
4627
+ background-color: rgb(var(--contrast-100));
4628
+ }
4629
+
4630
+ :host {
4631
+ --line-height-of-secondary-text: 1.2rem;
4632
+ }
4633
+
4634
+ .mdc-deprecated-list-item {
4635
+ height: auto !important;
4636
+ min-height: 3rem;
4637
+ }
4638
+ .mdc-deprecated-list-item .mdc-deprecated-list-item__secondary-text {
4639
+ line-height: var(--line-height-of-secondary-text);
4640
+ white-space: normal;
4641
+ display: -webkit-box;
4642
+ -webkit-line-clamp: var(--maxLinesSecondaryText);
4643
+ -webkit-box-orient: vertical;
4644
+ }
4645
+
4646
+ :host(.has-grid-layout) {
4647
+ --gap: var(--list-grid-gap, 0.75rem);
4648
+ padding: var(--gap);
4649
+ /* prettier-ignore */
4650
+ }
4651
+ :host(.has-grid-layout) .mdc-deprecated-list {
4652
+ display: grid;
4653
+ gap: var(--gap);
4654
+ grid-template-columns: repeat(auto-fit, minmax(min(100%, max(calc(var(--list-grid-item-max-width, 10rem) - var(--gap)), var(--list-grid-item-min-width, 7.5rem))), 1fr));
4655
+ max-width: var(--list-grid-max-width, 100%);
4656
+ }
4657
+ :host(.has-grid-layout) .mdc-deprecated-list-divider {
4658
+ grid-column: 1/-1;
4659
+ }
4660
+ :host(.has-grid-layout) .mdc-deprecated-list-item {
4661
+ border-radius: 0.25rem;
4662
+ background-color: rgb(var(--contrast-100));
4663
+ }
4664
+ :host(.has-grid-layout) .mdc-deprecated-list--avatar-list limel-icon {
4665
+ margin-right: 0.25rem;
4666
+ margin-left: -0.5rem;
4667
+ }
4668
+
4669
+ :host(.static-actions-list) {
4670
+ z-index: 1;
4671
+ background-color: var(--mdc-theme-surface);
4672
+ }
4673
+
4674
+ :host(.has-position-sticky) {
4675
+ position: sticky;
4676
+ box-shadow: 0 0 0.75rem 0.5rem var(--mdc-theme-surface);
4677
+ }
4678
+
4679
+ :host(.has-position-sticky.is-on-top) {
4680
+ top: 0;
4681
+ }
4682
+
4683
+ :host(.has-position-sticky.is-at-bottom) {
4684
+ bottom: 0;
4685
+ }
4686
+
4687
+ :host(.is-on-top) {
4688
+ border-bottom: 1px solid rgb(var(--contrast-400));
4689
+ margin-bottom: 0.5rem;
4690
+ padding-bottom: 0.25rem;
4691
+ }
4692
+
4693
+ :host(.is-at-bottom) {
4694
+ border-top: 1px solid rgb(var(--contrast-400));
4695
+ margin-top: 0.5rem;
4696
+ padding-top: 0.25rem;
4697
+ }
4698
+
4699
+ :host(limel-menu-list) {
4700
+ display: block;
4701
+ }
4702
+
4703
+ .mdc-menu {
4704
+ max-height: 70vh;
4705
+ }
4706
+
4707
+ .mdc-deprecated-list {
4708
+ margin: 0.25rem;
4709
+ }
4710
+ .mdc-deprecated-list .mdc-deprecated-list-item[role=menuitem] {
4711
+ font-size: 0.8125rem;
4712
+ }
4713
+ .mdc-deprecated-list .mdc-deprecated-list-item[role=menuitem] .mdc-deprecated-list-item__graphic {
4714
+ margin-right: 0.875rem;
3367
4715
  }