@dialpad/dialtone-css 8.74.0 → 8.75.1

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.
@@ -2040,6 +2040,12 @@ template {
2040
2040
  animation: d-loading-circle 900ms infinite linear;
2041
2041
  content: "";
2042
2042
  }
2043
+ .d-btn--loading:has(> .d-btn__loader)::before {
2044
+ content: none;
2045
+ }
2046
+ .d-btn--loading > :where(.d-btn__loader) {
2047
+ position: absolute;
2048
+ }
2043
2049
  .d-btn--disabled {
2044
2050
  --button-color-text: var(--dt-action-color-foreground-disabled-default) !important;
2045
2051
  --button-color-background: var(--dt-action-color-background-disabled-default) !important;
@@ -4193,7 +4199,6 @@ legend .d-label--md {
4193
4199
  border: var(--popover-border-width) solid var(--popover-color-border);
4194
4200
  border-radius: var(--popover-border-radius);
4195
4201
  box-shadow: var(--popover-shadow);
4196
- visibility: visible;
4197
4202
  }
4198
4203
  .d-popover__dialog,
4199
4204
  .d-popover__dialog *,
@@ -4240,9 +4245,6 @@ legend .d-label--md {
4240
4245
  grid-row: 3;
4241
4246
  border-top: var(--popover-border-width) solid var(--popover-color-border);
4242
4247
  }
4243
- .tippy-box[data-popper-reference-hidden] .d-popover__dialog {
4244
- visibility: hidden;
4245
- }
4246
4248
  .d-progress-circle {
4247
4249
  --progress-size: var(--dt-icon-size-500);
4248
4250
  --progress-color: var(--dt-color-border-bold);
@@ -5823,6 +5825,323 @@ legend .d-label--md {
5823
5825
  color: var(--dt-color-foreground-tertiary);
5824
5826
  font: var(--dt-typography-body-md);
5825
5827
  }
5828
+ @property --d-motion-text-mask-pos {
5829
+ inherits: true;
5830
+ initial-value: 0%;
5831
+ syntax: '<percentage>';
5832
+ }
5833
+ .d-motion-text {
5834
+ /* Theme variables - can be overridden by design system */
5835
+ --d-motion-text-duration: 1000ms;
5836
+ --d-motion-text-char-duration: var(--d-motion-text-duration);
5837
+ --d-motion-text-word-duration: calc(var(--d-motion-text-duration) * 2);
5838
+ --d-motion-text-highlight-color: linear-gradient(135deg, var(--dt-color-brand-magenta) 10%, var(--dt-color-brand-purple) 80%, var(--dt-color-brand-gold) 100%);
5839
+ --d-motion-text-gradient: linear-gradient(90deg, transparent 0%, transparent 20%, black 40%, black 60%, transparent 80%, transparent 100%) 0% 0% / 500% 100%;
5840
+ --d-motion-text-shimmer-gradient: linear-gradient(90deg, black 0%, black 20%, #0005 40%, #0005 60%, black 80%, black 100%) 0% 0% / 500% 100%;
5841
+ position: relative;
5842
+ }
5843
+ .d-motion-text__sr-only {
5844
+ position: absolute;
5845
+ width: 1px;
5846
+ height: 1px;
5847
+ overflow: hidden;
5848
+ white-space: nowrap;
5849
+ clip-path: inset(50%);
5850
+ }
5851
+ .d-motion-text__content {
5852
+ display: contents;
5853
+ }
5854
+ .d-motion-text__fallback {
5855
+ display: contents;
5856
+ }
5857
+ .d-motion-text__char {
5858
+ display: inline;
5859
+ white-space: pre;
5860
+ }
5861
+ .d-motion-text__word {
5862
+ position: relative;
5863
+ display: inline-block;
5864
+ white-space: nowrap;
5865
+ }
5866
+ @-webkit-keyframes d-motion-text-gradient-in-char-appear {
5867
+ from {
5868
+ opacity: 0;
5869
+ }
5870
+ to {
5871
+ opacity: 1;
5872
+ }
5873
+ }
5874
+ @keyframes d-motion-text-gradient-in-char-appear {
5875
+ from {
5876
+ opacity: 0;
5877
+ }
5878
+ to {
5879
+ opacity: 1;
5880
+ }
5881
+ }
5882
+ @-webkit-keyframes d-motion-text-gradient-in-char-reveal {
5883
+ from {
5884
+ color: var(--dt-color-neutral-transparent);
5885
+ }
5886
+ to {
5887
+ color: inherit;
5888
+ }
5889
+ }
5890
+ @keyframes d-motion-text-gradient-in-char-reveal {
5891
+ from {
5892
+ color: var(--dt-color-neutral-transparent);
5893
+ }
5894
+ to {
5895
+ color: inherit;
5896
+ }
5897
+ }
5898
+ @-webkit-keyframes d-motion-text-gradient-in-word-reveal {
5899
+ from {
5900
+ --d-motion-text-mask-pos: 100%;
5901
+ }
5902
+ to {
5903
+ --d-motion-text-mask-pos: 0%;
5904
+ }
5905
+ }
5906
+ @keyframes d-motion-text-gradient-in-word-reveal {
5907
+ from {
5908
+ --d-motion-text-mask-pos: 100%;
5909
+ }
5910
+ to {
5911
+ --d-motion-text-mask-pos: 0%;
5912
+ }
5913
+ }
5914
+ @-webkit-keyframes d-motion-text-fade-in-char-appear {
5915
+ from {
5916
+ opacity: 0;
5917
+ }
5918
+ to {
5919
+ opacity: 1;
5920
+ }
5921
+ }
5922
+ @keyframes d-motion-text-fade-in-char-appear {
5923
+ from {
5924
+ opacity: 0;
5925
+ }
5926
+ to {
5927
+ opacity: 1;
5928
+ }
5929
+ }
5930
+ @-webkit-keyframes d-motion-text-fade-in-word-appear {
5931
+ from {
5932
+ opacity: 0;
5933
+ }
5934
+ to {
5935
+ opacity: 1;
5936
+ }
5937
+ }
5938
+ @keyframes d-motion-text-fade-in-word-appear {
5939
+ from {
5940
+ opacity: 0;
5941
+ }
5942
+ to {
5943
+ opacity: 1;
5944
+ }
5945
+ }
5946
+ @-webkit-keyframes d-motion-text-slide-in-char-appear {
5947
+ from {
5948
+ -webkit-transform: translateY(0.3em);
5949
+ transform: translateY(0.3em);
5950
+ opacity: 0;
5951
+ }
5952
+ to {
5953
+ -webkit-transform: translateY(0);
5954
+ transform: translateY(0);
5955
+ opacity: 1;
5956
+ }
5957
+ }
5958
+ @keyframes d-motion-text-slide-in-char-appear {
5959
+ from {
5960
+ -webkit-transform: translateY(0.3em);
5961
+ transform: translateY(0.3em);
5962
+ opacity: 0;
5963
+ }
5964
+ to {
5965
+ -webkit-transform: translateY(0);
5966
+ transform: translateY(0);
5967
+ opacity: 1;
5968
+ }
5969
+ }
5970
+ @-webkit-keyframes d-motion-text-slide-in-word-appear {
5971
+ from {
5972
+ -webkit-transform: translateY(0.5em);
5973
+ transform: translateY(0.5em);
5974
+ opacity: 0;
5975
+ }
5976
+ to {
5977
+ -webkit-transform: translateY(0);
5978
+ transform: translateY(0);
5979
+ opacity: 1;
5980
+ }
5981
+ }
5982
+ @keyframes d-motion-text-slide-in-word-appear {
5983
+ from {
5984
+ -webkit-transform: translateY(0.5em);
5985
+ transform: translateY(0.5em);
5986
+ opacity: 0;
5987
+ }
5988
+ to {
5989
+ -webkit-transform: translateY(0);
5990
+ transform: translateY(0);
5991
+ opacity: 1;
5992
+ }
5993
+ }
5994
+ .d-motion-text-char-gradient-in-enter-active {
5995
+ -webkit-animation: d-motion-text-gradient-in-char-appear var(--d-motion-text-char-duration) var(--ttf-in-out);
5996
+ animation: d-motion-text-gradient-in-char-appear var(--d-motion-text-char-duration) var(--ttf-in-out);
5997
+ }
5998
+ .d-motion-text-char-gradient-in-leave-active {
5999
+ animation: d-motion-text-gradient-in-char-appear calc(var(--d-motion-text-char-duration) * 0.5) var(--ttf-out-quint) reverse;
6000
+ }
6001
+ .d-motion-text-word-gradient-in-enter-active {
6002
+ -webkit-animation: d-motion-text-gradient-in-word-reveal calc(var(--d-motion-text-word-duration) * 1.5) var(--ttf-out-quint);
6003
+ animation: d-motion-text-gradient-in-word-reveal calc(var(--d-motion-text-word-duration) * 1.5) var(--ttf-out-quint);
6004
+ }
6005
+ .d-motion-text-word-gradient-in-leave-active {
6006
+ animation: d-motion-text-gradient-in-word-reveal calc(var(--d-motion-text-word-duration) * 0.5) var(--ttf-out-quint) reverse;
6007
+ }
6008
+ .d-motion-text-char-fade-in-enter-active {
6009
+ -webkit-animation: d-motion-text-fade-in-char-appear var(--d-motion-text-char-duration) var(--ttf-out-quint);
6010
+ animation: d-motion-text-fade-in-char-appear var(--d-motion-text-char-duration) var(--ttf-out-quint);
6011
+ }
6012
+ .d-motion-text-char-fade-in-leave-active {
6013
+ animation: d-motion-text-fade-in-char-appear calc(var(--d-motion-text-char-duration) * 0.5) var(--ttf-out-quint) reverse;
6014
+ }
6015
+ .d-motion-text-word-fade-in-enter-active {
6016
+ -webkit-animation: d-motion-text-fade-in-word-appear var(--d-motion-text-word-duration) var(--ttf-out-quint);
6017
+ animation: d-motion-text-fade-in-word-appear var(--d-motion-text-word-duration) var(--ttf-out-quint);
6018
+ }
6019
+ .d-motion-text-word-fade-in-leave-active {
6020
+ animation: d-motion-text-fade-in-word-appear calc(var(--d-motion-text-word-duration) * 0.5) var(--ttf-out-quint) reverse;
6021
+ }
6022
+ .d-motion-text-char-slide-in-enter-active {
6023
+ -webkit-animation: d-motion-text-slide-in-char-appear var(--d-motion-text-char-duration) var(--ttf-out-quint);
6024
+ animation: d-motion-text-slide-in-char-appear var(--d-motion-text-char-duration) var(--ttf-out-quint);
6025
+ }
6026
+ .d-motion-text-char-slide-in-leave-active {
6027
+ animation: d-motion-text-slide-in-char-appear calc(var(--d-motion-text-char-duration) * 0.5) var(--ttf-out-quint) reverse;
6028
+ }
6029
+ .d-motion-text-word-slide-in-enter-active {
6030
+ -webkit-animation: d-motion-text-slide-in-word-appear var(--d-motion-text-word-duration) var(--ttf-out-quint);
6031
+ animation: d-motion-text-slide-in-word-appear var(--d-motion-text-word-duration) var(--ttf-out-quint);
6032
+ }
6033
+ .d-motion-text-word-slide-in-leave-active {
6034
+ animation: d-motion-text-slide-in-word-appear calc(var(--d-motion-text-word-duration) * 0.5) var(--ttf-out-quint) reverse;
6035
+ }
6036
+ .d-motion-text--gradient-in .d-motion-text__char {
6037
+ -webkit-animation: d-motion-text-gradient-in-char-reveal var(--d-motion-text-char-duration) var(--ttf-in-out);
6038
+ animation: d-motion-text-gradient-in-char-reveal var(--d-motion-text-char-duration) var(--ttf-in-out);
6039
+ }
6040
+ .d-motion-text--gradient-sweep,
6041
+ .d-motion-text--shimmer {
6042
+ position: relative;
6043
+ display: inline-block;
6044
+ -webkit-animation: d-motion-text-gradient-in-word-reveal calc(var(--d-motion-text-word-duration) * 1.5) var(--ttf-in-out) 1;
6045
+ animation: d-motion-text-gradient-in-word-reveal calc(var(--d-motion-text-word-duration) * 1.5) var(--ttf-in-out) 1;
6046
+ }
6047
+ .d-motion-text--gradient-in .d-motion-text__word::before,
6048
+ .d-motion-text--gradient-sweep::before {
6049
+ position: absolute;
6050
+ font-size: inherit;
6051
+ line-height: inherit;
6052
+ letter-spacing: inherit;
6053
+ background: var(--d-motion-text-highlight-color);
6054
+ -webkit-background-clip: text;
6055
+ background-clip: text;
6056
+ content: attr(data-text-content);
6057
+ pointer-events: none;
6058
+ -webkit-text-fill-color: transparent;
6059
+ -webkit-mask: var(--d-motion-text-gradient);
6060
+ mask: var(--d-motion-text-gradient);
6061
+ -webkit-mask-position: var(--d-motion-text-mask-pos) 0%;
6062
+ mask-position: var(--d-motion-text-mask-pos) 0%;
6063
+ }
6064
+ .d-motion-text--shimmer {
6065
+ content: attr(data-text-content);
6066
+ -webkit-mask: var(--d-motion-text-shimmer-gradient);
6067
+ mask: var(--d-motion-text-shimmer-gradient);
6068
+ -webkit-mask-position: var(--d-motion-text-mask-pos) 0%;
6069
+ mask-position: var(--d-motion-text-mask-pos) 0%;
6070
+ }
6071
+ .d-motion-text--none .d-motion-text__word,
6072
+ .d-motion-text--none .d-motion-text__char {
6073
+ -webkit-transform: none;
6074
+ transform: none;
6075
+ opacity: 1;
6076
+ }
6077
+ .d-motion-text--paused {
6078
+ -webkit-animation-play-state: paused !important;
6079
+ animation-play-state: paused !important;
6080
+ }
6081
+ .d-motion-text--looped {
6082
+ -webkit-animation-iteration-count: infinite !important;
6083
+ animation-iteration-count: infinite !important;
6084
+ }
6085
+ @media (prefers-reduced-motion: reduce) {
6086
+ .d-motion-text {
6087
+ --d-motion-text-duration: 0ms;
6088
+ --d-motion-text-char-duration: 0ms;
6089
+ --d-motion-text-word-duration: 0ms;
6090
+ transition-duration: 0ms !important;
6091
+ -webkit-animation-duration: 0ms !important;
6092
+ animation-duration: 0ms !important;
6093
+ }
6094
+ }
6095
+ .d-recipe-combobox-with-popover__list .d-list-item__content {
6096
+ min-height: calc(var(--dt-size-550) + var(--dt-size-300));
6097
+ }
6098
+ .d-recipe-combobox-multi-select__chip {
6099
+ z-index: var(--zi-base1);
6100
+ max-width: var(--dt-size-100-percent);
6101
+ margin-top: var(--dt-space-300);
6102
+ margin-right: var(--dt-space-200);
6103
+ margin-left: var(--dt-space-200);
6104
+ }
6105
+ .d-recipe-combobox-multi-select__chip-wrapper {
6106
+ position: absolute;
6107
+ max-width: calc(var(--dt-size-100-percent) - var(--dt-space-400));
6108
+ max-height: initial;
6109
+ margin-right: var(--dt-space-200);
6110
+ margin-left: var(--dt-space-200);
6111
+ padding-left: var(--dt-space-100);
6112
+ overflow-y: visible;
6113
+ }
6114
+ .d-recipe-combobox-multi-select__chip-wrapper-md--collapsed {
6115
+ max-height: 2.8rem;
6116
+ overflow-y: hidden;
6117
+ }
6118
+ .d-recipe-combobox-multi-select__chip-wrapper-sm--collapsed,
6119
+ .d-recipe-combobox-multi-select__chip-wrapper-xs--collapsed {
6120
+ max-height: 2.5rem;
6121
+ overflow-y: hidden;
6122
+ }
6123
+ .d-recipe-combobox-multi-select__chip--truncate {
6124
+ white-space: nowrap;
6125
+ text-overflow: ellipsis;
6126
+ }
6127
+ .d-recipe-combobox-multi-select__input {
6128
+ flex-grow: 1;
6129
+ }
6130
+ .d-recipe-combobox-multi-select__input--hidden {
6131
+ color: transparent;
6132
+ }
6133
+ .d-recipe-combobox-multi-select__input-wrapper {
6134
+ position: relative;
6135
+ display: block;
6136
+ }
6137
+ .d-recipe-combobox-multi-select__list .d-list-item__content {
6138
+ min-height: calc(var(--dt-size-550) + var(--dt-size-300));
6139
+ }
6140
+ .d-recipe-combobox-multi-select__list--loading {
6141
+ padding-top: var(--dt-space-500);
6142
+ padding-bottom: var(--dt-space-500);
6143
+ text-align: center;
6144
+ }
5826
6145
  .d-bga-scroll {
5827
6146
  background-attachment: scroll !important;
5828
6147
  }
@@ -9209,56 +9528,6 @@ ul {
9209
9528
  .d-recipe-callbox__badge--warning {
9210
9529
  background-color: var(--dt-color-surface-warning);
9211
9530
  }
9212
- .d-recipe-combobox-multi-select__chip {
9213
- z-index: var(--zi-base1);
9214
- max-width: var(--dt-size-100-percent);
9215
- margin-top: var(--dt-space-300);
9216
- margin-right: var(--dt-space-200);
9217
- margin-left: var(--dt-space-200);
9218
- }
9219
- .d-recipe-combobox-multi-select__chip-wrapper {
9220
- position: absolute;
9221
- max-width: calc(var(--dt-size-100-percent) - var(--dt-space-400));
9222
- max-height: initial;
9223
- margin-right: var(--dt-space-200);
9224
- margin-left: var(--dt-space-200);
9225
- padding-left: var(--dt-space-100);
9226
- overflow-y: visible;
9227
- }
9228
- .d-recipe-combobox-multi-select__chip-wrapper-md--collapsed {
9229
- max-height: 2.8rem;
9230
- overflow-y: hidden;
9231
- }
9232
- .d-recipe-combobox-multi-select__chip-wrapper-sm--collapsed,
9233
- .d-recipe-combobox-multi-select__chip-wrapper-xs--collapsed {
9234
- max-height: 2.5rem;
9235
- overflow-y: hidden;
9236
- }
9237
- .d-recipe-combobox-multi-select__chip--truncate {
9238
- white-space: nowrap;
9239
- text-overflow: ellipsis;
9240
- }
9241
- .d-recipe-combobox-multi-select__input {
9242
- flex-grow: 1;
9243
- }
9244
- .d-recipe-combobox-multi-select__input--hidden {
9245
- color: transparent;
9246
- }
9247
- .d-recipe-combobox-multi-select__input-wrapper {
9248
- position: relative;
9249
- display: block;
9250
- }
9251
- .d-recipe-combobox-multi-select__list .d-list-item__content {
9252
- min-height: calc(var(--dt-size-550) + var(--dt-size-300));
9253
- }
9254
- .d-recipe-combobox-multi-select__list--loading {
9255
- padding-top: var(--dt-space-500);
9256
- padding-bottom: var(--dt-space-500);
9257
- text-align: center;
9258
- }
9259
- .d-recipe-combobox-with-popover__list .d-list-item__content {
9260
- min-height: calc(var(--dt-size-550) + var(--dt-size-300));
9261
- }
9262
9531
  .d-recipe-contact-info {
9263
9532
  --contact-info-avatar-border-color: var(--dt-color-surface-primary);
9264
9533
  padding: var(--dt-space-300) var(--dt-space-400);
@@ -10235,273 +10504,6 @@ ul {
10235
10504
  border: var(--dt-space-100) solid;
10236
10505
  border-color: var(--dt-color-border-default);
10237
10506
  }
10238
- @property --dt-recipe-motion-text-mask-pos {
10239
- inherits: true;
10240
- initial-value: 0%;
10241
- syntax: '<percentage>';
10242
- }
10243
- .dt-recipe-motion-text {
10244
- /* Theme variables - can be overridden by design system */
10245
- --dt-recipe-motion-text-duration: 1000ms;
10246
- --dt-recipe-motion-text-char-duration: var(--dt-recipe-motion-text-duration);
10247
- --dt-recipe-motion-text-word-duration: calc(var(--dt-recipe-motion-text-duration) * 2);
10248
- --dt-recipe-motion-text-highlight-color: linear-gradient(135deg, var(--dt-color-brand-magenta) 10%, var(--dt-color-brand-purple) 80%, var(--dt-color-brand-gold) 100%);
10249
- --dt-recipe-motion-text-gradient: linear-gradient(90deg, transparent 0%, transparent 20%, black 40%, black 60%, transparent 80%, transparent 100%) 0% 0% / 500% 100%;
10250
- --dt-recipe-motion-text-shimmer-gradient: linear-gradient(90deg, black 0%, black 20%, #0005 40%, #0005 60%, black 80%, black 100%) 0% 0% / 500% 100%;
10251
- position: relative;
10252
- }
10253
- .dt-recipe-motion-text__sr-only {
10254
- position: absolute;
10255
- width: 1px;
10256
- height: 1px;
10257
- overflow: hidden;
10258
- white-space: nowrap;
10259
- clip-path: inset(50%);
10260
- }
10261
- .dt-recipe-motion-text__content {
10262
- display: contents;
10263
- }
10264
- .dt-recipe-motion-text__fallback {
10265
- display: contents;
10266
- }
10267
- .dt-recipe-motion-text__char {
10268
- display: inline;
10269
- white-space: pre;
10270
- }
10271
- .dt-recipe-motion-text__word {
10272
- position: relative;
10273
- display: inline-block;
10274
- white-space: nowrap;
10275
- }
10276
- @-webkit-keyframes dt-recipe-motion-text-gradient-in-char-appear {
10277
- from {
10278
- opacity: 0;
10279
- }
10280
- to {
10281
- opacity: 1;
10282
- }
10283
- }
10284
- @keyframes dt-recipe-motion-text-gradient-in-char-appear {
10285
- from {
10286
- opacity: 0;
10287
- }
10288
- to {
10289
- opacity: 1;
10290
- }
10291
- }
10292
- @-webkit-keyframes dt-recipe-motion-text-gradient-in-char-reveal {
10293
- from {
10294
- color: var(--dt-color-neutral-transparent);
10295
- }
10296
- to {
10297
- color: inherit;
10298
- }
10299
- }
10300
- @keyframes dt-recipe-motion-text-gradient-in-char-reveal {
10301
- from {
10302
- color: var(--dt-color-neutral-transparent);
10303
- }
10304
- to {
10305
- color: inherit;
10306
- }
10307
- }
10308
- @-webkit-keyframes dt-recipe-motion-text-gradient-in-word-reveal {
10309
- from {
10310
- --dt-recipe-motion-text-mask-pos: 100%;
10311
- }
10312
- to {
10313
- --dt-recipe-motion-text-mask-pos: 0%;
10314
- }
10315
- }
10316
- @keyframes dt-recipe-motion-text-gradient-in-word-reveal {
10317
- from {
10318
- --dt-recipe-motion-text-mask-pos: 100%;
10319
- }
10320
- to {
10321
- --dt-recipe-motion-text-mask-pos: 0%;
10322
- }
10323
- }
10324
- @-webkit-keyframes dt-recipe-motion-text-fade-in-char-appear {
10325
- from {
10326
- opacity: 0;
10327
- }
10328
- to {
10329
- opacity: 1;
10330
- }
10331
- }
10332
- @keyframes dt-recipe-motion-text-fade-in-char-appear {
10333
- from {
10334
- opacity: 0;
10335
- }
10336
- to {
10337
- opacity: 1;
10338
- }
10339
- }
10340
- @-webkit-keyframes dt-recipe-motion-text-fade-in-word-appear {
10341
- from {
10342
- opacity: 0;
10343
- }
10344
- to {
10345
- opacity: 1;
10346
- }
10347
- }
10348
- @keyframes dt-recipe-motion-text-fade-in-word-appear {
10349
- from {
10350
- opacity: 0;
10351
- }
10352
- to {
10353
- opacity: 1;
10354
- }
10355
- }
10356
- @-webkit-keyframes dt-recipe-motion-text-slide-in-char-appear {
10357
- from {
10358
- -webkit-transform: translateY(0.3em);
10359
- transform: translateY(0.3em);
10360
- opacity: 0;
10361
- }
10362
- to {
10363
- -webkit-transform: translateY(0);
10364
- transform: translateY(0);
10365
- opacity: 1;
10366
- }
10367
- }
10368
- @keyframes dt-recipe-motion-text-slide-in-char-appear {
10369
- from {
10370
- -webkit-transform: translateY(0.3em);
10371
- transform: translateY(0.3em);
10372
- opacity: 0;
10373
- }
10374
- to {
10375
- -webkit-transform: translateY(0);
10376
- transform: translateY(0);
10377
- opacity: 1;
10378
- }
10379
- }
10380
- @-webkit-keyframes dt-recipe-motion-text-slide-in-word-appear {
10381
- from {
10382
- -webkit-transform: translateY(0.5em);
10383
- transform: translateY(0.5em);
10384
- opacity: 0;
10385
- }
10386
- to {
10387
- -webkit-transform: translateY(0);
10388
- transform: translateY(0);
10389
- opacity: 1;
10390
- }
10391
- }
10392
- @keyframes dt-recipe-motion-text-slide-in-word-appear {
10393
- from {
10394
- -webkit-transform: translateY(0.5em);
10395
- transform: translateY(0.5em);
10396
- opacity: 0;
10397
- }
10398
- to {
10399
- -webkit-transform: translateY(0);
10400
- transform: translateY(0);
10401
- opacity: 1;
10402
- }
10403
- }
10404
- .dt-recipe-motion-text-char-gradient-in-enter-active {
10405
- -webkit-animation: dt-recipe-motion-text-gradient-in-char-appear var(--dt-recipe-motion-text-char-duration) var(--ttf-in-out);
10406
- animation: dt-recipe-motion-text-gradient-in-char-appear var(--dt-recipe-motion-text-char-duration) var(--ttf-in-out);
10407
- }
10408
- .dt-recipe-motion-text-char-gradient-in-leave-active {
10409
- animation: dt-recipe-motion-text-gradient-in-char-appear calc(var(--dt-recipe-motion-text-char-duration) * 0.5) var(--ttf-out-quint) reverse;
10410
- }
10411
- .dt-recipe-motion-text-word-gradient-in-enter-active {
10412
- -webkit-animation: dt-recipe-motion-text-gradient-in-word-reveal calc(var(--dt-recipe-motion-text-word-duration) * 1.5) var(--ttf-out-quint);
10413
- animation: dt-recipe-motion-text-gradient-in-word-reveal calc(var(--dt-recipe-motion-text-word-duration) * 1.5) var(--ttf-out-quint);
10414
- }
10415
- .dt-recipe-motion-text-word-gradient-in-leave-active {
10416
- animation: dt-recipe-motion-text-gradient-in-word-reveal calc(var(--dt-recipe-motion-text-word-duration) * 0.5) var(--ttf-out-quint) reverse;
10417
- }
10418
- .dt-recipe-motion-text-char-fade-in-enter-active {
10419
- -webkit-animation: dt-recipe-motion-text-fade-in-char-appear var(--dt-recipe-motion-text-char-duration) var(--ttf-out-quint);
10420
- animation: dt-recipe-motion-text-fade-in-char-appear var(--dt-recipe-motion-text-char-duration) var(--ttf-out-quint);
10421
- }
10422
- .dt-recipe-motion-text-char-fade-in-leave-active {
10423
- animation: dt-recipe-motion-text-fade-in-char-appear calc(var(--dt-recipe-motion-text-char-duration) * 0.5) var(--ttf-out-quint) reverse;
10424
- }
10425
- .dt-recipe-motion-text-word-fade-in-enter-active {
10426
- -webkit-animation: dt-recipe-motion-text-fade-in-word-appear var(--dt-recipe-motion-text-word-duration) var(--ttf-out-quint);
10427
- animation: dt-recipe-motion-text-fade-in-word-appear var(--dt-recipe-motion-text-word-duration) var(--ttf-out-quint);
10428
- }
10429
- .dt-recipe-motion-text-word-fade-in-leave-active {
10430
- animation: dt-recipe-motion-text-fade-in-word-appear calc(var(--dt-recipe-motion-text-word-duration) * 0.5) var(--ttf-out-quint) reverse;
10431
- }
10432
- .dt-recipe-motion-text-char-slide-in-enter-active {
10433
- -webkit-animation: dt-recipe-motion-text-slide-in-char-appear var(--dt-recipe-motion-text-char-duration) var(--ttf-out-quint);
10434
- animation: dt-recipe-motion-text-slide-in-char-appear var(--dt-recipe-motion-text-char-duration) var(--ttf-out-quint);
10435
- }
10436
- .dt-recipe-motion-text-char-slide-in-leave-active {
10437
- animation: dt-recipe-motion-text-slide-in-char-appear calc(var(--dt-recipe-motion-text-char-duration) * 0.5) var(--ttf-out-quint) reverse;
10438
- }
10439
- .dt-recipe-motion-text-word-slide-in-enter-active {
10440
- -webkit-animation: dt-recipe-motion-text-slide-in-word-appear var(--dt-recipe-motion-text-word-duration) var(--ttf-out-quint);
10441
- animation: dt-recipe-motion-text-slide-in-word-appear var(--dt-recipe-motion-text-word-duration) var(--ttf-out-quint);
10442
- }
10443
- .dt-recipe-motion-text-word-slide-in-leave-active {
10444
- animation: dt-recipe-motion-text-slide-in-word-appear calc(var(--dt-recipe-motion-text-word-duration) * 0.5) var(--ttf-out-quint) reverse;
10445
- }
10446
- .dt-recipe-motion-text--gradient-in .dt-recipe-motion-text__char {
10447
- -webkit-animation: dt-recipe-motion-text-gradient-in-char-reveal var(--dt-recipe-motion-text-char-duration) var(--ttf-in-out);
10448
- animation: dt-recipe-motion-text-gradient-in-char-reveal var(--dt-recipe-motion-text-char-duration) var(--ttf-in-out);
10449
- }
10450
- .dt-recipe-motion-text--gradient-sweep,
10451
- .dt-recipe-motion-text--shimmer {
10452
- position: relative;
10453
- display: inline-block;
10454
- -webkit-animation: dt-recipe-motion-text-gradient-in-word-reveal calc(var(--dt-recipe-motion-text-word-duration) * 1.5) var(--ttf-in-out) 1;
10455
- animation: dt-recipe-motion-text-gradient-in-word-reveal calc(var(--dt-recipe-motion-text-word-duration) * 1.5) var(--ttf-in-out) 1;
10456
- }
10457
- .dt-recipe-motion-text--gradient-in .dt-recipe-motion-text__word::before,
10458
- .dt-recipe-motion-text--gradient-sweep::before {
10459
- position: absolute;
10460
- font-size: inherit;
10461
- line-height: inherit;
10462
- letter-spacing: inherit;
10463
- background: var(--dt-recipe-motion-text-highlight-color);
10464
- -webkit-background-clip: text;
10465
- background-clip: text;
10466
- content: attr(data-text-content);
10467
- pointer-events: none;
10468
- -webkit-text-fill-color: transparent;
10469
- -webkit-mask: var(--dt-recipe-motion-text-gradient);
10470
- mask: var(--dt-recipe-motion-text-gradient);
10471
- -webkit-mask-position: var(--dt-recipe-motion-text-mask-pos) 0%;
10472
- mask-position: var(--dt-recipe-motion-text-mask-pos) 0%;
10473
- }
10474
- .dt-recipe-motion-text--shimmer {
10475
- content: attr(data-text-content);
10476
- -webkit-mask: var(--dt-recipe-motion-text-shimmer-gradient);
10477
- mask: var(--dt-recipe-motion-text-shimmer-gradient);
10478
- -webkit-mask-position: var(--dt-recipe-motion-text-mask-pos) 0%;
10479
- mask-position: var(--dt-recipe-motion-text-mask-pos) 0%;
10480
- }
10481
- .dt-recipe-motion-text--none .dt-recipe-motion-text__word,
10482
- .dt-recipe-motion-text--none .dt-recipe-motion-text__char {
10483
- -webkit-transform: none;
10484
- transform: none;
10485
- opacity: 1;
10486
- }
10487
- .dt-recipe-motion-text--paused {
10488
- -webkit-animation-play-state: paused !important;
10489
- animation-play-state: paused !important;
10490
- }
10491
- .dt-recipe-motion-text--looped {
10492
- -webkit-animation-iteration-count: infinite !important;
10493
- animation-iteration-count: infinite !important;
10494
- }
10495
- @media (prefers-reduced-motion: reduce) {
10496
- .dt-recipe-motion-text {
10497
- --dt-recipe-motion-text-duration: 0ms;
10498
- --dt-recipe-motion-text-char-duration: 0ms;
10499
- --dt-recipe-motion-text-word-duration: 0ms;
10500
- transition-duration: 0ms !important;
10501
- -webkit-animation-duration: 0ms !important;
10502
- animation-duration: 0ms !important;
10503
- }
10504
- }
10505
10507
  .d-recipe-settings-menu-button {
10506
10508
  width: var(--dt-size-550);
10507
10509
  height: var(--dt-size-600);