@dialpad/dialtone-css 8.46.2 → 8.46.3

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 (33) hide show
  1. package/lib/build/less/components/avatar.less +2 -2
  2. package/lib/build/less/components/presence.less +2 -2
  3. package/lib/build/less/dialtone.less +20 -0
  4. package/lib/build/less/recipes/attachment_carousel.less +109 -0
  5. package/lib/build/less/recipes/callbar_button.less +47 -0
  6. package/lib/build/less/recipes/callbar_button_with_popover.less +55 -0
  7. package/lib/build/less/recipes/callbox.less +111 -0
  8. package/lib/build/less/recipes/combobox_multi_select.less +48 -0
  9. package/lib/build/less/recipes/contact_info.less +55 -0
  10. package/lib/build/less/recipes/editor.less +11 -0
  11. package/lib/build/less/recipes/emoji_row.less +73 -0
  12. package/lib/build/less/recipes/feed_item_pill.less +78 -0
  13. package/lib/build/less/recipes/feed_item_row.less +128 -0
  14. package/lib/build/less/recipes/grouped_chip.less +25 -0
  15. package/lib/build/less/recipes/ivr_node.less +56 -0
  16. package/lib/build/less/recipes/leftbar_row.less +389 -0
  17. package/lib/build/less/recipes/message_input.less +92 -0
  18. package/lib/build/less/recipes/settings_menu_button.less +31 -0
  19. package/lib/build/less/recipes/time_pill.less +9 -0
  20. package/lib/build/less/recipes/top_banner_info.less +30 -0
  21. package/lib/build/less/recipes/unread_pill.less +24 -0
  22. package/lib/dist/dialtone-default-theme.css +1157 -10
  23. package/lib/dist/dialtone-default-theme.min.css +1 -1
  24. package/lib/dist/dialtone.css +1151 -4
  25. package/lib/dist/dialtone.min.css +1 -1
  26. package/lib/dist/tokens/tokens-base-dark.css +6 -6
  27. package/lib/dist/tokens/tokens-base-light.css +6 -6
  28. package/lib/dist/tokens/tokens-debug-base.css +6 -6
  29. package/lib/dist/tokens/tokens-expressive-dark.css +6 -6
  30. package/lib/dist/tokens/tokens-expressive-light.css +6 -6
  31. package/lib/dist/tokens/tokens-expressive-sm-dark.css +6 -6
  32. package/lib/dist/tokens/tokens-expressive-sm-light.css +6 -6
  33. package/package.json +2 -2
@@ -998,8 +998,8 @@ template {
998
998
  border-radius: var(--dt-size-radius-pill);
999
999
  box-shadow: 0 0 0 var(--dt-size-200) var(--avatar-count-color-shadow);
1000
1000
  }
