@salesforcedevs/dx-components 1.3.374 → 1.3.378
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/dx-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.378",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"volta": {
|
|
47
47
|
"node": "18.18.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "894e5b74944a23112f9206dc4546e5bec170382d"
|
|
50
50
|
}
|
|
@@ -88,10 +88,6 @@ dx-icon {
|
|
|
88
88
|
background: var(--dx-c-track-custom-light-gray);
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.player-volume-slider {
|
|
92
|
-
background: var(--sds-g-gray-7);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
91
|
/* Create a large, solid "shadow" to the left of the "thumb" on the progress bar, simulating filled in space */
|
|
96
92
|
.player-volume-slider::-webkit-slider-thumb,
|
|
97
93
|
.player-seek-slider::-webkit-slider-thumb {
|
|
@@ -244,7 +240,7 @@ dx-icon {
|
|
|
244
240
|
|
|
245
241
|
.player-volume-container.focused-by-keyboard,
|
|
246
242
|
.player-volume-container:hover {
|
|
247
|
-
background: var(--
|
|
243
|
+
background: var(--dx-g-audio-button-hover-color);
|
|
248
244
|
width: max(12%, 150px);
|
|
249
245
|
}
|
|
250
246
|
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.title-bar {
|
|
38
|
-
padding: 0
|
|
38
|
+
padding: 0 40px;
|
|
39
39
|
height: 100px;
|
|
40
40
|
display: flex;
|
|
41
41
|
align-items: center;
|
|
@@ -44,6 +44,27 @@
|
|
|
44
44
|
color: var(--label-color);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
@media screen and (max-width: 500px) {
|
|
48
|
+
.title-bar {
|
|
49
|
+
padding: 0 40px;
|
|
50
|
+
height: 125px;
|
|
51
|
+
display: block;
|
|
52
|
+
align-items: center;
|
|
53
|
+
justify-content: space-between;
|
|
54
|
+
box-shadow: 0 0 0 2px #0003;
|
|
55
|
+
color: var(--label-color);
|
|
56
|
+
padding-top: 16px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.right-div {
|
|
60
|
+
margin-top: 10px;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.title-bar .right-div {
|
|
65
|
+
display: flex;
|
|
66
|
+
}
|
|
67
|
+
|
|
47
68
|
.title-bar h1 {
|
|
48
69
|
color: var(--label-color);
|
|
49
70
|
}
|