mirror of https://github.com/Chocobozzz/PeerTube
Add warning below live stream key field
parent
d988e9a2f8
commit
c29039e7c0
client/src
app
+my-account/my-account-videos/modals
+videos/+video-edit/shared
sass
|
@ -14,6 +14,8 @@
|
|||
<div class="form-group">
|
||||
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
||||
<my-input-readonly-copy id="liveVideoStreamKey" [value]="streamKey"></my-input-readonly-copy>
|
||||
|
||||
<div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -210,6 +210,8 @@
|
|||
<div class="form-group">
|
||||
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
||||
<my-input-readonly-copy id="liveVideoStreamKey" [value]="liveVideo.streamKey"></my-input-readonly-copy>
|
||||
|
||||
<div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" *ngIf="isSaveReplayEnabled()">
|
||||
|
|
|
@ -323,6 +323,13 @@ table {
|
|||
}
|
||||
}
|
||||
|
||||
.form-group-description {
|
||||
@extend .text-muted;
|
||||
|
||||
font-size: 90%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: #{breakpoint(xxl)}) {
|
||||
.main-col {
|
||||
&.expanded {
|
||||
|
|
Loading…
Reference in New Issue