@saooti/octopus-sdk 38.3.2 → 38.3.4
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
|
@@ -148,6 +148,7 @@ export default defineComponent({
|
|
|
148
148
|
flex-direction: column;
|
|
149
149
|
transition: height 0.7s;
|
|
150
150
|
box-shadow: 0px 2px 15px 5px rgba(0, 0, 0, 0.4) !important;
|
|
151
|
+
z-index: 11;
|
|
151
152
|
|
|
152
153
|
&.content-top-bar {
|
|
153
154
|
height: 22rem;
|
|
@@ -163,10 +164,6 @@ export default defineComponent({
|
|
|
163
164
|
}
|
|
164
165
|
}
|
|
165
166
|
|
|
166
|
-
&.scrolled {
|
|
167
|
-
z-index: 11;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
167
|
h1 {
|
|
171
168
|
color: white !important;
|
|
172
169
|
font-size: 2rem;
|
|
@@ -111,12 +111,12 @@ export default defineComponent({
|
|
|
111
111
|
shareText: this.$t("Listen this episode"),
|
|
112
112
|
emissionHtml: `<tr><td style="padding:5px 0;">
|
|
113
113
|
<div style="display:flex; margin-top:5px;">
|
|
114
|
-
<div style="font-size:20px; color:${this.arrayColors[1].color}; margin-right:5px;">${this.$t(
|
|
114
|
+
<div style="font-size:20px; color:${this.arrayColors[1].color}; margin-right:5px;text-wrap: nowrap;">${this.$t(
|
|
115
115
|
"Emission",
|
|
116
116
|
)} :</div>
|
|
117
117
|
<a href="${this.shareUrl}" style="font-size: 18px;color: ${
|
|
118
118
|
this.arrayColors[0].color
|
|
119
|
-
};">${this.podcast.emission.name}</a>
|
|
119
|
+
};overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">${this.podcast.emission.name}</a>
|
|
120
120
|
</div></td></tr>`,
|
|
121
121
|
articleHtml:
|
|
122
122
|
!this.podcast?.article || 0 === this.podcast.article?.length
|