@saooti/octopus-sdk 32.0.5 → 32.0.8

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.
Binary file
Binary file
@@ -1,10 +1,10 @@
1
1
  @font-face {
2
2
  font-family: 'icomoon';
3
- src: url('/css/fonts/icomoon.eot?vq1mf5');
4
- src: url('/css/fonts/icomoon.eot?vq1mf5#iefix') format('embedded-opentype'),
5
- url('/css/fonts/icomoon.ttf?vq1mf5') format('truetype'),
6
- url('/css/fonts/icomoon.woff?vq1mf5') format('woff'),
7
- url('/css/fonts/icomoon.svg?vq1mf5#icomoon') format('svg');
3
+ src: url('/css/fonts/icomoon.eot?8edpg2');
4
+ src: url('/css/fonts/icomoon.eot?8edpg2#iefix') format('embedded-opentype'),
5
+ url('/css/fonts/icomoon.ttf?8edpg2') format('truetype'),
6
+ url('/css/fonts/icomoon.woff?8edpg2') format('woff'),
7
+ url('/css/fonts/icomoon.svg?8edpg2#icomoon') format('svg');
8
8
  font-weight: normal;
9
9
  font-style: normal;
10
10
  font-display: block;
@@ -320,7 +320,7 @@
320
320
  content: "\e95f";
321
321
  color: rgb(244, 132, 45);
322
322
  }
323
- .saooti-podcast-addict:before {
323
+ .saooti-podcast-addict:after {
324
324
  content: "\e960";
325
325
  margin-left: -0.998046875em;
326
326
  color: rgb(255, 255, 255);
@@ -14,7 +14,7 @@
14
14
  transition: background .2s, border .2s, box-shadow .2s, color .2s;
15
15
  text-decoration: none !important;
16
16
  white-space: nowrap;
17
- border-width: 1px;
17
+ border-width: 0;
18
18
  @media (max-width: 960px) {
19
19
  white-space: normal;
20
20
  }
@@ -65,9 +65,11 @@
65
65
  margin: 0;
66
66
  background-color: #ccc;
67
67
  border-radius: 50%;
68
+ display: flex;
69
+ justify-content: center;
70
+ align-items: center;
68
71
  &:before{
69
- position: relative;
70
- top:2px;
72
+ font-size: 0.8rem;
71
73
  }
72
74
  @media (max-width: 450px) {
73
75
  top: 14px;
@@ -92,7 +92,7 @@
92
92
  </router-link>
93
93
  <PodcastPlayBar :podcast="p" />
94
94
  </div>
95
- <div
95
+ <button
96
96
  v-if="
97
97
  $store.state.player.podcast !== p ||
98
98
  ($store.state.player.podcast === p &&
@@ -105,8 +105,8 @@
105
105
  class="text-light saooti-play"
106
106
  :title="$t('Play')"
107
107
  />
108
- </div>
109
- <div
108
+ </button>
109
+ <button
110
110
  v-else
111
111
  class="play-button-box bg-secondary"
112
112
  @click="pause(p)"
@@ -115,7 +115,7 @@
115
115
  class="text-light saooti-pause"
116
116
  :title="$t('Pause')"
117
117
  />
118
- </div>
118
+ </button>
119
119
  </div>
120
120
  </div>
121
121
  <div
@@ -6,7 +6,7 @@
6
6
  >
7
7
  <div>{{ $t('Advanced filters') }}</div>
8
8
  <div
9
- class="h3 saooti-down m-0"
9
+ class="h3 saooti-down mx-1"
10
10
  :class="{ 'arrow-transform': showFilters }"
11
11
  />
12
12
  </button>
@@ -18,11 +18,13 @@
18
18
  :class="{
19
19
  'saooti-play': isPaused,
20
20
  'saooti-pause': isPlaying,
21
- 'spinner-border':!isPaused&&!isPlaying
21
+ '':!isPaused&&!isPlaying
22
22
  }"
23
23
  class="btn play-button-box text-light primary-bg"
24
24
  @click="switchPausePlay"
25
- />
25
+ >
26
+ <span v-if="!isPaused&&!isPlaying" class="spinner-border flex-shrink-0"></span>
27
+ </button>
26
28
  <div class="text-light player-grow-content">
27
29
  <div class="d-flex mb-1">
28
30
  <div
@@ -57,11 +57,13 @@
57
57
  :class="{
58
58
  'saooti-play': isPaused,
59
59
  'saooti-pause': isPlaying,
60
- 'spinner-border':!isPaused&&!isPlaying
60
+ '':!isPaused&&!isPlaying
61
61
  }"
62
62
  class="btn play-big-button-box text-light primary-bg"
63
63
  @click="switchPausePlay"
64
- />
64
+ >
65
+ <span v-if="!isPaused&&!isPlaying" class="spinner-border flex-shrink-0"></span>
66
+ </button>
65
67
  <button
66
68
  class="btn fs-1 bg-transparent text-light saooti-forward"
67
69
  @click="seekClick(15)"