@saooti/octopus-sdk 30.0.22 → 30.0.23
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 +23 -35
- package/src/assets/form.scss +6 -3
- package/src/assets/general.scss +14 -3
- package/src/assets/share.scss +0 -9
- package/src/components/display/aggregator/RssSection.vue +1 -3
- package/src/components/display/categories/CategoryChooser.vue +1 -3
- package/src/components/display/categories/CategoryFilter.vue +1 -3
- package/src/components/display/categories/CategoryList.vue +4 -15
- package/src/components/display/comments/CommentItem.vue +2 -2
- package/src/components/display/comments/CommentSection.vue +1 -1
- package/src/components/display/edit/EditBox.vue +0 -2
- package/src/components/display/edit/EditCommentBox.vue +5 -5
- package/src/components/display/emission/EmissionChooser.vue +1 -3
- package/src/components/display/emission/EmissionInlineList.vue +2 -2
- package/src/components/display/emission/EmissionItem.vue +1 -2
- package/src/components/display/filter/AdvancedSearch.vue +2 -2
- package/src/components/display/filter/CategoryFilter.vue +0 -2
- package/src/components/display/filter/MonetizableFilter.vue +1 -3
- package/src/components/display/filter/ProductorSearch.vue +2 -2
- package/src/components/display/filter/RubriqueChoice.vue +1 -3
- package/src/components/display/filter/RubriqueFilter.vue +1 -3
- package/src/components/display/live/CountDown.vue +1 -3
- package/src/components/display/live/LiveHorizontalList.vue +1 -3
- package/src/components/display/organisation/OrganisationChooser.vue +1 -3
- package/src/components/display/playlist/PlaylistItem.vue +2 -4
- package/src/components/display/playlist/PlaylistList.vue +1 -3
- package/src/components/display/podcasts/ParticipantDescription.vue +1 -3
- package/src/components/display/podcasts/PodcastFilterList.vue +1 -3
- package/src/components/display/podcasts/PodcastInlineList.vue +3 -5
- package/src/components/display/podcasts/PodcastList.vue +1 -3
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -3
- package/src/components/display/podcasts/TagList.vue +2 -1
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -3
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/display/sharing/QrCode.vue +1 -3
- package/src/components/display/sharing/ShareDistribution.vue +1 -6
- package/src/components/display/sharing/SharePlayer.vue +1 -1
- package/src/components/display/sharing/SubscribeButtons.vue +3 -5
- package/src/components/display/studio/RecordingItemButton.vue +1 -3
- package/src/components/form/ClassicSearch.vue +21 -19
- package/src/components/misc/TopBar.vue +1 -1
- package/src/components/misc/modal/MessageModal.vue +1 -3
- package/src/components/misc/modal/QrCodeModal.vue +1 -3
- package/src/components/pages/Rubrique.vue +1 -3
- package/src/locale/en.ts +1 -0
- package/src/locale/fr.ts +1 -0
- package/src/sass/_variables.scss +10 -7
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
.btn{
|
|
11
11
|
font-size:.7rem;
|
|
12
12
|
border-radius: 50px;
|
|
13
|
-
background: $octopus-
|
|
13
|
+
background: $octopus-secondary-color;
|
|
14
14
|
transition: background .2s, border .2s, box-shadow .2s, color .2s;
|
|
15
15
|
text-decoration: none !important;
|
|
16
16
|
white-space: nowrap;
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
// Button Primary
|
|
31
31
|
&.btn-primary {
|
|
32
32
|
background: $octopus-third-color;
|
|
33
|
-
background: -moz-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-
|
|
34
|
-
background: -webkit-gradient(left top, right bottom, color-stop(0%, $octopus-third-color), color-stop(100%, $octopus-primary-
|
|
35
|
-
background: -webkit-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-
|
|
36
|
-
background: -o-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-
|
|
37
|
-
background: -ms-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-
|
|
38
|
-
background: linear-gradient(135deg, $octopus-third-color 0%, $octopus-primary-
|
|
33
|
+
background: -moz-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-linear-background 100%);
|
|
34
|
+
background: -webkit-gradient(left top, right bottom, color-stop(0%, $octopus-third-color), color-stop(100%, $octopus-primary-linear-background));
|
|
35
|
+
background: -webkit-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-linear-background 100%);
|
|
36
|
+
background: -o-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-linear-background 100%);
|
|
37
|
+
background: -ms-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-linear-background 100%);
|
|
38
|
+
background: linear-gradient(135deg, $octopus-third-color 0%, $octopus-primary-linear-background 100%);
|
|
39
39
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d91f', endColorstr='#50b685', GradientType=1 );
|
|
40
40
|
border-radius: 50px;
|
|
41
41
|
height: auto;
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
&:focus,
|
|
45
45
|
&:hover {
|
|
46
46
|
background:$octopus-third-color;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
47
|
+
background: -moz-linear-gradient(-45deg, darken($octopus-third-color,7%) 0%, darken($octopus-primary-linear-background, 7%) 100%);
|
|
48
|
+
background: -webkit-gradient(left top, right bottom, color-stop(0%, darken($octopus-third-color,7%)), color-stop(100%, darken($octopus-primary-linear-background, 7%)));
|
|
49
|
+
background: -webkit-linear-gradient(-45deg, darken($octopus-third-color,7%) 0%, darken($octopus-primary-linear-background, 7%) 100%);
|
|
50
|
+
background: -o-linear-gradient(-45deg, darken($octopus-third-color,7%) 0%, darken($octopus-primary-linear-background, 7%) 100%);
|
|
51
|
+
background: -ms-linear-gradient(-45deg, darken($octopus-third-color,7%) 0%, darken($octopus-primary-linear-background, 7%) 100%);
|
|
52
|
+
background: linear-gradient(135deg, darken($octopus-third-color,7%) 0%, darken($octopus-primary-linear-background, 7%) 100%);
|
|
53
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d91f', endColorstr='#4fcf91', GradientType=1 );
|
|
54
|
+
border: 0;
|
|
55
55
|
}
|
|
56
56
|
&:active,
|
|
57
57
|
&.active {
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
background: darken($octopus-primary-linear-background, 4%);
|
|
59
|
+
border-color: darken($octopus-primary-linear-background, 7%);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
//Button disable halo after click
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
display: flex;
|
|
79
79
|
align-items: center;
|
|
80
80
|
justify-content: center;
|
|
81
|
-
background: $octopus-primary-
|
|
82
|
-
border: 2px solid $octopus-primary-
|
|
81
|
+
background: $octopus-primary-dark;
|
|
82
|
+
border: 2px solid $octopus-primary-dark;
|
|
83
83
|
color: white;
|
|
84
84
|
font-weight: bold;
|
|
85
85
|
margin: 2rem;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
&:active,
|
|
91
91
|
&.active {
|
|
92
92
|
background: transparent;
|
|
93
|
-
color: $octopus-primary-
|
|
93
|
+
color: $octopus-primary-dark;
|
|
94
94
|
}
|
|
95
95
|
@media (max-width: 500px){
|
|
96
96
|
margin: 0.3rem;
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
&.btn-more{
|
|
101
|
-
background: $octopus-primary-
|
|
101
|
+
background: $octopus-primary-dark;
|
|
102
102
|
color: $octopus-background;
|
|
103
103
|
width: 2rem;
|
|
104
104
|
height: 2rem;
|
|
@@ -121,8 +121,7 @@
|
|
|
121
121
|
height: 5rem;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
&.admin-button
|
|
125
|
-
&.btn-arrow {
|
|
124
|
+
&.admin-button{
|
|
126
125
|
padding: 0.3rem;
|
|
127
126
|
height: 1.8rem;
|
|
128
127
|
width: 1.8rem;
|
|
@@ -131,13 +130,6 @@
|
|
|
131
130
|
align-items: center;
|
|
132
131
|
justify-content: center;
|
|
133
132
|
}
|
|
134
|
-
&.btn-arrow {
|
|
135
|
-
margin: 0.2rem;
|
|
136
|
-
background: $octopus-secondary-color;
|
|
137
|
-
&:hover {
|
|
138
|
-
background: $octopus-secondary-color;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
133
|
|
|
142
134
|
}
|
|
143
135
|
|
|
@@ -187,13 +179,9 @@
|
|
|
187
179
|
}
|
|
188
180
|
}
|
|
189
181
|
|
|
190
|
-
.custom-control-label {
|
|
191
|
-
//border: 1px solid #ddd;
|
|
192
|
-
border-radius: 5px;
|
|
193
|
-
}
|
|
194
182
|
.dropdown-toggle-no-caret::after{
|
|
195
183
|
display: none;
|
|
196
|
-
|
|
184
|
+
}
|
|
197
185
|
.dropdown-menu {
|
|
198
186
|
padding: 0.5rem;
|
|
199
187
|
}
|
package/src/assets/form.scss
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
.octopus-app{
|
|
2
2
|
.input-no-outline{
|
|
3
|
-
|
|
3
|
+
outline-width: 0 !important;
|
|
4
|
+
}
|
|
5
|
+
:-moz-focusring {
|
|
6
|
+
outline: 0px solid black;
|
|
4
7
|
}
|
|
5
8
|
.width-auto{
|
|
6
9
|
width: auto !important;
|
|
@@ -64,8 +67,8 @@
|
|
|
64
67
|
border-bottom: 0.1rem solid transparent;
|
|
65
68
|
}
|
|
66
69
|
.active{
|
|
67
|
-
|
|
68
|
-
|
|
70
|
+
border-bottom-color: $octopus-primary-dark;
|
|
71
|
+
color: $octopus-primary-dark;
|
|
69
72
|
}
|
|
70
73
|
}
|
|
71
74
|
}
|
package/src/assets/general.scss
CHANGED
|
@@ -8,7 +8,7 @@ body{
|
|
|
8
8
|
font-family: Montserrat,sans-serif,Helvetica Neue;
|
|
9
9
|
font-size: 0.8rem;
|
|
10
10
|
overflow-x: hidden;
|
|
11
|
-
background: #
|
|
11
|
+
background: #ebebeb;
|
|
12
12
|
min-height: 100%;
|
|
13
13
|
overscroll-behavior-y: contain;
|
|
14
14
|
}
|
|
@@ -73,6 +73,12 @@ body{
|
|
|
73
73
|
.secondary-bg{
|
|
74
74
|
background: $octopus-background;
|
|
75
75
|
}
|
|
76
|
+
.light-primary-bg{
|
|
77
|
+
background-color: $primaryColorTransparent !important;
|
|
78
|
+
}
|
|
79
|
+
.really-light-primary-bg{
|
|
80
|
+
background-color: $primaryColorReallyTransparent !important;
|
|
81
|
+
}
|
|
76
82
|
.width-fit-content{
|
|
77
83
|
width: fit-content !important;
|
|
78
84
|
}
|
|
@@ -93,7 +99,7 @@ body{
|
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.module-box{
|
|
96
|
-
background-color:
|
|
102
|
+
background-color: white;
|
|
97
103
|
padding: 1.3rem;
|
|
98
104
|
margin: 0.5rem 0.5rem 0 0.5rem;
|
|
99
105
|
border-radius: 1rem;
|
|
@@ -125,7 +131,7 @@ body{
|
|
|
125
131
|
color: black !important;
|
|
126
132
|
}
|
|
127
133
|
a.link-hover.router-link-exact-active.router-link-active, a.link-hover:hover {
|
|
128
|
-
color: $octopus-primary-
|
|
134
|
+
color: $octopus-primary-dark !important;
|
|
129
135
|
}
|
|
130
136
|
.descriptionText{
|
|
131
137
|
white-space: pre-wrap;
|
|
@@ -158,6 +164,11 @@ body{
|
|
|
158
164
|
display: none !important;
|
|
159
165
|
}
|
|
160
166
|
}
|
|
167
|
+
.hide-small-screen{
|
|
168
|
+
@media (max-width: 450px) {
|
|
169
|
+
display: none !important;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
161
172
|
.show-phone{
|
|
162
173
|
display: none;
|
|
163
174
|
@media (max-width: 960px) {
|
package/src/assets/share.scss
CHANGED
|
@@ -19,14 +19,6 @@
|
|
|
19
19
|
background: #f3f3f3;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
|
-
.category-rubrique-item-plus {
|
|
23
|
-
display: flex;
|
|
24
|
-
height: 1.8rem;
|
|
25
|
-
width: 1.8rem;
|
|
26
|
-
align-items: center;
|
|
27
|
-
justify-content: center;
|
|
28
|
-
font-size: 0.5rem;
|
|
29
|
-
}
|
|
30
22
|
.icon-caution {
|
|
31
23
|
margin-right: 5px;
|
|
32
24
|
margin-bottom: 2px;
|
|
@@ -172,7 +164,6 @@
|
|
|
172
164
|
margin-right: 0.5rem;
|
|
173
165
|
}
|
|
174
166
|
|
|
175
|
-
|
|
176
167
|
.saooti-stitcher-logo,
|
|
177
168
|
.saooti-google-podcasts,
|
|
178
169
|
.saooti-amazon,
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
class="dropdown btn-group"
|
|
20
20
|
>
|
|
21
21
|
<button
|
|
22
|
-
class="btn dropdown-toggle
|
|
22
|
+
class="btn dropdown-toggle admin-button dropdown-toggle-no-caret saooti-plus"
|
|
23
23
|
data-bs-toggle="dropdown"
|
|
24
24
|
aria-expanded="false"
|
|
25
25
|
:title="$t('See more')"
|
|
@@ -163,6 +163,7 @@ export default defineComponent({
|
|
|
163
163
|
})
|
|
164
164
|
</script>
|
|
165
165
|
<style lang="scss">
|
|
166
|
+
@import '../../../sass/_variables.scss';
|
|
166
167
|
.category-list-container {
|
|
167
168
|
display: inline-flex;
|
|
168
169
|
justify-content: flex-start;
|
|
@@ -184,20 +185,8 @@ export default defineComponent({
|
|
|
184
185
|
justify-content: center;
|
|
185
186
|
white-space: nowrap;
|
|
186
187
|
flex-shrink: 0;
|
|
187
|
-
.router-link-active {
|
|
188
|
-
background:
|
|
188
|
+
.router-link-active,&:hover {
|
|
189
|
+
background: $octopus-secondary-color !important;
|
|
189
190
|
}
|
|
190
|
-
&:hover {
|
|
191
|
-
background: #ddd !important;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.category-list .category-item-plus {
|
|
196
|
-
display: flex;
|
|
197
|
-
height: 1.5rem;
|
|
198
|
-
width: 1.5rem;
|
|
199
|
-
align-items: center;
|
|
200
|
-
justify-content: center;
|
|
201
|
-
font-size: 0.5rem;
|
|
202
191
|
}
|
|
203
192
|
</style>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<div class="d-flex align-items-center mt-1">
|
|
39
39
|
<button
|
|
40
40
|
v-if="null === comment.commentIdReferer && 'Valid'=== comment.status"
|
|
41
|
-
class="btn
|
|
41
|
+
class="btn py-1 px-3 me-2"
|
|
42
42
|
:data-selenium="'answer-button-comment-' + seleniumFormat(comment.name)"
|
|
43
43
|
@click="answerComment"
|
|
44
44
|
>
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
(!isFlat && comment.relatedComments) ||
|
|
50
50
|
(isFlat && comment.commentIdReferer)
|
|
51
51
|
"
|
|
52
|
-
class="d-flex align-items-center small-text primary-
|
|
52
|
+
class="d-flex align-items-center small-text primary-darker c-hand"
|
|
53
53
|
@click="collapseVisible=!collapseVisible"
|
|
54
54
|
>
|
|
55
55
|
<div v-if="comment.relatedComments">
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="d-flex">
|
|
3
3
|
<button
|
|
4
|
-
class="btn admin-button
|
|
4
|
+
class="btn admin-button me-1"
|
|
5
5
|
title="edit"
|
|
6
6
|
@click="editComment"
|
|
7
7
|
>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</button>
|
|
13
13
|
<button
|
|
14
14
|
v-if="'Pending' === comment.status || 'Invalid' === comment.status"
|
|
15
|
-
class="btn admin-button
|
|
15
|
+
class="btn admin-button me-1"
|
|
16
16
|
title="valid"
|
|
17
17
|
@click="commentModal('Valid')"
|
|
18
18
|
>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
</button>
|
|
24
24
|
<button
|
|
25
25
|
v-if="'Pending' === comment.status || 'Valid' === comment.status"
|
|
26
|
-
class="btn admin-button
|
|
26
|
+
class="btn admin-button me-1"
|
|
27
27
|
title="invalid"
|
|
28
28
|
@click="commentModal('Invalid')"
|
|
29
29
|
>
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
</button>
|
|
35
35
|
<button
|
|
36
36
|
v-if="organisation"
|
|
37
|
-
class="btn admin-button
|
|
37
|
+
class="btn admin-button me-1"
|
|
38
38
|
:title="$t('See more')"
|
|
39
39
|
@click="seeMore = true"
|
|
40
40
|
>
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
/>
|
|
45
45
|
</button>
|
|
46
46
|
<button
|
|
47
|
-
class="btn admin-button
|
|
47
|
+
class="btn admin-button me-1"
|
|
48
48
|
title="delete"
|
|
49
49
|
@click="commentModal('Delete')"
|
|
50
50
|
>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
>
|
|
7
7
|
<div class="hide-phone">
|
|
8
8
|
<button
|
|
9
|
-
class="btn
|
|
9
|
+
class="btn admin-button m-1"
|
|
10
10
|
:class="{ disabled: !previousAvailable }"
|
|
11
11
|
:title="$t('Display previous')"
|
|
12
12
|
@click="displayPrevious()"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div class="saooti-arrow-left2" />
|
|
15
15
|
</button>
|
|
16
16
|
<button
|
|
17
|
-
class="btn
|
|
17
|
+
class="btn admin-button m-1"
|
|
18
18
|
:class="{ disabled: !nextAvailable }"
|
|
19
19
|
:title="$t('Display next')"
|
|
20
20
|
@click="displayNext()"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
class="advanced-search-container"
|
|
16
16
|
>
|
|
17
17
|
<div class="d-flex flex-column">
|
|
18
|
-
<div class="primary-
|
|
18
|
+
<div class="primary-darker mb-2">
|
|
19
19
|
{{ $t('Filter') }}
|
|
20
20
|
</div>
|
|
21
21
|
<MonetizableFilter
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
</div>
|
|
112
112
|
</div>
|
|
113
113
|
<div class="d-flex flex-column">
|
|
114
|
-
<div class="primary-
|
|
114
|
+
<div class="primary-darker mb-2">
|
|
115
115
|
{{ $t('Sort') }}
|
|
116
116
|
</div>
|
|
117
117
|
<ClassicRadio
|
|
@@ -146,7 +146,7 @@ export default defineComponent({
|
|
|
146
146
|
|
|
147
147
|
.filter-speech-bubble {
|
|
148
148
|
position: absolute;
|
|
149
|
-
background: $octopus-primary-
|
|
149
|
+
background: $octopus-primary-dark;
|
|
150
150
|
border-radius: 0.4em;
|
|
151
151
|
width: 10rem;
|
|
152
152
|
right: 4rem;
|
|
@@ -165,7 +165,7 @@ export default defineComponent({
|
|
|
165
165
|
width: 0;
|
|
166
166
|
height: 0;
|
|
167
167
|
border: 18px solid transparent;
|
|
168
|
-
border-left-color: $octopus-primary-
|
|
168
|
+
border-left-color: $octopus-primary-dark;
|
|
169
169
|
border-right: 0;
|
|
170
170
|
border-bottom: 0;
|
|
171
171
|
margin-top: -9px;
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
}"
|
|
60
60
|
class="text-dark"
|
|
61
61
|
>
|
|
62
|
-
<div class="emission-producer primary-
|
|
62
|
+
<div class="emission-producer primary-darker">
|
|
63
63
|
© {{ playlist.organisation.name }}
|
|
64
64
|
</div>
|
|
65
65
|
</router-link>
|
|
@@ -137,6 +137,4 @@ export default defineComponent({
|
|
|
137
137
|
},
|
|
138
138
|
methods: {},
|
|
139
139
|
})
|
|
140
|
-
</script>
|
|
141
|
-
|
|
142
|
-
<style lang="scss"></style>
|
|
140
|
+
</script>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
class="hide-phone"
|
|
27
27
|
>
|
|
28
28
|
<button
|
|
29
|
-
class="btn
|
|
29
|
+
class="btn admin-button m-1"
|
|
30
30
|
:class="{ disabled: !previousAvailable }"
|
|
31
31
|
:title="$t('Display previous')"
|
|
32
32
|
@click="displayPrevious()"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<div class="saooti-arrow-left2" />
|
|
35
35
|
</button>
|
|
36
36
|
<button
|
|
37
|
-
class="btn
|
|
37
|
+
class="btn admin-button m-1"
|
|
38
38
|
:class="{ disabled: !nextAvailable }"
|
|
39
39
|
:title="$t('Display next')"
|
|
40
40
|
@click="displayNext()"
|
|
@@ -279,6 +279,4 @@ export default defineComponent({
|
|
|
279
279
|
},
|
|
280
280
|
},
|
|
281
281
|
})
|
|
282
|
-
</script>
|
|
283
|
-
|
|
284
|
-
<style lang="scss"></style>
|
|
282
|
+
</script>
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
v-if="undefined !== tagList"
|
|
4
|
-
class="tag-list-component d-flex flex-wrap"
|
|
4
|
+
class="tag-list-component d-flex align-items-center flex-wrap"
|
|
5
5
|
>
|
|
6
|
+
<div class="fw-bold">{{ $t('Podcast tags') + ": "}}</div>
|
|
6
7
|
<div
|
|
7
8
|
v-for="(tag, index) in tagList"
|
|
8
9
|
:key="tag"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
class="dropdown btn-group"
|
|
32
32
|
>
|
|
33
33
|
<button
|
|
34
|
-
class="btn dropdown-toggle
|
|
34
|
+
class="btn dropdown-toggle admin-button dropdown-toggle-no-caret saooti-plus"
|
|
35
35
|
data-bs-toggle="dropdown"
|
|
36
36
|
aria-expanded="false"
|
|
37
37
|
:title="$t('See more')"
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<h3>{{ $t('Distribute') }}</h3>
|
|
4
4
|
<p class="sharing-distribution-container">
|
|
5
5
|
{{ $t('Rss feed:') }}
|
|
6
|
-
<span class="primary-
|
|
6
|
+
<span class="primary-darker hide-small-screen text-break">{{ rss }}</span>
|
|
7
7
|
<input
|
|
8
8
|
type="button"
|
|
9
9
|
:value="$t('Copy')"
|
|
@@ -192,10 +192,5 @@ export default defineComponent({
|
|
|
192
192
|
flex-wrap: wrap;
|
|
193
193
|
margin: 0.2rem 0.5rem;
|
|
194
194
|
}
|
|
195
|
-
@media (max-width: 450px) {
|
|
196
|
-
.primary-color {
|
|
197
|
-
display: none;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
195
|
}
|
|
201
196
|
</style>
|
|
@@ -366,7 +366,7 @@ export default defineComponent({
|
|
|
366
366
|
@import '../../../sass/_variables.scss';
|
|
367
367
|
.sticker {
|
|
368
368
|
align-self: center;
|
|
369
|
-
background:
|
|
369
|
+
background: $primaryColorMoreTransparent;
|
|
370
370
|
padding: 0.5rem;
|
|
371
371
|
transition: all 0.5s ease;
|
|
372
372
|
color: #41403e;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="module-box flex-grow-0">
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
</h3>
|
|
7
|
-
</div>
|
|
3
|
+
<h3 class="mb-3">
|
|
4
|
+
{{ $t('Subscribe emission') }}
|
|
5
|
+
</h3>
|
|
8
6
|
<div class="d-flex flex-wrap">
|
|
9
7
|
<a
|
|
10
8
|
v-if="amazon"
|
|
@@ -60,23 +60,25 @@ export default defineComponent({
|
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
</script>
|
|
63
|
-
<style lang="scss"
|
|
64
|
-
.champs-searchPage
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
.saooti-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
63
|
+
<style lang="scss">
|
|
64
|
+
.champs-searchPage{
|
|
65
|
+
input {
|
|
66
|
+
border: 2px solid #dee2e6;
|
|
67
|
+
border-radius: 10px;
|
|
68
|
+
margin: 0 !important;
|
|
69
|
+
}
|
|
70
|
+
.saooti-search-bounty,
|
|
71
|
+
.saooti-cross {
|
|
72
|
+
font-size: 1rem;
|
|
73
|
+
}
|
|
74
|
+
.search-icon-container {
|
|
75
|
+
position: absolute;
|
|
76
|
+
top: 0;
|
|
77
|
+
bottom: 0;
|
|
78
|
+
right: 0;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
margin: 1rem;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
82
84
|
</style>
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
</div>
|
|
102
102
|
<div class="d-flex flex-column">
|
|
103
103
|
<div class="hosted-by">
|
|
104
|
-
<span>{{ $t('Hosted by') }}</span><span class="ms-1 me-1 primary-
|
|
104
|
+
<span>{{ $t('Hosted by') }}</span><span class="ms-1 me-1 primary-darker">Saooti</span>
|
|
105
105
|
</div>
|
|
106
106
|
<div class="d-flex justify-content-end flex-nowrap">
|
|
107
107
|
<HomeDropdown :is-education="isEducation" />
|
package/src/locale/en.ts
CHANGED
package/src/locale/fr.ts
CHANGED
package/src/sass/_variables.scss
CHANGED
|
@@ -5,7 +5,7 @@ $body-bg: #f8fafc;
|
|
|
5
5
|
$font-family-sans-serif: 'Roboto', sans-serif;
|
|
6
6
|
$font-size-base: 0.9rem;
|
|
7
7
|
$line-height-base: 1.6;
|
|
8
|
-
$primary: #
|
|
8
|
+
$primary: #32815C;
|
|
9
9
|
|
|
10
10
|
// Colors
|
|
11
11
|
$blue: #3490dc;
|
|
@@ -20,13 +20,16 @@ $teal: #4dc0b5;
|
|
|
20
20
|
$cyan: #6cb2eb;
|
|
21
21
|
|
|
22
22
|
//Octopus style
|
|
23
|
-
$octopus-background: #
|
|
24
|
-
$octopus-secondary-background: #fafafa;
|
|
23
|
+
$octopus-background: #fafafa;
|
|
25
24
|
$octopus-primary-color: #40a372;
|
|
26
25
|
$octopus-secondary-color : #ddd;
|
|
27
|
-
$octopus-
|
|
28
|
-
$octopus-third-color:
|
|
29
|
-
$octopus-primary-dark : #
|
|
30
|
-
$primaryColorReallyTransparent : #
|
|
26
|
+
$octopus-primary-linear-background: #7fd8ab;
|
|
27
|
+
$octopus-third-color: #fdff7b;
|
|
28
|
+
$octopus-primary-dark : #32815C;
|
|
29
|
+
$primaryColorReallyTransparent : #05050593;
|
|
30
|
+
|
|
31
|
+
$primaryColorTransparent : #40a37193;
|
|
32
|
+
$primaryColorMoreTransparent : #40a37154;
|
|
33
|
+
$primaryColorReallyTransparent : #cef7e250;
|
|
31
34
|
|
|
32
35
|
|