Quellcode durchsuchen

样式,图标调整

lihai vor 6 Jahren
Ursprung
Commit
6f5d94881d

+ 5 - 5
WebUI/CallCenterWeb.UI/css/chat.css

1
 body {
1
 body {
2
     color: #4d4d4d;
2
     color: #4d4d4d;
3
     font: 14px/1.4em 'Helvetica Neue', Helvetica, 'Microsoft Yahei', Arial, sans-serif;
3
     font: 14px/1.4em 'Helvetica Neue', Helvetica, 'Microsoft Yahei', Arial, sans-serif;
4
-    background: #f5f5f5 url(img/chat_bg.jpg) no-repeat center;
4
+    background-color: #f5f5f5;  /*url(img/chat_bg.jpg) no-repeat center*/
5
     background-size: cover;
5
     background-size: cover;
6
 }
6
 }
7
 
7
 
188
 .main_message .message_text {
188
 .main_message .message_text {
189
     display: inline-block;
189
     display: inline-block;
190
     position: relative;
190
     position: relative;
191
-    padding: 2px 10px 0 10px;
191
+    padding: 4px 10px 4px 10px;
192
     max-width: calc(100% - 80px);
192
     max-width: calc(100% - 80px);
193
     min-height: 28px;
193
     min-height: 28px;
194
     line-height: 2;
194
     line-height: 2;
209
     }
209
     }
210
 
210
 
211
     .main_message .message_text p {
211
     .main_message .message_text p {
212
-        margin: 2px 0 10px 0;
212
+        margin: 2px 0 2px 0;
213
         line-height: 2;
213
         line-height: 2;
214
     }
214
     }
215
 
215
 
306
 }
306
 }
307
 
307
 
308
 .chat_search {
308
 .chat_search {
309
-width: 100%;padding: 10px;
309
+width: 100%;padding: 14px 20px;
310
 }
310
 }
311
 .chat_lists {
311
 .chat_lists {
312
 width: 100%; padding: 0px 20px 14px 20px; overflow-y: auto; height:502px;
312
 width: 100%; padding: 0px 20px 14px 20px; overflow-y: auto; height:502px;
317
 .chat_item {
317
 .chat_item {
318
  line-height:20px;
318
  line-height:20px;
319
  font-size:12px;
319
  font-size:12px;
320
- padding:0 0 6px 0;
320
+ padding:0 0 12px 0;
321
 }
321
 }
322
 		.chat_lists li span{
322
 		.chat_lists li span{
323
 			
323
 			

BIN
WebUI/CallCenterWeb.UI/img/collection.png


BIN
WebUI/CallCenterWeb.UI/img/collection_active.png


+ 1 - 2
WebUI/CallCenterWeb.UI/index.html

1223
         	float: right;
1223
         	float: right;
1224
         	padding-right: 5px;
1224
         	padding-right: 5px;
1225
         	cursor: pointer;
1225
         	cursor: pointer;
1226
-        	width: 25px;
1227
-        	height: 20px;
1226
+        	width: 22px;
1228
         }
1227
         }
1229
         .collection img{
1228
         .collection img{
1230
         	width: 100%;
1229
         	width: 100%;

+ 1 - 1
WebUI/CallCenterWeb.UI/js/index.js

854
         $("#right-sidebar").toggleClass("sidebar-open");
854
         $("#right-sidebar").toggleClass("sidebar-open");
855
         if ($("#right-sidebar").hasClass("sidebar-open")) {
855
         if ($("#right-sidebar").hasClass("sidebar-open")) {
856
             messages();
856
             messages();
857
-            msgs = setInterval(messages, 5000, 0);//未读消息定时刷新
857
+            msgs = setInterval(messages, 5000 * 60, 0);//未读消息定时刷新
858
         }
858
         }
859
         else {
859
         else {
860
             clearInterval(msgs);
860
             clearInterval(msgs);