fcid 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. data/app/assets/images/expand.gif +0 -0
  2. data/app/assets/javascripts/fcid.js +14 -0
  3. data/app/assets/javascripts/jquery.corner.js +152 -0
  4. data/app/assets/stylesheets/fcid/admin.css +3 -0
  5. data/app/assets/stylesheets/fcid/application.css +30 -0
  6. data/app/assets/stylesheets/fcid/apps.css +74 -0
  7. data/app/assets/stylesheets/fcid/base.css +151 -0
  8. data/app/assets/stylesheets/fcid/base_xiaonei.css +1678 -0
  9. data/app/assets/stylesheets/fcid/box.css +135 -0
  10. data/app/assets/stylesheets/fcid/chat.css +200 -0
  11. data/app/assets/stylesheets/fcid/coderay.css +10 -0
  12. data/app/assets/stylesheets/fcid/common.css +16 -0
  13. data/app/assets/stylesheets/fcid/dashboardpro.css +1205 -0
  14. data/app/assets/stylesheets/fcid/dialog.css +175 -0
  15. data/app/assets/stylesheets/fcid/dialogpro.css +296 -0
  16. data/app/assets/stylesheets/fcid/editor.css +73 -0
  17. data/app/assets/stylesheets/fcid/feeds.css +41 -0
  18. data/app/assets/stylesheets/fcid/flyout_menu.css +38 -0
  19. data/app/assets/stylesheets/fcid/form.css +176 -0
  20. data/app/assets/stylesheets/fcid/friend_selector.css +65 -0
  21. data/app/assets/stylesheets/fcid/friends.css +445 -0
  22. data/app/assets/stylesheets/fcid/green.css +942 -0
  23. data/app/assets/stylesheets/fcid/layout.css +185 -0
  24. data/app/assets/stylesheets/fcid/lightbox.css +26 -0
  25. data/app/assets/stylesheets/fcid/lister.css +49 -0
  26. data/app/assets/stylesheets/fcid/modalbox.css +153 -0
  27. data/app/assets/stylesheets/fcid/msg.css +62 -0
  28. data/app/assets/stylesheets/fcid/navigationpro.css +878 -0
  29. data/app/assets/stylesheets/fcid/notification.css +162 -0
  30. data/app/assets/stylesheets/fcid/pagination.css +45 -0
  31. data/app/assets/stylesheets/fcid/pill_filter.css +83 -0
  32. data/app/assets/stylesheets/fcid/post.css +69 -0
  33. data/app/assets/stylesheets/fcid/powerapple.css +2645 -0
  34. data/app/assets/stylesheets/fcid/rails.css +58 -0
  35. data/app/assets/stylesheets/fcid/register.css +711 -0
  36. data/app/assets/stylesheets/fcid/showbox.css +122 -0
  37. data/app/assets/stylesheets/fcid/super-actions.css +222 -0
  38. data/app/assets/stylesheets/fcid/tabs.css +370 -0
  39. data/app/assets/stylesheets/fcid/toolbar.css +10 -0
  40. data/{lib → app/models}/fcid/base.rb +0 -0
  41. data/{lib → app/models}/fcid/email.rb +0 -0
  42. data/{lib → app/models}/fcid/feed.rb +0 -0
  43. data/{lib → app/models}/fcid/friendship.rb +0 -0
  44. data/{lib → app/models}/fcid/message.rb +0 -0
  45. data/{lib → app/models}/fcid/notification.rb +0 -0
  46. data/{lib → app/models}/fcid/session.rb +0 -0
  47. data/{lib → app/models}/fcid/user.rb +0 -0
  48. data/lib/fcid.rb +0 -3
  49. data/lib/fcid/controller.rb +22 -24
  50. data/lib/fcid/version.rb +1 -1
  51. data/test/dummy/db/development.sqlite3 +0 -0
  52. data/test/dummy/db/test.sqlite3 +0 -0
  53. data/test/dummy/log/development.log +2 -0
  54. metadata +133 -67
