Переглянути джерело

Font size adjustment and moving link to config param

j8
yanas 8 роки тому
джерело
коміт
d84901f196

+ 9
- 0
css/components/_link.scss Переглянути файл

@@ -8,4 +8,13 @@
8 8
         text-decoration: underline;
9 9
         @include transition(color .1s ease-in);
10 10
     }
11
+}
12
+
13
+/**
14
+ * Helper links are links that are meant to open a documentation page or more
15
+ * detailed info.
16
+ */
17
+.helper-link {
18
+    @extend .link;
19
+    font-size: 12px;
11 20
 }

+ 3
- 1
interface_config.js Переглянути файл

@@ -70,5 +70,7 @@ var interfaceConfig = { // eslint-disable-line no-unused-vars
70 70
     AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.2)",
71 71
     POLICY_LOGO: null,
72 72
     LOCAL_THUMBNAIL_RATIO: 16/9, //16:9
73
-    REMOTE_THUMBNAIL_RATIO: 1 //1:1
73
+    REMOTE_THUMBNAIL_RATIO: 1, //1:1
74
+    // Documentation reference for the live streaming feature.
75
+    LIVE_STREAMING_HELP_LINK: "https://jitsi.org/live"
74 76
 };

+ 4
- 3
modules/UI/recording/Recording.js Переглянути файл

@@ -64,9 +64,10 @@ function _requestLiveStreamId() {
64 64
                     name="streamId" type="text"
65 65
                     data-i18n="[placeholder]dialog.streamKey"
66 66
                     autofocus><div style="text-align: right">
67
-                    <a class="link" target="_new" 
68
-                    href="https://jitsi.org/live">`+streamIdHelp+
69
-                    `</a></div>`,
67
+                    <a class="helper-link" target="_new" 
68
+                    href="${interfaceConfig.LIVE_STREAMING_HELP_LINK}">`
69
+                        + streamIdHelp
70
+                        + `</a></div>`,
70 71
                 persistent: false,
71 72
                 buttons: [
72 73
                     {title: cancelButton, value: false},

Завантаження…
Відмінити
Зберегти