aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-01-10 09:17:28 +0100
committerChocobozzz <me@florianbigard.com>2022-01-10 10:08:14 +0100
commit5097cbda4aad10cc60d3dc485dc9e9c3b1eddb17 (patch)
tree6bdc5137ea0aef943bac9a14b626559dfa0e8954
parenta5a79d15427372b581e34ac3999c73fc316699d5 (diff)
downloadPeerTube-5097cbda4aad10cc60d3dc485dc9e9c3b1eddb17.tar.gz
PeerTube-5097cbda4aad10cc60d3dc485dc9e9c3b1eddb17.tar.zst
PeerTube-5097cbda4aad10cc60d3dc485dc9e9c3b1eddb17.zip
Add missing password field to update user api doc
-rw-r--r--client/src/sass/player/control-bar.scss6
-rw-r--r--client/src/sass/player/peertube-skin.scss5
-rw-r--r--support/doc/api/openapi.yaml10
3 files changed, 11 insertions, 10 deletions
diff --git a/client/src/sass/player/control-bar.scss b/client/src/sass/player/control-bar.scss
index dd4e33e75..2f76e599f 100644
--- a/client/src/sass/player/control-bar.scss
+++ b/client/src/sass/player/control-bar.scss
@@ -96,7 +96,6 @@
96 } 96 }
97 } 97 }
98 98
99
100 .vjs-play-control { 99 .vjs-play-control {
101 @include disable-outline; 100 @include disable-outline;
102 101
@@ -281,6 +280,11 @@
281 max-width: $control-bar-icon-size; 280 max-width: $control-bar-icon-size;
282 height: 100%; 281 height: 100%;
283 max-height: $control-bar-volume-slider-height; 282 max-height: $control-bar-volume-slider-height;
283
284 &::before {
285 // Remove circle
286 content: '';
287 }
284 } 288 }
285 289
286 &:focus { 290 &:focus {
diff --git a/client/src/sass/player/peertube-skin.scss b/client/src/sass/player/peertube-skin.scss
index 5f873d495..c420e825e 100644
--- a/client/src/sass/player/peertube-skin.scss
+++ b/client/src/sass/player/peertube-skin.scss
@@ -20,10 +20,6 @@ body {
20 font-size: $font-size; 20 font-size: $font-size;
21 color: pvar(--embedForegroundColor); 21 color: pvar(--embedForegroundColor);
22 22
23 .vjs-volume-level::before {
24 content: ''; /* Remove Circle From Progress Bar */
25 }
26
27 .vjs-audio-button { 23 .vjs-audio-button {
28 display: none; 24 display: none;
29 } 25 }
@@ -100,7 +96,6 @@ body {
100 } 96 }
101 97
102 .vjs-poster { 98 .vjs-poster {
103 outline: none; /* Remove Blue Outline on Click*/
104 outline: 0; 99 outline: 0;
105 } 100 }
106 101
diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml
index 9bf5024bb..5746d3a47 100644
--- a/support/doc/api/openapi.yaml
+++ b/support/doc/api/openapi.yaml
@@ -6757,6 +6757,8 @@ components:
6757 $ref: '#/components/schemas/UserRole' 6757 $ref: '#/components/schemas/UserRole'
6758 adminFlags: 6758 adminFlags:
6759 $ref: '#/components/schemas/UserAdminFlags' 6759 $ref: '#/components/schemas/UserAdminFlags'
6760 password:
6761 $ref: '#/components/schemas/password'
6760 UpdateMe: 6762 UpdateMe:
6761 # see shared/models/users/user-update-me.model.ts: 6763 # see shared/models/users/user-update-me.model.ts:
6762 properties: 6764 properties:
@@ -7228,13 +7230,13 @@ components:
7228 - `13` NEW_INSTANCE_FOLLOWER 7230 - `13` NEW_INSTANCE_FOLLOWER
7229 7231
7230 - `14` AUTO_INSTANCE_FOLLOWING 7232 - `14` AUTO_INSTANCE_FOLLOWING
7231 7233
7232 - `15` ABUSE_STATE_CHANGE 7234 - `15` ABUSE_STATE_CHANGE
7233 7235
7234 - `16` ABUSE_NEW_MESSAGE 7236 - `16` ABUSE_NEW_MESSAGE
7235 7237
7236 - `17` NEW_PLUGIN_VERSION 7238 - `17` NEW_PLUGIN_VERSION
7237 7239
7238 - `18` NEW_PEERTUBE_VERSION 7240 - `18` NEW_PEERTUBE_VERSION
7239 read: 7241 read:
7240 type: boolean 7242 type: boolean