Parcourir la source

Merge pull request #1951 from jitsi/watermark-config

Make watermark size configurable
efficient_tiling
virtuacoplenny il y a 7 ans
Parent
révision
a94e38e890
2 fichiers modifiés avec 8 ajouts et 2 suppressions
  1. 2
    2
      css/_base.scss
  2. 6
    0
      css/_variables.scss

+ 2
- 2
css/_base.scss Voir le fichier

@@ -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 Voir le fichier

@@ -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;

Chargement…
Annuler
Enregistrer