1001
- .dt-leftbar-row--selected .d-avatar__count,
1002
- .dt-leftbar-row__primary:hover .d-avatar__count {
1001
+ .dt-recipe-leftbar-row--selected .d-avatar__count,
1002
+ .dt-recipe-leftbar-row__primary:hover .d-avatar__count {
1003
1003
  --avatar-count-color-shadow: var(--dt-theme-sidebar-row-color-background-hover);
1004
1004
  }
1005
1005
  .d-avatar--clickable {
@@ -4761,10 +4761,10 @@ legend .d-label--md {
4761
4761
  border-width: var(--presence-border-size);
4762
4762
  border-radius: var(--dt-size-radius-circle);
4763
4763
  }
4764
- .dt-leftbar-row--selected .d-presence {
4764
+ .dt-recipe-leftbar-row--selected .d-presence {
4765
4765
  --presence-color-border-base: var(--dt-theme-sidebar-selected-row-color-background);
4766
4766
  }
4767
- .dt-leftbar-row__primary:hover .d-presence {
4767
+ .dt-recipe-leftbar-row__primary:hover .d-presence {
4768
4768
  --presence-color-border-base: var(--dt-theme-sidebar-row-color-background-hover);
4769
4769
  }
4770
4770
  .d-presence__inner {
@@ -7997,6 +7997,1153 @@ ul {
7997
7997
  .d-fvn-unset {
7998
7998
  font-variant-numeric: unset !important;
7999
7999
  }
8000
+ .dt-recipe-attachment-carousel {
8001
+ position: relative;
8002
+ width: var(--dt-space-1000);
8003
+ max-height: 100px;
8004
+ /* stylelint-disable-line meowtec/no-px */
8005
+ }
8006
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__media-list {
8007
+ display: flex;
8008
+ flex-direction: row;
8009
+ padding-left: 0;
8010
+ overflow-x: scroll;
8011
+ }
8012
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__media-list::-webkit-scrollbar {
8013
+ display: none;
8014
+ }
8015
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__arrow {
8016
+ position: absolute;
8017
+ top: var(--dt-space-30-percent);
8018
+ background-color: var(--dt-color-neutral-white);
8019
+ border: var(--dt-space-100) solid;
8020
+ border-color: var(--bc-default);
8021
+ border-width: var(--dt-size-100);
8022
+ opacity: 0;
8023
+ }
8024
+ .dt-recipe-attachment-carousel:hover .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__arrow {
8025
+ opacity: 1;
8026
+ }
8027
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__arrow .dt-recipe-attachment-carousel__arrow--left {
8028
+ left: var(--dt-space-300);
8029
+ }
8030
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__arrow .dt-recipe-attachment-carousel__arrow--right {
8031
+ right: var(--dt-space-300);
8032
+ }
8033
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image {
8034
+ position: relative;
8035
+ }
8036
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image .dt-recipe-attachment-carousel__image__close-button {
8037
+ position: absolute;
8038
+ top: inherit;
8039
+ right: inherit;
8040
+ color: var(--dt-color-neutral-white);
8041
+ background-color: var(--dt-color-black-400);
8042
+ border: var(--dt-space-100) solid;
8043
+ border-color: var(--dt-color-neutral-white);
8044
+ border-width: var(--dt-size-200);
8045
+ opacity: 0;
8046
+ }
8047
+ .dt-recipe-attachment-carousel__image:focus-within .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image .dt-recipe-attachment-carousel__image__close-button,
8048
+ .dt-recipe-attachment-carousel__image:hover .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image .dt-recipe-attachment-carousel__image__close-button {
8049
+ opacity: 1;
8050
+ }
8051
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image .dt-recipe-attachment-carousel__image__viewer {
8052
+ width: var(--dt-size-700);
8053
+ height: var(--dt-size-700);
8054
+ -o-object-fit: cover;
8055
+ object-fit: cover;
8056
+ border: var(--dt-space-100) solid;
8057
+ border-color: var(--dt-color-border-subtle);
8058
+ border-width: var(--dt-size-350);
8059
+ border-radius: var(--br4);
8060
+ }
8061
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image .dt-recipe-attachment-carousel__image__top-right {
8062
+ position: absolute;
8063
+ top: var(--dt-size-100);
8064
+ right: var(--dt-size-100);
8065
+ }
8066
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__image .dt-recipe-attachment-carousel__image__progress-bar {
8067
+ position: absolute;
8068
+ top: inherit;
8069
+ right: inherit;
8070
+ display: flex;
8071
+ background-color: var(--dt-color-neutral-white);
8072
+ border: var(--dt-space-100) solid;
8073
+ border-color: var(--dt-color-border-subtle);
8074
+ border-width: var(--dt-size-200);
8075
+ border-radius: 50%;
8076
+ -webkit-transform: rotate(-90deg);
8077
+ transform: rotate(-90deg);
8078
+ }
8079
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__progress-bar {
8080
+ width: var(--dt-size-550);
8081
+ height: var(--dt-size-550);
8082
+ }
8083
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__progress-bar .dt-recipe-attachment-carousel__progress-bar__circle {
8084
+ fill: none;
8085
+ stroke-width: 2;
8086
+ stroke-dasharray: var(--stroke-dasharray);
8087
+ }
8088
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__progress-bar .dt-recipe-attachment-carousel__progress-bar__circle:nth-child(1) {
8089
+ stroke: var(--dt-color-black-100);
8090
+ stroke-dashoffset: 0;
8091
+ }
8092
+ .dt-recipe-attachment-carousel .dt-recipe-attachment-carousel__progress-bar .dt-recipe-attachment-carousel__progress-bar__circle:nth-child(2) {
8093
+ transition: stroke-dashoffset 500ms linear;
8094
+ stroke: var(--dt-color-purple-500);
8095
+ stroke-dashoffset: var(--stroke-dashoffset);
8096
+ }
8097
+ .dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle) {
8098
+ line-height: var(--dt-font-line-height-300);
8099
+ }
8100
+ .dt-recipe-callbar-button .dt-recipe-callbar-button.d-btn[disabled] {
8101
+ background-color: unset;
8102
+ opacity: 0.5;
8103
+ }
8104
+ .dt-recipe-callbar-button--active .base-button__icon,
8105
+ .dt-recipe-callbar-button--active:hover .base-button__icon {
8106
+ color: var(--primary-color);
8107
+ }
8108
+ .dt-recipe-callbar-button--disabled {
8109
+ cursor: not-allowed;
8110
+ }
8111
+ .dt-recipe-callbar-button--circle {
8112
+ border-radius: var(--dt-size-radius-circle);
8113
+ }
8114
+ .dt-recipe-callbar-button--circle.d-btn[disabled] {
8115
+ border-color: unset;
8116
+ }
8117
+ .dt-recipe-callbar-button-with-popover {
8118
+ display: flex;
8119
+ align-items: flex-start;
8120
+ }
8121
+ .dt-recipe-callbar-button-with-popover__arrow {
8122
+ width: var(--dt-size-500);
8123
+ height: var(--dt-size-500);
8124
+ margin-top: var(--dt-space-450);
8125
+ margin-left: calc(var(--dt-space-300-negative) * 5);
8126
+ padding: var(--dt-space-400);
8127
+ border-radius: var(--dt-size-300);
8128
+ }
8129
+ .dt-recipe-callbar-button-with-popover__arrow .d-btn--active {
8130
+ background: var(--dt-color-surface-moderate-opaque);
8131
+ }
8132
+ .dt-recipe-callbar-button-with-popover__arrow--large {
8133
+ margin-left: var(--dt-space-550-negative);
8134
+ }
8135
+ .dt-recipe-callbar-button-with-popover__arrow-icon {
8136
+ color: var(--dt-color-black-800);
8137
+ }
8138
+ .dt-recipe-callbar-button-with-popover__popover .d-popover__header {
8139
+ color: var(--dt-color-foreground-primary-inverted);
8140
+ background: var(--dt-color-surface-contrast);
8141
+ }
8142
+ .dt-recipe-callbar-button-with-popover__popover .d-popover__header .d-btn {
8143
+ color: var(--dt-color-foreground-primary-inverted);
8144
+ }
8145
+ .dt-recipe-callbar-button-with-popover__button.d-tab--selected::after,
8146
+ .dt-recipe-callbar-button-with-popover__button.d-tab--selected:hover::after {
8147
+ --tab--bgc: var(--dt-color-surface-contrast);
8148
+ }
8149
+ .dt-recipe-callbar-button-with-popover__button.tab-group {
8150
+ display: flex;
8151
+ flex-direction: column;
8152
+ height: 100%;
8153
+ }
8154
+ .dt-recipe-callbar-button-with-popover__button.tab-content {
8155
+ flex: 1 1 100%;
8156
+ overflow-y: auto;
8157
+ }
8158
+ .dt-recipe-callbox {
8159
+ padding: 0;
8160
+ color: var(--dt-color-foreground-primary);
8161
+ background-color: var(--dt-color-surface-primary);
8162
+ border-radius: var(--dt-size-radius-300);
8163
+ }
8164
+ .dt-recipe-callbox__video {
8165
+ display: flex;
8166
+ margin-bottom: var(--dt-space-300-negative);
8167
+ overflow: clip;
8168
+ border-radius: var(--dt-size-radius-200) var(--dt-size-radius-200) 0 0;
8169
+ }
8170
+ .dt-recipe-callbox__main-content {
8171
+ align-items: stretch;
8172
+ padding: 0;
8173
+ border: var(--dt-size-border-100) solid transparent;
8174
+ border-radius: var(--dt-size-radius-300);
8175
+ }
8176
+ .dt-recipe-callbox__main-content.dt-recipe-callbox__border-default {
8177
+ border-color: var(--dt-color-border-default);
8178
+ }
8179
+ .dt-recipe-callbox__main-content.dt-recipe-callbox__border-ai {
8180
+ background: linear-gradient(var(--dt-color-surface-primary), var(--dt-color-surface-primary)) padding-box, linear-gradient(135deg, var(--dt-color-border-accent), var(--dt-color-border-brand)) border-box;
8181
+ }
8182
+ .dt-recipe-callbox__main-content.dt-recipe-callbox__border-critical {
8183
+ background: radial-gradient(var(--dt-color-surface-primary), var(--dt-color-surface-primary)) padding-box, radial-gradient(circle, #E7301D, #F78B23) border-box;
8184
+ }
8185
+ .dt-recipe-callbox__main-content-top {
8186
+ display: flex;
8187
+ align-items: center;
8188
+ padding: var(--dt-space-350) var(--dt-space-400);
8189
+ }
8190
+ .dt-recipe-callbox__main-content-bottom {
8191
+ border-top: 1px solid var(--dt-color-border-subtle);
8192
+ }
8193
+ .dt-recipe-callbox__avatar {
8194
+ margin-right: var(--dt-space-400);
8195
+ }
8196
+ .dt-recipe-callbox__content {
8197
+ display: flex;
8198
+ flex: 1 0 auto;
8199
+ flex-direction: column;
8200
+ min-width: 0;
8201
+ }
8202
+ .dt-recipe-callbox__content-title {
8203
+ width: 0;
8204
+ min-width: 100%;
8205
+ padding: 0;
8206
+ overflow: clip;
8207
+ color: var(--dt-color-foreground-primary);
8208
+ font-weight: var(--dt-font-weight-bold);
8209
+ line-height: normal;
8210
+ white-space: nowrap;
8211
+ text-align: left;
8212
+ text-overflow: ellipsis;
8213
+ background-color: var(--dt-color-surface-primary);
8214
+ border: none;
8215
+ -webkit-user-select: text;
8216
+ -ms-user-select: text;
8217
+ user-select: text;
8218
+ }
8219
+ .dt-recipe-callbox__content-badge {
8220
+ line-height: normal;
8221
+ }
8222
+ .dt-recipe-callbox__content-subtitle {
8223
+ width: 0;
8224
+ min-width: 100%;
8225
+ padding: 0;
8226
+ overflow: hidden;
8227
+ color: var(--dt-color-foreground-tertiary);
8228
+ font-size: var(--dt-font-size-100);
8229
+ line-height: normal;
8230
+ }
8231
+ .dt-recipe-callbox__right {
8232
+ display: flex;
8233
+ justify-content: right;
8234
+ }
8235
+ .dt-recipe-callbox--clickable .dt-recipe-callbox__content-title {
8236
+ border-radius: var(--dt-size-100);
8237
+ cursor: pointer;
8238
+ -webkit-user-select: none;
8239
+ -ms-user-select: none;
8240
+ user-select: none;
8241
+ }
8242
+ .dt-recipe-callbox--clickable .dt-recipe-callbox__content-title:focus-visible {
8243
+ outline: none;
8244
+ box-shadow: var(--dt-shadow-focus);
8245
+ }
8246
+ .dt-recipe-callbox--clickable .dt-recipe-callbox__content-title:hover,
8247
+ .dt-recipe-callbox--clickable .dt-recipe-callbox__content-title:active {
8248
+ text-decoration: underline;
8249
+ }
8250
+ .dt-recipe-callbox__badge--warning {
8251
+ background-color: var(--dt-color-surface-warning);
8252
+ }
8253
+ .dt-recipe-combobox-multi-select__chip {
8254
+ z-index: var(--zi-base1);
8255
+ max-width: var(--dt-size-100-percent);
8256
+ margin-top: var(--dt-space-300);
8257
+ margin-right: var(--dt-space-200);
8258
+ margin-left: var(--dt-space-200);
8259
+ }
8260
+ .dt-recipe-combobox-multi-select__chip-wrapper {
8261
+ position: absolute;
8262
+ max-width: calc(var(--dt-size-100-percent) - var(--dt-space-400));
8263
+ max-height: initial;
8264
+ margin-right: var(--dt-space-200);
8265
+ margin-left: var(--dt-space-200);
8266
+ padding-left: var(--dt-space-100);
8267
+ overflow-y: visible;
8268
+ }
8269
+ .dt-recipe-combobox-multi-select__chip-wrapper-md--collapsed {
8270
+ max-height: 2.8rem;
8271
+ overflow-y: hidden;
8272
+ }
8273
+ .dt-recipe-combobox-multi-select__chip-wrapper-sm--collapsed,
8274
+ .dt-recipe-combobox-multi-select__chip-wrapper-xs--collapsed {
8275
+ max-height: 2.5rem;
8276
+ overflow-y: hidden;
8277
+ }
8278
+ .dt-recipe-combobox-multi-select__chip--truncate {
8279
+ white-space: nowrap;
8280
+ text-overflow: ellipsis;
8281
+ }
8282
+ .dt-recipe-combobox-multi-select__input {
8283
+ flex-grow: 1;
8284
+ }
8285
+ .dt-recipe-combobox-multi-select__input-wrapper {
8286
+ position: relative;
8287
+ display: block;
8288
+ }
8289
+ .dt-recipe-combobox-multi-select__list--loading {
8290
+ padding-top: var(--dt-space-500);
8291
+ padding-bottom: var(--dt-space-500);
8292
+ text-align: center;
8293
+ }
8294
+ .dt-recipe-contact-info {
8295
+ --contact-info-avatar-border-color: var(--dt-color-surface-primary);
8296
+ display: flex;
8297
+ }
8298
+ .dt-recipe-contact-info .d-item-layout {
8299
+ flex: 1 1 0;
8300
+ }
8301
+ .dt-recipe-contact-info .d-item-layout--content {
8302
+ /*
8303
+ DP-74536: Add `min-width` to make the width of "contact info" adjustable.
8304
+ */
8305
+ min-width: var(--dt-space-825);
8306
+ }
8307
+ .dt-recipe-contact-info .d-item-layout--left {
8308
+ align-items: center;
8309
+ justify-content: flex-start;
8310
+ /*
8311
+ DP-74536: To make 'Avatar' in fixed position when resizing the window.
8312
+ */
8313
+ min-width: var(--dt-space-650);
8314
+ }
8315
+ .dt-recipe-contact-info .d-item-layout--right {
8316
+ align-items: center;
8317
+ /*
8318
+ DP-74536: Remove `min-width` which cause extra unused empty space on the right of "contact info".
8319
+ */
8320
+ min-width: 0;
8321
+ }
8322
+ .dt-recipe-contact-info__left {
8323
+ position: relative;
8324
+ background-color: transparent;
8325
+ background-image: none;
8326
+ border-width: 0;
8327
+ cursor: pointer;
8328
+ }
8329
+ .dt-recipe-contact-info__avatars {
8330
+ display: flex;
8331
+ flex-direction: row;
8332
+ margin-right: var(--dt-space-300-negative);
8333
+ }
8334
+ .dt-recipe-contact-info__avatars .d-avatar {
8335
+ box-sizing: unset;
8336
+ border: var(--dt-size-300) solid var(--contact-info-avatar-border-color);
8337
+ border-radius: var(--dt-size-radius-pill);
8338
+ }
8339
+ .dt-recipe-editor__top-bar-background {
8340
+ background-color: var(--dt-color-surface-secondary);
8341
+ }
8342
+ .dt-recipe-editor__button-group-divider {
8343
+ width: var(--dt-size-100);
8344
+ height: calc(var(--dt-size-550) + var(--dt-size-300));
8345
+ margin-left: var(--dt-space-400);
8346
+ background: var(--dt-color-border-subtle);
8347
+ }
8348
+ .dt-recipe-emoji-row {
8349
+ display: flex;
8350
+ flex-wrap: wrap;
8351
+ gap: var(--dt-space-300);
8352
+ }
8353
+ .dt-recipe-emoji-row__tooltip {
8354
+ display: inline-block;
8355
+ }
8356
+ .dt-recipe-emoji-row__reaction {
8357
+ --emoji-item-color-inset-shadow: transparent;
8358
+ --emoji-item-color-foreground: var(--dt-action-color-foreground-muted-default);
8359
+ --emoji-item-color-background: var(--dt-action-color-background-muted-hover);
8360
+ height: var(--dt-size-550);
8361
+ padding: var(--dt-space-300) var(--dt-space-400);
8362
+ color: var(--emoji-item-color-foreground);
8363
+ background-color: var(--emoji-item-color-background);
8364
+ border: 0;
8365
+ border-radius: var(--dt-size-radius-pill);
8366
+ box-shadow: inset 0 0 0 var(--dt-size-border-100) var(--emoji-item-color-inset-shadow);
8367
+ }
8368
+ .dt-recipe-emoji-row__reaction.dt-recipe-emoji-row__picker {
8369
+ padding: var(--dt-space-200) var(--dt-space-350);
8370
+ }
8371
+ .dt-recipe-emoji-row__reaction:hover {
8372
+ --emoji-item-color-inset-shadow: var(--dt-color-border-subtle);
8373
+ --emoji-item-color-foreground: var(--dt-action-color-foreground-muted-hover);
8374
+ }
8375
+ .dt-recipe-emoji-row__reaction:active {
8376
+ --emoji-item-color-background: var(--dt-action-color-background-muted-active);
8377
+ --emoji-item-color-foreground: var(--dt-action-color-foreground-muted-active);
8378
+ -webkit-transform: scale(0.98);
8379
+ transform: scale(0.98);
8380
+ }
8381
+ .dt-recipe-emoji-row__reaction--selected {
8382
+ --emoji-item-color-inset-shadow: var(--dt-color-border-brand);
8383
+ --emoji-item-color-foreground: var(--dt-color-link-primary);
8384
+ --emoji-item-color-background: var(--dt-action-color-background-base-hover);
8385
+ }
8386
+ .dt-recipe-emoji-row__reaction--selected .dt-recipe-emoji-row__reaction-number {
8387
+ font-weight: var(--dt-font-weight-bold);
8388
+ }
8389
+ .dt-recipe-emoji-row__reaction--selected:hover {
8390
+ --emoji-item-color-inset-shadow: var(--dt-color-border-brand-strong);
8391
+ --emoji-item-color-foreground: var(--dt-color-link-primary-hover);
8392
+ }
8393
+ .dt-recipe-emoji-row__reaction--selected:active {
8394
+ --emoji-item-color-background: var(--dt-action-color-background-base-active);
8395
+ }
8396
+ .dt-recipe-emoji-row__reaction-number {
8397
+ font-weight: var(--dt-typography-body-sm-font-weight);
8398
+ font-size: var(--dt-typography-body-sm-font-size);
8399
+ font-family: var(--dt-typography-body-sm-font-family);
8400
+ font-variant: tabular-nums;
8401
+ line-height: var(--dt-font-line-height-100);
8402
+ }
8403
+ .dt-recipe-emoji-row__emoji {
8404
+ display: inline-flex;
8405
+ margin-right: var(--dt-space-300);
8406
+ }
8407
+ .dt-recipe-feed-item-pill__wrapper {
8408
+ padding: var(--dt-space-400);
8409
+ background-color: var(--dt-color-surface-secondary);
8410
+ }
8411
+ .dt-recipe-feed-item-pill__button {
8412
+ width: 100%;
8413
+ text-align: left;
8414
+ background-color: var(--dt-color-surface-moderate);
8415
+ border-width: 0;
8416
+ border-radius: var(--dt-size-radius-600);
8417
+ cursor: pointer;
8418
+ --button-padding-x: var(--button-padding-y-md);
8419
+ --button-padding-y: var(--button-padding-y-md);
8420
+ --button-color-text: var(--dt-action-color-foreground-muted-default);
8421
+ --button-border-radius: var(--dt-size-radius-600);
8422
+ }
8423
+ .dt-recipe-feed-item-pill__layout {
8424
+ gap: var(--dt-space-300);
8425
+ width: 100%;
8426
+ padding: var(--dt-space-400);
8427
+ }
8428
+ .dt-recipe-feed-item-pill__layout > .d-item-layout--left {
8429
+ justify-content: center;
8430
+ padding-right: var(--dt-space-0);
8431
+ }
8432
+ .dt-recipe-feed-item-pill__icon {
8433
+ display: flex;
8434
+ }
8435
+ .dt-recipe-feed-item-pill__icon svg {
8436
+ -webkit-animation: fade 0.15s ease-in;
8437
+ animation: fade 0.15s ease-in;
8438
+ }
8439
+ .dt-recipe-feed-item-pill__content {
8440
+ display: flex;
8441
+ justify-content: center;
8442
+ }
8443
+ .dt-recipe-feed-item-pill__title {
8444
+ font-weight: var(--dt-font-weight-bold);
8445
+ }
8446
+ .dt-recipe-feed-item-pill__border {
8447
+ overflow: hidden;
8448
+ background-clip: content-box, border-box;
8449
+ background-origin: border-box;
8450
+ border: double 1px transparent;
8451
+ border-radius: var(--dt-size-radius-600);
8452
+ }
8453
+ .dt-recipe-feed-item-pill__border--default {
8454
+ background: var(--dt-color-border-default);
8455
+ }
8456
+ .dt-recipe-feed-item-pill__border--ai {
8457
+ background-image: linear-gradient(var(--dt-color-surface-primary), var(--dt-color-surface-primary)), var(--dt-badge-color-background-ai);
8458
+ }
8459
+ .dt-recipe-feed-item-pill__border--critical {
8460
+ background: var(--dt-color-foreground-critical);
8461
+ }
8462
+ @-webkit-keyframes fade {
8463
+ 0% {
8464
+ -webkit-transform: scale(0);
8465
+ transform: scale(0);
8466
+ }
8467
+ 100% {
8468
+ -webkit-transform: scale(1);
8469
+ transform: scale(1);
8470
+ }
8471
+ }
8472
+ @keyframes fade {
8473
+ 0% {
8474
+ -webkit-transform: scale(0);
8475
+ transform: scale(0);
8476
+ }
8477
+ 100% {
8478
+ -webkit-transform: scale(1);
8479
+ transform: scale(1);
8480
+ }
8481
+ }
8482
+ .dt-recipe-feed-item-row {
8483
+ position: relative;
8484
+ box-sizing: border-box;
8485
+ width: var(--dt-size-100-percent);
8486
+ padding: var(--dt-space-300) var(--dt-space-500);
8487
+ }
8488
+ .dt-recipe-feed-item-row:focus-visible {
8489
+ box-shadow: var(--dt-shadow-focus-inset);
8490
+ }
8491
+ .dt-recipe-feed-item-row > .d-item-layout {
8492
+ min-height: initial;
8493
+ padding: 0;
8494
+ font: var(--dt-typography-body-md-compact);
8495
+ }
8496
+ .dt-recipe-feed-item-row > .d-item-layout > .d-item-layout--left {
8497
+ display: block;
8498
+ align-self: flex-start;
8499
+ min-width: calc(var(--dt-space-600) + var(--dt-space-300));
8500
+ padding-right: var(--dt-space-300);
8501
+ padding-left: var(--dt-space-0);
8502
+ text-align: end;
8503
+ }
8504
+ .dt-recipe-feed-item-row > .d-item-layout > .d-item-layout--right {
8505
+ min-width: initial;
8506
+ padding: 0;
8507
+ }
8508
+ .dt-recipe-feed-item-row > .d-item-layout > .d-item-layout--content > .d-item-layout--bottom {
8509
+ display: flex;
8510
+ flex-direction: column;
8511
+ margin-top: 0;
8512
+ }
8513
+ .dt-recipe-feed-item-row__state--searched {
8514
+ background-color: var(--dt-color-surface-warning-subtle);
8515
+ }
8516
+ .dt-recipe-feed-item-row__state--error {
8517
+ background-color: var(--dt-color-surface-critical-subtle);
8518
+ }
8519
+ .dt-recipe-feed-item-row__state-transition {
8520
+ transition: background-color 2s var(--ttf-in-out) 0s;
8521
+ }
8522
+ .dt-recipe-feed-item-row--active {
8523
+ background-color: var(--dt-color-surface-secondary-opaque);
8524
+ }
8525
+ .dt-recipe-feed-item-row__avatar-container {
8526
+ padding-top: var(--dt-space-300);
8527
+ padding-bottom: var(--dt-space-300);
8528
+ }
8529
+ .dt-recipe-feed-item-row__content {
8530
+ padding-left: var(--dt-space-300);
8531
+ }
8532
+ .dt-recipe-feed-item-row__attachment {
8533
+ padding-top: var(--dt-space-200);
8534
+ padding-bottom: var(--dt-space-300);
8535
+ }
8536
+ .dt-recipe-feed-item-row__image {
8537
+ display: block;
8538
+ min-width: 5.6rem;
8539
+ max-width: 30rem;
8540
+ min-height: 5.6rem;
8541
+ max-height: 30rem;
8542
+ border: var(--dt-color-border-subtle) solid var(--dt-size-border-100);
8543
+ border-radius: var(--dt-size-radius-400);
8544
+ }
8545
+ .dt-recipe-feed-item-row__video {
8546
+ display: block;
8547
+ height: 25rem;
8548
+ }
8549
+ .dt-recipe-feed-item-row__header {
8550
+ display: flex;
8551
+ flex-wrap: wrap;
8552
+ gap: var(--dt-space-300);
8553
+ align-items: baseline;
8554
+ font-size: var(--dt-font-size-200);
8555
+ line-height: var(--dt-font-line-height-300);
8556
+ }
8557
+ .dt-recipe-feed-item-row__header-name {
8558
+ font-weight: var(--dt-font-weight-bold);
8559
+ }
8560
+ .dt-recipe-feed-item-row__header-time {
8561
+ flex-shrink: 0;
8562
+ color: var(--dt-color-foreground-tertiary);
8563
+ font-size: var(--dt-font-size-100);
8564
+ }
8565
+ .dt-recipe-feed-item-row__reactions {
8566
+ display: flex;
8567
+ flex-wrap: wrap;
8568
+ padding-top: var(--dt-space-200);
8569
+ padding-bottom: var(--dt-space-200);
8570
+ padding-left: var(--dt-space-300);
8571
+ }
8572
+ .dt-recipe-feed-item-row__threading {
8573
+ padding-top: var(--dt-space-200);
8574
+ padding-bottom: var(--dt-space-200);
8575
+ }
8576
+ .dt-recipe-feed-item-row__left-time {
8577
+ color: var(--dt-color-foreground-tertiary);
8578
+ font-weight: var(--dt-font-weight-normal);
8579
+ font-size: var(--dt-font-size-100);
8580
+ white-space: nowrap;
8581
+ vertical-align: middle;
8582
+ }
8583
+ .dt-recipe-feed-item-row__menu {
8584
+ position: absolute;
8585
+ top: var(--dt-space-550-negative);
8586
+ right: var(--dt-space-450);
8587
+ }
8588
+ .dt-recipe-grouped-chip {
8589
+ display: inline-flex;
8590
+ white-space: nowrap;
8591
+ background-color: unset;
8592
+ background-image: unset;
8593
+ }
8594
+ .dt-recipe-grouped-chip__content {
8595
+ font-variant-numeric: tabular-nums;
8596
+ }
8597
+ .dt-recipe-grouped-chip__content-left {
8598
+ max-width: var(--dt-size-730);
8599
+ background-color: var(--dt-color-surface-moderate-opaque);
8600
+ border-top-left-radius: var(--dt-size-radius-pill);
8601
+ border-bottom-left-radius: var(--dt-size-radius-pill);
8602
+ }
8603
+ .dt-recipe-grouped-chip__content-right {
8604
+ max-width: var(--dt-size-730);
8605
+ background-color: var(--dt-color-purple-200);
8606
+ border-top-right-radius: var(--dt-size-radius-pill);
8607
+ border-bottom-right-radius: var(--dt-size-radius-pill);
8608
+ }
8609
+ .dt-recipe-ivr-node {
8610
+ display: flex;
8611
+ flex-direction: column;
8612
+ align-items: center;
8613
+ width: 280px;
8614
+ /* stylelint-disable-line meowtec/no-px */
8615
+ cursor: pointer;
8616
+ }
8617
+ .dt-recipe-ivr-node__header-left {
8618
+ display: flex;
8619
+ align-items: center;
8620
+ }
8621
+ .dt-recipe-ivr-node__label {
8622
+ font-weight: var(--dt-font-weight-bold);
8623
+ font-size: var(--dt-font-size-200);
8624
+ }
8625
+ .dt-recipe-ivr-node__dropdown-list {
8626
+ width: var(--dt-size-825);
8627
+ }
8628
+ .dt-recipe-ivr-node__goto-icon {
8629
+ -webkit-transform: rotate(90deg);
8630
+ transform: rotate(90deg);
8631
+ }
8632
+ .dt-recipe-ivr-node__connector {
8633
+ z-index: var(--zi-base);
8634
+ display: flex;
8635
+ align-items: center;
8636
+ justify-content: center;
8637
+ width: var(--dt-size-400);
8638
+ height: var(--dt-size-400);
8639
+ margin-bottom: var(--dt-space-300-negative);
8640
+ background-color: var(--dt-color-purple-600);
8641
+ border-color: var(--dt-color-purple-600);
8642
+ border-radius: var(--dt-size-radius-circle);
8643
+ }
8644
+ .dt-recipe-ivr-node__connector--selected {
8645
+ margin-bottom: var(--dt-space-400-negative);
8646
+ }
8647
+ .dt-recipe-ivr-node__connector-dtmf {
8648
+ width: var(--dt-size-550);
8649
+ height: var(--dt-size-550);
8650
+ margin-bottom: var(--dt-space-450-negative);
8651
+ color: var(--dt-color-neutral-white);
8652
+ font-size: var(--dt-font-size-200);
8653
+ }
8654
+ .dt-recipe-ivr-node__connector-dtmf .dt-recipe-ivr-node__connector--selected {
8655
+ margin-bottom: var(--dt-space-500-negative);
8656
+ }
8657
+ .dt-recipe-leftbar-row {
8658
+ --leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);
8659
+ --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);
8660
+ --leftbar-row-radius: var(--dt-size-radius-pill);
8661
+ --leftbar-row-opacity: 100%;
8662
+ --leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);
8663
+ --leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);
8664
+ --leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);
8665
+ --leftbar-row-omega-height: var(--leftbar-row-alpha-height);
8666
+ --leftbar-row-unread-badge-display: inline-flex;
8667
+ --leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);
8668
+ --leftbar-row-description-font-weight: var(--dt-font-weight-normal);
8669
+ --leftbar-row-description-font-size: var(--dt-font-size-200);
8670
+ --leftbar-row-description-line-height: var(--dt-font-line-height-200);
8671
+ --leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);
8672
+ --leftbar-row-status-font-size: var(--dt-font-size-100);
8673
+ --leftbar-row-status-line-height: var(--dt-font-line-height-100);
8674
+ --leftbar-row-action-position-right: var(--dt-size-400);
8675
+ --leftbar-row-action-position-bottom: 50%;
8676
+ --leftbar-row-action-width: var(--dt-size-550);
8677
+ --leftbar-row-action-height: var(--leftbar-row-action-width);
8678
+ position: relative;
8679
+ display: flex;
8680
+ background-color: var(--dt-theme-sidebar-row-color-background);
8681
+ border-radius: var(--leftbar-row-radius);
8682
+ cursor: pointer;
8683
+ opacity: var(--leftbar-row-opacity);
8684
+ transition-timing-function: var(--ttf-out-quint);
8685
+ transition-duration: var(--td200);
8686
+ transition-property: background-color, border, box-shadow;
8687
+ }
8688
+ .dt-recipe-leftbar-row:not(.dt-recipe-leftbar-row--no-action):hover,
8689
+ .dt-recipe-leftbar-row:not(.dt-recipe-leftbar-row--no-action):focus-within {
8690
+ --leftbar-row-unread-badge-display: none;
8691
+ }
8692
+ .dt-recipe-leftbar-row:not(.dt-recipe-leftbar-row--no-action):hover .dt-recipe-leftbar-row__action,
8693
+ .dt-recipe-leftbar-row:not(.dt-recipe-leftbar-row--no-action):focus-within .dt-recipe-leftbar-row__action {
8694
+ display: inline-flex;
8695
+ }
8696
+ .dt-recipe-leftbar-row:not(.dt-recipe-leftbar-row--no-action):hover .dt-recipe-leftbar-row__action-button,
8697
+ .dt-recipe-leftbar-row:not(.dt-recipe-leftbar-row--no-action):focus-within .dt-recipe-leftbar-row__action-button {
8698
+ opacity: 1;
8699
+ }
8700
+ .dt-recipe-leftbar-row:hover,
8701
+ .dt-recipe-leftbar-row:focus-within {
8702
+ --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover);
8703
+ }
8704
+ .dt-recipe-leftbar-row:hover .d-presence,
8705
+ .dt-recipe-leftbar-row:focus-within .d-presence {
8706
+ --presence-color-border-base: var(--dt-color-black-200);
8707
+ }
8708
+ .dt-recipe-leftbar-row:hover .d-avatar__count,
8709
+ .dt-recipe-leftbar-row:focus-within .d-avatar__count {
8710
+ --avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background);
8711
+ }
8712
+ .dt-recipe-leftbar-row__description {
8713
+ overflow: hidden;
8714
+ color: var(--leftbar-row-description-color-foreground);
8715
+ font-weight: var(--leftbar-row-description-font-weight);
8716
+ font-size: var(--leftbar-row-description-font-size);
8717
+ line-height: var(--leftbar-row-description-line-height);
8718
+ white-space: nowrap;
8719
+ text-overflow: ellipsis;
8720
+ }
8721
+ .dt-recipe-leftbar-row__status {
8722
+ padding-bottom: var(--dt-space-100);
8723
+ overflow: hidden;
8724
+ color: var(--leftbar-row-status-color-foreground);
8725
+ font-size: var(--leftbar-row-status-font-size);
8726
+ line-height: var(--leftbar-row-status-line-height);
8727
+ white-space: nowrap;
8728
+ text-overflow: ellipsis;
8729
+ }
8730
+ .dt-recipe-leftbar-row__meta-context ~ .dt-recipe-leftbar-row__meta-custom:not(:empty)::before {
8731
+ color: var(--dt-theme-sidebar-status-color-foreground);
8732
+ content: " • ";
8733
+ }
8734
+ .dt-recipe-leftbar-row--has-unread {
8735
+ --leftbar-row-description-font-weight: var(--dt-font-weight-bold);
8736
+ --leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);
8737
+ --leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);
8738
+ }
8739
+ .dt-recipe-leftbar-row--muted {
8740
+ --leftbar-row-opacity: 60%;
8741
+ }
8742
+ .dt-recipe-leftbar-row--selected {
8743
+ --leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);
8744
+ --leftbar-row-description-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground);
8745
+ }
8746
+ .dt-recipe-leftbar-row--selected .d-presence {
8747
+ --presence-color-border-base: var(--dt-color-black-200);
8748
+ }
8749
+ .dt-recipe-leftbar-row--selected .d-avatar__count {
8750
+ --avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background);
8751
+ }
8752
+ .dt-recipe-leftbar-row__is-typing {
8753
+ --is-typing-size-shape: var(--dt-size-550);
8754
+ position: absolute;
8755
+ display: flex;
8756
+ gap: var(--dt-space-200);
8757
+ align-items: center;
8758
+ justify-content: center;
8759
+ width: var(--is-typing-size-shape);
8760
+ height: var(--is-typing-size-shape);
8761
+ border-radius: var(--dt-size-radius-pill);
8762
+ opacity: 0.75;
8763
+ }
8764
+ .dt-recipe-leftbar-row__is-typing span {
8765
+ display: inline-block;
8766
+ width: var(--dt-size-300);
8767
+ height: var(--dt-size-300);
8768
+ padding: 0;
8769
+ background: var(--dt-color-surface-strong);
8770
+ border-radius: var(--dt-size-radius-pill);
8771
+ opacity: 0.3;
8772
+ transition: all 500ms ease;
8773
+ -webkit-animation: wave 1.5s ease infinite;
8774
+ animation: wave 1.5s ease infinite;
8775
+ }
8776
+ .dt-recipe-leftbar-row__is-typing span:nth-child(1) {
8777
+ -webkit-animation-delay: 0ms;
8778
+ animation-delay: 0ms;
8779
+ }
8780
+ .dt-recipe-leftbar-row__is-typing span:nth-child(2) {
8781
+ -webkit-animation-delay: var(--td100);
8782
+ animation-delay: var(--td100);
8783
+ }
8784
+ .dt-recipe-leftbar-row__is-typing span:nth-child(3) {
8785
+ -webkit-animation-delay: var(--td200);
8786
+ animation-delay: var(--td200);
8787
+ }
8788
+ .dt-recipe-leftbar-row__primary {
8789
+ display: flex;
8790
+ flex: 1;
8791
+ align-items: center;
8792
+ width: 100%;
8793
+ margin: 0;
8794
+ padding: 0;
8795
+ color: var(--leftbar-row-color-foreground);
8796
+ font-size: inherit;
8797
+ line-height: inherit;
8798
+ text-align: left;
8799
+ text-decoration: none;
8800
+ background-color: var(--leftbar-row-color-background);
8801
+ border: 0;
8802
+ border-radius: var(--leftbar-row-radius);
8803
+ -webkit-appearance: none;
8804
+ appearance: none;
8805
+ }
8806
+ .dt-recipe-leftbar-row__primary:active {
8807
+ --leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active);
8808
+ }
8809
+ .dt-recipe-leftbar-row__primary:focus-visible {
8810
+ box-shadow: var(--dt-shadow-focus-inset);
8811
+ }
8812
+ .dt-recipe-leftbar-row__action-button {
8813
+ width: var(--leftbar-row-action-width);
8814
+ height: var(--leftbar-row-action-height);
8815
+ opacity: 0;
8816
+ }
8817
+ .dt-recipe-leftbar-row__alpha {
8818
+ display: flex;
8819
+ align-items: center;
8820
+ justify-content: center;
8821
+ box-sizing: border-box;
8822
+ width: var(--leftbar-row-alpha-width);
8823
+ height: var(--leftbar-row-alpha-height);
8824
+ padding-right: var(--dt-space-400);
8825
+ padding-left: var(--dt-space-400);
8826
+ color: var(--leftbar-row-alpha-color-foreground);
8827
+ border-radius: var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius);
8828
+ }
8829
+ .dt-recipe-leftbar-row__label {
8830
+ flex: 0 1;
8831
+ min-width: 0;
8832
+ }
8833
+ .dt-recipe-leftbar-row__omega {
8834
+ position: absolute;
8835
+ top: var(--leftbar-row-action-position-bottom);
8836
+ right: var(--leftbar-row-action-position-right);
8837
+ display: flex;
8838
+ gap: var(--dt-space-300);
8839
+ align-items: center;
8840
+ justify-content: flex-end;
8841
+ box-sizing: border-box;
8842
+ border-radius: var(--leftbar-row-radius);
8843
+ -webkit-transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
8844
+ transform: translateY(calc(var(--leftbar-row-action-position-bottom) * -1));
8845
+ }
8846
+ .dt-recipe-leftbar-row__unread-badge {
8847
+ display: var(--leftbar-row-unread-badge-display);
8848
+ color: var(--dt-theme-mention-color-foreground);
8849
+ background-color: var(--dt-theme-mention-color-background);
8850
+ }
8851
+ .dt-recipe-leftbar-row__unread-count .dt-recipe-leftbar-row__action {
8852
+ display: none;
8853
+ }
8854
+ .dt-recipe-leftbar-row__unread-count-badge {
8855
+ border-top-right-radius: var(--dt-size-radius-0);
8856
+ border-bottom-right-radius: var(--dt-size-radius-0);
8857
+ }
8858
+ .dt-recipe-leftbar-row__unread-mention-count-badge {
8859
+ color: var(--dt-theme-mention-color-foreground-strong);
8860
+ background-color: var(--dt-theme-mention-color-background-strong);
8861
+ border-top-left-radius: var(--dt-size-radius-0);
8862
+ border-bottom-left-radius: var(--dt-size-radius-0);
8863
+ }
8864
+ .dt-recipe-leftbar-row__unread-mention-only-count-badge {
8865
+ color: var(--dt-theme-mention-color-foreground-strong);
8866
+ background-color: var(--dt-theme-mention-color-background-strong);
8867
+ }
8868
+ .dt-recipe-leftbar-row__active-voice {
8869
+ display: inline-flex;
8870
+ color: var(--dt-color-purple-400);
8871
+ -webkit-animation-name: opacity-pulsate;
8872
+ animation-name: opacity-pulsate;
8873
+ -webkit-animation-duration: 1s;
8874
+ animation-duration: 1s;
8875
+ -webkit-animation-iteration-count: infinite;
8876
+ animation-iteration-count: infinite;
8877
+ -webkit-animation-fill-mode: both;
8878
+ animation-fill-mode: both;
8879
+ }
8880
+ .dt-recipe-leftbar-row__dnd {
8881
+ padding-top: var(--dt-space-200);
8882
+ padding-right: var(--dt-space-300);
8883
+ color: var(--dt-color-foreground-tertiary);
8884
+ font-weight: var(--dt-font-weight-medium);
8885
+ font-size: var(--dt-font-size-100);
8886
+ line-height: var(--dt-font-line-height-400);
8887
+ }
8888
+ .dt-recipe-leftbar-row__container--off-duty {
8889
+ background-color: var(--dt-badge-color-background-critical);
8890
+ border: var(--dt-size-100) solid var(--dt-color-border-subtle);
8891
+ border-radius: var(--dt-size-radius-500);
8892
+ }
8893
+ .dt-recipe-leftbar-row__container--off-duty .dt-recipe-leftbar-row__primary {
8894
+ margin: calc(var(--dt-size-100) * -1);
8895
+ }
8896
+ .dt-recipe-leftbar-row--contact-centers .dt-recipe-leftbar-row__alpha {
8897
+ padding-right: var(--dt-space-450);
8898
+ padding-left: var(--dt-space-450);
8899
+ }
8900
+ .dt-recipe-leftbar-row--contact-centers .dt-recipe-leftbar-row__action-container {
8901
+ display: inline-flex;
8902
+ align-items: center;
8903
+ justify-content: flex-end;
8904
+ min-width: var(--dt-size-600);
8905
+ height: var(--dt-size-500);
8906
+ }
8907
+ .dt-recipe-leftbar-row__icon-cc {
8908
+ width: calc(var(--dt-size-300) * 3.5);
8909
+ height: calc(var(--dt-size-300) * 3.5);
8910
+ border-radius: var(--dt-size-200);
8911
+ }
8912
+ .opacity-pulsate {
8913
+ -webkit-animation-name: opacity-pulsate;
8914
+ animation-name: opacity-pulsate;
8915
+ -webkit-animation-duration: 1s;
8916
+ animation-duration: 1s;
8917
+ -webkit-animation-iteration-count: infinite;
8918
+ animation-iteration-count: infinite;
8919
+ -webkit-animation-fill-mode: both;
8920
+ animation-fill-mode: both;
8921
+ }
8922
+ @-webkit-keyframes opacity-pulsate {
8923
+ 0%,
8924
+ 100% {
8925
+ opacity: 0.2;
8926
+ }
8927
+ 50% {
8928
+ opacity: 1;
8929
+ }
8930
+ }
8931
+ @keyframes opacity-pulsate {
8932
+ 0%,
8933
+ 100% {
8934
+ opacity: 0.2;
8935
+ }
8936
+ 50% {
8937
+ opacity: 1;
8938
+ }
8939
+ }
8940
+ @keyframes opacity-pulsate {
8941
+ 0%,
8942
+ 100% {
8943
+ opacity: 0.2;
8944
+ }
8945
+ 50% {
8946
+ opacity: 1;
8947
+ }
8948
+ }
8949
+ @keyframes opacity-pulsate {
8950
+ 0%,
8951
+ 100% {
8952
+ opacity: 0.2;
8953
+ }
8954
+ 50% {
8955
+ opacity: 1;
8956
+ }
8957
+ }
8958
+ @-webkit-keyframes wave {
8959
+ 0%,
8960
+ 50%,
8961
+ 100% {
8962
+ -webkit-transform: translate(0, 0);
8963
+ transform: translate(0, 0);
8964
+ }
8965
+ 10% {
8966
+ -webkit-transform: translate(0, -0.5rem);
8967
+ transform: translate(0, -0.5rem);
8968
+ opacity: 0.9;
8969
+ }
8970
+ }
8971
+ @keyframes wave {
8972
+ 0%,
8973
+ 50%,
8974
+ 100% {
8975
+ -webkit-transform: translate(0, 0);
8976
+ transform: translate(0, 0);
8977
+ }
8978
+ 10% {
8979
+ -webkit-transform: translate(0, -0.5rem);
8980
+ transform: translate(0, -0.5rem);
8981
+ opacity: 0.9;
8982
+ }
8983
+ }
8984
+ .dt-recipe-message-input {
8985
+ display: flex;
8986
+ flex-direction: column;
8987
+ line-height: var(--dt-font-line-height-400);
8988
+ border: var(--dt-size-border-100) solid;
8989
+ border-color: var(--dt-color-border-default);
8990
+ border-radius: var(--dt-size-radius-400);
8991
+ cursor: text;
8992
+ transition-timing-function: var(--ttf-in-out);
8993
+ transition-duration: var(--td50);
8994
+ transition-property: border-color, box-shadow, opacity;
8995
+ }
8996
+ .dt-recipe-message-input:focus-within {
8997
+ border-color: var(--dt-color-border-bold);
8998
+ box-shadow: 0 0 var(--dt-size-300) 0 var(--dt-color-surface-moderate-opaque);
8999
+ }
9000
+ .dt-recipe-message-input__editor-wrapper {
9001
+ padding: var(--dt-space-450) var(--dt-space-500) var(--dt-space-300);
9002
+ }
9003
+ .dt-recipe-message-input__remaining-char {
9004
+ margin-right: var(--dt-space-300);
9005
+ color: var(--dt-color-foreground-critical);
9006
+ font-size: var(--dt-font-size-100);
9007
+ }
9008
+ .dt-recipe-message-input__remaining-char__tooltip {
9009
+ margin-top: auto;
9010
+ margin-bottom: auto;
9011
+ }
9012
+ .dt-recipe-message-input__button {
9013
+ max-width: 2.8rem;
9014
+ max-height: 2.8rem;
9015
+ border-radius: var(--dt-size-radius-300);
9016
+ }
9017
+ .dt-recipe-message-input__send-button.dt-recipe-message-input__button:not(.d-btn--icon-only),
9018
+ .dt-recipe-message-input__cancel-button {
9019
+ max-width: unset;
9020
+ padding: var(--dt-space-350);
9021
+ }
9022
+ .dt-recipe-message-input__send-button--disabled {
9023
+ color: var(--dt-color-foreground-muted);
9024
+ background-color: unset;
9025
+ cursor: default;
9026
+ }
9027
+ .dt-recipe-message-input__bottom-section {
9028
+ display: flex;
9029
+ justify-content: space-between;
9030
+ padding: var(--dt-space-300) var(--dt-space-400) var(--dt-space-400);
9031
+ }
9032
+ .dt-recipe-message-input__bottom-section-left,
9033
+ .dt-recipe-message-input__bottom-section-right {
9034
+ display: flex;
9035
+ }
9036
+ .dt-recipe-message-input__image-input {
9037
+ position: absolute;
9038
+ }
9039
+ .dt-recipe-message-input-meeting-pill {
9040
+ display: inline-block;
9041
+ }
9042
+ .dt-recipe-message-input-meeting-pill__layout {
9043
+ grid-template-areas: 'left content right';
9044
+ grid-template-columns: minmax(0, -webkit-max-content) 1fr minmax(0, -webkit-max-content);
9045
+ grid-template-columns: minmax(0, max-content) 1fr minmax(0, max-content);
9046
+ gap: var(--dt-space-400);
9047
+ align-items: center;
9048
+ max-width: var(--dt-size-905);
9049
+ padding: var(--dt-space-200) var(--dt-space-400);
9050
+ font: var(--dt-typography-headline-md);
9051
+ border: var(--dt-size-border-100) solid var(--dt-color-border-default);
9052
+ border-radius: var(--dt-size-radius-300);
9053
+ }
9054
+ .dt-recipe-message-input-meeting-pill__icon {
9055
+ display: flex;
9056
+ align-items: center;
9057
+ padding: var(--dt-space-350);
9058
+ }
9059
+ .dt-recipe-message-input-meeting-pill__close {
9060
+ display: flex;
9061
+ justify-content: flex-end;
9062
+ }
9063
+ .dt-recipe-settings-menu-button {
9064
+ width: var(--dt-size-550);
9065
+ height: var(--dt-size-600);
9066
+ padding: var(--dt-space-0);
9067
+ color: var(--dt-theme-topbar-button-color-foreground);
9068
+ background-color: var(--dt-theme-topbar-button-color-background);
9069
+ border-radius: var(--dt-size-550);
9070
+ }
9071
+ .dt-recipe-settings-menu-button:hover {
9072
+ color: var(--dt-theme-topbar-button-color-foreground-hover);
9073
+ background-color: var(--dt-theme-topbar-button-color-background-hover);
9074
+ }
9075
+ .dt-recipe-settings-menu-button:active {
9076
+ background-color: var(--dt-theme-topbar-button-color-background-active);
9077
+ }
9078
+ .dt-recipe-settings-menu-button-update {
9079
+ height: var(--dt-size-600);
9080
+ color: var(--dt-color-blue-500);
9081
+ background-color: hsla(var(--dt-color-blue-200-hsl) / 0.25);
9082
+ border-color: hsla(var(--dt-color-blue-200-hsl) / 0.25);
9083
+ border-radius: var(--dt-size-radius-pill);
9084
+ }
9085
+ .dt-recipe-settings-menu-button-update:hover {
9086
+ color: var(--dt-theme-topbar-button-color-foreground-hover);
9087
+ background-color: hsla(var(--dt-color-blue-200-hsl) / 0.5);
9088
+ }
9089
+ .dt-recipe-time-pill {
9090
+ padding: var(--dt-space-300) var(--dt-space-500);
9091
+ color: var(--dt-color-foreground-primary);
9092
+ font-size: var(--dt-font-size-100);
9093
+ line-height: var(--dt-font-line-height-300);
9094
+ background-color: var(--dt-color-surface-primary);
9095
+ border: var(--dt-size-border-100) solid var(--dt-color-border-default);
9096
+ border-radius: var(--dt-size-radius-pill);
9097
+ }
9098
+ .dt-recipe-top-banner-info {
9099
+ display: flex;
9100
+ align-items: center;
9101
+ justify-content: space-between;
9102
+ color: var(--dt-color-foreground-primary);
9103
+ font-size: var(--dt-font-size-100);
9104
+ }
9105
+ .dt-recipe-top-banner-info__left {
9106
+ min-width: 20%;
9107
+ margin: var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-400);
9108
+ }
9109
+ .dt-recipe-top-banner-info__middle {
9110
+ display: flex;
9111
+ gap: var(--dt-size-300);
9112
+ align-items: center;
9113
+ margin-top: var(--dt-space-300);
9114
+ margin-bottom: var(--dt-space-300);
9115
+ }
9116
+ .dt-recipe-top-banner-info__right {
9117
+ display: flex;
9118
+ gap: var(--dt-size-300);
9119
+ align-items: baseline;
9120
+ justify-content: flex-end;
9121
+ min-width: 20%;
9122
+ margin: var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;
9123
+ text-align: right;
9124
+ }
9125
+ .dt-recipe-leftbar-unread-pill {
9126
+ display: flex;
9127
+ gap: var(--dt-space-300);
9128
+ align-items: center;
9129
+ justify-content: center;
9130
+ padding: var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);
9131
+ font-size: var(--dt-font-size-100);
9132
+ line-height: var(--dt-font-line-height-600);
9133
+ border: none;
9134
+ border-radius: var(--dt-size-radius-pill);
9135
+ box-shadow: var(--dt-shadow-medium);
9136
+ cursor: pointer;
9137
+ }
9138
+ .dt-recipe-leftbar-unread-pill-mentions {
9139
+ color: var(--dt-theme-mention-color-foreground);
9140
+ font-weight: var(--dt-font-weight-bold);
9141
+ background-color: var(--dt-theme-mention-color-background);
9142
+ }
9143
+ .dt-recipe-leftbar-unread-pill-messages {
9144
+ color: var(--dt-color-foreground-secondary-inverted);
9145
+ background-color: var(--dt-color-surface-contrast);
9146
+ }
8000
9147
  @font-face {
8001
9148
  font-weight: 400;
8002
9149
  font-family: Archivo;