Browse Source

Update styles for popover

master
Ilya Daynatovich 9 years ago
parent
commit
b7fccf5040
6 changed files with 23 additions and 4 deletions
  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 View File

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

+ 6
- 1
css/_variables.scss View File

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

+ 7
- 2
css/_videolayout_default.scss View File

275
 .connection_info, .connection_info > table
275
 .connection_info, .connection_info > table
276
 {
276
 {
277
     text-align: left;
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
 #localVideoContainer>span.status:hover,
287
 #localVideoContainer>span.status:hover,

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

43
 $hintFontSize: em(13, 14);
43
 $hintFontSize: em(13, 14);
44
 $linkFontColor: #3572b0;
44
 $linkFontColor: #3572b0;
45
 $linkHoverFontColor: darken(#3572b0, 10%);
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 View File

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

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

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

Loading…
Cancel
Save