@@ -0,0 +1,878 @@
1
+ .noborder_bottom{ border-bottom:0 !important;}
2
+ .nomargin{ margin:0;}
3
+
4
+ #navigation {
5
+ background: #5D74A2;
6
+ z-index:100;
7
+ height: 29px;
8
+ padding-left:10px;
9
+ border-left: 1px solid #315091;
10
+ }
11
+
12
+ #navigation .nav-left {
13
+ list-style-type:none;
14
+ font-size:14px;
15
+ float:left;
16
+ height: 25px;
17
+ padding-top: 4px;
18
+ }
19
+
20
+ #navigation .nav-left li {
21
+ float: left;
22
+ margin:0 10px 0 0;
23
+ display: inline;
24
+ }
25
+
26
+ #navigation .nav-left li a {
27
+ display: block;
28
+ padding: 2px 5px 1px;
29
+ color: #FFF;
30
+ float: left;
31
+ }
32
+
33
+ * html #navigation .nav-left li a {padding: 2px 5px 0;}
34
+ *+html #navigation .nav-left li a {padding: 4px 5px 1px;}
35
+
36
+ #navigation .nav-left li a:hover {
37
+ background: #7D90B5;
38
+ text-decoration: none;
39
+ }
40
+
41
+ #navigation .nav-left li a.active {
42
+ background: #7D90B5;
43
+ }
44
+
45
+ #navigation .nav-left li a.edit_link {
46
+ font-size: 12px;
47
+ font-weight: normal;
48
+ color: #D8DFEA;
49
+ padding: 4px 5px 0 2px;
50
+ }
51
+
52
+ #navigation .nav-left li a.new-inbox {font-weight:bold;color:#FFF;}
53
+
54
+ *+html #navigation .nav-left li a.edit_link {padding: 6px 5px 0 2px;}
55
+
56
+ #navigation .nav-left li a.edit_link:hover {
57
+ background: transparent;
58
+ text-decoration: underline;
59
+ }
60
+
61
+ #navigation .nav-left li a.global_menu_arrow {
62
+ padding: 0 0 1px;
63
+ background: url(/images/global_menu_arrow.gif) no-repeat 0 0;
64
+ margin-left: -1px;
65
+ }
66
+
67
+ #navigation .nav-left li a.global_menu_arrow:hover {
68
+ background: #7D90B5 url(/images/global_menu_arrow.gif) no-repeat 100% 0;
69
+ }
70
+
71
+ #navigation .nav-left li a.global_menu_arrow_active {
72
+ padding: 0 0 1px;
73
+ margin-left: -1px;
74
+ background: #7D90B5 url(/images/global_menu_arrow.gif) no-repeat 100% 0;
75
+ }
76
+
77
+ #navigation .nav-left li a.global_menu_arrow_active:hover {
78
+ background: #7D90B5 url(/images/global_menu_arrow.gif) no-repeat 100% 0;
79
+ }
80
+
81
+ * html #navigation .nav-left li a.global_menu_arrow, * html #navigation .nav-left li a.global_menu_arrow_active {
82
+ padding: 1px 0;
83
+ }
84
+
85
+
86
+ #navigation .with_arrow {
87
+ height: 20px;
88
+ }
89
+
90
+ * html #navigation .with_arrow {
91
+ width:54px;
92
+ }
93
+
94
+ #navigation .navigator_menu {
95
+ position: absolute;
96
+ background: #FFF;
97
+ border: 1px solid #3B5888;
98
+ padding: 5px 0;
99
+ width: 120px;
100
+ list-style: none;
101
+ margin-left: -1px;
102
+ z-index: 1201;
103
+ font-size: 12px;
104
+ }
105
+
106
+ #navigation .navigator_menu li {
107
+ float: none;
108
+ display: block;
109
+ margin: 0;
110
+ padding: 0;
111
+ font-weight: normal;
112
+ }
113
+
114
+ #navigation .navigator_menu li a {
115
+ color: #3B5888;
116
+ display: block;
117
+ padding: 6px 0 6px 10px !important;
118
+ float: none;
119
+ }
120
+
121
+ * html #navigation .navigator_menu li a {
122
+ height:1.0em;
123
+ }
124
+
125
+ #navigation .navigator_menu li a:hover {
126
+ background: #6D84B4;
127
+ color: #FFF;
128
+ text-decoration: none;
129
+ }
130
+
131
+ #navigation .navigator_menu li.menu_divider {
132
+ border-bottom:1px solid #EEEEEE;
133
+ cursor:default;
134
+ font-size:1px;
135
+ line-height:1px;
136
+ height: 1px;
137
+ margin:4px 10px;
138
+ list-style:none;
139
+ }
140
+
141
+ #navigation .nav-right {
142
+ list-style-type:none;
143
+ font-size:12px;
144
+ float:right;
145
+ height: 21px;
146
+ padding-top: 8px;
147
+ }
148
+
149
+ *+html #navigation .nav-right {
150
+ height: 19px;
151
+ padding-top: 9px;
152
+ }
153
+
154
+ #navigation .nav-right li {
155
+ float: left;
156
+ margin:0 10px 0 0;
157
+ display: inline;
158
+ }
159
+
160
+ #navigation .nav-right li a {
161
+ color: #D8DFEA;
162
+ }
163
+
164
+ #navigation .nav-right li a:hover {
165
+ color: #FFF;
166
+ }
167
+
168
+
169
+ /* Sub Navigation */
170
+ #sub-nav {
171
+ border-bottom: 1px solid #CCC;
172
+ overflow: hidden;
173
+ zoom: 1;
174
+ padding: 14px 10px 0;
175
+ }
176
+
177
+ #sub-nav ul {
178
+ list-style: none;
179
+ overflow: auto;
180
+ zoom: 1;
181
+ padding-left: 2px;
182
+ }
183
+
184
+ #sub-nav ul li {
185
+ float: left;
186
+ margin-left: -1px;
187
+ }
188
+
189
+ #sub-nav ul li a {
190
+ border: 0 solid #898989;
191
+ border-width: 1px 1px 0;
192
+ display: block;
193
+ background: #F1F1F1 url(/images/sub_tab.gif) repeat-x;
194
+ color: #333;
195
+ min-width: 60px;
196
+ text-align: center;
197
+ padding: 3px 1.0em;
198
+ }
199
+
200
+ * html #sub-nav ul li a {
201
+ width: 60px;
202
+ white-space: nowrap;
203
+ }
204
+
205
+ *+html #sub-nav ul li a {
206
+ padding: 4px 1.0em 2px;
207
+ }
208
+
209
+ @media all and (min-width:0px) {
210
+ head~body #sub-nav ul li a { width: 60px; }
211
+ }
212
+
213
+ #sub-nav .selected,#sub-nav .activetab {
214
+ z-index: 99;
215
+ position: relative;
216
+ }
217
+
218
+ #sub-nav .selected a ,#sub-nav .activetab a{
219
+ border-style: solid;
220
+ border-color: #3B5888 #5973A9;
221
+ border-width: 1px 1px 0;
222
+ color: #FFF;
223
+ background: #6D84B4;
224
+ }
225
+
226
+ #sub-nav .snav {
227
+ padding: 0 0 5px;
228
+ float: left;
229
+ }
230
+
231
+ #sub-nav .pagerpro-title {
232
+ padding: 0 0 5px;
233
+ float: left;
234
+ }
235
+
236
+ *+html #sub-nav .snav {padding: 0 0 4px;}
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+ /* Sub Navigation */
252
+ #self-nav {
253
+ padding: 14px 10px 0;
254
+ border-bottom: 1px solid #3B5888;
255
+ }
256
+
257
+ #self-nav ul {
258
+ list-style: none;
259
+ overflow: auto;
260
+ zoom: 1;
261
+ }
262
+
263
+ #self-nav li {
264
+ float: left;
265
+ margin: 0 2px;
266
+ }
267
+
268
+ #self-nav li a {
269
+ height: 1.8em;
270
+ line-height: 1.8em;
271
+ display: block;
272
+ color: #3B5888;
273
+ text-align: center;
274
+ padding: 0 0.6em;
275
+ }
276
+
277
+
278
+ #self-nav li a:hover {
279
+ background:#D8DFEA;
280
+ text-decoration:none;
281
+ }
282
+
283
+ *html #self-nav li a {
284
+ height: 1.3em;
285
+ line-height: 1.0em;
286
+ padding-top: 0.5em;
287
+ white-space: nowrap;
288
+ width: 1px;
289
+ }
290
+
291
+ #self-nav .selected a {
292
+ color: #FFF;
293
+ background: #3B5888;
294
+ }
295
+
296
+ #self-nav .selected a:hover {
297
+ color: #FFF;
298
+ background: #3B5888;
299
+ }
300
+
301
+ #self-nav .float-right {
302
+ line-height: 1.8em;
303
+ }
304
+
305
+
306
+
307
+
308
+ /* Sidebar - My Menu List */
309
+ #my-search {
310
+ padding: 6px 5px 2px;
311
+ background: #F5F5F5;
312
+ }
313
+
314
+
315
+ #my-search-menu {
316
+ position:relative;
317
+ z-index:100;
318
+ height: 20px;
319
+ }
320
+
321
+ #my-search-menu h2 {
322
+ font-size: 1.0em;
323
+ float: left;
324
+ height: 20px;
325
+ }
326
+
327
+ #my-search-menu h2 a {
328
+ display: block;
329
+ padding: 3px 5px 3px 5px;
330
+ width: 26px;
331
+ }
332
+
333
+ *+html #my-search-menu h2 a {padding: 5px 5px 1px 5px;}
334
+ *+html #my-search-menu #global_search_link.active {padding: 4px 5px 1px 4px;}
335
+
336
+ #my-search-menu h2 a:hover {
337
+ color: #FFF;
338
+ background: #717FB0;
339
+ text-decoration: none;
340
+ }
341
+
342
+ #my-search-menu #global_search_link.active {
343
+ color: #FFF;
344
+ background: #717FB0;
345
+ border: 1px solid #3B5888;
346
+ border-width: 1px 0 0 1px;
347
+ padding: 2px 5px 3px 4px;
348
+ }
349
+
350
+ #my-search-menu a.search_arrow {
351
+ float:left;
352
+ display: block;
353
+ width: 13px;
354
+ padding: 3px 0 3px;
355
+ height: 14px;
356
+ background: transparent url(/images/my_search_arrow.gif) no-repeat 50% 50%;
357
+ }
358
+
359
+ #my-search-menu a.search_arrow:hover {
360
+ background: #717FB0 url(/images/my_search_arrow_hover.gif) no-repeat 50% 50%;
361
+ }
362
+
363
+ #my-search-menu a.global_menu_arrow_active {
364
+ float:left;
365
+ display: block;
366
+ width: 13px;
367
+ padding: 2px 0 3px;
368
+ height: 14px;
369
+ background: #717FB0 url(/images/my_search_arrow_hover.gif) no-repeat 50% 50%;
370
+ border: 1px solid #3B5888;
371
+ border-width: 1px 1px 0 0;
372
+ }
373
+
374
+ * html #my-search-menu a.search_arrow, * html #my-search-menu a.global_menu_arrow_active {
375
+ height: 15px;
376
+ }
377
+
378
+ #my-search-menu #search_options_menu {
379
+ position: absolute;
380
+ background: #FFF;
381
+ top: 20px;
382
+ left: 0;
383
+ list-style: none;
384
+ border: 1px solid #3B5888;
385
+ padding: 5px 0;
386
+ }
387
+
388
+ #my-search-menu #search_options_menu li a {
389
+ display: block;
390
+ height: 1.8em;
391
+ line-height: 1.8em;
392
+ width: 112px;
393
+ padding-left: 10px;
394
+ }
395
+
396
+ #my-search-menu #search_options_menu li a:hover {
397
+ background: #6D84B4;
398
+ color: #FFF;
399
+ text-decoration: none;
400
+ }
401
+
402
+ #my-search #my-search-input {
403
+ position:relative;
404
+ z-index: 49;
405
+ width:124px;
406
+ }
407
+
408
+ #my-search #my-search-input form {
409
+ margin: 0 !important;
410
+ padding: 0 !important;
411
+ }
412
+
413
+ #my-search #my-search-input input.inputtext {
414
+ width: 100px;
415
+ border-right: none;
416
+ height: 15px;
417
+ }
418
+
419
+ #my-search #my-search-input input#mySearchGo {
420
+ position:absolute;
421
+ display:block;
422
+ border: none;
423
+ height:21px;
424
+ width:20px;
425
+ line-height:0;
426
+ font-size:0;
427
+ right: 0;
428
+ top:0;
429
+ cursor:pointer;
430
+ }
431
+
432
+ #my-search #my-search-input input.my-search-go {
433
+ background: url(/images/my_search.gif) no-repeat;
434
+ }
435
+
436
+ #my-search #my-search-input input.my-search-go-focus {
437
+ background: url(/images/my_search_focus.gif) no-repeat;
438
+ }
439
+
440
+ * html #my-search #my-search-input input#mySearchGo {top:1px;}
441
+ *+html #my-search #my-search-input input#mySearchGo {top:1px;}
442
+
443
+
444
+
445
+ .app-title {
446
+ background: #f7f7f7;
447
+ padding: 4px 10px 4px 5px;
448
+ }
449
+
450
+ .app-title h2 {
451
+ font-size: 12px;
452
+ }
453
+
454
+ .app-title h2 a {
455
+ color: #333;
456
+ }
457
+
458
+ .app-title h2 a:hover {
459
+ color: #3B5888;
460
+ }
461
+
462
+ #sidebar_content {
463
+ font-size: 12px;
464
+ padding: 0px;
465
+ color: #000;
466
+ background: #f7f7f7;
467
+ }
468
+
469
+ #sidebar_content .separator {
470
+ border-top: solid 1px #CCCCCC;
471
+ border-bottom: solid 1px white;
472
+ margin: 0px -10px 4px -10px; }
473
+
474
+ #sidebar .app_list {
475
+ font-size: 12px;
476
+ padding: 0 8px 0px; }
477
+
478
+ #sidebar .app_list h2 {
479
+ float: left;
480
+ padding-left: 2px;}
481
+
482
+ #sidebar .app_list_outside {
483
+ padding: 2px 14px 5px;
484
+ }
485
+
486
+ #sidebar .app_list .rearrange_message {
487
+ margin: 0;
488
+ }
489
+
490
+ #sidebar .browse_apps_link {
491
+ font-size: 11px;
492
+ padding-top: 5px;
493
+ }
494
+
495
+ #sidebar .edit_apps {
496
+ float: right;
497
+ text-align: right;
498
+ width: 30px;
499
+ font-weight: normal; }
500
+
501
+ #sidebar #app_list, #app_non_nav_list {
502
+ clear: both;
503
+ list-style: none;
504
+ margin: 0px 0px 0px 0px;
505
+ padding: 2px 0 0px; }
506
+
507
+ #sidebar #app_non_nav_list {
508
+ padding-bottom: 5px; }
509
+
510
+ #sidebar .divider_bar {
511
+ border-top: solid 1px #d6d6d6;
512
+ border-bottom: solid 1px #fff;
513
+ line-height: 0px;
514
+ margin: 5px 0;
515
+ clear:both;
516
+ position:relative;
517
+ }
518
+
519
+ #sidebar .app_list .list_item {
520
+ margin: 0px 0px 0px -35px;
521
+ padding: 2px 0px 3px 35px; }
522
+
523
+ #sidebar .app_list_outside h2 {
524
+ margin-left: -5px;
525
+ padding: 3px 0px;
526
+ }
527
+
528
+ #sidebar .app_list .list_item .container {
529
+ margin: 0;
530
+ padding: 0;
531
+ }
532
+
533
+ #sidebar .app_list li a {
534
+ margin: 0px;
535
+ padding: 0px; }
536
+
537
+ #sidebar .app_list .icon {
538
+ float: left;
539
+ margin: 0px;
540
+ padding: 0px;
541
+ height: 16px;
542
+ width: 16px; }
543
+
544
+ #sidebar .app_list .link_title {
545
+ width: 100px;
546
+ background: transparent no-repeat 0px 1px;
547
+ cursor: pointer;
548
+ display: block;
549
+ padding: 2px 0px 2px 22px;
550
+ margin: 0px 0px 0 0px;
551
+ border-bottom: 1px solid #EEE;
552
+ }
553
+
554
+ #sidebar .app_list .link_title.admin {
555
+ color: red;
556
+ }
557
+
558
+ #sidebar .app_list .edit {
559
+ width: 30px;
560
+ background: none;
561
+ cursor: pointer;
562
+ display: block;
563
+ padding: 2px 0px 2px 0;
564
+ margin: 0;
565
+ border-bottom: 1px solid #EEE;
566
+ float: right;
567
+ color: #808080;
568
+ position:relative;
569
+ }
570
+
571
+ #sidebar .app_list .edit:hover {
572
+ color: #3B5888;
573
+ }
574
+
575
+ #sidebar .app_list .link_title .inbox {
576
+ float: right;
577
+ padding-right: 4px;
578
+ }
579
+
580
+ #sidebar .app_list .link_title.edit-title {
581
+ width: 70px;
582
+ background: transparent no-repeat 0px 1px;
583
+ cursor: pointer;
584
+ display: block;
585
+ padding: 2px 0px 2px 22px;
586
+ margin: 0px 0px 0 0px;
587
+ border-bottom: 1px solid #EEE;
588
+ }
589
+
590
+ * html #sidebar .app_list .link_title {
591
+ float: left;
592
+ }
593
+
594
+ #sidebar .app_list .highlight_link {
595
+ font-weight: normal;
596
+ }
597
+
598
+ #sidebar .more_section {
599
+ margin-top: 5px;
600
+ border-bottom: solid 1px #ddd;
601
+ }
602
+
603
+ #sidebar .more_section .edit{
604
+ font-size: 11px;
605
+ font-family: MingLiu;
606
+ float: right;
607
+ padding: 2px 13px 2px 0;
608
+ color: #999;
609
+ }
610
+
611
+ #sidebar .more_section .edit:hover {
612
+ color: #3B5888;
613
+ }
614
+
615
+ #sidebar .expand_link {
616
+ text-align: left;
617
+ font-size: 11px;
618
+ font-family: MingLiu;
619
+ background: #ccc;
620
+ display: block;
621
+ padding: 2px 10px 2px 22px;
622
+ }
623
+
624
+ #sidebar .more_apps {
625
+ background: url(/images/down_arrow_grey_small.gif) no-repeat 10px 2px;
626
+ }
627
+
628
+ #sidebar .more_apps:hover {
629
+ background: #ececec url(/images/down_arrow_grey_small.gif) no-repeat 10px 2px;
630
+ color: #999;
631
+ }
632
+
633
+ #sidebar .less_apps {
634
+ background: url(/images/up_arrow_grey_small.gif) no-repeat 10px 2px;
635
+ }
636
+
637
+ #sidebar .less_apps:hover {
638
+ background: #ececec url(/images/up_arrow_grey_small.gif) no-repeat 10px 2px;
639
+ color: #999;
640
+ }
641
+
642
+ #sidebar .more_apps a, #sidebar .less_apps a, .more_section a {
643
+ color: #999;
644
+ }
645
+ .applications .dialog_body p {margin:10px 0;}
646
+ .applications .messages_div {font-size:14px;margin:10px 0 10px;}
647
+ .apps-config {
648
+ padding: 10px 20px 20px;
649
+ }
650
+
651
+ .apps-config h2 {
652
+ line-height: 2.0em;
653
+ }
654
+ .apps-config #promo_main {
655
+ float:right;
656
+ padding-top:26px;
657
+ }
658
+ #promo_main a {cursor:pointer;}
659
+ .browse_more_button{float:left;border:1px solid #145c9a;background:#526ea6;border-right-color:#0e1f5b;border-bottom-color:#0e1f5b;}
660
+ .browse_more_button div{border-top:1px solid #6e84b3;padding:3px 24px 5px 15px;background:url(/images/white_arrow_on_blue.gif) no-repeat center right;color:#fff;}
661
+ *+html .browse_more_button div{padding:4px 24px 4px 15px;}
662
+ .browse_more_button:hover{background-color:#40578a;text-decoration:none;}
663
+ .browse_more_button:active{border:1px solid #324a7b;background:#526ea6;border-right-color:#758bb7;border-bottom-color:#758bb7;background-color:#39548a;text-decoration:none;}
664
+ .browse_more_button:active div{border-top:1px solid #39548a;}
665
+ .apps-config .title_header {
666
+ width:380px;
667
+ }
668
+ .apps-config p {
669
+ line-height: 1.5em;
670
+ }
671
+
672
+ .apps-config table {
673
+ width: 99%;
674
+ border-top: 1px solid #DDD;
675
+ margin-top: 20px;
676
+ }
677
+
678
+ .apps-config table td {
679
+ border-bottom: 1px solid #DDD;
680
+ padding: 7px 0;
681
+ vertical-align: middle;
682
+ }
683
+
684
+ .apps-config table td.icon {
685
+ width: 22px;
686
+ }
687
+
688
+ .apps-config table td.info {
689
+ font-size: 14px;
690
+ font-weight: bold;
691
+ color: #333;
692
+ }
693
+
694
+ .apps-config table td.action {
695
+ width: 50px;
696
+ text-align: right;
697
+ padding-right: 6px;
698
+ }
699
+
700
+ .apps-config table td.action a.add {
701
+ background: url(/images/app_add.gif) no-repeat 0 55%;
702
+ padding-left: 1.2em;
703
+ }
704
+
705
+ .admin-menu {
706
+ border: 1px solid #DDD;
707
+ border-width: 1px 0;
708
+ background: #F7F7F7;
709
+ margin-top: 8px;
710
+ }
711
+
712
+ .admin-menu ul {
713
+ list-style: none;
714
+ padding: 4px 9px;
715
+ }
716
+
717
+ .admin-menu ul li {
718
+ line-height: 1.3em;
719
+ background: url(/images/ad_dot.gif) no-repeat 0 55%;
720
+ padding-left: 10px;
721
+ }
722
+
723
+ .admin-menu ul li a {
724
+ color: #C00;
725
+ }
726
+
727
+ .applications .handle {
728
+ background: url(/images/movearrow.gif) no-repeat center center;
729
+ width: 13px;
730
+ min-width: 13px;
731
+ height: 16px;
732
+ min-height: 16px;
733
+ font-size: 16px;
734
+ display: block;
735
+ float: left;
736
+ margin-right: -28px;
737
+ position: relative;
738
+ left: -28px;
739
+ padding: 0px;
740
+ }
741
+
742
+ .applications .handle:hover {
743
+ cursor: move; }
744
+
745
+ .app_selector_module {
746
+ display: none; }
747
+
748
+ .applications .app_selector_module {
749
+ display: block;
750
+ color: #333;
751
+ margin: 0px 10px 10px;
752
+ padding: 5px 0px;
753
+ }
754
+
755
+ .app_selector_module #sidebar .app_selector_module h2 {
756
+ display: none;
757
+ }
758
+
759
+ .applications #sidebar .app_selector_module h2 {
760
+ width: auto;
761
+ float: none;
762
+ }
763
+
764
+ .applications .app_selector {
765
+ margin-top: 6px;
766
+ }
767
+
768
+ .applications .app_selector select {
769
+ width: 112px;
770
+ }
771
+
772
+ .action_item {
773
+ display: none;
774
+ }
775
+
776
+ .applications li:hover .action_item {
777
+ position: relative;
778
+ left: -80px;
779
+ width: 40px;
780
+ float: left;
781
+ text-align: right;
782
+ margin-right: -80px;
783
+ display: block;
784
+ font-size: 9px;
785
+ }
786
+
787
+ .action_item_add {
788
+ display: none;
789
+ }
790
+
791
+ .applications li:hover .action_item_add {
792
+ position: relative;
793
+ left: -80px;
794
+ width: 70px;
795
+ float: left;
796
+ text-align: right;
797
+ margin-right: -70px;
798
+ display: block;
799
+ font-size: 9px;
800
+ }
801
+
802
+ .add_button {
803
+ margin-top: 6px;
804
+ }
805
+
806
+
807
+ .floating_container {
808
+ opacity: 0.4;
809
+ position: absolute;
810
+ width: 123px;
811
+ border: 1px dashed #315091;
812
+ }
813
+
814
+ .floating_container:hover {
815
+ cursor: move;
816
+ }
817
+
818
+
819
+ #sidebar .app_list .floating_container .link_title {
820
+ filter: alpha(opacity=40);
821
+ }
822
+
823
+ #sidebar .app_list .floating_container .edit {
824
+ filter: alpha(opacity=40);
825
+ }
826
+
827
+ #sidebar .app_list .floating_container .handle {
828
+ filter: alpha(opacity=40);
829
+ }
830
+
831
+ .rearrange_message {
832
+ padding: 3px 7px;
833
+ margin: 0 10px 0 5px;
834
+ border: solid 1px #ccc;
835
+ background: #f0f0f0;
836
+ position: relative;
837
+ }
838
+
839
+ #empty_more_message {
840
+ height: auto;
841
+ color: #999;
842
+ font-size: 9px;
843
+ }
844
+
845
+ .rearrange_message .image {
846
+ vertical-align: middle;
847
+ }
848
+
849
+ .rearrange_status {
850
+ font-size: 11px;
851
+ padding: 3px 7px;
852
+ margin: 3px 0px;
853
+ border: solid 1px #ffe222;
854
+ background: #fffbe2;
855
+ height: 15px;
856
+ }
857
+
858
+
859
+ /*for new blog*/
860
+ #sub-nav li.showmodel{ float:right; padding-top:4px;}
861
+ #sub-nav li.hiddenitem{ display:none;}
862
+ #sub-nav li.showmodel a{border:0; color:#3b5998; background:none; display:inline; padding:0;}
863
+
864
+
865
+ /*for newfriendlist with Tab*/
866
+ #sub-nav.narrow ul li a{}
867
+ *+html #sub-nav.narrow ul li a{}
868
+
869
+ /*foc Cellphone UploadPic*/
870
+ .uploadpic_head{ height:22px; overflow:hidden; padding:20px 20px 0px 20px;}
871
+ .uploadpic_head h2{ background:url(../img/newsfeed/photo.gif) 0 50% no-repeat; padding-left:24px;}
872
+
873
+ .current-path {
874
+ padding:3px 5px 5px 5px;
875
+ background-color:#F2F2F2;
876
+ margin-bottom:3px;
877
+ border:1px solid #E9EEF2;
878
+ }