Sfoglia il codice sorgente

Update styles for popover

master
Ilya Daynatovich 8 anni fa
parent
commit
b7fccf5040
6 ha cambiato i file con 23 aggiunte e 4 eliminazioni
  1. 1
    0
      css/_base.scss
  2. 6
    1
      css/_variables.scss
  3. 7
    2
      css/_videolayout_default.scss
  4. 7
    1
      css/themes/_light.scss
  5. 1
    0
      lang/main.json
  6. 1
    0
      modules/UI/UI.js

+ 1
- 0
css/_base.scss Vedi File

@@ -184,6 +184,7 @@ form {
184 184
 }
185 185
 
186 186
 .link {
187
+    cursor: pointer;
187 188
     color: $linkFontColor;
188 189
     @include transition(color .1s ease-out);
189 190
 

+ 6
- 1
css/_variables.scss Vedi File

@@ -1,3 +1,8 @@
1
+/**
2
+* Theme
3
+*/
4
+@import 'themes/main';
5
+
1 6
 /**
2 7
  * Style variables
3 8
  */
@@ -28,10 +33,10 @@ $tooltipBg: rgba(0,0,0, 0.7);
28 33
 
29 34
 // Toolbar
30 35
 $toolbarSelectBackground: rgba(0, 0, 0, .6);
36
+
31 37
 $toolbarBadgeBackground: #165ECC;
32 38
 $toolbarBadgeColor: #FFFFFF;
33 39
 $toolbarToggleBackground: #12499C;
34
-$splitterToolbarButtonLeftMargin: 0px;
35 40
 
36 41
 // Main controls
37 42
 $inputSemiBackground: rgba(132, 132, 132, .8);

+ 7
- 2
css/_videolayout_default.scss Vedi File

@@ -275,8 +275,13 @@
275 275
 .connection_info, .connection_info > table
276 276
 {
277 277
     text-align: left;
278
-    font-size: 11px;
279
-    color: #ffffff;
278
+    font-size: 12px;
279
+    font-weight: 400;
280
+    color: $auiDialogColor;
281
+
282
+    td {
283
+        padding: 5px 0;
284
+    }
280 285
 }
281 286
 
282 287
 #localVideoContainer>span.status:hover,

+ 7
- 1
css/themes/_light.scss Vedi File

@@ -43,4 +43,10 @@ $labelFontWeight: 400;
43 43
 $hintFontSize: em(13, 14);
44 44
 $linkFontColor: #3572b0;
45 45
 $linkHoverFontColor: darken(#3572b0, 10%);
46
-$dropdownColor: #333;
46
+$dropdownColor: #333;
47
+
48
+// Popover colors
49
+$popoverArrowBorderColor: rgba(0, 0, 0, 0.25);
50
+$popoverArrowBorderColorFallback: #999999;
51
+$popoverBorderColor: rgba(0, 0, 0, 0.2);
52
+$popoverBorderColorFallback: #cccccc;

+ 1
- 0
lang/main.json Vedi File

@@ -151,6 +151,7 @@
151 151
     },
152 152
     "connectionindicator":
153 153
     {
154
+        "header": "Connection data",
154 155
         "bitrate": "Bitrate:",
155 156
         "packetloss": "Packet loss:",
156 157
         "resolution": "Resolution:",

+ 1
- 0
modules/UI/UI.js Vedi File

@@ -758,6 +758,7 @@ UI.getRemoteVideoType = function (jid) {
758 758
 
759 759
 UI.connectionIndicatorShowMore = function(id) {
760 760
     VideoLayout.showMore(id);
761
+    return false;
761 762
 };
762 763
 
763 764
 // FIXME check if someone user this

Loading…
Annulla
Salva