@saooti/octopus-sdk 35.2.14 → 35.2.16
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,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
v-if="live"
|
|
4
|
-
class="d-flex w-100"
|
|
4
|
+
class="d-flex-column live-item-container w-100"
|
|
5
5
|
>
|
|
6
6
|
<router-link
|
|
7
7
|
class="live-date-box"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}"
|
|
30
30
|
>
|
|
31
31
|
<PodcastImage
|
|
32
|
-
class="me-3"
|
|
32
|
+
class="me-3 flex-shrink-0"
|
|
33
33
|
:class="
|
|
34
34
|
fetchConference &&
|
|
35
35
|
'null' !== fetchConference &&
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
:is-animator-live="organisationRight"
|
|
45
45
|
/>
|
|
46
46
|
</router-link>
|
|
47
|
-
<div class="d-flex flex-column
|
|
47
|
+
<div class="d-flex flex-column">
|
|
48
48
|
<router-link
|
|
49
49
|
class="text-uppercase fw-bold text-truncate"
|
|
50
50
|
:to="{
|
|
@@ -253,36 +253,38 @@ export default defineComponent({
|
|
|
253
253
|
|
|
254
254
|
<style lang="scss">
|
|
255
255
|
.octopus-app{
|
|
256
|
-
.live-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
}
|
|
262
|
-
.
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
256
|
+
.live-item-container{
|
|
257
|
+
@media (max-width: 960px) {
|
|
258
|
+
align-items: center;
|
|
259
|
+
justify-content: center;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
.live-date-box {
|
|
263
|
+
width: 200px;
|
|
264
|
+
display: flex;
|
|
265
|
+
flex-shrink: 0;
|
|
266
|
+
flex-direction: column;
|
|
267
|
+
}
|
|
268
|
+
.font-size-smaller {
|
|
269
|
+
font-size: smaller;
|
|
270
|
+
}
|
|
271
|
+
.live-description-container {
|
|
272
|
+
overflow: hidden;
|
|
273
|
+
margin-top: 0.5em;
|
|
274
|
+
word-break: break-word;
|
|
275
|
+
max-height: 6rem;
|
|
276
|
+
position: relative;
|
|
277
|
+
&.after-live-description:after {
|
|
278
|
+
content: '...';
|
|
279
|
+
position: absolute;
|
|
280
|
+
padding-left: 1rem;
|
|
281
|
+
right: 0;
|
|
282
|
+
bottom: 0;
|
|
283
|
+
width: 100%;
|
|
284
|
+
font-size: 1rem;
|
|
285
|
+
font-weight: bolder;
|
|
286
|
+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f3f3f3 40%);
|
|
287
|
+
}
|
|
281
288
|
}
|
|
282
|
-
}
|
|
283
|
-
.live-special-width {
|
|
284
|
-
width: 0;
|
|
285
|
-
flex-grow: 1;
|
|
286
|
-
}
|
|
287
289
|
}
|
|
288
290
|
</style>
|