@saooti/octopus-sdk 30.0.24 → 30.0.25
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/README.md +2 -1
- package/package.json +1 -1
- package/src/assets/bootstrap-diff.scss +0 -1
- package/src/components/display/comments/CommentInput.vue +3 -3
- package/src/components/display/comments/CommentItem.vue +1 -1
- package/src/components/display/comments/CommentList.vue +1 -1
- package/src/components/display/emission/EmissionInlineList.vue +1 -1
- package/src/components/display/emission/EmissionList.vue +1 -1
- package/src/components/display/live/LiveHorizontalList.vue +1 -1
- package/src/components/display/playlist/PlaylistList.vue +1 -1
- package/src/components/display/playlist/PodcastList.vue +1 -1
- package/src/components/display/podcasts/PodcastInlineList.vue +1 -2
- package/src/components/display/podcasts/PodcastList.vue +1 -1
- package/src/components/display/sharing/ShareDistribution.vue +1 -1
- package/src/components/display/sharing/SharePlayer.vue +5 -2
- package/src/components/misc/modal/ClipboardModal.vue +1 -1
- package/src/components/misc/modal/MessageModal.vue +2 -2
- package/src/components/misc/modal/NewsletterModal.vue +1 -1
- package/src/components/misc/modal/QrCodeModal.vue +1 -1
- package/src/components/misc/modal/ShareModalPlayer.vue +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
{{ $t('Cancel') }}
|
|
26
26
|
</button>
|
|
27
27
|
<button
|
|
28
|
-
class="btn btn-
|
|
28
|
+
class="btn btn-link"
|
|
29
29
|
:disabled="temporaryName.length < 2"
|
|
30
30
|
@click="validEdit"
|
|
31
31
|
>
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
{{ $t('Cancel') }}
|
|
53
53
|
</button>
|
|
54
54
|
<button
|
|
55
|
-
class="btn btn-
|
|
55
|
+
class="btn btn-link"
|
|
56
56
|
:disabled="0 === newComment.trim().length"
|
|
57
57
|
@mousedown="requestToSend"
|
|
58
58
|
>
|
|
@@ -295,7 +295,7 @@ export default defineComponent({
|
|
|
295
295
|
@import '../../../sass/_variables.scss';
|
|
296
296
|
.comment-input-container {
|
|
297
297
|
textarea::placeholder {
|
|
298
|
-
color: $octopus-primary-
|
|
298
|
+
color: $octopus-primary-dark;
|
|
299
299
|
}
|
|
300
300
|
textarea:focus::placeholder {
|
|
301
301
|
color: black;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
</transition-group>
|
|
26
26
|
<button
|
|
27
27
|
v-show="!allFetched && (!loading || 0!==first)"
|
|
28
|
-
class="btn btn-
|
|
28
|
+
class="btn btn-link mt-2"
|
|
29
29
|
:class="comId ? 'align-self-start' : 'align-self-center'"
|
|
30
30
|
:disabled="loading"
|
|
31
31
|
:title="$t('See more comments')"
|
|
@@ -366,10 +366,11 @@ export default defineComponent({
|
|
|
366
366
|
@import '../../../sass/_variables.scss';
|
|
367
367
|
.sticker {
|
|
368
368
|
align-self: center;
|
|
369
|
-
background: $
|
|
369
|
+
background: $octopus-primary-dark;
|
|
370
370
|
padding: 0.5rem;
|
|
371
371
|
transition: all 0.5s ease;
|
|
372
|
-
color:
|
|
372
|
+
color: white;
|
|
373
|
+
font-weight: bold;
|
|
373
374
|
letter-spacing: 1px;
|
|
374
375
|
outline: none;
|
|
375
376
|
box-shadow: 10px 10px 34px -15px hsla(0, 0%, 0%, 0.4);
|
|
@@ -377,6 +378,8 @@ export default defineComponent({
|
|
|
377
378
|
border: solid 2px #41403e;
|
|
378
379
|
&:hover {
|
|
379
380
|
box-shadow: 2px 8px 4px -6px hsla(0, 0%, 0%, 0.3);
|
|
381
|
+
background: transparent;
|
|
382
|
+
color: $octopus-primary-dark;
|
|
380
383
|
}
|
|
381
384
|
}
|
|
382
385
|
.max-iframe {
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
</button>
|
|
40
40
|
<button
|
|
41
41
|
v-if="thirdText"
|
|
42
|
-
class="btn btn-
|
|
42
|
+
class="btn btn-link m-1"
|
|
43
43
|
@click="onThirdAction"
|
|
44
44
|
>
|
|
45
45
|
{{ thirdText }}
|
|
46
46
|
</button>
|
|
47
47
|
<button
|
|
48
|
-
class="btn btn-
|
|
48
|
+
class="btn btn-link m-1"
|
|
49
49
|
@click="onValid"
|
|
50
50
|
>
|
|
51
51
|
{{ validatetext }}
|