@saooti/octopus-sdk 30.0.23 → 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 CHANGED
@@ -520,4 +520,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
520
520
  * 30.0.20 Petit refacto commentaires
521
521
  * 30.0.21 #10701 & #10698
522
522
  * 30.0.22 Accessibilité
523
- * 30.0.23 Css + 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.23",
3
+ "version": "30.0.24",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -129,6 +129,7 @@
129
129
  display: inline-flex;
130
130
  align-items: center;
131
131
  justify-content: center;
132
+ color : $octopus-primary-dark;
132
133
  }
133
134
 
134
135
  }
@@ -141,6 +142,7 @@
141
142
  display: inline-flex;
142
143
  align-items: center;
143
144
  justify-content: center;
145
+ color : $octopus-primary-dark;
144
146
  }
145
147
 
146
148
  .btn-rss {
@@ -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 secondary-bg"
11
+ class="category-item text-dark bg-white"
12
12
  @click="checkIfFilter(category)"
13
13
  >
14
14
  {{ category.name }}
@@ -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
@@ -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"
@@ -1,9 +1,11 @@
1
1
  <template>
2
2
  <div
3
- v-if="undefined !== tagList"
3
+ v-if="undefined !== tagList && 0!==tagList.length"
4
4
  class="tag-list-component d-flex align-items-center flex-wrap"
5
5
  >
6
- <div class="fw-bold">{{ $t('Podcast tags') + ": "}}</div>
6
+ <div class="fw-bold">
7
+ {{ $t('Podcast tags') + ": " }}
8
+ </div>
7
9
  <div
8
10
  v-for="(tag, index) in tagList"
9
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 }}
@@ -205,7 +205,7 @@ export default defineComponent({
205
205
  white-space: nowrap;
206
206
  flex-shrink: 0;
207
207
  &:hover {
208
- background: #ddd !important;
208
+ background: #eee !important;
209
209
  }
210
210
  }
211
211
  </style>
@@ -4,7 +4,7 @@
4
4
  <router-link
5
5
  v-if="editRight && !isPodcastmaker"
6
6
  to="/main/priv/edit/playlist"
7
- class="d-flex justify-content-center"
7
+ class="d-flex justify-content-center my-3"
8
8
  >
9
9
  <button class="btn btn-primary">
10
10
  {{ $t('Create playlist') }}