瀏覽代碼

Makes the number of participants blue.

j8
fo 10 年之前
父節點
當前提交
74f158128e
共有 2 個檔案被更改,包括 10 行新增4 行删除
  1. 6
    1
      css/main.css
  2. 4
    3
      index.html

+ 6
- 1
css/main.css 查看文件

@@ -70,7 +70,7 @@ html, body{
70 70
     cursor: pointer;
71 71
 }
72 72
 
73
-#chatButton, #chatBottomButton, #contactListButton {
73
+#chatButton, #chatBottomButton, #contactListButton, #numberOfParticipants {
74 74
     -webkit-transition: all .5s ease-in-out;
75 75
        -moz-transition: all .5s ease-in-out;
76 76
             transition: all .5s ease-in-out;
@@ -101,9 +101,14 @@ html, body{
101 101
     line-height: 13px;
102 102
     font-weight: bold;
103 103
     border-radius: 2px;
104
+    font-size: 11px;
104 105
     text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
105 106
 }
106 107
 
108
+#contactListButton.active #numberOfParticipants {
109
+    color: #00ccff;
110
+}
111
+
107 112
 #recordButton {
108 113
     -webkit-transition: all .5s ease-in-out;
109 114
     -moz-transition: all .5s ease-in-out;

+ 4
- 3
index.html 查看文件

@@ -63,7 +63,7 @@
63 63
     <script src="api_connector.js?v=2"></script>
64 64
     <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
65 65
     <link rel="stylesheet" href="css/font.css?v=5"/>
66
-    <link rel="stylesheet" type="text/css" media="screen" href="css/main.css?v=28"/>
66
+    <link rel="stylesheet" type="text/css" media="screen" href="css/main.css?v=29"/>
67 67
     <link rel="stylesheet" type="text/css" media="screen" href="css/videolayout_default.css?v=13" id="videolayout_default"/>
68 68
     <link rel="stylesheet" href="css/jquery-impromptu.css?v=4">
69 69
     <link rel="stylesheet" href="css/modaldialog.css?v=3">
@@ -282,8 +282,9 @@
282 282
                 <div class="bottom_button_separator"></div>
283 283
                 <span class="bottomToolbar_span">
284 284
                     <a class="bottomToolbarButton" data-container="body" data-toggle="popover" data-placement="top" id="contactlistpopover" content="Open / close contact list" onclick='BottomToolbar.toggleContactList();'>
285
-                        <i id="contactListButton" class="icon-contactList"></i>
286
-                        <span id="numberOfParticipants"></span>
285
+                        <i id="contactListButton" class="icon-contactList">
286
+                            <span id="numberOfParticipants"></span>
287
+                        </i>
287 288
                     </a>
288 289
                 </span>
289 290
                 <div class="bottom_button_separator"></div>

Loading…
取消
儲存