@dialpad/dialtone-css 8.24.0 → 8.24.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.
@@ -0,0 +1,5 @@
1
+ .d-emoji-text-wrapper {
2
+ span {
3
+ vertical-align: middle;
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ .d-emoji {
2
+ display: inline-block;
3
+ vertical-align: middle;
4
+ }
@@ -30,7 +30,7 @@
30
30
  font: inherit;
31
31
  text-decoration: var(--link-text-decoration);
32
32
  text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
33
- text-decoration-thickness: var(--dt-size-border-100);
33
+ text-decoration-thickness: var(--dt-size-border-50);
34
34
  background-color: transparent;
35
35
  border: 0;
36
36
  transition-timing-function: var(--ttf-out-quint);
@@ -75,6 +75,14 @@ pre {
75
75
 
76
76
  a {
77
77
  background-color: transparent;
78
+ text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
79
+ text-decoration-thickness: var(--dt-size-border-50);
80
+ }
81
+
82
+ ins,
83
+ u {
84
+ text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
85
+ text-decoration-thickness: var(--dt-size-border-50);
78
86
  }
79
87
 
80
88
  /**
@@ -86,6 +94,13 @@ abbr[title] {
86
94
  border-bottom: none; /* 1 */
87
95
  text-decoration: underline; /* 2 */
88
96
  text-decoration: underline dotted; /* 2 */
97
+ text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
98
+ text-decoration-thickness: var(--dt-size-border-100);
99
+ }
100
+
101
+ del,
102
+ s {
103
+ text-decoration-thickness: var(--dt-size-border-100) !important;
89
104
  }
90
105
 
91
106
  /**
@@ -24,6 +24,8 @@
24
24
  @import 'components/collapsible';
25
25
  @import 'components/combobox';
26
26
  @import 'components/datepicker';
27
+ @import 'components/emoji';
28
+ @import 'components/emoji-text-wrapper';
27
29
  @import 'components/emoji-picker';
28
30
  @import 'components/forms';
29
31
  @import 'components/image-viewer';
@@ -211,14 +211,17 @@ ul {
211
211
  .d-td-underline {
212
212
  text-decoration: underline !important;
213
213
  text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100)) !important;
214
- text-decoration-thickness: var(--dt-size-border-100) !important;
214
+ text-decoration-thickness: var(--dt-size-border-50) !important;
215
215
  }
216
216
  .d-td-dotted {
217
217
  text-decoration: underline dotted !important;
218
218
  text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100)) !important;
219
219
  text-decoration-thickness: var(--dt-size-border-100) !important;
220
220
  }
221
- .d-td-line-through { text-decoration: line-through !important; }
221
+ .d-td-line-through {
222
+ text-decoration: line-through !important;
223
+ text-decoration-thickness: var(--dt-size-border-100) !important;
224
+ }
222
225
  .d-td-unset { text-decoration: unset !important; }
223
226
 
224
227
 
@@ -64,6 +64,13 @@ pre {
64
64
  */
65
65
  a {
66
66
  background-color: transparent;
67
+ text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
68
+ text-decoration-thickness: var(--dt-size-border-50);
69
+ }
70
+ ins,
71
+ u {
72
+ text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
73
+ text-decoration-thickness: var(--dt-size-border-50);
67
74
  }
68
75
  /**
69
76
  * 1. Remove the bottom border in Chrome 57-
@@ -77,6 +84,12 @@ abbr[title] {
77
84
  -webkit-text-decoration: underline dotted;
78
85
  text-decoration: underline dotted;
79
86
  /* 2 */
87
+ text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
88
+ text-decoration-thickness: var(--dt-size-border-100);
89
+ }
90
+ del,
91
+ s {
92
+ text-decoration-thickness: var(--dt-size-border-100) !important;
80
93
  }
81
94
  /**
82
95
  * Add the correct font weight in Chrome, Edge, and Safari.
@@ -1629,6 +1642,13 @@ template {
1629
1642
  color: var(--dt-color-foreground-muted);
1630
1643
  background-color: var(--dt-color-neutral-transparent);
1631
1644
  }
1645
+ .d-emoji {
1646
+ display: inline-block;
1647
+ vertical-align: middle;
1648
+ }
1649
+ .d-emoji-text-wrapper span {
1650
+ vertical-align: middle;
1651
+ }
1632
1652
  .d-emoji-picker {
1633
1653
  flex-direction: column;
1634
1654
  width: calc(var(--dt-size-925) + var(--dt-size-600) + var(--dt-size-400));
@@ -2344,7 +2364,7 @@ legend .d-label {
2344
2364
  -webkit-text-decoration: var(--link-text-decoration);
2345
2365
  text-decoration: var(--link-text-decoration);
2346
2366
  text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100));
2347
- text-decoration-thickness: var(--dt-size-border-100);
2367
+ text-decoration-thickness: var(--dt-size-border-50);
2348
2368
  background-color: transparent;
2349
2369
  border: 0;
2350
2370
  transition-timing-function: var(--ttf-out-quint);
@@ -7164,7 +7184,7 @@ ul {
7164
7184
  .d-td-underline {
7165
7185
  text-decoration: underline !important;
7166
7186
  text-underline-offset: calc(var(--dt-size-border-300) - var(--dt-size-border-100)) !important;
7167
- text-decoration-thickness: var(--dt-size-border-100) !important;
7187
+ text-decoration-thickness: var(--dt-size-border-50) !important;
7168
7188
  }
7169
7189
  .d-td-dotted {
7170
7190
  -webkit-text-decoration: underline dotted !important;
@@ -7174,6 +7194,7 @@ ul {
7174
7194
  }
7175
7195
  .d-td-line-through {
7176
7196
  text-decoration: line-through !important;
7197
+ text-decoration-thickness: var(--dt-size-border-100) !important;
7177
7198
  }
7178
7199
  .d-td-unset {
7179
7200
  text-decoration: unset !important;
@@ -7380,7 +7401,7 @@ body {
7380
7401
  }
7381
7402
  /**
7382
7403
  * Do not edit directly
7383
- * Generated on Fri, 26 Jan 2024 00:08:28 GMT
7404
+ * Generated on Mon, 05 Feb 2024 23:02:51 GMT
7384
7405
  */
7385
7406
 
7386
7407
  .dialtone-theme-light {
@@ -8177,7 +8198,7 @@ body {
8177
8198
 
8178
8199
  /**
8179
8200
  * Do not edit directly
8180
- * Generated on Fri, 26 Jan 2024 00:08:29 GMT
8201
+ * Generated on Mon, 05 Feb 2024 23:02:52 GMT
8181
8202
  */
8182
8203
 
8183
8204
  .dialtone-theme-dark {