@saooti/octopus-sdk 36.0.35 → 36.0.36
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 +1 -1
- package/src/assets/bootstrap.scss +1 -1
- package/src/assets/form.scss +1 -0
- package/src/components/display/categories/CategoryFilter.vue +1 -1
- package/src/components/display/filter/DateFilter.vue +2 -4
- package/src/components/display/filter/RubriqueFilter.vue +1 -1
- package/src/components/display/podcasts/PodcastImage.vue +3 -3
- package/src/components/form/ClassicMultiselect.vue +3 -0
- package/src/components/form/ClassicRadio.vue +1 -1
- package/src/components/misc/Popover.vue +2 -2
- package/src/components/misc/player/PlayerLarge.vue +2 -0
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
|
@@ -14,9 +14,8 @@
|
|
|
14
14
|
:label="$t('From the :')"
|
|
15
15
|
/>
|
|
16
16
|
<ClassicDatePicker
|
|
17
|
-
class="ps-3 pe-3"
|
|
18
17
|
:date="fromDate"
|
|
19
|
-
template-class="px-2 py-1 border rounded focus:border-blue-300"
|
|
18
|
+
template-class="mx-2 px-2 py-1 border rounded focus:border-blue-300"
|
|
20
19
|
@updateDate="fromDate=$event;updateFromDate"
|
|
21
20
|
/>
|
|
22
21
|
</div>
|
|
@@ -28,9 +27,8 @@
|
|
|
28
27
|
:label="$t('To the :')"
|
|
29
28
|
/>
|
|
30
29
|
<ClassicDatePicker
|
|
31
|
-
class="ps-3"
|
|
32
30
|
:date="toDate"
|
|
33
|
-
template-class="px-2 py-1 border rounded focus:border-blue-300"
|
|
31
|
+
template-class="ms-2 px-2 py-1 border rounded focus:border-blue-300"
|
|
34
32
|
@updateDate="toDate=$event;updateToDate"
|
|
35
33
|
/>
|
|
36
34
|
</div>
|
|
@@ -318,10 +318,10 @@ export default defineComponent({
|
|
|
318
318
|
.image-play-button .play-button-error-icon {
|
|
319
319
|
background: #0000009d !important;
|
|
320
320
|
cursor: default !important;
|
|
321
|
-
align-self: center;
|
|
322
|
-
margin-bottom: calc(50% - 1rem);
|
|
321
|
+
/* align-self: center;
|
|
322
|
+
margin-bottom: calc(50% - 1rem); */
|
|
323
323
|
.big-icon-error {
|
|
324
|
-
font-size:
|
|
324
|
+
font-size: 1.5rem;
|
|
325
325
|
position: relative;
|
|
326
326
|
}
|
|
327
327
|
}
|
|
@@ -167,9 +167,9 @@ export default defineComponent({
|
|
|
167
167
|
z-index: 9999;
|
|
168
168
|
&.octopus-dropdown{
|
|
169
169
|
min-width: 200px;
|
|
170
|
-
padding: 0.5rem 1rem;
|
|
171
170
|
.octopus-dropdown-item{
|
|
172
|
-
display:
|
|
171
|
+
display: flex;
|
|
172
|
+
justify-content: center;
|
|
173
173
|
color: rgb(29, 29, 29);
|
|
174
174
|
width: 100%;
|
|
175
175
|
padding: 0.25rem 1rem;
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
</div>
|
|
60
60
|
<div class="d-flex align-items-center flex-grow-1">
|
|
61
61
|
<button
|
|
62
|
+
title="-15''"
|
|
62
63
|
class="btn fs-1 bg-transparent text-light saooti-backward"
|
|
63
64
|
@click="seekClick(-15)"
|
|
64
65
|
/>
|
|
@@ -78,6 +79,7 @@
|
|
|
78
79
|
/>
|
|
79
80
|
</button>
|
|
80
81
|
<button
|
|
82
|
+
title="+15''"
|
|
81
83
|
class="btn fs-1 bg-transparent text-light saooti-forward"
|
|
82
84
|
@click="seekClick(15)"
|
|
83
85
|
/>
|