@saooti/octopus-sdk 30.0.21 → 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 +5 -1
- package/package.json +1 -1
- package/src/assets/bootstrap-diff.scss +32 -85
- 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/CommentInput.vue +3 -3
- package/src/components/display/comments/CommentItem.vue +3 -3
- package/src/components/display/comments/CommentList.vue +1 -1
- 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 +3 -3
- 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 -8
- 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 +2 -7
- package/src/components/display/sharing/SharePlayer.vue +5 -2
- 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/ClipboardModal.vue +1 -1
- package/src/components/misc/modal/MessageModal.vue +4 -6
- package/src/components/misc/modal/NewsletterModal.vue +1 -1
- package/src/components/misc/modal/QrCodeModal.vue +2 -4
- package/src/components/misc/modal/ShareModalPlayer.vue +1 -1
- package/src/components/pages/Playlists.vue +1 -1
- 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
|
@@ -518,4 +518,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
518
518
|
* 30.0.18 Responsive select
|
|
519
519
|
* 30.0.19 Mise à jour Api
|
|
520
520
|
* 30.0.20 Petit refacto commentaires
|
|
521
|
-
* 30.0.21 #10701 & #10698
|
|
521
|
+
* 30.0.21 #10701 & #10698
|
|
522
|
+
* 30.0.22 Accessibilité
|
|
523
|
+
* 30.0.23 Css + Accessibilité
|
|
524
|
+
* 30.0.24 Css + Accessibilité
|
|
525
|
+
* 30.0.25 Css + Accessibilité
|
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,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,49 +75,29 @@
|
|
|
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
|
-
margin: 2rem;
|
|
105
85
|
width: fit-content;
|
|
106
86
|
align-self: center;
|
|
107
87
|
&:focus,
|
|
108
88
|
&:hover,
|
|
109
89
|
&:active,
|
|
110
90
|
&.active {
|
|
111
|
-
|
|
112
|
-
|
|
91
|
+
background: transparent;
|
|
92
|
+
color: $octopus-primary-dark;
|
|
113
93
|
}
|
|
114
94
|
@media (max-width: 500px){
|
|
115
95
|
margin: 0.3rem;
|
|
116
96
|
}
|
|
117
97
|
}
|
|
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
|
-
|
|
98
|
+
|
|
142
99
|
&.btn-more{
|
|
143
|
-
background: $octopus-primary-
|
|
100
|
+
background: $octopus-primary-dark;
|
|
144
101
|
color: $octopus-background;
|
|
145
102
|
width: 2rem;
|
|
146
103
|
height: 2rem;
|
|
@@ -163,8 +120,7 @@
|
|
|
163
120
|
height: 5rem;
|
|
164
121
|
}
|
|
165
122
|
|
|
166
|
-
&.admin-button
|
|
167
|
-
&.btn-arrow {
|
|
123
|
+
&.admin-button{
|
|
168
124
|
padding: 0.3rem;
|
|
169
125
|
height: 1.8rem;
|
|
170
126
|
width: 1.8rem;
|
|
@@ -172,13 +128,7 @@
|
|
|
172
128
|
display: inline-flex;
|
|
173
129
|
align-items: center;
|
|
174
130
|
justify-content: center;
|
|
175
|
-
|
|
176
|
-
&.btn-arrow {
|
|
177
|
-
margin: 0.2rem;
|
|
178
|
-
background: $octopus-secondary-color;
|
|
179
|
-
&:hover {
|
|
180
|
-
background: $octopus-secondary-color;
|
|
181
|
-
}
|
|
131
|
+
color : $octopus-primary-dark;
|
|
182
132
|
}
|
|
183
133
|
|
|
184
134
|
}
|
|
@@ -191,6 +141,7 @@
|
|
|
191
141
|
display: inline-flex;
|
|
192
142
|
align-items: center;
|
|
193
143
|
justify-content: center;
|
|
144
|
+
color : $octopus-primary-dark;
|
|
194
145
|
}
|
|
195
146
|
|
|
196
147
|
.btn-rss {
|
|
@@ -229,13 +180,9 @@
|
|
|
229
180
|
}
|
|
230
181
|
}
|
|
231
182
|
|
|
232
|
-
.custom-control-label {
|
|
233
|
-
//border: 1px solid #ddd;
|
|
234
|
-
border-radius: 5px;
|
|
235
|
-
}
|
|
236
183
|
.dropdown-toggle-no-caret::after{
|
|
237
184
|
display: none;
|
|
238
|
-
|
|
185
|
+
}
|
|
239
186
|
.dropdown-menu {
|
|
240
187
|
padding: 0.5rem;
|
|
241
188
|
}
|
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>
|
|
@@ -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;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
{{ $t('Cancel') }}
|
|
28
28
|
</button>
|
|
29
29
|
<button
|
|
30
|
-
class="btn btn-
|
|
30
|
+
class="btn btn-link m-1"
|
|
31
31
|
:disabled="0 === temporaryContent.length || temporaryName.length < 2"
|
|
32
32
|
@click="validEdit"
|
|
33
33
|
>
|
|
@@ -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">
|
|
@@ -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')"
|
|
@@ -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()"
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<router-link
|
|
58
58
|
v-if="!overflowScroll"
|
|
59
59
|
:to="href"
|
|
60
|
-
class="btn btn-link"
|
|
60
|
+
class="btn btn-link m-4"
|
|
61
61
|
>
|
|
62
62
|
{{
|
|
63
63
|
buttonText
|
|
@@ -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 m-4' : '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 m-4 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>
|
|
@@ -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>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<button
|
|
20
20
|
v-show="!allFetched && loaded"
|
|
21
21
|
class="btn"
|
|
22
|
-
:class="buttonPlus ? 'btn-link-
|
|
22
|
+
:class="buttonPlus ? 'btn-link m-4':'btn-more'"
|
|
23
23
|
:disabled="inFetching"
|
|
24
24
|
:title="$t('See more')"
|
|
25
25
|
@click="displayMore"
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
<template v-if="buttonPlus">
|
|
28
28
|
{{ $t('See more') }}
|
|
29
29
|
</template>
|
|
30
|
-
<div
|
|
30
|
+
<div
|
|
31
|
+
:class="buttonPlus?'ms-1':''"
|
|
32
|
+
class="saooti-plus"
|
|
33
|
+
/>
|
|
31
34
|
</button>
|
|
32
35
|
</div>
|
|
33
36
|
</template>
|
|
@@ -140,6 +143,4 @@ export default defineComponent({
|
|
|
140
143
|
},
|
|
141
144
|
},
|
|
142
145
|
})
|
|
143
|
-
</script>
|
|
144
|
-
|
|
145
|
-
<style lang="scss"></style>
|
|
146
|
+
</script>
|
|
@@ -40,14 +40,17 @@
|
|
|
40
40
|
<button
|
|
41
41
|
v-show="size < podcasts.length && loaded"
|
|
42
42
|
class="btn"
|
|
43
|
-
:class="buttonPlus ? 'btn-link-
|
|
43
|
+
:class="buttonPlus ? 'btn-link m-4':'btn-more'"
|
|
44
44
|
:title="$t('See more')"
|
|
45
45
|
@click="displayMore"
|
|
46
46
|
>
|
|
47
47
|
<template v-if="buttonPlus">
|
|
48
48
|
{{ $t('See more') }}
|
|
49
49
|
</template>
|
|
50
|
-
<div
|
|
50
|
+
<div
|
|
51
|
+
:class="buttonPlus?'ms-1':''"
|
|
52
|
+
class="saooti-plus"
|
|
53
|
+
/>
|
|
51
54
|
</button>
|
|
52
55
|
</div>
|
|
53
56
|
</template>
|
|
@@ -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()"
|
|
@@ -62,14 +62,13 @@
|
|
|
62
62
|
/>
|
|
63
63
|
</transition-group>
|
|
64
64
|
<router-link
|
|
65
|
-
class="btn btn-link"
|
|
66
|
-
:class="buttonPlus ? 'btn-link-plus' : ''"
|
|
65
|
+
class="btn btn-link m-4"
|
|
67
66
|
:to="refTo"
|
|
68
67
|
>
|
|
69
68
|
{{ buttonText }}
|
|
70
69
|
<div
|
|
71
70
|
v-if="buttonPlus"
|
|
72
|
-
class="saooti-plus"
|
|
71
|
+
class="ms-1 saooti-plus"
|
|
73
72
|
/>
|
|
74
73
|
</router-link>
|
|
75
74
|
</div>
|
|
@@ -279,6 +278,4 @@ export default defineComponent({
|
|
|
279
278
|
},
|
|
280
279
|
},
|
|
281
280
|
})
|
|
282
|
-
</script>
|
|
283
|
-
|
|
284
|
-
<style lang="scss"></style>
|
|
281
|
+
</script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<button
|
|
24
24
|
v-show="!allFetched && loaded"
|
|
25
25
|
class="btn"
|
|
26
|
-
:class="buttonPlus ? 'btn-link-
|
|
26
|
+
:class="buttonPlus ? 'btn-link m-4' : 'btn-more'"
|
|
27
27
|
:disabled="inFetching"
|
|
28
28
|
:title="$t('See more')"
|
|
29
29
|
@click="displayMore"
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
<template v-if="buttonPlus">
|
|
32
32
|
{{ $t('See more') }}
|
|
33
33
|
</template>
|
|
34
|
-
<div
|
|
34
|
+
<div
|
|
35
|
+
:class="buttonPlus?'ms-1':''"
|
|
36
|
+
class="saooti-plus"
|
|
37
|
+
/>
|
|
35
38
|
</button>
|
|
36
39
|
</div>
|
|
37
40
|
</template>
|
|
@@ -201,6 +204,4 @@ export default defineComponent({
|
|
|
201
204
|
},
|
|
202
205
|
},
|
|
203
206
|
})
|
|
204
|
-
</script>
|
|
205
|
-
|
|
206
|
-
<style lang="scss"></style>
|
|
207
|
+
</script>
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
v-if="undefined !== tagList"
|
|
4
|
-
class="tag-list-component d-flex flex-wrap"
|
|
3
|
+
v-if="undefined !== tagList && 0!==tagList.length"
|
|
4
|
+
class="tag-list-component d-flex align-items-center flex-wrap"
|
|
5
5
|
>
|
|
6
|
+
<div class="fw-bold">
|
|
7
|
+
{{ $t('Podcast tags') + ": " }}
|
|
8
|
+
</div>
|
|
6
9
|
<div
|
|
7
10
|
v-for="(tag, index) in tagList"
|
|
8
11
|
:key="tag"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
v-for="rubrique in rubriqueDisplay"
|
|
21
21
|
:id="'rubrique' + rubrique.rubriqueId"
|
|
22
22
|
:key="rubrique.rubriqueId"
|
|
23
|
-
class="rubrique-item"
|
|
23
|
+
class="rubrique-item bg-white"
|
|
24
24
|
@click="addFilter(rubrique)"
|
|
25
25
|
>
|
|
26
26
|
{{ rubrique.name }}
|
|
@@ -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')"
|
|
@@ -205,7 +205,7 @@ export default defineComponent({
|
|
|
205
205
|
white-space: nowrap;
|
|
206
206
|
flex-shrink: 0;
|
|
207
207
|
&:hover {
|
|
208
|
-
background: #
|
|
208
|
+
background: #eee !important;
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
</style>
|
|
@@ -3,11 +3,11 @@
|
|
|
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')"
|
|
10
|
-
class="btn btn-
|
|
10
|
+
class="btn btn-link"
|
|
11
11
|
:title="$t('Copy')"
|
|
12
12
|
@click="onCopyCode(rss, afterCopy)"
|
|
13
13
|
>
|
|
@@ -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,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 {
|
|
@@ -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" />
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
>
|
|
33
33
|
<button
|
|
34
34
|
v-if="canceltext"
|
|
35
|
-
class="btn
|
|
35
|
+
class="btn m-1"
|
|
36
36
|
@click="onCancel"
|
|
37
37
|
>
|
|
38
38
|
{{ canceltext }}
|
|
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 }}
|
|
@@ -86,6 +86,4 @@ export default defineComponent({
|
|
|
86
86
|
},
|
|
87
87
|
},
|
|
88
88
|
})
|
|
89
|
-
</script>
|
|
90
|
-
|
|
91
|
-
<style lang="scss"></style>
|
|
89
|
+
</script>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</div>
|
|
23
23
|
<div class="modal-footer">
|
|
24
24
|
<button
|
|
25
|
-
class="btn btn-
|
|
25
|
+
class="btn btn-link m-1"
|
|
26
26
|
@click="closePopup"
|
|
27
27
|
>
|
|
28
28
|
{{ $t('Close') }}
|
|
@@ -84,6 +84,4 @@ export default defineComponent({
|
|
|
84
84
|
},
|
|
85
85
|
}
|
|
86
86
|
})
|
|
87
|
-
</script>
|
|
88
|
-
|
|
89
|
-
<style lang="scss"></style>
|
|
87
|
+
</script>
|
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
|
|