@saooti/octopus-sdk 30.0.69 → 30.0.70
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
package/package.json
CHANGED
|
@@ -81,14 +81,14 @@
|
|
|
81
81
|
>
|
|
82
82
|
{{ $t('TutoMag') }}
|
|
83
83
|
</a>
|
|
84
|
-
<hr class="dropdown-divider">
|
|
85
|
-
<a
|
|
86
|
-
class="dropdown-item"
|
|
87
|
-
href="/sso/logout"
|
|
88
|
-
>
|
|
89
|
-
{{ $t('Logout') }}
|
|
90
|
-
</a>
|
|
91
84
|
</template>
|
|
85
|
+
<hr class="dropdown-divider">
|
|
86
|
+
<a
|
|
87
|
+
class="dropdown-item"
|
|
88
|
+
href="/sso/logout"
|
|
89
|
+
>
|
|
90
|
+
{{ $t('Logout') }}
|
|
91
|
+
</a>
|
|
92
92
|
</template>
|
|
93
93
|
</div>
|
|
94
94
|
</div>
|
|
@@ -147,24 +147,30 @@ export default defineComponent({
|
|
|
147
147
|
|
|
148
148
|
<style lang="scss">
|
|
149
149
|
.octopus-app{
|
|
150
|
-
.player-grow-content {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
150
|
+
.player-grow-content {
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
flex-grow: 1;
|
|
154
|
+
flex-shrink: 1;
|
|
155
|
+
overflow: hidden;
|
|
156
|
+
font-size: 0.8rem;
|
|
157
|
+
.progress {
|
|
158
|
+
height: 4px;
|
|
159
|
+
position: relative;
|
|
160
|
+
@media (max-width: 960px) {
|
|
161
|
+
height: 8px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
.progress-bar-duration {
|
|
165
|
+
width: 10px;
|
|
166
|
+
}
|
|
167
|
+
.progress-bar {
|
|
168
|
+
height: 4px;
|
|
169
|
+
position: absolute;
|
|
170
|
+
@media (max-width: 960px) {
|
|
171
|
+
height: 8px;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
167
174
|
}
|
|
168
175
|
}
|
|
169
|
-
}
|
|
170
176
|
</style>
|