浏览代码

Merge pull request #1951 from jitsi/watermark-config

Make watermark size configurable
efficient_tiling
virtuacoplenny 7 年前
父节点
当前提交
a94e38e890
共有 2 个文件被更改,包括 8 次插入2 次删除
  1. 2
    2
      css/_base.scss
  2. 6
    0
      css/_variables.scss

+ 2
- 2
css/_base.scss 查看文件

@@ -80,8 +80,8 @@ form {
80 80
     display: block;
81 81
     position: absolute;
82 82
     top: 15;
83
-    width: 186px;
84
-    height: 74px;
83
+    width: $watermarkWidth;
84
+    height: $watermarkHeight;
85 85
     background-size: contain;
86 86
     background-repeat: no-repeat;
87 87
     z-index: $zindex2;

+ 6
- 0
css/_variables.scss 查看文件

@@ -145,3 +145,9 @@ $unsupportedBrowserTitleColor: #fff;
145 145
 $unsupportedBrowserTitleFontSize: 24px;
146 146
 $unsupportedDesktopBrowserTextColor: rgba(255, 255, 255, 0.7);
147 147
 $unsupportedDesktopBrowserTextFontSize: 21px;
148
+
149
+/**
150
+ * The size of the default watermark.
151
+ */
152
+$watermarkWidth: 186px;
153
+$watermarkHeight: 74px;

正在加载...
取消
保存