瀏覽代碼

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
     cursor: pointer;
70
     cursor: pointer;
71
 }
71
 }
72
 
72
 
73
-#chatButton, #chatBottomButton, #contactListButton {
73
+#chatButton, #chatBottomButton, #contactListButton, #numberOfParticipants {
74
     -webkit-transition: all .5s ease-in-out;
74
     -webkit-transition: all .5s ease-in-out;
75
        -moz-transition: all .5s ease-in-out;
75
        -moz-transition: all .5s ease-in-out;
76
             transition: all .5s ease-in-out;
76
             transition: all .5s ease-in-out;
101
     line-height: 13px;
101
     line-height: 13px;
102
     font-weight: bold;
102
     font-weight: bold;
103
     border-radius: 2px;
103
     border-radius: 2px;
104
+    font-size: 11px;
104
     text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
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
 #recordButton {
112
 #recordButton {
108
     -webkit-transition: all .5s ease-in-out;
113
     -webkit-transition: all .5s ease-in-out;
109
     -moz-transition: all .5s ease-in-out;
114
     -moz-transition: all .5s ease-in-out;

+ 4
- 3
index.html 查看文件

63
     <script src="api_connector.js?v=2"></script>
63
     <script src="api_connector.js?v=2"></script>
64
     <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
64
     <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
65
     <link rel="stylesheet" href="css/font.css?v=5"/>
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
     <link rel="stylesheet" type="text/css" media="screen" href="css/videolayout_default.css?v=13" id="videolayout_default"/>
67
     <link rel="stylesheet" type="text/css" media="screen" href="css/videolayout_default.css?v=13" id="videolayout_default"/>
68
     <link rel="stylesheet" href="css/jquery-impromptu.css?v=4">
68
     <link rel="stylesheet" href="css/jquery-impromptu.css?v=4">
69
     <link rel="stylesheet" href="css/modaldialog.css?v=3">
69
     <link rel="stylesheet" href="css/modaldialog.css?v=3">
282
                 <div class="bottom_button_separator"></div>
282
                 <div class="bottom_button_separator"></div>
283
                 <span class="bottomToolbar_span">
283
                 <span class="bottomToolbar_span">
284
                     <a class="bottomToolbarButton" data-container="body" data-toggle="popover" data-placement="top" id="contactlistpopover" content="Open / close contact list" onclick='BottomToolbar.toggleContactList();'>
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
                     </a>
288
                     </a>
288
                 </span>
289
                 </span>
289
                 <div class="bottom_button_separator"></div>
290
                 <div class="bottom_button_separator"></div>

Loading…
取消
儲存