Font size adjustment and moving link to config param
This commit is contained in:
parent
c6b117565d
commit
d84901f196
@ -8,4 +8,13 @@
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@include transition(color .1s ease-in);
|
@include transition(color .1s ease-in);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper links are links that are meant to open a documentation page or more
|
||||||
|
* detailed info.
|
||||||
|
*/
|
||||||
|
.helper-link {
|
||||||
|
@extend .link;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
@ -70,5 +70,7 @@ var interfaceConfig = { // eslint-disable-line no-unused-vars
|
|||||||
AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.2)",
|
AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.2)",
|
||||||
POLICY_LOGO: null,
|
POLICY_LOGO: null,
|
||||||
LOCAL_THUMBNAIL_RATIO: 16/9, //16:9
|
LOCAL_THUMBNAIL_RATIO: 16/9, //16:9
|
||||||
REMOTE_THUMBNAIL_RATIO: 1 //1:1
|
REMOTE_THUMBNAIL_RATIO: 1, //1:1
|
||||||
|
// Documentation reference for the live streaming feature.
|
||||||
|
LIVE_STREAMING_HELP_LINK: "https://jitsi.org/live"
|
||||||
};
|
};
|
||||||
|
|||||||
@ -64,9 +64,10 @@ function _requestLiveStreamId() {
|
|||||||
name="streamId" type="text"
|
name="streamId" type="text"
|
||||||
data-i18n="[placeholder]dialog.streamKey"
|
data-i18n="[placeholder]dialog.streamKey"
|
||||||
autofocus><div style="text-align: right">
|
autofocus><div style="text-align: right">
|
||||||
<a class="link" target="_new"
|
<a class="helper-link" target="_new"
|
||||||
href="https://jitsi.org/live">`+streamIdHelp+
|
href="${interfaceConfig.LIVE_STREAMING_HELP_LINK}">`
|
||||||
`</a></div>`,
|
+ streamIdHelp
|
||||||
|
+ `</a></div>`,
|
||||||
persistent: false,
|
persistent: false,
|
||||||
buttons: [
|
buttons: [
|
||||||
{title: cancelButton, value: false},
|
{title: cancelButton, value: false},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user