fcid 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
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,73 @@
1
+ /** bbeditor **/
2
+ .editor-button {
3
+ float:left;
4
+ width:24px;
5
+ height:24px;
6
+ text-align:center;
7
+ vertical-align:middle;
8
+ border:1px outset #EEE;
9
+ margin:1px;
10
+ }
11
+
12
+ .editor-button img {
13
+ margin:auto;
14
+ }
15
+
16
+
17
+ .editor-button-other {
18
+ border:none;
19
+ float:left;
20
+ }
21
+
22
+
23
+ div.editor-wrapper {
24
+ /*margin:0px!important;*/
25
+ padding:0px;
26
+ background-color:#EEE;
27
+ margin-left:110px;
28
+ position:relative;
29
+ width:505px;
30
+ }
31
+
32
+ *div.editor-wrapper {
33
+ margin-left:0px;
34
+ }
35
+
36
+ .editor-wrapper div {
37
+ }
38
+
39
+ .editor {
40
+ }
41
+
42
+ .editor-wrapper textarea {
43
+ left:0px;
44
+ width:500px;
45
+ }
46
+
47
+ .editor-button-over {
48
+ border:2px outset #EEE;
49
+ margin:0px;
50
+ }
51
+
52
+ .editor-button-push {
53
+ border:2px inset #EEE;
54
+ margin:0px;
55
+ }
56
+
57
+ .editor-button-down {
58
+ border:2px inset #EEE;
59
+ margin:0px;
60
+ }
61
+
62
+ .editor-smilies {
63
+ background-color:white;
64
+ border:1px solid #ccc;
65
+ padding:4px;
66
+ position:absolute;
67
+ width:200px;
68
+ }
69
+
70
+ .editor-toolbar {
71
+ margin:0px;
72
+ padding:4px;
73
+ }
@@ -0,0 +1,41 @@
1
+ .fcid-feeds {
2
+ border:1px solid #eee;
3
+ }
4
+
5
+ .fcid-feed-left {
6
+ width:100px;
7
+ float:left;
8
+ margin-right:5px;
9
+ }
10
+
11
+
12
+ .fcid-feed-right {
13
+ float:left;
14
+ width:500px;
15
+ }
16
+
17
+ .fcid-feed {
18
+ border-bottom:1px solid #eee;
19
+ margin:5px 0px;
20
+ }
21
+
22
+ .fcid-feed-title {
23
+ font-size:14px;
24
+ }
25
+
26
+ .fcid-feed-time {
27
+ color:#999;
28
+ display:inline;
29
+ font-size:12px;
30
+ }
31
+
32
+ .fcid-feed-body {
33
+ padding: 5px;
34
+ }
35
+
36
+ .fcid-feed-setting {
37
+ }
38
+
39
+ .fcid-feed-picture {
40
+ display:inline;
41
+ }
@@ -0,0 +1,38 @@
1
+ #dropmenu_container .flyout_menu{font-size:11px;line-height:normal;}
2
+ .flyout_menu{position:absolute;margin-top:-5px;margin-left:-5px;top:0px;left:0px;padding:0px;overflow:visible;width:196px;z-index:20;}
3
+ .flyout_menu .flyout_menu_header_shadow{margin:0px;padding:0px;margin-top:1px;overflow:visible;position:relative;}
4
+ .flyout_menu .flyout_menu_header{margin:0px;padding:0px;margin-top:-1px;border:1px solid #333;}
5
+ .flyout_menu .flyout_menu_header .flyout_menu_mask{width:27px;height:24px;border:4px solid white;border-right:0px;margin:0px;float:left;padding:0px;}
6
+ .flyout_menu .flyout_menu_header .flyout_menu_title{padding:8px 5px 4px 8px;height:18px;color:#666;text-align:left;float:left;width:150px;background-color:white;}
7
+ .flyout_menu .flyout_menu_content_shadow{background:#eee;border:1px solid #333;border-top:0;float:right;clear:left;margin:0px;padding:0px;position:relative;margin-top:-1px;}
8
+ .flyout_menu .menu_content{width:163px;padding:3px 0px 2px;border-top:1px solid #ccc;margin:0px;clear:both;}
9
+ .flyout_menu .menu_custom{overflow:hidden;padding:5px 8px;}
10
+ .flyout_menu .menu_content .item{clear:both;overflow:hidden;padding:3px 0;}
11
+ .flyout_menu .menu_content label{float:left;font-weight:normal;padding-top:1px;}
12
+ .flyout_menu .menu_content .inputcheckbox{float:left;margin:0 4px 0 0;}
13
+ .flyout_menu .menu_separator{background:#ccc;clear:both;font-size:0;height:1px;line-height:1px;margin:3px 6px;overflow:hidden;padding:0;}
14
+ .link_menu_list .menu_content ul{margin:0px;padding:0px;}
15
+ .link_menu_list .menu_content ul li{list-style-type:none;padding:0px;margin:0px;}
16
+ .link_menu .menu_content a,
17
+ .link_menu_list .menu_content ul li a.tab_link{height:auto;width:auto;display:block;overflow:hidden;margin:0px;overflow:hidden;padding:5px 8px 5px 8px;}
18
+ .link_menu .menu_content a.icon_link{background-position:9px 7px;background-repeat:no-repeat;padding-left:26px;}
19
+ .link_menu .menu_content a:hover,
20
+ .link_menu_list .menu_content ul li a.tab_link:hover{text-decoration:none;background-color:#899bc1;color:white;}
21
+ .flyout_menu_left .flyout_menu_content_shadow{float:left;}
22
+ .flyout_menu_left .menu_content{margin:0px;}
23
+ .flyout_menu_left .flyout_menu_header .flyout_menu_mask{float:right;}
24
+ .flyout_menu_18{margin-top:-4px;margin-left:-4px;width:173px;}
25
+ .flyout_menu_18 .flyout_menu_header .flyout_menu_title{padding:5px 8px 3px 5px;height:16px;width:134px;}
26
+ .flyout_menu_left .flyout_menu_header .flyout_menu_title{padding-left:8px;padding-right:5px;}
27
+ .flyout_menu_18 .flyout_menu_header .flyout_menu_mask{width:18px;height:18px;border:3px solid white;}
28
+ .flyout_menu_18 .menu_content{width:150px;}
29
+ .dropdown_menu{position:absolute;right:0px;width:150px;z-index:10;margin-top:-1px;}
30
+ .dropdown_menu .menu_content{border:solid 1px #6076A5;background:white;}
31
+ .dropdown_menu a{display:block;padding:3px 10px;}
32
+ .dropdown_menu span.optgroup{color:#808080;cursor:default;display:block;padding:8px 10px 4px 10px;}
33
+ .dropdown_menu a:hover{background:#5C75AA;color:white;text-decoration:none;}
34
+ .dropdown_head .dropdown_link{padding:2px 5px;font-weight:normal;}
35
+ .dropdown_head .dropdown_link:hover{text-decoration:none;}
36
+ .dropdown_head .dropdown_link.selected{background:#5c75aa;color:#fff;border-top:1px solid #3b5998;border-left:1px solid #3b5998;border-right:1px solid #3b5998;}
37
+ .dropdown_head .dropdown_link.selected span{background-position:-13px 0px;}
38
+ .dropdown_head .dropdown_arrow{margin:0;padding-left:3px;background:transparent url(/images/down_arrow.gif) top left no-repeat;width:12px;cursor:pointer;height:15px;}
@@ -0,0 +1,176 @@
1
+ /* form style */
2
+ .center-form {
3
+ width:70%;
4
+ margin:0px auto;
5
+ }
6
+
7
+ .form-left {
8
+ width:30%;
9
+ float:left;
10
+ }
11
+
12
+ .form-right {
13
+ width:70%;
14
+ float:right;
15
+ }
16
+
17
+ form > div {
18
+ margin:10px 5px;
19
+ }
20
+
21
+ form > div > div {
22
+ margin-left: 9em;
23
+ }
24
+
25
+ form > div.whole-line {
26
+ margin-left: 9em;
27
+ }
28
+
29
+ form > div > div > span {
30
+ color:#888;
31
+ font-size: 11px;
32
+ }
33
+
34
+ form label {
35
+ float:left;
36
+ margin-right:10px;
37
+ text-align:right;
38
+ width:8em;
39
+ }
40
+
41
+ form label.required {
42
+ color:red;
43
+ }
44
+
45
+ label.none {
46
+ color:black;
47
+ float:none;
48
+ font-weight:normal;
49
+ height:auto;
50
+ line-height:auto;
51
+ margin-right:0px;
52
+ text-align:left;
53
+ width:auto;
54
+ }
55
+
56
+ form div span.tips {
57
+ color:#808080;
58
+ padding-left:5px;
59
+ padding-top:5px;
60
+ vertical-align:top;
61
+ }
62
+
63
+ form div.radios,form div.div-right {
64
+ margin-left:110px;
65
+ width:400px;
66
+ }
67
+
68
+ form div.radios label {
69
+ float:none;
70
+ margin:0px;
71
+ color:black;
72
+ }
73
+
74
+ form div.radios div {
75
+ color:gray;
76
+ padding-left:20px;
77
+ }
78
+
79
+ form p {
80
+ padding:5px;
81
+ }
82
+
83
+ form h3 {
84
+ border-bottom: 1px solid #BDC7D8;
85
+ font-size:14px;
86
+ margin:10px 20px;
87
+ }
88
+
89
+ form input[type=checkbox],form input[type=radio],form input[type=file] {
90
+ border:none;
91
+ }
92
+
93
+
94
+ form textarea {
95
+ width:400px;
96
+ height:200px;
97
+ }
98
+
99
+ form div.notes,.form-notes {
100
+ width:90%;
101
+ padding:15px 10px;
102
+ margin:5px auto;
103
+ border:1px solid #e0e0e0;
104
+ background-color:white;
105
+ text-align:center;
106
+ }
107
+
108
+ form div.notes-content,.form-notes-content {
109
+ padding:0px 100px;
110
+ text-align:left;
111
+ }
112
+
113
+ form div.notes h4 {
114
+ border-bottom:1px solid #D8DFEA;
115
+ color:#3B5888;
116
+ font-size:12px;
117
+ line-height:20px;
118
+ margin:5px 60px;
119
+ padding-left:20px;
120
+ text-align:left;
121
+ }
122
+
123
+ form div.notes ol,form div.notes ul {
124
+ line-height:24px;
125
+ margin:0pt 60px;
126
+ padding-left:20px;
127
+ text-align:left;
128
+ }
129
+
130
+ form div.notes ol li,form div.notes ul li {
131
+ list-style:decimal;
132
+ }
133
+
134
+ form input.long {
135
+ width:300px;
136
+ }
137
+
138
+ form input.short {
139
+ width:100px;
140
+ }
141
+
142
+ form textarea.small {
143
+ width:300px;
144
+ height:80px;
145
+ }
146
+
147
+ .button {
148
+ border: none;
149
+ background-color:#3B5998;
150
+ padding:3px 8px;
151
+ color: white;
152
+ }
153
+
154
+ .button:hover {
155
+ color: white;
156
+ background-color:#3B5998;
157
+ border-color: #3B5998;
158
+ }
159
+
160
+ .fake-buttons {
161
+ height:30px;
162
+ }
163
+
164
+ a.fake-button {
165
+ border:1px solid #aaf;
166
+ background-color:#eef;
167
+ padding:5px;
168
+ }
169
+
170
+ a.fake-button:hover {
171
+ color: white;
172
+ background-color:#3B5998;
173
+ border-color: #3B5998;
174
+ }
175
+
176
+
@@ -0,0 +1,65 @@
1
+ .friend-selector2 .unselected {
2
+ background:transparent url(/images/plus.gif) no-repeat scroll 5px 5px;
3
+ padding:3px 0 3px 18px;
4
+ cursor: pointer;
5
+ }
6
+
7
+ .friend-selector2 .selected {
8
+ background:#FFFFFF url(/images/x_to_hide_gray.gif) no-repeat scroll 2px 2px;
9
+ padding:1px 0 1px 18px;
10
+ position:relative;
11
+ cursor: pointer;
12
+ font-weight:normal;
13
+ }
14
+
15
+ .friend-selector2 .selected-hover {
16
+ background:#FFFFFF url(/images/x_to_hide_dark_blue.gif) no-repeat scroll 2px 2px;
17
+ cursor: pointer;
18
+ }
19
+
20
+ .friend-selector2 .unselected-hover {
21
+ cursor: pointer;
22
+ background:#3b5888 url(/images/plus_white.gif) no-repeat scroll 5px 5px;
23
+ color:white;
24
+ }
25
+
26
+ .friend-selector2 .unselected-list {
27
+ border-right:1px solid #BDC7D8;
28
+ float:left;
29
+ height:147px;
30
+ margin-right:4px;
31
+ overflow:auto;
32
+ padding:5px;
33
+ width:120px;
34
+ }
35
+
36
+ .friend-selector2 .selected-list {
37
+ border-left:1px solid #BDC7D8;
38
+ height:147px;
39
+ overflow:auto;
40
+ padding:5px;
41
+ position:relative;
42
+ }
43
+
44
+ .friend-selector2 .search-friends {
45
+ background:transparent url(/images/searchinputbg.gif) no-repeat scroll 3px 3px;
46
+ border:0 none;
47
+ padding:4px 4px 5px 20px;
48
+ width:240px;
49
+ }
50
+
51
+ .friend-selector2 .search-holder {
52
+ border-bottom:1px solid #BDC7D8;
53
+ }
54
+
55
+ .friend-selector2 .search-holder input {
56
+ border:0 none;
57
+ padding:4px 4px 5px 20px;
58
+ width:240px;
59
+ }
60
+
61
+ .friend-selector2 {
62
+ border:1px solid #BDC7D8;
63
+ margin-bottom:10px;
64
+ width:300px;
65
+ }
@@ -0,0 +1,445 @@
1
+ .moremarginbottom{ margin-bottom:10px;}
2
+
3
+ #pageFriends #single-column {
4
+ padding: 0 10px;
5
+ }
6
+
7
+ #pageFriends #single-column.morepadding{ padding-top:20px;}
8
+
9
+ #pageFriends .cube {
10
+ margin: 10px 0;
11
+ padding: 15px;
12
+ }
13
+
14
+ #pageFriends h3 {
15
+ border-bottom: 1px solid #D8DFEA;
16
+ line-height: 2.0em;
17
+ }
18
+
19
+ .form-invite legend {
20
+ font-weight: bold;
21
+ font-size: 1.2em;
22
+ margin-bottom: 0.5em;
23
+ color: #333;
24
+ }
25
+
26
+ .form-invite legend.icon {
27
+ background: url(/images/hotmail_logo.gif) no-repeat 100% 50%;
28
+ padding-right: 4.5em;
29
+ }
30
+
31
+ * html .form-invite legend {margin-left: -0.5em;}
32
+ *+html .form-invite legend {margin-left: -0.5em;}
33
+
34
+ .form-invite p {
35
+ padding: 5px 0;
36
+ overflow:hidden;
37
+ zoom: 0;
38
+ line-height: 21px;
39
+ }
40
+
41
+ .form-invite label {
42
+ float: left;
43
+ color: #777;
44
+ font-weight: bold;
45
+ text-align: right;
46
+ width: 12.0em;
47
+ height: 21px;
48
+ line-height: 21px;
49
+ }
50
+
51
+ .form-invite label.empty {color:#FFF !important; visibility:hidden;}
52
+
53
+ .form-invite .inputtext {
54
+ width: 15.0em !important;
55
+ }
56
+
57
+ .form-invite .inputtext.short{ width:40px !important;}
58
+
59
+ .form-invite textarea {
60
+ width: 33.4em;
61
+ height: 6.0em;
62
+ color: #808080;
63
+ }
64
+
65
+ .form-invite #inviteurl {
66
+ width: 25.4em !important;
67
+ margin-right: 1.0em;
68
+ }
69
+
70
+ .form-invite strong {
71
+ background: #EDF1F7;
72
+ border: 1px solid #CCCCFF;
73
+ padding: 10px 10px;
74
+ display: block;
75
+ margin-left: 12.0em;
76
+ width: 32.0em;
77
+ line-height: 1.25em;
78
+ font-weight: normal;
79
+ }
80
+
81
+ .invite-table {
82
+ border: 1px solid #C0C0C0;
83
+ margin: 15px;
84
+ }
85
+
86
+ .invite-table-head {
87
+ background: #EDEDED;
88
+ border-bottom: 1px solid #C0C0C0;
89
+ padding: 4px;
90
+ }
91
+
92
+ .invite-table-head input {
93
+ background: #EDEDED;
94
+ margin-right: 5px;
95
+ height: 15px;
96
+ width: 15px;
97
+ }
98
+
99
+ .invite-table-shell {
100
+ max-height: 360px;
101
+ overflow-x: hidden;
102
+ overflow-y: scroll;
103
+ width: 574px;
104
+ }
105
+
106
+ * html div#inviteTableShell {
107
+ height: expression( this.scrollHeight > 360 ? "360px" : "auto" );
108
+ }
109
+
110
+ .invite-table-shell input {
111
+ height: 15px;
112
+ width: 15px;
113
+ }
114
+
115
+ .invite-table-shell table tr.odd {
116
+ background: #F5F5F5;
117
+ }
118
+
119
+ .invite-table-shell table td {
120
+ vertical-align: middle;
121
+ padding: 5px;
122
+ }
123
+
124
+ .invite-table-shell table.add td {
125
+ border-bottom: 1px solid #EEE;
126
+ }
127
+
128
+ .invite-table-shell table td.checkbox-holder {
129
+ width: 12px;
130
+ padding: 5px 0 5px 4px;
131
+ }
132
+
133
+ .invite-table-shell table td.ava-holder {
134
+ width: 50px;
135
+ padding-right: 15px;
136
+ }
137
+
138
+ .invite-table-shell table td.name-holder, .invite-table-shell table td.net-holder {
139
+ color: #808080;
140
+ }
141
+
142
+ .invite-table-shell table td.name-holder strong {
143
+ display: block;
144
+ color: #333;
145
+ }
146
+
147
+ .invite-table-shell table td.mail-holder a {
148
+ color: #333;
149
+ }
150
+
151
+ .invite-table-shell table td.mail-holder a:hover {
152
+ color: #333;
153
+ text-decoration: none;
154
+ }
155
+
156
+ .invite-preview {
157
+ margin: 0 0 10px 14px;
158
+ }
159
+
160
+ .invite-preview strong {
161
+ margin-left: 0;
162
+ }
163
+
164
+ #pageFriends .invite-button {
165
+ margin-left: 14px;
166
+ }
167
+
168
+
169
+ /*cvs*/
170
+ .form-invite legend.icon.mailinvite {
171
+ background: url(/images/invitelogogroup.gif) no-repeat 100% 50%;
172
+ padding-right: 15em;
173
+ }
174
+
175
+ #pageFriends h1.invite{ font-size:15px; margin-bottom:10px;}
176
+
177
+ .cube p.explain{ margin:5px 0 20px;}
178
+ .cube p.explain.nopadding{ margin:3px 0;}
179
+ legend.nopadding,p.nopadding{ padding:0; margin:0;}
180
+
181
+ .cube ol.explainlist{ padding-left:15px;}
182
+ .cube ol.explainlist li{ list-style-position:inside; height:20px; line-height:20px;}
183
+ .cube ol.explainlist li.havebtn{ list-style:none; margin:25px 0 40px;}
184
+
185
+ .cube ul.explainlist1{ display:none; list-style:none; background-color:#FAFAFA; border:1px solid #D8DFEA; padding:10px; margin-top:5px;}
186
+ .cube ul.explainlist1 ul li{ list-style:none;}
187
+ .cube ul.explainlist1 div.expbox{ margin-left:10px; display:none}
188
+ .cube ul.explainlist1 div.expbox ol{ padding-left:10px;}
189
+ .cube ul.explainlist1 div.expbox ol li{ list-style-image:none; list-style-type:decimal; list-style-position:inside; line-height:20px;}
190
+
191
+ .cube p.inputcsv{margin:10px 0 0px -56px;}
192
+
193
+
194
+ /*find newFirend*/
195
+ .cube fieldset h2.findfriend{ display:block; border-bottom:1px #D8DFEA solid; width:100%;}
196
+ .cube fieldset legend.empty{ display:none;}
197
+
198
+ .cube.findfriend{ padding-top:15px; padding-left:15px;}
199
+ *html .cube.findfriend{ padding-top:0px; margin-top:0; padding-left:0px;}
200
+ *+html .cube.findfriend{ margin-bottom:10px;}
201
+ #single-column.findfriend{ padding:0;}
202
+
203
+ /*invite newindex*/
204
+ .form-invite label.empty {color:#FFF !important; visibility:hidden;}
205
+ #content #indexleft{ float:left; width:400px; margin:20px 20px 30px 15px;}
206
+ *html #content #indexleft{ margin-left:10px;}
207
+
208
+ #content #indexright{ float:left; width:170px; border-top:1px #ccc solid; margin-top:88px; padding-bottom:30px; background:url(/images/hotmail_logo.gif) left 70px no-repeat;}
209
+ #content #indexright.fewmargin{ margin-top:60px;}
210
+
211
+
212
+ #content #indexleft label.short{ width:55px;}
213
+ #content #indexleft textarea{ width:330px; height:65px;}
214
+ #content #indexleft p.textarea{ height:auto;}
215
+ *html #content #indexleft p.btngroup{ margin-bottom:30px;}
216
+ *+html #content #indexleft p.btngroup{ margin-bottom:30px;}
217
+
218
+
219
+ #content #indexleft div.mailcontent{ overflow:hidden; line-height:16px; margin-left:56px; padding:10px; color:#333; width:313px; height:116px; background-color:#EDF1F7; border:1px #CCCCFF solid;}
220
+ *html #content #indexleft div.mailcontent{margin-left:59px;}
221
+
222
+ #content #indexleft div.mailcontent h2{ margin-bottom:10px;}
223
+ #content #indexleft div.mailcontent p.pic{ width:100px; height:115px; float:left; margin:0; padding:0; margin-right:10px;}
224
+ #content #indexleft div.mailcontent p.text{ float:left; width:200px;}
225
+
226
+ #content #indexleft p a.visited{ color:#333;}
227
+ #content #indexleft p.subnav{ color:#3B5888;}
228
+
229
+
230
+ #content .form-invite div.reqbox{ width:400px; margin-left:145px; overflow:hidden;}
231
+ #content .form-invite div.reqbox h3{ border-bottom:0;}
232
+
233
+ #content ul.reqlist { list-style:none; padding:5px; overflow:hidden; }
234
+
235
+ *html #content ul.reqlist{zoom:1;}
236
+ #content ul.reqlist li.graybg{ background:#F7F7F7;}
237
+ #content ul.reqlist.graybg.nomargin_top{ background:#F7F7F7;}
238
+ #content ul.reqlist li{ line-height:1.5em; overflow:hidden; clear:both; padding:2px 5px;}
239
+ #content ul.reqlist li.morelink{ margin-top:10px;}
240
+
241
+ #content ul.reqlist li a.resend{ float:right;}
242
+ #content ul.reqlist li a.close{ float:right; margin-left:5px; display:block; width:7px; height:7px; background: url(/images/icon_remove.gif) 0 top no-repeat; margin-top:6px;}
243
+ *html #content ul.reqlist li a.close{ background: url(/images/icon_remove.gif) 0 7px no-repeat; margin-top:-2px;}
244
+
245
+ #content ul.reqlist li span.frdemail{ display:block; float:left; width:100px; margin-right:30px; overflow:hidden;}
246
+
247
+
248
+ #content #indexleft.invitereqlist{ padding: 10px 0; line-height: 21px;}
249
+
250
+
251
+ #content #indexright h2{ color:#3B5998; margin:10px 0 5px; background:url(/images/style_triangle.gif) 150px center no-repeat;}
252
+
253
+
254
+ #content #indexright p.linkbox{ margin-top:45px; border-top:1px #ccc solid; padding-top:15px;}
255
+ #content #indexright p.linkbox span{ display:block; margin:5px 0;}
256
+ #content #indexright p a.invitenote{ color:#3B5998; padding-right:10px; background:url(/images/style_triangle.gif) right no-repeat;}
257
+
258
+
259
+
260
+ /*pageEntrance*/
261
+ .cube.pageentrance{ background-color:#F7F7F7; border-top:1px #ccc solid; padding-left:20px; padding-top:20px;}
262
+ .cube.pageentrance label{ width:auto; float:none;}
263
+ .cube.pageentrance input.inputsubmit,.cube.pageentrance p .alttext{ margin-left:95px;}
264
+ *+html .cube.pageentrance input.inputsubmit,.cube.pageentrance p .alttext{ margin-left:97px;}
265
+
266
+ .cube.pageentrance p a.moresearch{ margin-right:23px;}
267
+ #oak div.entrancebox{ clear:both; width:495px;}
268
+
269
+ .gray .cube.pageentrance.noborder{ border-bottom:0; border-left:0; border-right:0;}
270
+
271
+ .pageentrance ul.actionlist{ list-style:none; margin-top:10px; overflow:hidden; margin-bottom:5px;}
272
+ .pageentrance ul.actionlist li{ list-style:none; height:20px; line-height:20px; float:left; margin-right:20px;}
273
+
274
+ #single-column .nonefromsearch{ text-align:center; margin:20px 0;}
275
+ #single-column .nonefromsearch p.explain_nosearch{ font-size:15px; margin-bottom:15px;}
276
+ #single-column .nonefromsearch p.invite_input .inputtext{ margin-right:5px;}
277
+
278
+ #single-column div.especial{ margin:40px 120px;}
279
+ #single-column div.especial h3{ font-size:12px; line-height:1.5em; padding:3px;}
280
+ #single-column div.especial a{ line-height:25px; margin-left:5px; padding-left:10px; background:url(/images/style_square_tiny.gif) left center no-repeat;}
281
+ #single-column div.especial p.btngroup{ margin:10px 0;}
282
+
283
+
284
+
285
+ /*friends selector*/
286
+ #single-column.multifriends #list-results h1{ font-size:15px; height:1.8em; line-height:1.8em;}
287
+ #single-column.multifriends #list-results ul.schoollist{ list-style-position:inside; width:200px; padding-top:5px; margin-bottom:15px;}
288
+ *html #single-column.multifriends #list-results ul.schoollist{ padding-top:10px;}
289
+ #single-column.multifriends #list-results ul.schoollist li{ float:none; border:0; padding:0; }
290
+ #single-column.multifriends #list-results ul.schoollist li a{ float:right; margin-top:-15px; }
291
+ *html #single-column.multifriends #list-results ul.schoollist li a{ margin-top:0px; }
292
+ *+html #single-column.multifriends #list-results ul.schoollist li a{ margin-top:3px; }
293
+
294
+
295
+ #list-results .selector{ border:1px solid #D8DFEA; padding:0.5em; background-color:#fff; height:340px; overflow:scroll; overflow-x:hidden; margin-bottom:5px;}
296
+ #list-results .selector ul{}
297
+ #list-results .selector ul li{ width:134px; height:64px; overflow:hidden; float:left; border:0 ; padding:0; margin:3px; margin-right:3px; }
298
+
299
+ #list-results .selector ul li a{ display:block; height:64px; padding:4px;}
300
+ #list-results .selector ul li a:hover{ text-decoration:none; background:url(/images/friend_selector_hover_bg.gif) top left no-repeat;}
301
+
302
+ #list-results .selector ul li a:hover h4{ color:#333;}
303
+ #list-results .selector ul li a:hover span.atnet{ color:#666;}
304
+
305
+ #list-results .selector ul li a:hover span.picbox{ background-color:#fff;}
306
+
307
+ #list-results .selector ul li a h4{ color:#333;}
308
+ #list-results .selector ul li a span.atnet{ color:#ccc;}
309
+
310
+ #list-results .selector ul li a span.picbox{ width:50px; height:50px; padding:2px; margin-right:3px; border:1px #ccc solid; float:left; border-color:#b1c1e1;}
311
+
312
+ #list-results .selector ul li a span.picbox span.pic{ background-color:#fff; background-position:center; background-repeat:no-repeat; width:50px; height:50px; display:block; }
313
+
314
+ #list-results .selector ul li a span.picbox img.added{ display:none;}
315
+
316
+ #list-results .selector ul li.select,
317
+ #list-results .selector ul li.select a:hover{ background:url(/images/friend_selector_bg.gif) top left no-repeat;}
318
+ #list-results .selector ul li.select a h4,
319
+ #list-results .selector ul li.select a:hover h4{ color:#fff;}
320
+ #list-results .selector ul li.select a:hover span.atnet{ color:#ccc;}
321
+ #list-results .selector ul li.select a span.picbox,
322
+ #list-results .selector ul li.select a:hover span.picbox{ background:#8497C0;}
323
+ #list-results .selector ul li.select a span.picbox span.pic{ background-position:center; background-repeat:no-repeat; width:50px; height:50px; }
324
+
325
+ #list-results .selector ul li.select a span.picbox span.pic img.added{ display:block; padding-top:26px;}
326
+
327
+
328
+
329
+ /*index invite*/
330
+ #xiaonei-welcome-u-guys p.inviteindex,
331
+ .reginbox p.inviteindex{ margin-top:25px !important; padding-bottom:15px; padding-right:20px; border-bottom:1px #ccc solid; background:url(../img/newsfeed/arrow.gif) 210px 5px no-repeat;}
332
+
333
+ .reginbox p.inviteindex{ margin-right:48px;}
334
+
335
+ .reginbox p.inviteindex{ margin-bottom:15px;}
336
+
337
+ *html #xiaonei-welcome-u-guys p.inviteindex,
338
+ *html .reginbox p.inviteindex{ margin-top:15px; padding-bottom:15px; padding-right:20px; border-bottom:1px #ccc solid; background:url(../img/newsfeed/arrow.gif) 210px 5px no-repeat;}
339
+
340
+ #xiaonei-welcome-u-guys p.inviteindex a.invite,
341
+ .reginbox p.inviteindex a.invite{ padding:3px 0; padding-left:20px; background:url(../img/newsfeed/findfriend.gif) left 3px no-repeat; font-weight:bold;}
342
+
343
+ *+html #xiaonei-welcome-u-guys p.inviteindex a.invite,
344
+ *+html .reginbox p.inviteindex a.invite{ background:url(../img/newsfeed/findfriend.gif) left top no-repeat;}
345
+
346
+ #welcomepage .cube p{ height:auto;}
347
+ #welcomepage .cube p.alttext{ color:#333; padding-bottom:0px;}
348
+ #welcomepage .cube p.alttext a{ font-weight:normal;}
349
+ #welcomepage .cube h2.invitetitle{ background:url(../img/newsfeed/findfriend.gif) left top no-repeat; border-bottom:1px #d8dfea solid; padding-left:20px; padding-bottom:5px;}
350
+ #welcomepage .cube h2.resulttitle{ color:#999999; background-color:#ededed; width:467px; font-size:12px; font-weight:normal; padding:2px 3px 2px; padding-right:0; margin-top:15px; border:1px #ccc solid; border-bottom:0;}
351
+
352
+ div.resultbox{ padding:0; overflow:hidden; overflow-y:scroll; height:300px; width:470px; border:1px #ccc solid; }
353
+
354
+ #welcomepage table.resultlist td{ color:#555; border-bottom:1px #ccc solid; border-collapse:collapse; padding:3px; vertical-align:middle;}
355
+ #welcomepage table.resultlist td p{ padding:0; color:#555;}
356
+ #welcomepage table.resultlist td.pic{ padding:5px; width:60px; vertical-align:middle;}
357
+ #welcomepage table.resultlist td.uname{ width:160px;}
358
+
359
+ #welcomepage table.resultlist td.pic div.picbox{ width:50px; height:50px; overflow:hidden;}
360
+
361
+
362
+ #single-column div.whoInvite{ margin:10px 30px; }
363
+
364
+
365
+ #single-column div.whoInvite p{ margin:5px 0;}
366
+ #single-column p strong{ color:#3b5888 !important;}
367
+ #single-column .gray{ color:#808080; margin-left:35px;}
368
+ *html #single-column .gray{ background:none; margin-left:35px;}
369
+ #single-column .inputsubmit.gray{ color:#808080; margin-left:0;}
370
+
371
+ #single-column p.gray{ margin-top:10px !important; margin-bottom:5px; }
372
+ #single-column div.whoInvite p.floatleft{ float:left; margin:2px 30px 20px 0;}
373
+ #single-column ul.piclist{ overflow:hidden; list-style:none;}
374
+ *html #single-column ul.piclist{ zoom:1;}
375
+ #single-column ul.piclist li{ overflow:hidden; float:left; margin-right:15px;}
376
+ #single-column ul.piclist li p{ display:block; margin-top:3px; width:50px; height:1.5em; line-height:1.5em; text-align:center; overflow:hidden }
377
+ .form-register h3.nomargin{ margin-bottom:0;}
378
+ .form-register p.alttext{ padding:0; margin-bottom:2em !important; margin-top:5px;}
379
+ #single-column ul.piclist li div.imgbox{ width:50px; height:50px; overflow:hidden; }
380
+
381
+
382
+ /*for newinvite 080326*/
383
+ input#gmailAccount{ width:110px !important;}
384
+ input#emailAccount{ width:97px !important;}
385
+ #pageFriends .cube.transparency{ margin:0; padding-top:0; background:none; border:0;}
386
+ #pageFriends .cube.transparency fieldset legend{ display:none;}
387
+
388
+ .msnicon,.gtalkicon,.emailicon,.csvicon,.sentlinkicon,.sentemail,.recommendfriend{ cursor:hand; padding:2px 0 2px 25px; border-bottom:1px #eee solid;}
389
+ #pageFriends .cube.transparency fieldset .formcontent{ display:none; margin-bottom:20px;}
390
+ #pageFriends .cube.transparency h2 a{ display:block;text-decoration:none;}
391
+ *html #pageFriends .cube.transparency h2 a{ display:block; width:100%;}
392
+ #pageFriends .cube.transparency.exp h2 a{ color:#000;}
393
+ #pageFriends .cube.transparency.exp fieldset .formcontent{ display:block;}
394
+
395
+ .msnicon{background:url(/images/msnico.gif) left center no-repeat;}
396
+ .emailicon{background:url(/images/webmailico.gif) left center no-repeat;}
397
+ .gtalkicon{background:url(/images/gtalkico.gif) left center no-repeat;}
398
+ .csvicon{background:url(/images/mailinviteico.gif) left center no-repeat;}
399
+ .mailicon{ padding-left:27px; background:url(/images/mailinviteico.gif) left center no-repeat;}
400
+ .sentlinkicon{ padding-left:27px; background:url(/images/invitelinkico.gif) left center no-repeat;}
401
+ .sentemail{ padding-left:27px; background:url(/images/mailico.gif) left center no-repeat;}
402
+ .recommendfriend{ padding-left:27px; background:url(../img/newsfeed/feed_ico_8.gif) left center no-repeat; margin-bottom:10px;}
403
+
404
+ .cube p.alttext,.cube span.alttext{ color:#808080;}
405
+
406
+
407
+ .cube p.premail{ height:110px;}
408
+ *html .cube p.premail{ height:125px;}
409
+ *+html .cube p.premail{ height:125px;}
410
+
411
+
412
+
413
+ /*for newfriendlist with Tab*/
414
+
415
+ #friendpage .page-title { height:22px; overflow:hidden; padding:15px 0px 0 20px;}
416
+ #friendpage .page-title h2 {background:transparent url(../img/newsfeed/friends.gif) no-repeat scroll 0pt 50%; float:left;
417
+ padding-left:24px; margin-right:10px;}
418
+
419
+ #friendpage .page-title span.subtitle{ background:transparent url(/images/style_triangle_gray.gif) no-repeat scroll 0pt 50%; padding-left:10px; font-weight:bold; color:#808080; font-size:14px;}
420
+ *+html #friendpage .page-title span.subtitle{zoom:1;}
421
+ /*for recommend friends*/
422
+ #friends.wbg_topborder h3{ margin:0;}
423
+ #friends.wbg_topborder div.boxcont{ margin-top:5px;}
424
+ #friends.wbg_topborder{ padding:15px; text-align:left; border:0; margin:0; background:#fff; border-top:1px #D8DFEA solid; }
425
+ #friends.wbg_topborder h1{ font-size:15px; margin-bottom:3px;}
426
+ #friends.wbg_topborder .box .more{ float:right; margin-right:10px; position:static;}
427
+ #friends.wbg_topborder p.moremarginbottom{ margin-bottom:10px;}
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+