@saooti/octopus-sdk 30.0.20 → 30.0.24
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 +5 -1
- package/package.json +2 -2
- package/src/assets/bootstrap-diff.scss +32 -84
- 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 +5 -4
- package/src/components/display/categories/CategoryList.vue +5 -16
- 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/emission/EmissionList.vue +5 -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 +2 -4
- package/src/components/display/filter/ProductorSearch.vue +3 -3
- 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 +6 -5
- 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 +6 -5
- package/src/components/display/playlist/PodcastList.vue +5 -2
- 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 +5 -7
- package/src/components/display/podcasts/PodcastList.vue +6 -5
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -3
- package/src/components/display/podcasts/TagList.vue +5 -2
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -3
- package/src/components/display/rubriques/RubriqueList.vue +3 -3
- 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/HomeDropdown.vue +74 -115
- package/src/components/misc/PlayerButtons.vue +1 -4
- package/src/components/misc/TopBar.vue +2 -2
- package/src/components/misc/modal/MessageModal.vue +2 -4
- package/src/components/misc/modal/QrCodeModal.vue +1 -3
- package/src/components/pages/Emission.vue +2 -6
- package/src/components/pages/Playlists.vue +1 -1
- package/src/components/pages/Rubrique.vue +1 -3
- package/src/locale/en.ts +2 -0
- package/src/locale/fr.ts +2 -0
- package/src/sass/_variables.scss +10 -7
- package/src/store/AppStore.ts +0 -3
- package/src/store/typeAppStore.ts +0 -1
package/README.md
CHANGED
|
@@ -517,4 +517,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
517
517
|
* 30.0.17 Oups
|
|
518
518
|
* 30.0.18 Responsive select
|
|
519
519
|
* 30.0.19 Mise à jour Api
|
|
520
|
-
* 30.0.20 Petit refacto commentaires
|
|
520
|
+
* 30.0.20 Petit refacto commentaires
|
|
521
|
+
* 30.0.21 #10701 & #10698
|
|
522
|
+
* 30.0.22 Accessibilité
|
|
523
|
+
* 30.0.23 Css + Accessibilité
|
|
524
|
+
* 30.0.24 Css + Accessibilité
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saooti/octopus-sdk",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.24",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript SDK for using octopus",
|
|
6
6
|
"author": "Saooti",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"vue-router": "^4.0.12",
|
|
40
40
|
"vue3-swatches": "^1.0.5",
|
|
41
41
|
"vuex": "^4.0.2",
|
|
42
|
-
"webpack": "^5.
|
|
42
|
+
"webpack": "^5.66.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/bootstrap": "^5.1.8",
|
|
@@ -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,56 +30,33 @@
|
|
|
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;
|
|
42
42
|
border: 0;
|
|
43
|
-
color:
|
|
43
|
+
color: black !important;
|
|
44
44
|
&:focus,
|
|
45
45
|
&:hover {
|
|
46
46
|
background:$octopus-third-color;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
&:active,
|
|
57
|
-
&.active {
|
|
58
|
-
background: darken($octopus-primary-color, 4%);
|
|
59
|
-
border-color: darken($octopus-primary-color, 7%);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
&.btn-light{
|
|
63
|
-
color: $octopus-primary-color;
|
|
64
|
-
background: transparent;
|
|
65
|
-
}
|
|
66
|
-
&.btn-auth{
|
|
67
|
-
&:focus,
|
|
68
|
-
&:hover {
|
|
69
|
-
background:$octopus-third-color;
|
|
70
|
-
background: -moz-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
71
|
-
background: -webkit-gradient(left top, right bottom, color-stop(0%, $octopus-third-color), color-stop(100%, $octopus-primary-color));
|
|
72
|
-
background: -webkit-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
73
|
-
background: -o-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
74
|
-
background: -ms-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
75
|
-
background: linear-gradient(135deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
76
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d91f', endColorstr='#4fcf91', GradientType=1 );
|
|
77
|
-
border: 0;
|
|
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;
|
|
78
55
|
}
|
|
79
56
|
&:active,
|
|
80
57
|
&.active {
|
|
81
|
-
|
|
82
|
-
|
|
58
|
+
background: darken($octopus-primary-linear-background, 4%);
|
|
59
|
+
border-color: darken($octopus-primary-linear-background, 7%);
|
|
83
60
|
}
|
|
84
61
|
}
|
|
85
62
|
//Button disable halo after click
|
|
@@ -98,8 +75,12 @@
|
|
|
98
75
|
}
|
|
99
76
|
|
|
100
77
|
&.btn-link {
|
|
101
|
-
|
|
102
|
-
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
background: $octopus-primary-dark;
|
|
82
|
+
border: 2px solid $octopus-primary-dark;
|
|
83
|
+
color: white;
|
|
103
84
|
font-weight: bold;
|
|
104
85
|
margin: 2rem;
|
|
105
86
|
width: fit-content;
|
|
@@ -108,39 +89,16 @@
|
|
|
108
89
|
&:hover,
|
|
109
90
|
&:active,
|
|
110
91
|
&.active {
|
|
111
|
-
|
|
112
|
-
|
|
92
|
+
background: transparent;
|
|
93
|
+
color: $octopus-primary-dark;
|
|
113
94
|
}
|
|
114
95
|
@media (max-width: 500px){
|
|
115
96
|
margin: 0.3rem;
|
|
116
97
|
}
|
|
117
98
|
}
|
|
118
|
-
|
|
119
|
-
&.btn-link-plus {
|
|
120
|
-
padding: 8px 16px;
|
|
121
|
-
font-size: 0.8rem;
|
|
122
|
-
border-radius: 50px;
|
|
123
|
-
background-color: #ddd;
|
|
124
|
-
color: #000;
|
|
125
|
-
box-shadow: none;
|
|
126
|
-
display: flex;
|
|
127
|
-
border: 1px solid transparent;
|
|
128
|
-
.saooti-plus{
|
|
129
|
-
line-height: 1.5 !important;
|
|
130
|
-
margin-left: 5px;
|
|
131
|
-
}
|
|
132
|
-
&:focus,
|
|
133
|
-
&:hover,
|
|
134
|
-
&:active,
|
|
135
|
-
&.active {
|
|
136
|
-
background: $octopus-primary-color;
|
|
137
|
-
color: white;
|
|
138
|
-
border: 1px solid $octopus-primary-color;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
99
|
+
|
|
142
100
|
&.btn-more{
|
|
143
|
-
background: $octopus-primary-
|
|
101
|
+
background: $octopus-primary-dark;
|
|
144
102
|
color: $octopus-background;
|
|
145
103
|
width: 2rem;
|
|
146
104
|
height: 2rem;
|
|
@@ -163,8 +121,7 @@
|
|
|
163
121
|
height: 5rem;
|
|
164
122
|
}
|
|
165
123
|
|
|
166
|
-
&.admin-button
|
|
167
|
-
&.btn-arrow {
|
|
124
|
+
&.admin-button{
|
|
168
125
|
padding: 0.3rem;
|
|
169
126
|
height: 1.8rem;
|
|
170
127
|
width: 1.8rem;
|
|
@@ -172,13 +129,7 @@
|
|
|
172
129
|
display: inline-flex;
|
|
173
130
|
align-items: center;
|
|
174
131
|
justify-content: center;
|
|
175
|
-
|
|
176
|
-
&.btn-arrow {
|
|
177
|
-
margin: 0.2rem;
|
|
178
|
-
background: $octopus-secondary-color;
|
|
179
|
-
&:hover {
|
|
180
|
-
background: $octopus-secondary-color;
|
|
181
|
-
}
|
|
132
|
+
color : $octopus-primary-dark;
|
|
182
133
|
}
|
|
183
134
|
|
|
184
135
|
}
|
|
@@ -191,6 +142,7 @@
|
|
|
191
142
|
display: inline-flex;
|
|
192
143
|
align-items: center;
|
|
193
144
|
justify-content: center;
|
|
145
|
+
color : $octopus-primary-dark;
|
|
194
146
|
}
|
|
195
147
|
|
|
196
148
|
.btn-rss {
|
|
@@ -229,13 +181,9 @@
|
|
|
229
181
|
}
|
|
230
182
|
}
|
|
231
183
|
|
|
232
|
-
.custom-control-label {
|
|
233
|
-
//border: 1px solid #ddd;
|
|
234
|
-
border-radius: 5px;
|
|
235
|
-
}
|
|
236
184
|
.dropdown-toggle-no-caret::after{
|
|
237
185
|
display: none;
|
|
238
|
-
|
|
186
|
+
}
|
|
239
187
|
.dropdown-menu {
|
|
240
188
|
padding: 0.5rem;
|
|
241
189
|
}
|
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,
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
v-if="isDisplay"
|
|
4
|
+
class="mt-3"
|
|
5
|
+
>
|
|
3
6
|
<nav
|
|
4
7
|
v-if="categoryFilter || rubriqueFilter.length"
|
|
5
8
|
title="breadcrumb"
|
|
@@ -142,6 +145,4 @@ export default defineComponent({
|
|
|
142
145
|
}
|
|
143
146
|
}
|
|
144
147
|
})
|
|
145
|
-
</script>
|
|
146
|
-
|
|
147
|
-
<style lang="scss"></style>
|
|
148
|
+
</script>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
v-for="category in categories"
|
|
9
9
|
:id="'category' + category.id"
|
|
10
10
|
:key="category.id"
|
|
11
|
-
class="category-item text-dark
|
|
11
|
+
class="category-item text-dark bg-white"
|
|
12
12
|
@click="checkIfFilter(category)"
|
|
13
13
|
>
|
|
14
14
|
{{ category.name }}
|
|
@@ -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()"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<button
|
|
42
42
|
v-show="!allFetched"
|
|
43
43
|
class="btn"
|
|
44
|
-
:class="buttonPlus ? 'btn-link
|
|
44
|
+
:class="buttonPlus ? 'btn-link' : 'btn-more'"
|
|
45
45
|
:disabled="loading"
|
|
46
46
|
:title="$t('See more')"
|
|
47
47
|
@click="fetchContent(false)"
|
|
@@ -49,7 +49,10 @@
|
|
|
49
49
|
<template v-if="buttonPlus">
|
|
50
50
|
{{ $t('See more') }}
|
|
51
51
|
</template>
|
|
52
|
-
<div
|
|
52
|
+
<div
|
|
53
|
+
:class="buttonPlus?'ms-1':''"
|
|
54
|
+
class="saooti-plus"
|
|
55
|
+
/>
|
|
53
56
|
</button>
|
|
54
57
|
</template>
|
|
55
58
|
</div>
|
|
@@ -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
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<select
|
|
8
8
|
ref="select"
|
|
9
9
|
v-model="monetization"
|
|
10
|
-
class="ms-2 mb-0 c-hand"
|
|
10
|
+
class="ms-2 mb-0 pe-4 c-hand"
|
|
11
11
|
@change="onChange"
|
|
12
12
|
>
|
|
13
13
|
<option
|
|
@@ -48,6 +48,4 @@ export default defineComponent({
|
|
|
48
48
|
},
|
|
49
49
|
},
|
|
50
50
|
})
|
|
51
|
-
</script>
|
|
52
|
-
|
|
53
|
-
<style lang="scss"></style>
|
|
51
|
+
</script>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="d-flex align-items-center">
|
|
2
|
+
<div class="d-flex align-items-center my-3">
|
|
3
3
|
<div
|
|
4
4
|
v-if="!isPodcastmaker && !filterOrga"
|
|
5
5
|
class="filter-organisation-chooser"
|
|
@@ -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;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<button
|
|
17
17
|
v-show="!allFetched"
|
|
18
18
|
class="btn"
|
|
19
|
-
:class="buttonPlus ? 'btn-link
|
|
19
|
+
:class="buttonPlus ? 'btn-link mt-3' : 'btn-more'"
|
|
20
20
|
:disabled="inFetching"
|
|
21
21
|
:title="$t('See more')"
|
|
22
22
|
@click="displayMore"
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
<template v-if="buttonPlus">
|
|
25
25
|
{{ $t('See more') }}
|
|
26
26
|
</template>
|
|
27
|
-
<div
|
|
27
|
+
<div
|
|
28
|
+
:class="buttonPlus?'ms-1':''"
|
|
29
|
+
class="saooti-plus"
|
|
30
|
+
/>
|
|
28
31
|
</button>
|
|
29
32
|
</div>
|
|
30
33
|
</template>
|
|
@@ -111,6 +114,4 @@ export default defineComponent({
|
|
|
111
114
|
},
|
|
112
115
|
},
|
|
113
116
|
})
|
|
114
|
-
</script>
|
|
115
|
-
|
|
116
|
-
<style lang="scss"></style>
|
|
117
|
+
</script>
|