sco-fakebook 0.1.1 → 0.1.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.
- data/{README → README.rdoc} +0 -0
- data/Rakefile +19 -2
- data/TODO +4 -2
- data/lib/fakebook-assets/attachments.js +60 -0
- data/lib/fakebook-assets/canvas.css +15 -11
- data/lib/fakebook-assets/canvas.js +14 -0
- data/lib/fakebook-assets/common.css +1225 -809
- data/lib/fakebook-assets/common.js +1878 -0
- data/lib/fakebook-assets/confirmation.js +18 -0
- data/lib/fakebook-assets/dialogpro.css +58 -0
- data/lib/fakebook-assets/drag.js +60 -0
- data/lib/fakebook-assets/edit_app_settings.css +31 -0
- data/lib/fakebook-assets/edit_app_settings.js +16 -0
- data/lib/fakebook-assets/editapps.js +12 -0
- data/lib/fakebook-assets/editprofile.css +42 -0
- data/lib/fakebook-assets/endscript.js +37 -0
- data/lib/fakebook-assets/fb_menubar.png +0 -0
- data/lib/fakebook-assets/fb_menubar_logo.gif +0 -0
- data/lib/fakebook-assets/fbml.js +63 -40
- data/lib/fakebook-assets/feedform.js +31 -0
- data/lib/fakebook-assets/firstscript.js +2 -0
- data/lib/fakebook-assets/flyout_menu.js +51 -0
- data/lib/fakebook-assets/friend_suggester.css +12 -0
- data/lib/fakebook-assets/friend_suggester.js +13 -0
- data/lib/fakebook-assets/ie6.css +715 -0
- data/lib/fakebook-assets/ie7.css +406 -0
- data/lib/fakebook-assets/js_strings.js +2 -0
- data/lib/fakebook-assets/link_controller.js +26 -0
- data/lib/fakebook-assets/livemessage.js +22 -0
- data/lib/fakebook-assets/pages.css +432 -0
- data/lib/fakebook-assets/profile.css +629 -0
- data/lib/fakebook-assets/quickling.js +71 -0
- data/lib/fakebook-assets/scrollarea.js +20 -0
- data/lib/fakebook-assets/search_friend_source.js +17 -0
- data/lib/fakebook-assets/search_typeaheadpro.js +20 -0
- data/lib/fakebook-assets/sort.js +30 -0
- data/lib/fakebook-assets/static_source.js +25 -0
- data/lib/fakebook-assets/tidied.html +439 -0
- data/lib/fakebook-assets/tour_tip.css +8 -0
- data/lib/fakebook-assets/typeahead_source.js +28 -0
- data/lib/fakebook-assets/typeaheadpro.css +84 -0
- data/lib/fakebook-assets/ubersearch.css +342 -0
- data/lib/fakebook-assets/webkit.css +10 -0
- data/lib/fakebook.rb +4 -4
- data/lib/templates/old.html.erb +62 -0
- data/lib/templates/standard.html.erb +69 -39
- metadata +51 -20
- data/Manifest +0 -20
- data/fakebook.gemspec +0 -39
- data/lib/fakebook-assets/base.js +0 -317
- data/lib/fakebook-assets/extended.js +0 -49
- data/lib/fakebook-assets/fakebook.js +0 -122
- data/lib/fakebook-assets/navigator_bg.gif +0 -0
- data/lib/fakebook-assets/shadow_gray.gif +0 -0
- data/lib/fakebook-assets/string.js +0 -61
- data/lib/fakebook-assets/white.gif +0 -0
- data/lib/templates/minimal.html.erb +0 -22
data/{README → README.rdoc}
RENAMED
|
File without changes
|
data/Rakefile
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
require 'rake'
|
|
2
|
-
require './lib/fakebook'
|
|
3
2
|
|
|
3
|
+
desc "install gem"
|
|
4
4
|
task :install_gem do
|
|
5
|
-
puts `gem build fakebook.gemspec && gem install fakebook
|
|
5
|
+
puts `gem build fakebook.gemspec && sudo gem install fakebook*.gem --no-rdoc --no-ri && rm fakebook*.gem`
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
desc "update gemspec with latest file list, because github can't deal with File.glob tricks"
|
|
9
|
+
task :manifest do
|
|
10
|
+
list = Dir['**/*'].sort
|
|
11
|
+
spec_file = Dir['*.gemspec'].first
|
|
12
|
+
list -= [spec_file] if spec_file
|
|
13
|
+
|
|
14
|
+
if spec_file
|
|
15
|
+
spec = File.read(spec_file)
|
|
16
|
+
spec.gsub! /^(\s* s.(test_)?files \s* = \s* )( \[ [^\]]* \] | %w\( [^)]* \) )/mx do
|
|
17
|
+
assignment = $1
|
|
18
|
+
bunch = $2 ? list.grep(/^test\//) : list
|
|
19
|
+
'%s%%w(%s)' % [assignment, bunch.join(' ')]
|
|
20
|
+
end
|
|
21
|
+
File.open(spec_file, 'w') {|f| f << spec }
|
|
22
|
+
end
|
|
6
23
|
end
|
data/TODO
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
-
|
|
1
|
+
- bring back the form that lets you change your fb_* params
|
|
2
2
|
- document how to use different templates; provide config/command-line option for specifying template
|
|
3
|
-
- shell out to facebook's fbml/fbjs parser? (
|
|
3
|
+
- shell out to facebook's fbml/fbjs parser? (lots of dependencies, including firefox)
|
|
4
|
+
- eliminate assets that aren't really used
|
|
4
5
|
- parse_fbml needs to become a full-blown parser
|
|
5
6
|
- if-is-user
|
|
6
7
|
- is-logged-out
|
|
@@ -17,3 +18,4 @@
|
|
|
17
18
|
- allow for per-user or per-environment configs?
|
|
18
19
|
- implement ajax, including the local proxy
|
|
19
20
|
- figure out what the license and attribution is for the HTML parsing stuff
|
|
21
|
+
- switch to hpricot for the parsing and re-writing? or libxml-ruby?
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* Source: Global Cache */
|
|
2
|
+
/* Location: js/attachments.js r109415 */
|
|
3
|
+
/* Machine: 10.16.139.102 */
|
|
4
|
+
/* Generated: July 15th 2008 12:34:53 AM PDT */
|
|
5
|
+
/* HTTP Host: static.ak.fbcdn.net */
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
function fix_attachment_more_menu_alignment(more_link){var attachment_buttons_list=ge('attachment_buttons_list');var total_width=attachment_buttons_list.offsetWidth;if(more_link){var more_offset=Vector2.getElementPosition(more_link).x;var attachments_offset=Vector2.getElementPosition(attachment_buttons_list).x;var offset=more_offset-attachments_offset;var icon_width=more_link.offsetWidth;var space_left=total_width-offset;if(space_left>=icon_width&&space_left<126){var more_menu=ge('wall_more_menu');var right_margin=0;more_menu.style.left='auto';more_menu.style.right=right_margin+'px';}}}
|
|
9
|
+
function wall_video_thumb_adjust(play_img_div,thumb_img){if(parseInt(ua.ie())==6){play_img_div.style.marginTop=(-1*thumb_img.height-3)+'px';play_img_div.style.paddingTop=(thumb_img.height-19)+'px';}
|
|
10
|
+
play_img_div.style.display='block';}
|
|
11
|
+
function attachments(context_id){this.attachment_added=false;this.attachment_oid=null;this.attachment_app_id=null;this.is_share=false;this.attached_share=false;this.scrape_last_count=0;this.dialog=null;this.wall_attachments={};this.last_url_scraped=null;this.context=context_id;this.edit_container_id='attachment_edit_container_'+context_id;this.edit_loading_id='attachment_edit_loading_'+context_id;this.edit_id='attachment_edit_'+context_id;this.view_container_id='attachment_view_container_'+context_id;this.view_wrapper_id='attachment_view_wrapper_'+context_id;this.view_id='attachment_view_'+context_id;this.remove_id='attachment_remove_'+context_id;this.view_loading_id='attachment_view_loading_'+context_id;this.is_active=false;}
|
|
12
|
+
attachments.prototype.show_edit_loading=function(){show(this.edit_loading_id);}
|
|
13
|
+
attachments.prototype.hide_edit_loading=function(){hide(this.edit_loading_id);}
|
|
14
|
+
attachments.prototype.show_attachment_edit=function(title,html,share_type,ajax_params){this.is_active=true;if(this.dialog){return;}
|
|
15
|
+
var is_app=(share_type==14);this.is_share=(share_type==100);var wrapper='<div id="'+this.edit_container_id+'">'+'<div id="'+this.edit_loading_id+'"> </div>'+'</div>';this.dialog=new pop_dialog('attachment_dialog');this.dialog.is_stackable=true;this.dialog.show_choice(title,wrapper,tx('at01'),function(){if(this.is_share){this._share_attach();}else{this._attach(is_app,ajax_params,true);}
|
|
16
|
+
this.dialog.hide();this.dialog=null;this.is_active=false;}.bind(this),tx('sh:cancel-button'),function(){this.dialog.fade_out(100);this.remove_attachment_view();this.dialog=null;this.is_active=false;}.bind(this));var container=ge(this.edit_container_id);var div=document.createElement('div');div.className='share_stage';add_css_class_name(div,'attachment_edit');div.id=this.edit_id;div.is_app=is_app;container.appendChild(div);set_inner_html(div,html);if(this.is_share){placeholderSetup('share_link');var ie=ua.ie();if(!ie||ie>6){$('share_link').focus();}}
|
|
17
|
+
return div;}
|
|
18
|
+
attachments.prototype._show_attachment_view=function(html,is_app){var container=ge(this.view_container_id);var div=document.createElement('div');div.className='share_stage';add_css_class_name(div,'attachment_view');div.id=this.view_id;div.is_app=is_app;container.appendChild(div);set_inner_html(div,html);hide('attachment_buttons_list');var wrapper=ge(this.view_wrapper_id);wrapper.style.display='block';this.attachment_added=true;return div;}
|
|
19
|
+
attachments.prototype.remove_attachment_view=function(){var container=ge(this.view_container_id);var attachment=ge(this.view_id);if(this.attachment_added&&attachment){this.removed=true;container.removeChild(attachment);hide(this.view_wrapper_id);if(ge('attachment_buttons_list')){show('attachment_buttons_list');}
|
|
20
|
+
var attachment_remove=ge(this.remove_id);attachment_remove.className=attachment_remove.className.replace(' edit','');}
|
|
21
|
+
this.attachment_added=false;this.attachment_oid=null;this.attachment_app_id=null;this.is_share=false;this.attached_share=false;}
|
|
22
|
+
attachments.prototype.get_all_form_elements=function(attachment){var inputs=[];if(attachment){var html_input=attachment.getElementsByTagName('input');for(var i=0;i<html_input.length;i++){inputs.push(html_input[i]);}
|
|
23
|
+
var html_select=attachment.getElementsByTagName('select');for(var i=0;i<html_select.length;i++){inputs.push(html_select[i]);}
|
|
24
|
+
var html_textarea=attachment.getElementsByTagName('textarea');for(var i=0;i<html_textarea.length;i++){inputs.push(html_textarea[i]);}}
|
|
25
|
+
return inputs;}
|
|
26
|
+
attachments.prototype._add_attachment_input_data=function(data,attachment){if(!attachment){return false;}
|
|
27
|
+
var inputs=this.get_all_form_elements(attachment);if(attachment.is_app){data['attachment']={'app':{},'type':14};for(var i=0;i<inputs.length;i++){if(!(inputs[i].type=="radio"||inputs[i].type=="checkbox")||inputs[i].checked){data['attachment']['app'][inputs[i].name]=inputs[i].value;}}}else{var has_type=false;for(var i=0;i<inputs.length;i++){if(inputs[i].name=='attachment[type]'){has_type=true;}
|
|
28
|
+
if(inputs[i].name=='attachment[params][url]'){if(!inputs[i].value||inputs[i].value=='http://'){return false;}}
|
|
29
|
+
data[inputs[i].name]=inputs[i].value;}
|
|
30
|
+
if(!has_type){return false;}}
|
|
31
|
+
data['context']=this.context;return true;}
|
|
32
|
+
attachments.prototype._attach=function(is_app,ajax_params,has_form_data){var asyncData={};if(has_form_data){var attachment=ge(this.edit_id);var added=this._add_attachment_input_data(asyncData,attachment);if(!added){return;}}
|
|
33
|
+
if(ajax_params){for(var param in ajax_params){asyncData[param]=ajax_params[param];}}
|
|
34
|
+
var loading=ge(this.view_loading_id);loading.style.display='block';var view_container=this._show_attachment_view('',is_app);var onDone=function(response){var responseObj=response.getPayload();if(!view_container.removed){hide(this.view_loading_id);set_inner_html(view_container,responseObj['html']);this.attachment_oid=responseObj['oid'];this.attachment_app_id=responseObj['app_id'];}}.bind(this);new AsyncRequest().setHandler(onDone).setURI('/ajax/attachments.php').setErrorHandler(this.remove_attachment_view).setTransportErrorHandler(this.remove_attachment_view).setData(asyncData).send();}
|
|
35
|
+
attachments.prototype.add_post_data=function(post_data){if(this.attachment_added){if(this.attached_share){this._add_attachment_input_data(post_data,ge(this.view_id));}else{post_data['attachment']={'oid':this.attachment_oid,'app_id':this.attachment_app_id};}}}
|
|
36
|
+
attachments.prototype.prepare_wall_post=function(){var attachment=ge(this.view_id);if(attachment){var inputs=this.get_all_form_elements(attachment);for(var i=0;i<inputs.length;i++){inputs[i].disabled=true;}}}
|
|
37
|
+
attachments.prototype.show_full_attachment=function(post_id){if(typeof this.wall_attachments[post_id]!='string'){return;}
|
|
38
|
+
hide('attachment_compact_'+post_id);hide('attached_item_info_'+post_id);hide('attachment_compact_td_'+post_id);attachment_div=ge('wall_attachment_'+post_id);set_inner_html(attachment_div,this.wall_attachments[post_id]);}
|
|
39
|
+
attachments.prototype.fix_app_inputs_on_send=function(){var attachment=ge(this.view_id);if(!this.attachment_added||!attachment){return;}
|
|
40
|
+
if(!this.attached_share){new_inputs=[];new_inputs.push(create_hidden_input('attachment[oid]',this.attachment_oid));new_inputs.push(create_hidden_input('attachment[app_id]',this.attachment_app_id));if(attachment.is_app){new_inputs.push(create_hidden_input('attachment[type]',14));new_inputs.push(create_hidden_input('attachment[app][message_sent]',true));}
|
|
41
|
+
for(var i=0,il=new_inputs.length;i<il;i++){attachment.appendChild(new_inputs[i]);}}}
|
|
42
|
+
attachments.prototype.share_attach_from_dialog=function(){this._share_attach();generic_dialog.get_dialog(ge(this.edit_container_id)).hide();this.dialog=null;}
|
|
43
|
+
attachments.prototype._share_attach=function(){var share_link=ge('share_link');var url=share_link.value;if(url&&url!='http://'){this._share_submit_url(url);}}
|
|
44
|
+
attachments.prototype._share_submit_url=function(url){this._show_attachment_view(this.share_html_block,false);var view_container=ge(this.view_container_id);var stage_area=view_container.childNodes[0].childNodes[0].childNodes[0];this._attach_link_url(stage_area,url,true);var attachment_remove=ge(this.remove_id);attachment_remove.className+=' edit';this.attached_share=true;}
|
|
45
|
+
attachments.prototype._attach_link_url=function(obj,url,show_loading){var attachment=composer_attachment.from_url(url);if(!attachment){return;}
|
|
46
|
+
attachment.container_ready(obj,show_loading);}
|
|
47
|
+
attachments.prototype._is_fb_code_url=function(url){return url.search('fb:')==0;}
|
|
48
|
+
attachments.prototype._detect_url=function(obj,force){var url='';var start_position=-1;var end_position=-1;if(force==true){if(url=obj.value.match(/www\.\S*/i)){start_position=obj.value.indexOf(url[0]);end_position=start_position+url[0].length;url="http://"+url[0];}else{var match='';if(match=obj.value.match(/(http|fb):\/\/\S*/i)){url=match[0];start_position=obj.value.indexOf(match[0]);end_position=start_position+match[0].length;}}}else{if(url=obj.value.match(/www\.\S*[\s|\)|\!]/i)){start_position=obj.value.indexOf(url[0]);end_position=start_position+url[0].length;url="http://"+url[0];}else{var match='';if(match=obj.value.match(/(http|fb):\/\/\S*[\s|\)|\!]/i)){url=match[0];start_position=obj.value.indexOf(match[0]);end_position=start_position+match[0].length;}}}
|
|
49
|
+
if(url){url=url.replace(/[\s|\)|\!]/g,'');var last_char=url.charAt(url.length-1);if(last_char.match(/[,|.]/)){url=url.substr(0,url.length-1);}
|
|
50
|
+
var cursor_position=get_caret_position(obj).start;if(url!=this.last_url_scraped&&cursor_position&&start_position>=0&&end_position>=0&&(cursor_position<start_position||cursor_position>=end_position)){this.last_url_scraped=url;if(this._is_fb_code_url(url)){obj.value=obj.value.substr(0,start_position)+obj.value.substr(end_position);}}else{url='';}}
|
|
51
|
+
return url;}
|
|
52
|
+
attachments.prototype._auto_scrape_url=function(obj){if(this.attachment_added){return false;}
|
|
53
|
+
if(!this.scrape_last_count){this.scrape_last_count=0;}
|
|
54
|
+
if((obj.value.length-this.scrape_last_count)>5||(this.scrape_last_count==0&&obj.value.length>1)){var force=true;}
|
|
55
|
+
var url=this._detect_url(obj,force);if(url){if(this._is_fb_code_url(url)){var data={'code':url,'context':this.context};this._attach(true,data,false);}else{this._share_submit_url(url);}}
|
|
56
|
+
this.scrape_last_count=obj.value.length;return false;}
|
|
57
|
+
attachments.prototype.start_textarea_interval=function(obj){this.textarea_obj=obj;this.textarea_interval=setInterval(this._textarea_interval_function.bind(this),50);}
|
|
58
|
+
attachments.prototype._textarea_interval_function=function(){if(typeof this!='undefined'&&this.textarea_obj&&(!this.attachment_added&&ge(this.view_wrapper_id))){this._auto_scrape_url(this.textarea_obj);}else{this.stop_textarea_interval();}}
|
|
59
|
+
attachments.prototype.stop_textarea_interval=function(){clearInterval(this.textarea_interval);}
|
|
60
|
+
if(window.Bootloader){Bootloader.done(1);}
|
|
@@ -1,16 +1,20 @@
|
|
|
1
|
-
/* Source:
|
|
2
|
-
/* Location:
|
|
3
|
-
/* Machine: 10.
|
|
4
|
-
/* Generated:
|
|
1
|
+
/* Source: Global Cache */
|
|
2
|
+
/* Location: css/canvas.css r109426 */
|
|
3
|
+
/* Machine: 10.16.140.108 */
|
|
4
|
+
/* Generated: July 15th 2008 12:35:28 AM PDT */
|
|
5
|
+
/* HTTP Host: static.ak.fbcdn.net */
|
|
6
|
+
|
|
5
7
|
|
|
6
8
|
.fbframe #footer_actions{clear:both;background:#f7f7f7;margin:0px;border-top:solid 1px #ddd;}
|
|
7
9
|
.fbframe #footer_actions ul{list-style:none;padding:10px 20px 25px 20px;margin:0px;}
|
|
8
10
|
.fbframe #footer_actions li{float:left;line-height:18px;padding:0px 2px 0px 2px;}
|
|
11
|
+
.fbframe #content{overflow:hidden;}
|
|
12
|
+
.frame_narrow #content{width:646px;}
|
|
13
|
+
.frame_wide #content{width:760px;}
|
|
14
|
+
.frame_wide #fb_sell_profile{overflow:hidden;max-height:100px;}
|
|
15
|
+
.canvas_iframe_util{overflow:hidden;width:646px;height:800px;}
|
|
16
|
+
.frame_wide .canvas_iframe_util{width:760px;}
|
|
9
17
|
.canvas_rel_positioning{position:relative;overflow:hidden;zoom:1;}
|
|
10
|
-
.
|
|
11
|
-
.
|
|
12
|
-
.
|
|
13
|
-
.canvas_error_page div#error_message p{line-height:16px;margin:10px 0px 15px 0px;}
|
|
14
|
-
.canvas_error_page div#error_message div.action_buttons{padding:15px 0px;text-align:center;}
|
|
15
|
-
.canvas_error_page div#error_message div.action_buttons .inputbutton{margin:0px 4px;}
|
|
16
|
-
.canvas_error_page div#error_message div.parse_runtime_errors{background:#f7f7f7;border:1px solid #ccc;margin:10px 0px;padding:10px;}
|
|
18
|
+
.fbml_add_profile_button .dh_trans_new_media span{background:url(/images/fbml/fbml_add_profile_box_icon.gif) no-repeat 11px center;padding-left:30px;}
|
|
19
|
+
.fbml_add_profile_button .dh_trans_new_media span{background:url(/images/fbml/fbml_add_profile_box_icon.gif) no-repeat 0px center;padding-left:20px;padding-right:0px;}
|
|
20
|
+
body.section_button{background:transparent;}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* Source: Global Cache */
|
|
2
|
+
/* Location: js/canvas.js r105208 */
|
|
3
|
+
/* Machine: 10.16.139.109 */
|
|
4
|
+
/* Generated: July 9th 2008 3:47:33 PM PDT */
|
|
5
|
+
/* HTTP Host: static.ak.fbcdn.net */
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
function PlatformCanvasController(app_id){this.app_id=app_id;setTimeout(this.refreshAppSession.bind(this),PlatformCanvasController.SESSION_REFRESH);}
|
|
9
|
+
PlatformCanvasController.SESSION_REFRESH=3300000;PlatformCanvasController.prototype.refreshAppSession=function(){new AsyncRequest().setURI('/ajax/session.php').setData({'app_id':this.app_id}).setReadOnly(true).setHandler(function(response){var payload=response.getPayload();if(payload['session_end']>0){setTimeout(this.refreshAppSession.bind(this),PlatformCanvasController.SESSION_REFRESH);}}.bind(this)).send();}
|
|
10
|
+
var smartIframes=[];function smartSizingFrameAdded(){window.onresize=_resizeSmartFrames;smartIframes=[];var allIframes=document.getElementsByTagName('iframe');for(var i=0;i<allIframes.length;i++){var frame=allIframes[i];if(frame.className=='smart_sizing_iframe'){smartIframes.push(frame);frame.style.width=frame.parentNode.scrollWidth-2+"px";}}
|
|
11
|
+
_resizeSmartFrames();}
|
|
12
|
+
if(window.innerHeight){var windowHeight=function(){return window.innerHeight;};}else if(document.documentElement&&document.documentElement.clientHeight){var windowHeight=function(){return document.documentElement.clientHeight;};}else{var windowHeight=function(){return document.body.clientHeight;};}
|
|
13
|
+
function _resizeSmartFrames(){var height=windowHeight();for(var i=0;i<smartIframes.length;i++){var frame=smartIframes[i];var spaceLeft=height-elementY(frame)-61;frame.style.height=spaceLeft/(smartIframes.length-i)+'px';}}
|
|
14
|
+
if(window.Bootloader){Bootloader.done(1);}
|
|
@@ -1,22 +1,27 @@
|
|
|
1
|
-
/* Source:
|
|
2
|
-
/* Location: css/common.css.pkg.php
|
|
3
|
-
/* Machine: 10.
|
|
4
|
-
/* Generated:
|
|
1
|
+
/* Source: Backing Store */
|
|
2
|
+
/* Location: css/common.css.pkg.php r110506 */
|
|
3
|
+
/* Machine: 10.16.140.107 */
|
|
4
|
+
/* Generated: July 17th 2008 4:09:44 AM PDT */
|
|
5
|
+
/* HTTP Host: static.ak.fbcdn.net */
|
|
5
6
|
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
html{height:100%;}
|
|
9
|
+
body{height:100%;}
|
|
10
|
+
#fb_nonfooter{padding:0px;margin:0px;position:relative;min-height:100%;}
|
|
11
|
+
#fb_nonfooter_content{padding:0px 0px 100px 0px;margin:0px;overflow:hidden;}
|
|
12
|
+
body{background:#fff;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;font-size:11px;margin:0px;padding:0px;text-align:left;}
|
|
8
13
|
h1, h2, h3, h4, h5{font-size:13px;color:#333;margin:0px;padding:0px;}
|
|
9
14
|
h1{font-size:14px;}
|
|
10
15
|
h4, h5{font-size:11px;}
|
|
11
16
|
p{font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size:11px;text-align:left;}
|
|
12
|
-
a{color:#3b5998;text-decoration:none;}
|
|
17
|
+
a{cursor:pointer;color:#3b5998;-moz-outline-style:none;text-decoration:none;}
|
|
13
18
|
a:hover{text-decoration:underline;}
|
|
14
19
|
img{border:0px;}
|
|
15
20
|
select{border:1px solid #BDC7D8;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;font-size:11px;padding:2px;}
|
|
16
21
|
td,
|
|
17
22
|
td.label{font-size:11px;text-align:left;}
|
|
18
23
|
.wbr{display:block;float:left;}
|
|
19
|
-
.aural{display:block;margin-left:-5000px;overflow:hidden;}
|
|
24
|
+
.aural{width:0;height:0;display:block;margin-left:-5000px;overflow:hidden;}
|
|
20
25
|
.standard_message{padding:10px;}
|
|
21
26
|
.standard_message.no_padding{padding:0;}
|
|
22
27
|
.standard_message.shorten{padding-bottom:0;}
|
|
@@ -47,147 +52,84 @@ td.label{font-size:11px;text-align:left;}
|
|
|
47
52
|
.page_title{border-bottom:1px solid #ccc;padding:10px 10px 5px;margin:0px 10px;}
|
|
48
53
|
.standard_title .page_title{border-bottom:none;}
|
|
49
54
|
.needs_translated{background:#85b84d;}
|
|
50
|
-
#book{
|
|
51
|
-
#
|
|
52
|
-
#
|
|
53
|
-
#
|
|
54
|
-
#
|
|
55
|
-
#
|
|
56
|
-
#
|
|
57
|
-
|
|
58
|
-
#
|
|
59
|
-
|
|
60
|
-
#
|
|
61
|
-
#
|
|
62
|
-
#
|
|
63
|
-
|
|
64
|
-
#
|
|
65
|
-
|
|
66
|
-
#
|
|
67
|
-
#squicklogin p{line-height:18px;padding:0px;}
|
|
68
|
-
#squicklogin #doquicklogin{margin:5px 0 8px 0;}
|
|
55
|
+
#book{margin:0 auto;padding:55px 12px 0px 12px;width:940px;position:relative;}
|
|
56
|
+
#content,
|
|
57
|
+
#content .two_columns{float:left;width:760px;}
|
|
58
|
+
.widebook #book #content{float:none;margin:0 auto;width:760px;}
|
|
59
|
+
.widebook.narrow_content #book #content{float:none;margin:0 auto;width:600px;}
|
|
60
|
+
body.widebook.compatibility_mode #book{width:658px;}
|
|
61
|
+
.narrow_content #content{width:560px;padding:0px 100px;}
|
|
62
|
+
.profile .profile_sidebar_ads #sidebar_ads{float:none;}
|
|
63
|
+
#sidebar_ads{position:relative;z-index:3;float:left;width:160px;margin-left:20px;padding-top:0px;}
|
|
64
|
+
.admarket_ad{border-top:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ccc;border-left:1px solid #ccc;padding-bottom:10px;margin-bottom:10px;}
|
|
65
|
+
#book .compatibility_frame{padding:0px;margin:0px;}
|
|
66
|
+
.compatibility_mode #book{background:#fff;padding-left:0px;padding-right:0px;width:838px;}
|
|
67
|
+
.compatibility_mode #book .compatibility_frame{border:5px solid #e5e5e5;float:left;margin:0px;padding:0px;width:648px
|
|
68
|
+
}
|
|
69
|
+
.compatibility_mode #book #content{border:1px solid #aaa;float:none;margin:0px;width:646px;}
|
|
70
|
+
.page_full_bleed #book{width:auto;padding-left:0px;padding-right:0px;margin:0px;}
|
|
71
|
+
.page_full_bleed #book #content{float:none;width:auto;margin:0px;padding:0px;}
|
|
69
72
|
#qsearchform #q{margin:0px;}
|
|
70
|
-
#qsearch{padding:
|
|
71
|
-
#qsearch
|
|
72
|
-
#qsearch a.findfriends{font-size:9px;line-height:13px;margin:0px;padding:1px 0px 0px 0px;}
|
|
73
|
+
#qsearch div.findfriends{float:right;line-height:13px;margin:0px;padding:4px 5px 0px 0px;}
|
|
74
|
+
#qsearch a.findfriends{line-height:13px;margin:0px;padding:1px 0px 0px 0px;}
|
|
73
75
|
#qsearch .inputsearch{display:block;margin-top:0px;margin-right:20px;width:123px;}
|
|
74
76
|
#qsearch .inputsearch.typeahead_found{background-color:white;}
|
|
75
77
|
#qsearch.hourglass #q,
|
|
76
78
|
#qsearch.hourglass #nm{float:none;border-color:#95a5c6;padding-left:17px;margin-right:0px;width:108px;}
|
|
77
|
-
#qsearch h2{margin-
|
|
79
|
+
#qsearch h2{margin:3px -3px 4px 0;padding:0px;}
|
|
78
80
|
#qsearch .search_arrow,
|
|
79
|
-
#qsearch .global_menu_arrow_active{position:relative;float:left;width:13px;margin:0px 0px 1px -1px;border-right:1px solid #f7f7f7;border-top:1px solid #f7f7f7;padding:2px 0px 0px 0px;height:16px;background:url(/
|
|
80
|
-
#qsearch
|
|
81
|
-
#qsearch
|
|
82
|
-
#qsearch .
|
|
83
|
-
#qsearch
|
|
84
|
-
#qsearch .search_arrow_active span{text-indent:-99px;display:none;}
|
|
85
|
-
#qsearch #global_search_link{display:-moz-inline-stack;display:inline-block;padding:2px 3px 3px 3px;border-top:solid 1px #f7f7f7;margin-right:2px;line-height:13px;}
|
|
86
|
-
#qsearch #global_search_link:hover{background:#6D84B4;color:white;text-decoration:none;}
|
|
87
|
-
#qsearch #global_search_link.active,
|
|
88
|
-
#qsearch #global_search_link.active:hover{position:relative;border-top:solid 1px #f7f7f7;border-left:solid 1px #f7f7f7;background:#6D84B4;color:white;margin-right:1px;left:-1px;}
|
|
89
|
-
#qsearch #global_search_link.active,
|
|
90
|
-
#qsearch #global_search_link.active:hover{text-decoration:none;border-top:solid 1px #3B5998;border-left:solid 1px #3B5998;}
|
|
91
|
-
#search_options_menu{z-index:5;padding:5px 0px;position:absolute;background:white;margin:-2px 0px 0px -1px;border:solid 1px #3B5998;}
|
|
92
|
-
#search_options_menu a{display:block;color:#3b5998;width:95px;border-right:solid 1px white;border-left:solid 1px white;padding:4px 10px;}
|
|
93
|
-
#search_options_menu a:hover{text-decoration:none;background:#6D84B4;border-right:solid 1px #6d84b4;border-left:solid 1px #6d84b4;color:white;}
|
|
94
|
-
#qsearch_alternate{clear:both;margin-bottom:-4px;padding:0px;}
|
|
81
|
+
#qsearch .global_menu_arrow_active{position:relative;float:left;width:13px;margin:0px 0px 1px -1px;border-right:1px solid #f7f7f7;border-top:1px solid #f7f7f7;padding:2px 0px 0px 0px;height:16px;background:url(/images/down_arrow.gif) no-repeat 0px center;}
|
|
82
|
+
#qsearch.hourglass #q,
|
|
83
|
+
#qsearch.hourglass #nm{float:none;border-color:#95a5c6;padding-left:17px;margin-right:0px;width:108px;}
|
|
84
|
+
#qsearch h3.qsearch_header{margin:0px;padding:3px 0px 4px 3px;}
|
|
85
|
+
#qsearch #global_search_link{margin:2px 5px 3px 3px;border-top:solid 1px #f7f7f7;line-height:13px;}
|
|
95
86
|
#qsearch_field{float:left;padding:0px 0px 1px 0px;}
|
|
96
|
-
#qsearch_field .inputtext#q{border:1px solid #
|
|
87
|
+
#qsearch_field .inputtext#q{border:1px solid #274686;border-right:0px;display:block;margin:0px;padding:3px;width:102px;}
|
|
97
88
|
#qsearch_submit{float:left;width:21px;}
|
|
98
|
-
#qsearch_submit a.qsearch_button{background:#6d84b4 url(/
|
|
99
|
-
#qsearch_submit a.qsearch_button span.qsearch_glass{background:url(/
|
|
89
|
+
#qsearch_submit a.qsearch_button{background:#6d84b4 url(/images/search_input_gloss.gif) top center repeat-x;border-bottom:1px solid #506798;border-left:1px solid #617aad;border-right:1px solid #506798;border-top:1px solid #5973a9;display:block;font-size:11px;margin:0px;padding:0px;text-decoration:none;width:19px;}
|
|
90
|
+
#qsearch_submit a.qsearch_button span.qsearch_glass{background:url(/images/search_glass.gif) 0% 70% no-repeat;display:block;margin:0px;padding:3px 0px;}
|
|
100
91
|
#qsearch_submit a.qsearch_button:active{background:#5b75ab;border:1px solid #3b5998;}
|
|
101
|
-
#qsearch_submit a.qsearch_button:active span.qsearch_glass{background:url(/
|
|
102
|
-
#
|
|
103
|
-
#
|
|
104
|
-
#
|
|
105
|
-
#
|
|
106
|
-
#
|
|
107
|
-
#
|
|
108
|
-
#
|
|
92
|
+
#qsearch_submit a.qsearch_button:active span.qsearch_glass{background:url(/images/search_glass.gif) 100% 70% no-repeat;}
|
|
93
|
+
#pagefooter{margin:0px auto;margin-top:-80px;width:964px;background:#f8f8f8;border:1px solid #a6a6a6;position:relative;}
|
|
94
|
+
#pagefooter .pagefooter_topborder{padding:5px 10px 4px 10px;border-top:1px solid #ebebeb;}
|
|
95
|
+
#pagefooter .copyright{float:left;color:#777;margin:0px;}
|
|
96
|
+
#pagefooter .copyright_and_location .pipe{float:left;display:block;}
|
|
97
|
+
#pagefooter .locale_footer_selector{float:left;}
|
|
98
|
+
#pagefooter .copyright .brand{padding:0px 0px 2px 22px;background:url(/images/icons/hidden.gif) no-repeat;}
|
|
99
|
+
#pagefooter .f_links{float:right;}
|
|
100
|
+
#sidebar .browse_apps_link{padding-top:5px;}
|
|
101
|
+
#sidebar .edit_apps{float:right;text-align:right;font-size:9px;margin-top:2px;font-weight:bold;}
|
|
102
|
+
#sidebar #app_list, #app_non_nav_list{clear:both;list-style:none;margin:0;padding:2px 3px 0px;}
|
|
109
103
|
#sidebar #app_non_nav_list{padding-bottom:5px;}
|
|
110
104
|
#sidebar .divider_bar{margin-left:22px;border-bottom:solid 1px #d6d6d6;line-height:0px;margin-bottom:3px;}
|
|
111
105
|
#sidebar .app_list .list_item{margin:0px 0px 0px -35px;padding:0px 0px 0px 35px;}
|
|
112
106
|
#sidebar .app_list_outside h2{margin-left:-5px;padding:3px 0px;}
|
|
113
107
|
#sidebar .app_list .list_item .container{margin:0px;padding:0px 0px 0px;}
|
|
114
108
|
#sidebar .app_list li a{margin:0px;padding:0px;}
|
|
115
|
-
#sidebar .app_list .photos_app_link{background:url(/
|
|
116
|
-
#sidebar .app_list .video_app_link{background:url(/
|
|
117
|
-
#sidebar .app_list .notes_app_link{background:url(/
|
|
118
|
-
#sidebar .app_list .groups_app_link{background:url(/
|
|
119
|
-
#sidebar .app_list .events_app_link{background:url(/
|
|
120
|
-
#sidebar .app_list .book_app_link{background:url(/
|
|
121
|
-
#sidebar .app_list .posted_app_link{background:url(/
|
|
109
|
+
#sidebar .app_list .photos_app_link{background:url(/images/icons/photo.gif) 0px 2px no-repeat;}
|
|
110
|
+
#sidebar .app_list .video_app_link{background:url(/images/icons/video.gif) 0px 2px no-repeat;}
|
|
111
|
+
#sidebar .app_list .notes_app_link{background:url(/images/icons/note.gif) 0px 2px no-repeat;}
|
|
112
|
+
#sidebar .app_list .groups_app_link{background:url(/images/icons/group.gif) 0px 3px no-repeat;}
|
|
113
|
+
#sidebar .app_list .events_app_link{background:url(/images/icons/event.gif) 0px 2px no-repeat;}
|
|
114
|
+
#sidebar .app_list .book_app_link{background:url(/images/icons/bookreview.gif) 0px 2px no-repeat;}
|
|
115
|
+
#sidebar .app_list .posted_app_link{background:url(/images/icons/post.gif) 0px 2px no-repeat;}
|
|
122
116
|
#sidebar .app_list .icon{float:left;margin:0px;padding:0px;height:16px;width:16px;}
|
|
123
|
-
#sidebar .app_list .link_title{background:transparent no-repeat 0px 1px;cursor:pointer;display:block;line-height:16px;padding:1px 0px 3px
|
|
117
|
+
#sidebar .app_list .link_title{background:transparent no-repeat 0px 1px;cursor:pointer;display:block;line-height:16px;padding:1px 0px 3px 0px;margin:0px 0px 0px 0px;overflow:hidden;}
|
|
118
|
+
#sidebar .app_list .container_link{padding-left:22px;}
|
|
119
|
+
#sidebar .app_list .container_icon{position:absolute;}
|
|
124
120
|
#sidebar .app_list .highlight_link{font-weight:normal;}
|
|
125
121
|
#sidebar .more_section{margin-top:2px;display:block;}
|
|
126
|
-
#
|
|
127
|
-
#
|
|
128
|
-
#
|
|
129
|
-
#sidebar .less_apps{background:url(/fakebook-assets/up_arrow_grey_small.gif) no-repeat 10px 2px;}
|
|
130
|
-
#sidebar .more_apps a, #sidebar .less_apps a, .more_section a{color:#666666;}
|
|
131
|
-
#publicity{height:61px;padding:3px 3px 7px;}
|
|
132
|
-
#publicity h5{border:none;margin:0px;padding:0px;color:#333;line-height:19px;}
|
|
133
|
-
#publicity h5.new{line-height:17px;padding:0px 0px 2px 36px;background:url(/fakebook-assets/publicity_new.gif) no-repeat left center;}
|
|
134
|
-
#publicity h5.tip{line-height:17px;padding:0px 0px 2px 29px;background:url(/fakebook-assets/publicity_tip.gif) no-repeat left center;}
|
|
135
|
-
#publicity p{margin:0px;color:#333;line-height:14px;}
|
|
136
|
-
#widebar{width:649px;float:left;}
|
|
137
|
-
#widebar_shadow{width:1px;float:left;overflow:hidden;}
|
|
138
|
-
#navigator{z-index:20;position:relative;margin:0px 1px 0px 0px;padding:9px 0px 4px 0px;height:2em;background:url(/fakebook-assets/navigator_bg.gif) no-repeat left bottom;line-height:2em;}
|
|
139
|
-
#navigator a{text-decoration:none;color:white;}
|
|
140
|
-
#navigator ul.main_set{font-size:13px;float:left;display:block;list-style:none;margin:0px;padding:0px;}
|
|
141
|
-
#navigator .main_set li{float:left;display:block;margin:0px 10px 0px 0px;font-weight:bold;}
|
|
142
|
-
#navigator .main_set li a{white-space:nowrap;padding:3px 5px;}
|
|
143
|
-
#navigator .main_set li a.active,
|
|
144
|
-
#navigator .main_set li a:hover{background:#5c75aa;}
|
|
145
|
-
#navigator .main_set li a.edit_link{color:#d8dfea;font-weight:normal;}
|
|
146
|
-
#navigator .main_set li a.edit_link:hover{text-decoration:underline;background:transparent;}
|
|
147
|
-
#navigator ul.secondary_set{float:right;display:block;list-style:none;margin:0px;padding:0px;padding-right:17px;font-size:11px;}
|
|
148
|
-
#navigator .secondary_set li{float:left;display:block;margin:0px 10px 0px 0px;}
|
|
149
|
-
#navigator .secondary_set li a{color:#c3cddf;}
|
|
150
|
-
#navigator .secondary_set li a:hover{color:white;text-decoration:underline;}
|
|
151
|
-
#navigator.shortened .main_set li{margin:0 0 0 4px;}
|
|
152
|
-
#navigator.shortened .main_set .navigator_menu li{margin:0;}
|
|
153
|
-
#navigator.shortened .main_set li.main_set_first{margin:0 0 0 1px;}
|
|
154
|
-
#navigator.shortened ul.secondary_set{padding:1px 15px 0 0;}
|
|
155
|
-
#navigator.shortened .secondary_set li{margin:0 8px 0 0;}
|
|
156
|
-
#navigator.shortened .main_set li a.edit_link{font-size:11px;}
|
|
157
|
-
#book #content_shadow{margin:2px 0px 0px 1px;background:transparent url(/fakebook-assets/shadow_gray.gif) repeat-y top right;padding:0px;border-bottom:solid 1px #ddd;}
|
|
158
|
-
#ad_1{clear:both;}
|
|
159
|
-
#pagefooter{clear:both;padding:0px;margin:0px;height:50px;line-height:16px;}
|
|
160
|
-
#pagefooter ul{display:block;list-style:none;float:right;margin:0px;padding:8px 2px 4px;}
|
|
161
|
-
#pagefooter li{float:left;padding:0px;}
|
|
162
|
-
#pagefooter .footer_links a{padding:2px 5px;}
|
|
163
|
-
#pagefooter .f_links{width:446px;float:right;}
|
|
164
|
-
#pagefooter .copyright{width:180px;color:#777;float:left;margin:0px;padding:8px 10px 0px;}
|
|
165
|
-
#pagefooter .copyright .brand{padding:0px 0px 2px 22px;background:url(/fakebook-assets/icons/hidden.gif) no-repeat;}
|
|
166
|
-
#subheader{border-left:solid 1px #b7b7b7;border-right:solid 1px #b7b7b7;}
|
|
167
|
-
#navigator .main_set li .with_arrow{margin-top:0px;}
|
|
168
|
-
.global_menu_arrow_active:focus{outline:0px;}
|
|
169
|
-
#navigator .main_set li a.global_menu_arrow,
|
|
170
|
-
#navigator .main_set li a.global_menu_arrow_active{height:19px;width:17px;margin:0px 0px -10px -1px;padding:3px 0px 3px;background:transparent url(/fakebook-assets/global_menu_arrow.gif) no-repeat 0px center;}
|
|
171
|
-
#navigator .main_set li a.global_menu_arrow_active,
|
|
172
|
-
#navigator .main_set li a.global_menu_arrow:hover,
|
|
173
|
-
#navigator .main_set li a.global_menu_arrow_active:hover{background:#5c75aa url(/fakebook-assets/global_menu_arrow.gif) no-repeat 0px center;}
|
|
174
|
-
#navigator .navigator_menu{margin:-1px;position:absolute;z-index:100;background:white;border:solid 1px #3b5998;}
|
|
175
|
-
#navigator .navigator_menu.friends{max-width:250px;}
|
|
176
|
-
#navigator .navigator_menu.networks{max-width:250px;}
|
|
177
|
-
#navigator .navigator_menu.attachments{max-width:250px;}
|
|
178
|
-
#navigator .navigator_menu ul{font-size:11px;line-height:1em;font-weight:normal;list-style:none;padding:5px 0px;margin:0px;}
|
|
179
|
-
#navigator .navigator_menu li{float:none;cursor:pointer;font-weight:normal;padding:0px;margin:0px;}
|
|
180
|
-
#navigator .navigator_menu li.menu_divider{display:block;margin:4px 10px;font-size:1px;line-height:1px;cursor:default;border-bottom:solid 1px #eee;}
|
|
181
|
-
#navigator .navigator_menu li a{display:block;color:#3b5998;border-right:solid 1px white;border-left:solid 1px white;padding:4px 25px 4px 10px;}
|
|
182
|
-
#navigator .navigator_menu a:hover{text-decoration:none;background:#3b5998;border-right:solid 1px #6d84b4;border-left:solid 1px #6d84b4;color:white;}
|
|
122
|
+
#pagefooter ul{margin:0;padding:0;text-decoration:none;}
|
|
123
|
+
#pagefooter ul li{display:inline;padding:0 0px 0px 10px;}
|
|
124
|
+
#pagefooter .copyright_and_location{width:300px;float:left;}
|
|
183
125
|
.title_header{background:white;padding:20px 20px 17px;}
|
|
184
|
-
.title_header h2{margin:0px;font-size:14px;padding:0px 0px 0px 24px;background:url(/
|
|
126
|
+
.title_header h2{margin:0px;font-size:14px;padding:0px 0px 0px 24px;background:url(/images/icons/hidden.gif) no-repeat 1px 1px;}
|
|
185
127
|
.title_header h2.no_icon{padding:0px;background:none;}
|
|
186
128
|
.title_header.add_border{border-bottom:solid 1px #ccc;}
|
|
187
129
|
.title_header.gray{background:#f7f7f7;}
|
|
188
130
|
.title_header.shorten{padding-bottom:0px;}
|
|
189
131
|
.title_header.no_padding{padding:0px;}
|
|
190
|
-
.title_header h4{color:#666;font-size:11px;padding:3px 0 0 24px;}
|
|
132
|
+
.title_header h4{color:#666;font-size:11px;font-weight:normal;padding:3px 0 0 24px;}
|
|
191
133
|
.title_header h4.no_icon{padding:3px 0 0 0;}
|
|
192
134
|
.login_title_header{padding:20px 0px 10px;margin-bottom:10px;border-bottom:solid 1px #ccc;}
|
|
193
135
|
.login_title_header h2{margin:0px;padding:0px;font-size:14px;}
|
|
@@ -207,73 +149,90 @@ td.label{font-size:11px;text-align:left;}
|
|
|
207
149
|
.media_header .picture img{display:block;}
|
|
208
150
|
.obj_media_header .media_gray_bg{background:#f7f7f7;z-index:0;border-bottom:solid 1px #cccccc;margin:-18px -254px 7px -20px;padding:18px 114px 0px 20px;width:512px;}
|
|
209
151
|
.media_header .media_gray_bg{background:#f7f7f7;z-index:0;border-bottom:solid 1px #cccccc;margin:-18px -14px 7px -80px;padding:18px 14px 0px 80px;width:552px;}
|
|
210
|
-
.dashboard_header{padding:10px 10px
|
|
152
|
+
.compatibility_mode .dashboard_header{padding:10px 10px 0;}
|
|
211
153
|
.dashboard_header .dh_links{padding:0px 10px 5px;border-bottom:solid 1px #ccc;}
|
|
212
154
|
.dashboard_header .dh_links .dh_actions{float:left;}
|
|
213
155
|
.dashboard_header .dh_links .dh_help{float:right;}
|
|
214
156
|
.dashboard_header .dh_links .pipe{padding:0px 7px;color:#aaa;}
|
|
215
157
|
.dashboard_header .dh_links form{display:inline;overflow:hidden;width:0px;}
|
|
216
|
-
.dashboard_header .dh_links .dh_actions .back_to_link{background:url(/
|
|
158
|
+
.dashboard_header .dh_links .dh_actions .back_to_link{background:url(/images/arrow_micro_back.gif) no-repeat 0% 55%;padding-left:10px;}
|
|
217
159
|
.dashboard_header .dh_titlebar{padding:10px 10px 12px;}
|
|
218
160
|
.dashboard_header .dh_titlebar h2{float:left;font-size:14px;padding:7px 0px 7px 24px;background-repeat:no-repeat;background-position:1px 8px;}
|
|
219
|
-
.dashboard_header .dh_titlebar .dh_subtitle{float:left;
|
|
161
|
+
.dashboard_header .dh_titlebar .dh_subtitle{background-image:url(/images/dashboard_subtitle_arrow.gif);background-position:0px 5px;background-repeat:no-repeat;color:#000;float:left;font-weight:bold;font-size:14px;margin:7px 0px 0px 5px;padding:0px 0px 0px 13px;}
|
|
220
162
|
.dashboard_header .dh_titlebar .dh_search{float:right;margin-top:3px;height:30px;line-height:30px;}
|
|
221
163
|
.dashboard_header .dh_titlebar .dh_search input{margin:0px;}
|
|
222
164
|
.dashboard_header .dh_titlebar .dh_right{float:right;margin-top:2px;height:30px;}
|
|
223
|
-
.dashboard_header .dh_new_media_shell{float:right;background:url(/
|
|
224
|
-
.dh_new_media{display:block;float:left;color:#777;text-decoration:none;background:url(/
|
|
225
|
-
.dh_new_media .tr{background:url(/
|
|
226
|
-
.dh_new_media .bl{background:url(/
|
|
227
|
-
.dh_new_media .br{background:url(/
|
|
228
|
-
.dh_new_media span{background:url(/
|
|
165
|
+
.dashboard_header .dh_new_media_shell{float:right;background:url(/images/new_media_button_active.gif) no-repeat bottom -30px;margin:7px 0px 0px 10px;}
|
|
166
|
+
.dh_new_media{display:block;float:left;color:#777;text-decoration:none;background:url(/images/new_media_button.gif) no-repeat;}
|
|
167
|
+
.dh_new_media .tr{background:url(/images/new_media_button.gif) no-repeat top right;}
|
|
168
|
+
.dh_new_media .bl{background:url(/images/new_media_button.gif) no-repeat bottom left;}
|
|
169
|
+
.dh_new_media .br{background:url(/images/new_media_button.gif) no-repeat bottom right;}
|
|
170
|
+
.dh_new_media span{background:url(/images/new_media_button_plus.gif) no-repeat 9px center;color:#333;font-size:11px;font-weight:bold;display:block;padding:3px 9px 5px 22px;text-shadow:white 0px 1px 1px;}
|
|
229
171
|
.dh_new_media:hover{text-decoration:underline;}
|
|
230
172
|
.dh_new_media:active,
|
|
231
173
|
.dh_new_media:active .tr,
|
|
232
174
|
.dh_new_media:active .bl,
|
|
233
|
-
.dh_new_media:active .br{background-image:url(/
|
|
234
|
-
.
|
|
235
|
-
.
|
|
175
|
+
.dh_new_media:active .br{background-image:url(/images/new_media_button_active.gif);}
|
|
176
|
+
.dh_new_media_done,
|
|
177
|
+
.dh_new_media_done .tr,
|
|
178
|
+
.dh_new_media_done .bl,
|
|
179
|
+
.dh_new_media_done .br{background-image:url(/images/new_media_button_done.gif);}
|
|
180
|
+
.dh_trans_new_media{display:block;color:#777;text-decoration:none;}
|
|
181
|
+
.dh_trans_new_media .tl{width:10px;background:url(/images/trans_new_media_button.png) no-repeat;line-height:1px;}
|
|
182
|
+
.dh_trans_new_media .tr{width:10px;background:url(/images/trans_new_media_button.png) no-repeat top right;line-height:1px;}
|
|
183
|
+
.dh_trans_new_media .bl{background:url(/images/trans_new_media_button.png) no-repeat bottom left;}
|
|
184
|
+
.dh_trans_new_media .br{background:url(/images/trans_new_media_button.png) no-repeat bottom right;}
|
|
185
|
+
.dh_trans_new_media .bottom{background:url(/images/trans_new_media_button.png) transparent -7px bottom;}
|
|
186
|
+
.dh_trans_new_media .content{background:url(/images/trans_new_media_button.png) no-repeat -7px 0px;vertical-align:bottom;}
|
|
187
|
+
.dh_trans_new_media .lower_row{height:9px }
|
|
188
|
+
.dh_trans_new_media span{color:#333;font-size:11px;font-weight:bold;display:block;padding:3px 5px 4px 22px;text-shadow:white 0px 1px 1px;}
|
|
189
|
+
.dh_trans_new_media:hover span{text-decoration:underline;}
|
|
190
|
+
.dh_trans_new_media:active .content,
|
|
191
|
+
.dh_trans_new_media:active .bottom,
|
|
192
|
+
.dh_trans_new_media:active .tl,
|
|
193
|
+
.dh_trans_new_media:active .tr,
|
|
194
|
+
.dh_trans_new_media:active .bl,
|
|
195
|
+
.dh_trans_new_media:active .br{background-image:url(/images/trans_new_media_button_active.png);}
|
|
196
|
+
.dh_toolbar_buttons{background:url(/images/buttons/toolbar_button_hover.gif) no-repeat bottom left;}
|
|
197
|
+
.dh_toolbar_button{background-image:url(/images/buttons/toolbar_button_active.gif);color:#777;display:block;float:left;text-decoration:none;}
|
|
236
198
|
.dh_toolbar_button:hover{text-decoration:none;}
|
|
237
|
-
.dh_toolbar_button_left{background:url(/
|
|
238
|
-
.dh_toolbar_button_left .bottom_left{background:url(/
|
|
239
|
-
.dh_toolbar_button_left .bottom_right{background:url(/
|
|
199
|
+
.dh_toolbar_button_left{background:url(/images/buttons/toolbar_button.gif) no-repeat top left;}
|
|
200
|
+
.dh_toolbar_button_left .bottom_left{background:url(/images/buttons/toolbar_button.gif) no-repeat bottom left;}
|
|
201
|
+
.dh_toolbar_button_left .bottom_right{background:url(/images/buttons/toolbar_button_border.gif) no-repeat bottom right;}
|
|
240
202
|
.dh_toolbar_button_left:hover,
|
|
241
|
-
.dh_toolbar_button_left:hover .bottom_left{background-image:url(/
|
|
203
|
+
.dh_toolbar_button_left:hover .bottom_left{background-image:url(/images/buttons/toolbar_button_hover.gif);}
|
|
242
204
|
.dh_toolbar_button_left:active,
|
|
243
|
-
.dh_toolbar_button_left:active .bottom_left{background-image:url(/
|
|
244
|
-
.dh_toolbar_button_center{background:url(/
|
|
245
|
-
.dh_toolbar_button_center .bottom_left{background:url(/
|
|
246
|
-
.dh_toolbar_button_center .bottom_right{background:url(/
|
|
205
|
+
.dh_toolbar_button_left:active .bottom_left{background-image:url(/images/buttons/toolbar_button_active.gif);}
|
|
206
|
+
.dh_toolbar_button_center{background:url(/images/buttons/toolbar_button.gif) no-repeat top center;}
|
|
207
|
+
.dh_toolbar_button_center .bottom_left{background:url(/images/buttons/toolbar_button.gif) no-repeat bottom center;}
|
|
208
|
+
.dh_toolbar_button_center .bottom_right{background:url(/images/buttons/toolbar_button_border.gif) no-repeat bottom right;}
|
|
247
209
|
.dh_toolbar_button_center:hover,
|
|
248
|
-
.dh_toolbar_button_center:hover .bottom_left{background-image:url(/
|
|
210
|
+
.dh_toolbar_button_center:hover .bottom_left{background-image:url(/images/buttons/toolbar_button_hover.gif);}
|
|
249
211
|
.dh_toolbar_button_center:active,
|
|
250
|
-
.dh_toolbar_button_center:active .bottom_left{background-image:url(/
|
|
251
|
-
.dh_toolbar_button_right{background:url(/
|
|
252
|
-
.dh_toolbar_button_right .top_right{background:url(/
|
|
253
|
-
.dh_toolbar_button_right .bottom_left{background:url(/
|
|
254
|
-
.dh_toolbar_button_right .bottom_right{background:url(/
|
|
212
|
+
.dh_toolbar_button_center:active .bottom_left{background-image:url(/images/buttons/toolbar_button_active.gif);}
|
|
213
|
+
.dh_toolbar_button_right{background:url(/images/buttons/toolbar_button.gif) no-repeat top center;}
|
|
214
|
+
.dh_toolbar_button_right .top_right{background:url(/images/buttons/toolbar_button.gif) no-repeat top right;}
|
|
215
|
+
.dh_toolbar_button_right .bottom_left{background:url(/images/buttons/toolbar_button.gif) no-repeat bottom center;}
|
|
216
|
+
.dh_toolbar_button_right .bottom_right{background:url(/images/buttons/toolbar_button.gif) no-repeat bottom right;}
|
|
255
217
|
.dh_toolbar_button_right:hover,
|
|
256
218
|
.dh_toolbar_button_right:hover .top_right,
|
|
257
219
|
.dh_toolbar_button_right:hover .bottom_left,
|
|
258
|
-
.dh_toolbar_button_right:hover .bottom_right{background-image:url(/
|
|
220
|
+
.dh_toolbar_button_right:hover .bottom_right{background-image:url(/images/buttons/toolbar_button_hover.gif);}
|
|
259
221
|
.dh_toolbar_button_right:active,
|
|
260
222
|
.dh_toolbar_button_right:active .top_right,
|
|
261
223
|
.dh_toolbar_button_right:active .bottom_left,
|
|
262
|
-
.dh_toolbar_button_right:active .bottom_right{background-image:url(/
|
|
263
|
-
.dh_toolbar_button span{background-color:transparent;background-image:url(/
|
|
224
|
+
.dh_toolbar_button_right:active .bottom_right{background-image:url(/images/buttons/toolbar_button_active.gif);}
|
|
225
|
+
.dh_toolbar_button span{background-color:transparent;background-image:url(/images/buttons/toolbar_button_plus.gif);background-position:9px 48%;background-repeat:no-repeat;color:#333;font-size:11px;font-weight:bold;display:block;text-shadow:white 0px 1px 1px;}
|
|
264
226
|
.dh_toolbar_button_left span{background-position:9px 48%;padding:3px 9px 5px 22px;}
|
|
265
227
|
.dh_toolbar_button_center span{background-position:7px 48%;padding:3px 9px 5px 20px;}
|
|
266
228
|
.dh_toolbar_button_right span{background-position:7px 48%;padding:3px 12px 5px 20px;}
|
|
267
|
-
.dh_toolbar_button#toolbar_button_plus span{background-image:url(/
|
|
268
|
-
.dh_toolbar_button#toolbar_button_record span{background-image:url(/
|
|
269
|
-
.dh_toolbar_button#toolbar_button_message span{background-image:url(/
|
|
229
|
+
.dh_toolbar_button#toolbar_button_plus span{background-image:url(/images/buttons/toolbar_button_plus.gif);}
|
|
230
|
+
.dh_toolbar_button#toolbar_button_record span{background-image:url(/images/buttons/toolbar_button_record.gif);}
|
|
231
|
+
.dh_toolbar_button#toolbar_button_message span{background-image:url(/images/buttons/toolbar_button_message.gif);}
|
|
270
232
|
.dh_toolbar_button_center#toolbar_button_message span,
|
|
271
233
|
.dh_toolbar_button_right#toolbar_button_message span{background-position:6px 48%;}
|
|
272
234
|
.empty_message{color:#333;font-size:13px;line-height:17px;padding:20px 20px 50px 20px;text-align:center;background:#f7f7f7;}
|
|
273
|
-
.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
|
|
274
|
-
.clearfix{display:inline-block;}
|
|
275
|
-
html[xmlns] .clearfix{display:block;}
|
|
276
|
-
* html .clearfix{height:1%;}
|
|
235
|
+
.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;} .clearfix{display:inline-block;} html[xmlns] .clearfix{display:block;} * html .clearfix{height:1%;}
|
|
277
236
|
.resetstyles{padding:0px;border:0px;margin:0px;overflow:visible;background:none;border-spacing:0;color:#000;cursor:auto;direction:ltr;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal;}
|
|
278
237
|
form{margin:0px;padding:0px;}
|
|
279
238
|
label{cursor:pointer;color:#666666;font-weight:bold;}
|
|
@@ -292,15 +251,10 @@ textarea{border:1px solid #bdc7d8;padding:3px;font-size:11px;font-family:"lucida
|
|
|
292
251
|
.inputbutton,
|
|
293
252
|
.inputsubmit{padding:2px 15px 3px 15px;border-style:solid;border-top-width:1px;border-left-width:1px;border-bottom-width:1px;border-right-width:1px;border-top-color:#D9DFEA;border-left-color:#D9DFEA;border-bottom-color:#0e1f5b;border-right-color:#0e1f5b;background-color:#3b5998;color:#FFFFFF;font-size:11px;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;text-align:center;}
|
|
294
253
|
.inputaux{background:#f0f0f0;color:#000;border-top-color:#e7e7e7;border-right-color:#666;border-bottom-color:#666;border-left-color:#e7e7e7;}
|
|
254
|
+
.inputaux_disabled{color:#999;}
|
|
295
255
|
.inputcheckbox{border:0px;}
|
|
296
|
-
.inputsearch{background:white url(/
|
|
256
|
+
.inputsearch{background:white url(/images/magglass.png) no-repeat 3px 4px;padding-left:17px;}
|
|
297
257
|
.transparent_png_ie6{display:none;}
|
|
298
|
-
#inline_flyer{background-color:#efeded;color:#909090;border-bottom:1px solid #d8dfea;padding:4px 10px 2px 10px;}
|
|
299
|
-
#inline_flyer .external_link a{text-decoration:none;border-bottom:1px dotted #3b5998;}
|
|
300
|
-
#inline_flyer .external_link a:hover{text-decoration:none;border-bottom:1px dotted #efeded;}
|
|
301
|
-
#inline_flyer #abbreviated_body{float:left;width:430px;}
|
|
302
|
-
#inline_flyer #expander{float:right;}
|
|
303
|
-
#inline_flyer_content{background-color:#efeded;border-bottom:1px solid #d8dfea;padding:4px 10px;}
|
|
304
258
|
.error_page #content{padding:20px;}
|
|
305
259
|
.error_page #error{margin:0px;}
|
|
306
260
|
#tabs{text-align:center;padding:4px 0px;margin:10px 20px 0px;border-bottom:solid 1px #3B5998;}
|
|
@@ -317,7 +271,7 @@ textarea{border:1px solid #bdc7d8;padding:3px;font-size:11px;font-family:"lucida
|
|
|
317
271
|
.tabs .right_tabs{padding-right:10px;float:right;}
|
|
318
272
|
.tabs .back_links{padding-right:20px;float:right;}
|
|
319
273
|
.toggle_tabs{margin:0;padding:0;list-style:none;text-align:center;display:inline;}
|
|
320
|
-
.toggle_tabs li{display:inline;padding:2px 0px 3px;background:#f1f1f1 url(/
|
|
274
|
+
.toggle_tabs li{display:inline;padding:2px 0px 3px;background:#f1f1f1 url(/images/components/toggle_tab_gloss.gif) top left repeat-x;}
|
|
321
275
|
.toggle_tabs li a{border:1px solid #898989;border-left:0;color:#333;font-weight:bold;padding:2px 8px 3px 9px;}
|
|
322
276
|
.toggle_tabs li a small{font-size:11px;font-weight:normal;}
|
|
323
277
|
.toggle_tabs li a:focus{outline:0px;}
|
|
@@ -335,6 +289,7 @@ textarea{border:1px solid #bdc7d8;padding:3px;font-size:11px;font-family:"lucida
|
|
|
335
289
|
.pagerpro a:hover{background:#3B5998;border-color:#D8DFEA;border-bottom:1px solid #3B5998;color:white;text-decoration:none;}
|
|
336
290
|
.pagerpro .current a,
|
|
337
291
|
.pagerpro .current a:hover{background:transparent;border-color:#3B5998;border-bottom:2px solid #3B5998;color:#3B5998;font-weight:bold;padding-left:2px;padding-right:2px;}
|
|
292
|
+
.pagerpro a.disabled{color:#999;cursor:default;background:transparent;border:none;}
|
|
338
293
|
.summary_bar{border-bottom:1px solid #D8DFEA;clear:both;padding:11px 20px 0px;color:black;font-weight:normal;line-height:normal;}
|
|
339
294
|
.summary_bar h1, .summary_bar h2, .summary_bar h3, .summary_bar h4, .summary_bar h5{font-weight:normal;}
|
|
340
295
|
.summary_bar .summary{color:#333;float:left;padding-top:3px;padding-bottom:4px;}
|
|
@@ -352,15 +307,15 @@ textarea{border:1px solid #bdc7d8;padding:3px;font-size:11px;font-family:"lucida
|
|
|
352
307
|
.action_bar label{color:#444;}
|
|
353
308
|
.share_and_hide{font-size:9px;}
|
|
354
309
|
.s_and_h_big{font-size:11px;}
|
|
355
|
-
.share_and_hide a{padding:0px 14px 1px 4px;display:block;float:left;background:white url(/
|
|
356
|
-
.s_and_h_big a{background:white url(/
|
|
310
|
+
.share_and_hide a{padding:0px 14px 1px 4px;display:block;float:left;background:white url(/images/share_icon_small.gif) repeat-y right center;border:solid 1px #7f93bc;}
|
|
311
|
+
.s_and_h_big a{background:white url(/images/share_icon.gif) repeat-y right center;padding:1px 18px 2px 4px;}
|
|
357
312
|
.share_and_hide a.save{background:#eceff5;border-left:none;}
|
|
358
313
|
.share_and_hide a.with_share{border:solid 1px #adbad4;border-left:none;}
|
|
359
|
-
.share_and_hide a:hover{color:#fff;border-color:#3B5998;text-decoration:none;background:#3B5998 url(/
|
|
360
|
-
.s_and_h_big a:hover{background:#3B5998 url(/
|
|
361
|
-
.share_and_hide a.x_to_hide{border:none;width:3px;padding:1px 5px 2px;margin-left:3px;background:transparent url(/
|
|
314
|
+
.share_and_hide a:hover{color:#fff;border-color:#3B5998;text-decoration:none;background:#3B5998 url(/images/share_icon_small_hover.gif) repeat-y right center;}
|
|
315
|
+
.s_and_h_big a:hover{background:#3B5998 url(/images/share_icon_hover.gif) repeat-y right center;}
|
|
316
|
+
.share_and_hide a.x_to_hide{border:none;width:3px;padding:1px 5px 2px;margin-left:3px;background:transparent url(/images/x_to_hide.gif) no-repeat center center;}
|
|
362
317
|
.s_and_h_big a.x_to_hide{padding:2px 5px 3px;}
|
|
363
|
-
.share_and_hide a.x_to_hide:hover{background:#3B5998 url(/
|
|
318
|
+
.share_and_hide a.x_to_hide:hover{background:#3B5998 url(/images/x_to_hide_hover.gif) no-repeat center center;}
|
|
364
319
|
.quail{color:#3B5998;float:left;padding:3px 0px;}
|
|
365
320
|
.quail a:hover{cursor:default;text-decoration:none;}
|
|
366
321
|
ul.square_bullets{list-style:square;padding-left:20px;color:#3B5998;}
|
|
@@ -373,20 +328,22 @@ ul.square_bullets li span{color:black;}
|
|
|
373
328
|
.two_column .left{float:left;}
|
|
374
329
|
.no_padding{padding:0px;}
|
|
375
330
|
.see_all{text-align:right;}
|
|
331
|
+
.standard_status_element{visibility:hidden;}
|
|
332
|
+
.standard_status_element.async_saving{visibility:visible;}
|
|
376
333
|
.welcome_buttons{display:block;padding:8px 0 0 0;}
|
|
377
334
|
.welcome_buttons a{float:left;display:block;width:170px;padding:5px;margin-bottom:5px;color:#666;background-color:#f7f7f7;margin-right:12px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;}
|
|
378
335
|
html #content .welcome_buttons a:hover{text-decoration:none;color:#333;background:#d8dfea;border-top:1px solid #3b5998;border-bottom:1px solid #3b5998;}
|
|
379
|
-
.welcome_buttons a h4{margin:0;padding:0 0 0 14px;font-size:13px;color:#333;background:transparent url(/
|
|
336
|
+
.welcome_buttons a h4{margin:0;padding:0 0 0 14px;font-size:13px;color:#333;background:transparent url(/images/sitetour/tour_arrow.gif) no-repeat 3px 2px;border:0px;}
|
|
380
337
|
.welcome_buttons a:hover h4{color:#000;}
|
|
381
338
|
.welcome_buttons a p{font-size:11px;margin:0;padding:3px 0 2px 14px;}
|
|
382
339
|
.welcome_buttons a p span{display:block;}
|
|
383
340
|
.under_login_tour{padding:3px 0 0 0;}
|
|
384
341
|
.under_login_tour a{width:112px;padding:3px 4px 4px 4px;margin:8px 0 0 0;}
|
|
385
342
|
html #book .under_login_tour a:hover{text-decoration:none;color:#333;background:#d8dfea;border-top:1px solid #3b5998;border-bottom:1px solid #3b5998;}
|
|
386
|
-
.under_login_tour a h4{font-size:11px;padding:0 0 0 9px;background:transparent url(/
|
|
387
|
-
.under_login_tour a p{
|
|
388
|
-
.new_feature_tag{padding:3px 0 0 6px;background:url(/
|
|
389
|
-
.new_feature_tag div{
|
|
343
|
+
.under_login_tour a h4{font-size:11px;padding:0 0 0 9px;background:transparent url(/images/sitetour/tour_arrow_micro.gif) no-repeat 2px 4px;}
|
|
344
|
+
.under_login_tour a p{padding:3px 0 0 9px;}
|
|
345
|
+
.new_feature_tag{padding:3px 0 0 6px;background:url(/images/new_feature_tag.gif) no-repeat;height:14px;float:left;margin-right:6px;width:32px;}
|
|
346
|
+
.new_feature_tag div{color:#fff;}
|
|
390
347
|
.new_feature_tag_title{padding-top:1px;margin-bottom:3px;font-weight:bold;}
|
|
391
348
|
a.link_btn_style{color:#fff;font-size:13px;outline:none;display:block;height:23px;background-repeat:no-repeat;background-position:-1000px -1000px;}
|
|
392
349
|
html[xmlns] a.link_btn_style{display:table;}
|
|
@@ -396,21 +353,21 @@ a.link_btn_style div div{padding:0px 2px 0px 0px;background-position:top right;}
|
|
|
396
353
|
a.link_btn_style div div div{padding:0px;background-position:top left;}
|
|
397
354
|
a.link_btn_style span.btn_text{display:inline;margin:2px -2px -2px 2px;padding:2px 19px 5px 17px;background-position:bottom right;}
|
|
398
355
|
* html a.link_btn_style span{position:relative;}
|
|
399
|
-
a.reg_btn_style{background-image:url(/
|
|
356
|
+
a.reg_btn_style{background-image:url(/images/welcome/btn_register_signup_active_bg.gif);}
|
|
400
357
|
a.reg_btn_style span.btn_text{color:#fff;font-weight:normal;}
|
|
401
358
|
a.reg_btn_style div,
|
|
402
|
-
a.reg_btn_style span{background-image:url(/
|
|
359
|
+
a.reg_btn_style span{background-image:url(/images/welcome/btn_register_signup_bg.gif);}
|
|
403
360
|
a.reg_btn_style:active div,
|
|
404
|
-
a.reg_btn_style:active span{background-image:url(/
|
|
405
|
-
.app_switcher{float:right;z-index:
|
|
361
|
+
a.reg_btn_style:active span{background-image:url(/images/welcome/btn_register_signup_active_bg.gif);}
|
|
362
|
+
.app_switcher{float:right;z-index:4;width:130px;position:relative;}
|
|
406
363
|
.app_switcher .app_switcher_unselected{position:relative;float:left;}
|
|
407
364
|
.app_switcher .app_switcher_button{cursor:pointer;color:#555;float:left;display:block;padding:0px 5px;margin:0px;font-weight:bold;line-height:14px;text-decoration:none;border:solid 1px #dfdfdf;}
|
|
408
365
|
.app_switcher .app_switcher_button .arrow,
|
|
409
366
|
.app_switcher .app_switcher_button .name,
|
|
410
367
|
.app_switcher .app_switcher_button .icon{float:left;}
|
|
411
|
-
.app_switcher .app_switcher_unselected .app_switcher_button:hover{border:solid 1px #666;background:#fff url(/
|
|
368
|
+
.app_switcher .app_switcher_unselected .app_switcher_button:hover{border:solid 1px #666;background:#fff url(/images/app_switcher_hover_shadow.gif) repeat-x bottom left;}
|
|
412
369
|
.app_switcher .app_switcher_selected .app_switcher_button{color:white;background:#6d84b4;border:solid 1px #3B5998;}
|
|
413
|
-
.app_switcher .app_switcher_button .arrow{width:13px;padding:4px 0px 3px;margin-top:1px;background:transparent url(/
|
|
370
|
+
.app_switcher .app_switcher_button .arrow{width:13px;padding:4px 0px 3px;margin-top:1px;background:transparent url(/images/app_switcher_down_arrow.gif) no-repeat -11px center;}
|
|
414
371
|
.app_switcher .app_switcher_selected .app_switcher_button .arrow{background-position:2px center;}
|
|
415
372
|
.app_switcher .app_switcher_button .name{padding:4px 0px 4px 6px;}
|
|
416
373
|
.app_switcher .app_switcher_button .icon{width:16px;padding:4px 0px;background-position:-16px center;background-repeat:no-repeat;}
|
|
@@ -426,9 +383,9 @@ a.reg_btn_style:active span{background-image:url(/fakebook-assets/welcome/btn_re
|
|
|
426
383
|
.app_switcher_menu .app_icon,
|
|
427
384
|
.app_switcher_menu .name{float:left;}
|
|
428
385
|
.app_switcher_menu .side_space{width:7px;padding:4px 0px;margin:0px 3px;}
|
|
429
|
-
.app_switcher_menu .selector_arrow{background:url(/
|
|
430
|
-
.app_switcher_menu a:hover .selector_arrow{background:url(/
|
|
431
|
-
.app_switcher_menu .app_icon{width:16px;padding:4px 0px;margin:0px 0px 0px 2px;background:url(/
|
|
386
|
+
.app_switcher_menu .selector_arrow{background:url(/images/rightarrow.gif) no-repeat -7px center;}
|
|
387
|
+
.app_switcher_menu a:hover .selector_arrow{background:url(/images/rightarrow.gif) no-repeat 0px center;}
|
|
388
|
+
.app_switcher_menu .app_icon{width:16px;padding:4px 0px;margin:0px 0px 0px 2px;background:url(/images/icons/hidden.gif) no-repeat -16px center;}
|
|
432
389
|
.app_switcher_menu a:hover .app_icon{background-position:0px center;}
|
|
433
390
|
.app_switcher_menu .name{padding:4px 0px;margin:0px 0px 0px 5px;}
|
|
434
391
|
.app_switcher_menu .profile_box_name{width:95px;}
|
|
@@ -447,21 +404,23 @@ a.reg_btn_style:active span{background-image:url(/fakebook-assets/welcome/btn_re
|
|
|
447
404
|
#announce h3{color:black;font-weight:bold;text-align:center;padding:0px 0px 3px;margin:4px 5px 3px;font-size:11px;}
|
|
448
405
|
#announce p{color:#222222;margin:0px 0px 3px 5px;overflow:hidden;width:110px;word-wrap:break-word;}
|
|
449
406
|
.sponsors{text-align:center;}
|
|
450
|
-
.
|
|
451
|
-
|
|
407
|
+
.adcolumn{border-left:5px solid #ccc;margin-top:46px;padding-left:10px;}
|
|
408
|
+
.adcolumn .adcolumn_header{font-size:11px;padding:0px 0px 3px 12px;}
|
|
409
|
+
#ssponsor{font-size:11px;padding-top:0px;text-align:left;width:145px;}
|
|
452
410
|
.credit{text-align:center;}
|
|
453
411
|
#ssponsor .seeall{margin:5px 0px;text-align:right;}
|
|
454
|
-
#ssponsor .banner_ad{margin-
|
|
412
|
+
#ssponsor .banner_ad{margin-top:0px;padding:0px 20px 10px 0px;}
|
|
455
413
|
#ssponsor .banner_ad .advert{margin-left:0px;}
|
|
456
|
-
.
|
|
457
|
-
.footer_ad
|
|
414
|
+
.adcolumn .more_ads{display:block;margin:0px 0px 4px 12px;}
|
|
415
|
+
.footer_ad{clear:both;padding-top:40px;}
|
|
416
|
+
.footer_ad .advertise_ads{padding:0 0 4px 36px;text-align:left;}
|
|
458
417
|
.drop_down_menu{background:white;position:absolute;margin-top:-1px;border:solid 1px #3B5998;width:150px;padding:5px 0px;}
|
|
459
418
|
.drop_down_menu .menu_element{padding:3px 7px;}
|
|
460
419
|
.drop_down_menu .menu_element:hover{color:white;background:#3B5998;cursor:pointer;}
|
|
461
420
|
.drop_down_menu .menu_element:hover a{color:white;text-decoration:none;}
|
|
462
421
|
.note_dialog{background:#FFFFFF none repeat scroll 0%;border:1px solid #BDC7D8;color:#444444;margin:0pt 10px 10px;padding:10px;}
|
|
463
|
-
.syndication_feed a{background:url(/
|
|
464
|
-
.syndication_right{background:url(/
|
|
422
|
+
.syndication_feed a{background:url(/images/icons/feed.gif) no-repeat 0px 0.3em;display:block;padding:3px 0px 4px 20px;}
|
|
423
|
+
.syndication_right{background:url(/images/icons/feed.gif) no-repeat center right;padding-right:20px;}
|
|
465
424
|
#syndication_sidebar{padding-left:5px;}
|
|
466
425
|
#syndication_sidebar .learn_more{font-size:9px;padding:0px 0px 2px 20px;}
|
|
467
426
|
#syndication_sidebar p{color:#333;padding:0px;margin:0px;}
|
|
@@ -471,424 +430,199 @@ a.reg_btn_style:active span{background-image:url(/fakebook-assets/welcome/btn_re
|
|
|
471
430
|
.findfriends_block{text-align:left;margin:auto;}
|
|
472
431
|
.findfriends_block li{line-height:18px;list-style-image:none;list-style-position:outside;list-style-type:none;}
|
|
473
432
|
.clickable{cursor:pointer;}
|
|
474
|
-
input.request_form_submit{background:#3B5998 url(/
|
|
433
|
+
input.request_form_submit{background:#3B5998 url(/images/icons/request_button_icon.gif) no-repeat 8px 6px;padding:3px 6px 3px 26px;overflow:visible;}
|
|
475
434
|
.flash_fallback{background:#f4f8fc;border:1px solid #d8dfea;clear:both;}
|
|
476
435
|
.flash_fallback_border{border:1px solid white;padding:5px 10px 5px 10px;}
|
|
477
|
-
.flash_fallback_header{background:transparent url(/
|
|
436
|
+
.flash_fallback_header{background:transparent url(/images/icons/flashplayer.gif) no-repeat center left;color:#282c30;font-size:11px;font-weight:bold;line-height:14px;padding:5px 0px 5px 22px;text-align:left;}
|
|
478
437
|
.flash_fallback_explanation{line-height:14px;margin-top:-3px;padding:0px 0px 5px 22px;text-align:left;}
|
|
479
438
|
.flash_fallback_button{padding:3px 0px 5px 0px;text-align:center;}
|
|
480
439
|
.expressinstall_swf{padding:15px 0px 15px 0px;text-align:center;}
|
|
481
|
-
.ad_story{
|
|
440
|
+
.ad_story{display:block;padding:0px;}
|
|
482
441
|
.ad_story:hover{text-decoration:none;}
|
|
483
442
|
.ad_story .social_ad_story{position:relative;z-index:4;border-top:solid 1px #ccc;padding:7px 7px;border-bottom:solid 1px #eaeaea;margin-bottom:-1px;}
|
|
484
443
|
.ad_story .social_ad_profile{width:50px;overflow:hidden;margin-right:6px;padding-top:3px;float:left;}
|
|
485
444
|
.ad_story .social_ad_image{margin:0px auto;text-align:left;}
|
|
486
445
|
.ad_story .social_ad_text{color:#666;line-height:14px;float:left;overflow:hidden;width:80px;}
|
|
487
446
|
.ad_story .social_ad_text strong{font-weight:bold;color:#444;}
|
|
488
|
-
.ad_story .social_ad_advert{z-index:3;position:relative;
|
|
447
|
+
.ad_story .social_ad_advert{z-index:3;position:relative;padding:10px 5px 3px 10px;}
|
|
489
448
|
#sidebar .social_ad_advert h2,
|
|
490
|
-
.social_ad_advert h2{font-size:12px;padding-bottom:7px;text-align:left;
|
|
449
|
+
.social_ad_advert h2{color:#3B5998;display:block;float:none;font-size:12px;overflow:hidden;padding-bottom:7px;text-align:left;}
|
|
491
450
|
#sidebar .ad_story:hover .social_ad_advert h2,
|
|
492
451
|
.ad_story:hover .social_ad_advert h2{text-decoration:underline;}
|
|
493
452
|
#sidebar .social_ad_advert .social_ad_advert_text,
|
|
494
|
-
.social_ad_advert .social_ad_advert_text{padding-top:5px;
|
|
495
|
-
.below_social_ad{
|
|
496
|
-
.below_social_ad .
|
|
497
|
-
.below_social_ad .
|
|
498
|
-
.
|
|
499
|
-
.
|
|
500
|
-
|
|
501
|
-
|
|
453
|
+
.social_ad_advert .social_ad_advert_text{color:#333;overflow:hidden;padding-top:5px;}
|
|
454
|
+
.below_social_ad .sponsored_links{font-size:9px;float:left;padding:2px 0px 0px 3px;width:105px;}
|
|
455
|
+
.below_social_ad .sponsored_question{float:right;padding-right:3px;}
|
|
456
|
+
.below_social_ad .sponsored_question a{background:transparent url(/images/question_mark_informational_off.gif) no-repeat scroll right bottom;display:block;height:12px;text-decoration:none;width:12px;}
|
|
457
|
+
.below_social_ad .ads_feedback{float:left;padding:0px 1px 0px 7px;}
|
|
458
|
+
.below_social_ad .ads_feedback .thumbs_up{background:url(/images/icons/thumbs_up_gray.gif) no-repeat scroll;display:block;float:left;height:18px;vertical-align:top;width:18px;}
|
|
459
|
+
.below_social_ad .ads_feedback .thumbs_up:hover{background:url(/images/icons/promote_t2_hover.png) no-repeat scroll;}
|
|
460
|
+
.below_social_ad .ads_feedback .ex{background:url(/images/icons/thumbs_dn_gray.gif) no-repeat scroll;display:block;float:left;height:18px;vertical-align:top;width:18px;}
|
|
461
|
+
.below_social_ad .ads_feedback .ex:hover{background:url(/images/icons/thumbs_dn_gray_hover.gif) no-repeat scroll;}
|
|
462
|
+
.below_social_ad .ads_feedback .pipe{display:block;color:#ccc;float:left;padding:0px 0px;vertical-align:top;}
|
|
463
|
+
.below_social_ad .next_ad_button{float:right;padding:1px 10px 0 0;}
|
|
464
|
+
.feedback_dialog select{margin-left:5px;}
|
|
465
|
+
.feedback_dialog #ads_feedback_form_other_text{margin-top:10px;display:block;width:80%;}
|
|
466
|
+
.feedback_dialog .disclaimer{color:#666;margin-top:5px;}
|
|
467
|
+
.above_social_ad{padding:0px 0px 3px 10px;width:140px;}
|
|
468
|
+
#ssponsor .above_social_ad{margin-top:-19px;}
|
|
502
469
|
.above_social_ad .sponsored_links{font-size:9px;float:left;padding-top:2px;}
|
|
503
470
|
.above_social_ad .next_link{float:right;}
|
|
504
471
|
#sidebar .advertise_ads{font-size:9px;margin:0 0 3px 15px;text-align:left;}
|
|
472
|
+
.production_to_latest_link,
|
|
473
|
+
.latest_to_production_link{overflow:hidden;display:block;position:absolute;z-index:1000;top:0px;left:0px;}
|
|
474
|
+
#friday_snipe{overflow:visible;display:block;width:94px;height:94px;margin:0px;padding:0px;position:absolute;z-index:1000;top:0px;right:0px;}
|
|
475
|
+
#friday_snipe .inner_image{width:66px;height:184px;position:absolute;margin:0px;padding:0px;display:block;z-index:1001;top:0px;right:0px;}
|
|
505
476
|
.tooltip_pro{position:absolute;z-index:35;display:none;}
|
|
506
477
|
.tooltip_pro .tooltip_text{padding:3px 8px 3px 9px;text-align:center;white-space:nowrap;left:0px;color:white;font-size:11px;background:#282828;position:relative;}
|
|
507
|
-
.tooltip_pro .tooltip_pointer{height:4px;width:7px;font-size:1px;margin:0px auto 0px;padding:0px;background:transparent url(/
|
|
478
|
+
.tooltip_pro .tooltip_pointer{height:4px;width:7px;font-size:1px;margin:0px auto 0px;padding:0px;background:transparent url(/images/dark-pointer.gif) top center no-repeat;}
|
|
479
|
+
.DOMControl_placeholder{color:#777777;}
|
|
480
|
+
.DOMControl_shadow{position:absolute;left:-10000px;top:-10000px;}
|
|
481
|
+
.DOMControl_autogrow{overflow:hidden;}
|
|
482
|
+
.actionspro{list-style:none;margin:0px;padding:0px;}
|
|
483
|
+
.actionspro li{border-bottom:1px solid #D8DFEA;}
|
|
484
|
+
.actionspro a{background:transparent;display:block;margin:0px;padding:2px 3px;text-decoration:none;}
|
|
485
|
+
.actionspro a:hover{background:#3b5998;color:white;text-decoration:none;}
|
|
486
|
+
.actionspro .inactive{padding:2px 3px;color:gray;}
|
|
487
|
+
.dropdown_menu{background:white;border:solid 1px #6076A5;padding:6px 0px;position:absolute;right:0px;width:200px;z-index:10;}
|
|
488
|
+
.dropdown_menu a{display:block;padding:3px 10px;text-decoration:none;}
|
|
489
|
+
.dropdown_menu a:hover{background:#5C75AA;color:white;}
|
|
490
|
+
#facebook .hidden_elem{display:none;}
|
|
491
|
+
#facebook .invisible_elem{visibility:hidden;}
|
|
492
|
+
#fb_dropmenu_container{width:966px;height:0px;line-height:0px;font-size:1px;display:block;padding:0px;margin:0px auto;position:relative;z-index:20;}
|
|
493
|
+
#fb_dropmenu_container .dropdown_menu{font-size:11px;line-height:normal;}
|
|
494
|
+
.fb95_preview_bar{background:transparent url(/images/fb95_preview_bar.gif) repeat-x 0px 0px;width:auto;margin:0px;height:24px;padding:0px 10px 0px 10px;}
|
|
495
|
+
.fb95_preview_bar .bottom_border_container{width:964px;height:0px;line-height:0px;font-size:1px;display:block;padding:0px;margin:0px auto;position:relative;z-index:20;}
|
|
496
|
+
.fb95_preview_bar .bottom_border_container .bottom_border{height:1px;width:964px;left:0px;top:23px;background:#254588;padding:0px;margin:0px;position:absolute;}
|
|
497
|
+
.fb95_preview_bar_litem{float:left;margin:0px;padding:5px 10px 0px 0px;}
|
|
498
|
+
.fb95_preview_bar_ritem{float:right;padding:5px 0px 0px 0px;margin:0px;}
|
|
508
499
|
|
|
509
|
-
.generic_dialog{height:0px;left:0px;overflow:visible;position:absolute;top:0px;width:100%;z-index:100;}
|
|
510
|
-
#generic_dialog_iframe{filter:alpha(opacity=0);left:0px;position:absolute;top:0px;z-index:3;}
|
|
511
|
-
.generic_dialog .generic_dialog_popup{height:0px;overflow:visible;position:relative;}
|
|
512
|
-
.generic_dialog div.dialog_loading{background-color:#f2f2f2;border:1px solid #606060;font-size:24px;padding:10px;}
|
|
513
|
-
#generic_dialog_overlay{z-index:99;display:block;position:absolute;top:0px;left:0px;width:100%;}
|
|
514
|
-
table.pop_dialog_table{border-collapse:collapse;margin:auto;table-layout:fixed;width:465px;}
|
|
515
|
-
td.pop_topleft, td.pop_topright, td.pop_bottomleft, td.pop_bottomright{height:10px;overflow:hidden;padding:0px!important;padding:5px;width:10px!important;width:0px;}
|
|
516
|
-
td.pop_topleft{background-image:url('/fakebook-assets/pop_dialog_top_left.png')!important;background-image:none;filter:none!important;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.ak.facebook.com/fakebook-assets/pop_dialog_top_left.png', sizingMethod='crop');}
|
|
517
|
-
td.pop_topright{background-image:url('/fakebook-assets/pop_dialog_top_right.png')!important;background-image:none;filter:none!important;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.ak.facebook.com/fakebook-assets/pop_dialog_top_right.png', sizingMethod='crop');}
|
|
518
|
-
td.pop_bottomleft{background-image:url('/fakebook-assets/pop_dialog_bottom_left.png')!important;background-image:none;filter:none!important;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.ak.facebook.com/fakebook-assets/pop_dialog_bottom_left.png', sizingMethod='crop');}
|
|
519
|
-
td.pop_bottomright{background-image:url('/fakebook-assets/pop_dialog_bottom_right.png')!important;background-image:none;filter:none!important;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.ak.facebook.com/fakebook-assets/pop_dialog_bottom_right.png', sizingMethod='scale');}
|
|
520
|
-
td.pop_border{background-image:url('/fakebook-assets/pop_dialog_border.png')!important;background-image:none;filter:none!important;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.ak.facebook.com/fakebook-assets/pop_dialog_border.png', sizingMethod='scale');}
|
|
521
|
-
td.pop_content{background-color:white;padding:0px;}
|
|
522
|
-
td.pop_content h2{background:#6d84b4;border:1px solid #3b5998;color:white;font-size:14px;font-weight:bold;margin:0px;}
|
|
523
|
-
td.pop_content h2.dialog_loading{background:#6d84b4 url(/fakebook-assets/upload_progress.gif) no-repeat 400px 10px;padding-right:40px;}
|
|
524
|
-
td.pop_content h2 span{display:block;padding:4px 10px 5px 10px;}
|
|
525
|
-
td.pop_content .dialog_content{background:#fff;border:1px solid #555;border-top-width:0px;overflow:hidden;}
|
|
526
|
-
td.pop_content .dialog_body{padding:10px;border-bottom:1px solid #ccc;}
|
|
527
|
-
td.pop_content .dialog_summary{background:#f2f2f2;padding:8px 10px 8px 10px;border-bottom:1px solid #ccc;}
|
|
528
|
-
td.pop_content .dialog_buttons{background:#f2f2f2;padding:8px;text-align:right;}
|
|
529
|
-
td.pop_content .dialog_buttons input{margin-left:5px;}
|
|
530
|
-
.dialog_content .dialog_buttons .inputaux,
|
|
531
|
-
.dialog_content .dialog_buttons .inputsubmit{padding-left:10px;padding-right:10px;}
|
|
532
|
-
td.pop_content .dialog_buttons_msg{float:left;}
|
|
533
|
-
.contextual_dialog .generic_dialog_popup{width:360px;}
|
|
534
|
-
.contextual_dialog .contextual_arrow,
|
|
535
|
-
.contextual_dialog .contextual_arrow_rev{background-image:url('/fakebook-assets/minifeed_dialog_triangle.gif');background-repeat:no-repeat;height:12px;position:relative;top:1px;}
|
|
536
|
-
.contextual_dialog .contextual_arrow_rev{background-image:url('/fakebook-assets/minifeed_dialog_triangle_rev.gif');}
|
|
537
|
-
.contextual_dialog .contextual_arrow span,
|
|
538
|
-
.contextual_dialog .contextual_arrow_rev span{display:none;}
|
|
539
|
-
.contextual_dialog h2{color:black;font-size:11px;padding-bottom:2px;}
|
|
540
|
-
.contextual_dialog .contextual_dialog_content{background-color:#f0f0f0;border:1px solid #b7b7b7;border-bottom:2px solid #3b5998;line-height:15px;padding:8px 10px 10px 10px;}
|
|
541
|
-
.contextual_dialog .dialog_buttons{padding-top:10px;}
|
|
542
|
-
.contextual_dialog .dialog_buttons input{margin-right:10px;}
|
|
543
|
-
.contextual_dialog .dialog_buttons_msg{float:right;}
|
|
544
|
-
.errorDialog td.pop_content h2{background:#ffebe8;border:none;border-bottom:1px solid #AAAAAA;color:#333333;}
|
|
545
|
-
.errorDialog td.pop_content{border:1px solid #ee7c90;}
|
|
546
|
-
.errorDialog td.pop_content .dialog_content{border:none;}
|
|
547
|
-
.errorDialog td.pop_content .dialog_content .dialog_body{padding:15px;}
|
|
548
|
-
|
|
549
|
-
.typeahead_list{background:transparent;border:1px solid #bdc7d8;border-top:none;font-size:11px;margin-top:-1px;overflow:auto;position:absolute;text-align:left;z-index:97;}
|
|
550
|
-
.generic_dialog .typeahead_list,
|
|
551
|
-
.typeahead_list_absolute{z-index:101;}
|
|
552
|
-
.typeahead_list .typeahead_suggestion,
|
|
553
|
-
.typeahead_list .typeahead_message{border-top:1px solid #ddd;padding:3px;}
|
|
554
|
-
.typeahead_list .typeahead_suggestion{background:#fff;color:#000;cursor:default;filter:alpha(opacity=94);opacity:0.94;}
|
|
555
|
-
.typeahead_list .typeahead_suggestion:hover{cursor:pointer;cursor:hand;}
|
|
556
|
-
.typeahead_list .typeahead_suggestion em{background:#d8dfea;color:black;font-style:normal;font-weight:bold;}
|
|
557
|
-
.typeahead_list .typeahead_suggestion small{color:#808080;padding-left:5px;}
|
|
558
|
-
.typeahead_list .typeahead_selected{background:#3b5998;color:#fff;filter:alpha(opacity=100);opacity:1;}
|
|
559
|
-
.typeahead_list .typeahead_selected small{color:#95A5C6;}
|
|
560
|
-
.typeahead_list .typeahead_selected em{background:#5670a6;color:#fff;}
|
|
561
|
-
.typeahead_list .typeahead_message{background:#eee;color:#333;}
|
|
562
|
-
input.typeahead_found{background-color:#e1e9f6;}
|
|
563
|
-
.typeahead_placeholder{color:#777;}
|
|
564
|
-
.typeahead_iframe{filter:alpha(opacity=0);left:0px;position:absolute;top:0px;z-index:1;}
|
|
565
|
-
.tokenizer{min-height:5px;padding:0px 0px 3px 3px;width:100%;background:#fff;font-size:11px;}
|
|
566
|
-
.tokenizer_locked{background:#f4f4f4;}
|
|
567
|
-
.tokenizer,
|
|
568
|
-
.tokenizer *{cursor:text
|
|
569
|
-
}
|
|
570
|
-
.tokenizer input{width:100%;}
|
|
571
|
-
.tokenizer .tokenizer_input,
|
|
572
|
-
.tokenizer .token{float:left;margin-right:3px;margin-top:3px;}
|
|
573
|
-
.tokenizer .tab_stop,
|
|
574
|
-
.tokenizer .tokenizer_stretcher{display:block;float:left;overflow:hidden;width:0px;}
|
|
575
|
-
.tokenizer .tab_stop{height:0px;}
|
|
576
|
-
.tokenizer .tokenizer_stretcher{padding-top:7px;}
|
|
577
|
-
#facebook .tokenizer .tab_stop input{border:0px solid black;display:inline;position:relative;left:-500px;}
|
|
578
|
-
.tokenizer_input_borderless div{left:4px;margin-left:-1px;overflow:hidden;position:relative;}
|
|
579
|
-
.tokenizer_input_borderless div input{border:3px solid white!important;border-left:none;display:block;margin:-2px 0px -2px -2px;padding:0px!important;}
|
|
580
|
-
.tokenizer div:-moz-first-node{padding-top:1px!important;}
|
|
581
|
-
.tokenizer_input{max-width:450px;overflow:hidden;padding:1px 0px;}
|
|
582
|
-
#facebook .tokenizer_input input,
|
|
583
|
-
.tokenizer_input_shadow{border:0px solid black;font-family:'lucida grande', tahoma, verdana, arial, sans-serif;font-size:11px;padding:0px 5px;white-space:pre;}
|
|
584
|
-
.tokenizer_input_shadow{display:inline;left:-10000px;position:absolute;top:-10000px;}
|
|
585
|
-
.tokenizer .tokenizer_input_shadow{height:0px;display:block;left:0px;overflow:hidden;position:relative;top:0px;}
|
|
586
|
-
div.tokenizer .token{background-image:url('/inbox/fakebook-assets/token.gif');background-repeat:no-repeat;color:black;white-space:nowrap;}
|
|
587
|
-
div.tokenizer .token span{background-image:url('/inbox/fakebook-assets/token.gif');background-position:top right;background-repeat:no-repeat;display:block;}
|
|
588
|
-
div.tokenizer .token span span{background-position:bottom right;}
|
|
589
|
-
div.tokenizer .token span span span{background-position:bottom left;}
|
|
590
|
-
div.tokenizer .token span span span span{background-image:none;padding:2px 3px 2px 5px;}
|
|
591
|
-
div.tokenizer.tokenizer_locked .token span span span span{padding-right:5px;}
|
|
592
|
-
html div.tokenizer_locked .token:hover,
|
|
593
|
-
html div.tokenizer_locked .token:hover span{background-image:url('/inbox/fakebook-assets/token.gif');}
|
|
594
|
-
div.tokenizer .token:hover,
|
|
595
|
-
div.tokenizer .token:hover span{background-image:url('/inbox/fakebook-assets/token_hover.gif');text-decoration:none;}
|
|
596
|
-
div.tokenizer .token_selected,
|
|
597
|
-
div.tokenizer .token_selected span,
|
|
598
|
-
div.tokenizer .token_selected:hover,
|
|
599
|
-
div.tokenizer .token_selected:hover span{background-image:url('/inbox/fakebook-assets/token_selected.gif');color:white;text-decoration:none;}
|
|
600
|
-
div.tokenizer .token span.x,
|
|
601
|
-
div.tokenizer .token span.x_hover,
|
|
602
|
-
div.tokenizer .token:hover span.x,
|
|
603
|
-
div.tokenizer .token:hover span.x_hover{background-image:url('/inbox/fakebook-assets/token_x.gif');background-position:4px 2px;cursor:pointer;display:inline;padding:0px 6px 0px 5px;}
|
|
604
|
-
div.tokenizer.tokenizer_locked .token span.x,
|
|
605
|
-
div.tokenizer.tokenizer_locked .token span.x_hover{display:none;}
|
|
606
|
-
div.standard_tokenizer div.tokenizer{border:solid 1px #8F96BD;}
|
|
607
|
-
#fbsearch .typeahead_list,
|
|
608
|
-
#qsearch .typeahead_list{border:solid 1px #95A5C6;border-bottom:none;border-top:none;}
|
|
609
|
-
#fbsearch .no_border_list,
|
|
610
|
-
#qsearch .no_border_list{border:none;}
|
|
611
|
-
#fbsearch .typeahead_list .typeahead_suggestion,
|
|
612
|
-
#qsearch .typeahead_list .typeahead_suggestion{filter:alpha(opacity=100);opacity:1.0;}
|
|
613
|
-
#fbsearch .typeahead_list .typeaheadpro_header,
|
|
614
|
-
#qsearch .typeahead_list .typeaheadpro_header{background:#f7f7f7;font-size:9px;color:#555;padding:3px;border-top:solid 1px #95A5C6;}
|
|
615
|
-
#sidebar_content #fbsearch.hourglass .typeahead_border,
|
|
616
|
-
#sidebar_content #qsearch.hourglass .typeahead_border{border-bottom:solid 1px #ccc;position:relative;z-index:101;}
|
|
617
|
-
#fbsearch .blue_bottom_border,
|
|
618
|
-
#qsearch .blue_bottom_border{border-bottom:solid 1px #3B5998;}
|
|
619
|
-
#fbsearch .typeahead_list .blue_top_border,
|
|
620
|
-
#qsearch .typeahead_list .blue_top_border{border-top:solid 1px #95A5C6;}
|
|
621
|
-
#fbsearch .typeahead_list .icon,
|
|
622
|
-
#qsearch .typeahead_list .icon{line-height:1px;width:16px;height:16px;background-repeat:no-repeat;margin-top:2px;background-position:-16px 0px;position:absolute;}
|
|
623
|
-
#fbsearch .typeahead_list .typeahead_selected .icon,
|
|
624
|
-
#qsearch .typeahead_list .typeahead_selected .icon{background-position:0px 0px;}
|
|
625
|
-
#fbsearch .typeahead_list .app_name,
|
|
626
|
-
#qsearch .typeahead_list .app_name{margin:0px 1px 0px 22px;line-height:20px;}
|
|
627
500
|
|
|
628
|
-
|
|
629
|
-
.wall #content_shadow #content{padding:0px;}
|
|
630
|
-
.wallpost_dialog #content{padding:20px 0px;}
|
|
631
|
-
.wall_posts{overflow:hidden;}
|
|
632
|
-
.wall .fbpage_edit_header{margin-left:0px;margin-right:0px;padding-left:20px;padding-right:20px;}
|
|
633
|
-
.wallpost{padding:0px;margin:0px;float:left;margin-bottom:15px;}
|
|
634
|
-
.wallpost td{padding:0px;vertical-align:top;}
|
|
635
|
-
.wallpost td.wallimage{width:55px;text-align:left;}
|
|
636
|
-
.wallpost td.wallimage img{width:50px;margin-right:5px;}
|
|
637
|
-
.wallpost td.wallinfo{width:100%;border-top:solid 1px #3B5998;}
|
|
638
|
-
.wallpost .wallinfo .wallheader{padding:3px 5px 3px;background:#f7f7f7;border-bottom:solid 1px #D8DFEA;}
|
|
639
|
-
.wallpost .wallactions{padding:3px 5px;border-bottom:solid 1px #D8DFEA;border-top:none;clear:right;}
|
|
640
|
-
.wallpost .wallinfo .wallheader a.profile_link{font-weight:bold;}
|
|
641
|
-
.wallpost .wallinfo .wallactions a:hover{text-decoration:underline;}
|
|
642
|
-
.wallpost .wallinfo .walltext{padding:5px 5px;}
|
|
643
|
-
.wallpost .wallphoto img{width:50px;margin:0px 0px 0px 5px;}
|
|
644
|
-
#wall{padding:10px;background:#f7f7f7;}
|
|
645
|
-
#wall .status{margin:0px 0px 5px 0px;}
|
|
646
|
-
#wall #error{margin:0px 0px 5px 0px;}
|
|
647
|
-
#wallpage{padding:20px;border:solid 1px #ccc;background:white;}
|
|
648
|
-
#wallpage .nav{padding-bottom:20px;}
|
|
649
|
-
#wallpage .pager a:hover{text-decoration:none;}
|
|
650
|
-
#wallpage .nav_older{padding:6px;margin:0 -20px 0 -20px;background-color:#f7f7f7;border-color:#cccccc;border-style:solid;border-width:1px 0px;color:#333;text-align:center;position:relative;font-weight:bold;}
|
|
651
|
-
.wall #inline_wall_post{padding:0px 0 8px 0;}
|
|
652
|
-
.wall #inline_wall_post textarea{height:50px;width:618px;}
|
|
653
|
-
#inline_wall_post .actions{padding:2px 0 0 0;}
|
|
654
|
-
#inline_wall_post .wall_contextual_extra{float:right;margin-top:3px;margin-right:5px;}
|
|
655
|
-
#inline_wall_post .buttons{float:left;clear:both;}
|
|
656
|
-
#inline_wall_post .contextual_extra{border:1px solid black;padding-left:4px;margin-top:0px;vertical-align:middle;}
|
|
657
|
-
#inline_wall_post dd{float:left;margin:0px 0px 10px 8px;}
|
|
658
|
-
#inline_wall_post dd.share_stage{width:355px;}
|
|
659
|
-
.wallpro_dialog table.pop_content{width:280px;}
|
|
660
|
-
#wall_error{margin:0px 0px 10px 0px;padding:10px;border:solid 1px #dd3c10;background:#ffebe8;}
|
|
661
|
-
#wall_error p{margin:4px 0px 0px;}
|
|
662
|
-
#wall_error a{text-decoration:none;color:#dd3c10;}
|
|
663
|
-
#wall_captcha{margin:0;padding-bottom:8px;}
|
|
664
|
-
#wall_captcha #captcha fieldset{width:auto;text-align:left;}
|
|
665
|
-
#wall_captcha #captcha{text-align:left;}
|
|
666
|
-
#wall_captcha #captcha fieldset{text-align:left;min-width:0;margin-left:2px;}
|
|
667
|
-
#wall_status{margin:0px 0px 10px 0px;padding:10px;border:solid 1px #ffe222;background:#fffbe2;}
|
|
668
|
-
#wall_status h2{color:black;font-size:11px;margin:0px;}
|
|
669
|
-
#wall_status p{margin:4px 0px 0px;}
|
|
670
|
-
#wall_status a{text-decoration:none;}
|
|
671
|
-
.wallpost td.wallphoto .gift_outer{cursor:pointer;cursor:hand;}
|
|
672
|
-
.see_all_posts{display:block;text-align:right;}
|
|
673
|
-
#wall_edit_dialog_form{padding:5px 0px 5px 0px;}
|
|
674
|
-
#wall_edit_dialog_form .wall_edit_radio_item{margin-top:4px;}
|
|
675
|
-
#wall_edit_dialog_form #wall_allowed_apps_radio{margin-right:4px;}
|
|
676
|
-
#inline_wall_post #attachment_buttons_list{border-bottom:1px solid #e0e0e0;margin-bottom:8px;padding-bottom:3px;}
|
|
677
|
-
.thewall #inline_wall_post .attachment_buttons{}
|
|
678
|
-
#wall #inline_wall_post .attachment_buttons{}
|
|
679
|
-
#inline_wall_post .attachment_remove{float:left;padding-left:298px;}
|
|
680
|
-
#inline_wall_post .attachment_remove.edit{padding-left:345px;}
|
|
681
|
-
#inline_wall_post .attached_item,
|
|
682
|
-
.wallpost .attached_item{width:316px;margin-bottom:2px;overflow:hidden;}
|
|
683
|
-
#inline_wall_post .attached_item .app_content,
|
|
684
|
-
.wallpost .attached_item .app_content{max-height:512px;overflow:hidden;}
|
|
685
|
-
.wallpost .attached_item_info{padding:2px 2px 0px 7px;margin:10px 0px 0px 0px;border-left:2px solid #e0e5ee;color:#666;font-size:9px;line-height:14px;overflow:hidden;white-space:nowrap;}
|
|
686
|
-
.wallpost .attached_item_info img{float:left;padding-bottom:2px;}
|
|
687
|
-
.wallpost .attached_item_info a{display:block;float:none;overflow:hidden;padding:2px 0px 3px 6px;width:284px;}
|
|
688
|
-
.wallpost .attached_item_info.has_compact a{width:201px;}
|
|
689
|
-
.wallpost .attached_item_info a:hover,
|
|
690
|
-
.wallpost .attached_item_info a:hover span{color:#3b5998;}
|
|
691
|
-
.attachment_compact{margin:0px 0px 0px 4px;width:81px;height:81px;overflow:hidden;}
|
|
692
|
-
.attachment_compact.share{height:auto;}
|
|
693
|
-
.attachment_expand_link{border:1px solid #ccc;padding:2px 2px 2px 2px;display:block;}
|
|
694
|
-
.attachment_expand_link:hover{border-color:#526ea6;}
|
|
695
|
-
.attachment_compact .app_link div{max-height:75px;}
|
|
696
|
-
.attachment_compact_share_img{display:none;}
|
|
697
|
-
.attachment_compact .wall_video_thumb .play{margin:-24px 0px 0px 49px;padding:0px 0px 1px 0px;display:none;}
|
|
698
|
-
.wall_attachment .share_media .has_photo .group_info,
|
|
699
|
-
.wall_attachment .share_media .event_has_photo .event_info,
|
|
700
|
-
.wall_attachment .share_media .note_with_thumb .excerpt .textual,
|
|
701
|
-
.wall_attachment .share_media .swfvideo .textual .metadata{width:178px;}
|
|
702
|
-
.wall_attachment .fb_photo .photo_thumb,
|
|
703
|
-
.wall_attachment .share_ext_photo .has_thumb .extra{float:none;padding-left:0px;padding-right:0px;}
|
|
704
|
-
.wall_attachment .fb_photo .photo_thumb,
|
|
705
|
-
.wall_attachment .share_ext_photo .share_thumb{width:316px;}
|
|
706
|
-
.wall_attachment .fb_photo .photo_thumb img,
|
|
707
|
-
.wall_attachment .share_ext_photo .share_thumb img{max-width:316px;}
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
.sprite.sx_icons{background:url(/fakebook-assets/sprite/icons.png?act) no-repeat;width:16px;height:16px;}
|
|
501
|
+
.sprite.sx_icons{background:url(/rsrc.php/h/8pwcarij/images/sprite/icons.png) no-repeat;width:16px;height:16px;}
|
|
711
502
|
.sprite.sx_icons.sx_ad{height:15px;}
|
|
712
503
|
.sprite.sx_icons.sx_add_photo{background-position:0px -15px;}
|
|
713
504
|
.sprite.sx_icons.sx_ads_and_pages{background-position:0px -31px;}
|
|
714
505
|
.sprite.sx_icons.sx_affiliation{height:14px;background-position:0px -47px;}
|
|
715
506
|
.sprite.sx_icons.sx_aim{width:18px;height:18px;background-position:0px -61px;}
|
|
716
507
|
.sprite.sx_icons.sx_alert{background-position:0px -79px;}
|
|
717
|
-
.sprite.sx_icons.
|
|
718
|
-
.sprite.sx_icons.
|
|
719
|
-
.sprite.sx_icons.
|
|
720
|
-
.sprite.sx_icons.
|
|
721
|
-
.sprite.sx_icons.
|
|
722
|
-
.sprite.sx_icons.
|
|
723
|
-
.sprite.sx_icons.
|
|
724
|
-
.sprite.sx_icons.
|
|
725
|
-
.sprite.sx_icons.
|
|
726
|
-
.sprite.sx_icons.
|
|
727
|
-
.sprite.sx_icons.
|
|
728
|
-
.sprite.sx_icons.
|
|
729
|
-
.sprite.sx_icons.
|
|
730
|
-
.sprite.sx_icons.
|
|
731
|
-
.sprite.sx_icons.
|
|
732
|
-
.sprite.sx_icons.
|
|
733
|
-
.sprite.sx_icons.
|
|
734
|
-
.sprite.sx_icons.
|
|
735
|
-
.sprite.sx_icons.
|
|
736
|
-
.sprite.sx_icons.
|
|
737
|
-
.sprite.sx_icons.
|
|
738
|
-
.sprite.sx_icons.
|
|
739
|
-
.sprite.sx_icons.
|
|
740
|
-
.sprite.sx_icons.
|
|
741
|
-
.sprite.sx_icons.
|
|
742
|
-
.sprite.sx_icons.
|
|
743
|
-
.sprite.sx_icons.
|
|
744
|
-
.sprite.sx_icons.
|
|
745
|
-
.sprite.sx_icons.
|
|
746
|
-
.sprite.sx_icons.
|
|
747
|
-
.sprite.sx_icons.
|
|
748
|
-
.sprite.sx_icons.
|
|
749
|
-
.sprite.sx_icons.
|
|
750
|
-
.sprite.sx_icons.
|
|
751
|
-
.sprite.sx_icons.
|
|
752
|
-
.sprite.sx_icons.
|
|
753
|
-
.sprite.sx_icons.
|
|
754
|
-
.sprite.sx_icons.
|
|
755
|
-
.sprite.sx_icons.
|
|
756
|
-
.sprite.sx_icons.
|
|
757
|
-
.sprite.sx_icons.
|
|
758
|
-
.sprite.sx_icons.
|
|
759
|
-
.sprite.sx_icons.
|
|
760
|
-
.sprite.sx_icons.
|
|
761
|
-
.sprite.sx_icons.
|
|
762
|
-
.sprite.sx_icons.
|
|
763
|
-
.sprite.sx_icons.
|
|
764
|
-
.sprite.sx_icons.
|
|
765
|
-
.sprite.sx_icons.
|
|
766
|
-
.sprite.sx_icons.
|
|
767
|
-
.sprite.sx_icons.
|
|
768
|
-
.sprite.sx_icons.
|
|
769
|
-
.sprite.sx_icons.
|
|
770
|
-
.sprite.sx_icons.
|
|
771
|
-
.sprite.sx_icons.
|
|
772
|
-
.sprite.sx_icons.
|
|
773
|
-
.sprite.sx_icons.
|
|
774
|
-
.sprite.sx_icons.
|
|
775
|
-
.sprite.sx_icons.
|
|
776
|
-
.sprite.sx_icons.
|
|
777
|
-
.sprite.sx_icons.
|
|
778
|
-
.sprite.sx_icons.
|
|
779
|
-
.sprite.sx_icons.
|
|
780
|
-
.sprite.sx_icons.
|
|
781
|
-
.sprite.sx_icons.
|
|
782
|
-
.sprite.sx_icons.
|
|
783
|
-
.sprite.sx_icons.
|
|
784
|
-
.sprite.sx_icons.
|
|
785
|
-
.sprite.sx_icons.
|
|
786
|
-
.sprite.sx_icons.
|
|
787
|
-
.sprite.sx_icons.
|
|
788
|
-
.sprite.sx_icons.
|
|
789
|
-
.sprite.sx_icons.
|
|
790
|
-
.sprite.sx_icons.
|
|
791
|
-
.sprite.sx_icons.
|
|
792
|
-
.sprite.sx_icons.
|
|
793
|
-
.sprite.sx_icons.
|
|
794
|
-
.sprite.sx_icons.
|
|
795
|
-
.sprite.sx_icons.
|
|
796
|
-
.sprite.sx_icons.
|
|
797
|
-
.sprite.sx_icons.
|
|
798
|
-
.sprite.sx_icons.
|
|
799
|
-
.sprite.sx_icons.
|
|
800
|
-
.sprite.sx_icons.
|
|
801
|
-
.sprite.sx_icons.
|
|
802
|
-
.sprite.sx_icons.
|
|
803
|
-
.sprite.sx_icons.
|
|
804
|
-
.sprite.sx_icons.
|
|
805
|
-
.sprite.sx_icons.
|
|
806
|
-
.sprite.sx_icons.
|
|
807
|
-
.sprite.sx_icons.
|
|
808
|
-
.sprite.sx_icons.
|
|
809
|
-
.sprite.sx_icons.
|
|
810
|
-
.sprite.sx_icons.
|
|
811
|
-
.sprite.sx_icons.
|
|
812
|
-
.sprite.sx_icons.
|
|
813
|
-
.sprite.sx_icons.
|
|
814
|
-
.sprite.sx_icons.
|
|
815
|
-
.sprite.sx_icons.
|
|
816
|
-
.sprite.sx_icons.
|
|
817
|
-
.sprite.sx_icons.
|
|
818
|
-
.sprite.sx_icons.
|
|
819
|
-
.sprite.sx_icons.
|
|
820
|
-
.sprite.sx_icons.
|
|
821
|
-
.sprite.sx_icons.
|
|
822
|
-
.sprite.sx_icons.
|
|
823
|
-
.sprite.sx_icons.
|
|
824
|
-
.sprite.sx_icons.
|
|
825
|
-
.sprite.sx_icons.
|
|
826
|
-
.sprite.sx_icons.
|
|
827
|
-
.sprite.sx_icons.
|
|
828
|
-
.sprite.sx_icons.
|
|
829
|
-
.sprite.sx_icons.
|
|
830
|
-
.sprite.sx_icons.
|
|
831
|
-
.sprite.sx_icons.
|
|
832
|
-
.sprite.sx_icons.
|
|
833
|
-
.sprite.sx_icons.
|
|
834
|
-
.sprite.sx_icons.
|
|
835
|
-
.sprite.sx_icons.sx_share{width:14px;height:14px;background-position:0px -1946px;}
|
|
836
|
-
.sprite.sx_icons.sx_share_button_large{background-position:0px -1960px;}
|
|
837
|
-
.sprite.sx_icons.sx_share_button_small{width:12px;height:12px;background-position:0px -1976px;}
|
|
838
|
-
.sprite.sx_icons.sx_share_plus{width:14px;height:14px;background-position:0px -1988px;}
|
|
839
|
-
.sprite.sx_icons.sx_social_ad{background-position:0px -2002px;}
|
|
840
|
-
.sprite.sx_icons.sx_sort{width:11px;height:13px;background-position:0px -2018px;}
|
|
841
|
-
.sprite.sx_icons.sx_sort_dark{width:11px;height:3px;background-position:0px -2031px;}
|
|
842
|
-
.sprite.sx_icons.sx_start_quote{width:18px;height:12px;background-position:0px -2034px;}
|
|
843
|
-
.sprite.sx_icons.sx_start_quote_small{width:14px;height:10px;background-position:0px -2046px;}
|
|
844
|
-
.sprite.sx_icons.sx_tack{background-position:0px -2056px;}
|
|
845
|
-
.sprite.sx_icons.sx_transfer{height:14px;background-position:0px -2072px;}
|
|
846
|
-
.sprite.sx_icons.sx_translations{background-position:0px -2086px;}
|
|
847
|
-
.sprite.sx_icons.sx_updates{background-position:0px -2102px;}
|
|
848
|
-
.sprite.sx_icons.sx_video{height:17px;background-position:0px -2118px;}
|
|
849
|
-
.sprite.sx_icons.sx_wall_post{background-position:0px -2135px;}
|
|
850
|
-
.sprite.sx_icons.sx_yahoo_logo{width:79px;height:14px;background-position:0px -2151px;}
|
|
851
|
-
|
|
852
|
-
.applications .handle{background:url(/fakebook-assets/movearrow.gif) no-repeat center center;width:13px;min-width:13px;height:14px;min-height:14px;font-size:14px;display:block;float:left;margin-right:-30px;position:relative;left:-30px;padding:2px 0px 0px 0px;}
|
|
853
|
-
.applications .handle:hover{cursor:move;}
|
|
854
|
-
.app_selector_module{display:none;}
|
|
855
|
-
.applications .app_selector_module{display:block;color:#333;margin:0px 10px 10px;padding:5px 0px;}
|
|
856
|
-
.app_selector_module #sidebar .app_selector_module h2{display:none;}
|
|
857
|
-
.applications #sidebar .app_selector_module h2{width:auto;float:none;}
|
|
858
|
-
.applications .app_selector{margin-top:6px;}
|
|
859
|
-
.applications .app_selector select{width:112px;}
|
|
860
|
-
.action_item{display:none;}
|
|
861
|
-
.applications li:hover .action_item{position:relative;left:-80px;width:40px;float:left;text-align:right;margin-right:-80px;display:block;font-size:9px;}
|
|
862
|
-
.action_item_add{display:none;}
|
|
863
|
-
.applications li:hover .action_item_add{position:relative;left:-80px;width:70px;float:left;text-align:right;margin-right:-70px;display:block;font-size:9px;}
|
|
864
|
-
.add_button{margin-top:6px;}
|
|
865
|
-
.floating_container{opacity:0.4;position:absolute;width:110px;}
|
|
866
|
-
.floating_container:hover{cursor:move;}
|
|
867
|
-
#sidebar .app_list .floating_container .link_title{filter:alpha(opacity=40);}
|
|
868
|
-
#sidebar .app_list .floating_container .handle{filter:alpha(opacity=40);}
|
|
869
|
-
.rearrange_message{font-size:11px;padding:3px 7px;margin:3px 0px;border:solid 1px #ccc;background:#f0f0f0;}
|
|
870
|
-
#empty_more_message{height:auto;font-color:#999;font-size:9px;}
|
|
871
|
-
.rearrange_message .image{vertical-align:middle;}
|
|
872
|
-
.rearrange_status{font-size:11px;padding:3px 7px;margin:3px 0px;border:solid 1px #ffe222;background:#fffbe2;height:15px;}
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
#dialog{margin:0px auto;border:solid 10px #D8DFEA;}
|
|
876
|
-
#dialog td.dialog{padding-top:10px;background:#FFFFFF;border:solid 1px #3B5998;}
|
|
877
|
-
#dialog td td{color:#555;border:none;}
|
|
878
|
-
#dialog td .formtable{margin:5px 10px 0px;}
|
|
879
|
-
#dialog p{margin:10px;text-align:left;}
|
|
880
|
-
#dialog h4{border-bottom:solid 1px #D8DFEA;margin:5px 10px 5px;padding:0px 0px 2px;font-size:13px;}
|
|
881
|
-
#dialog .buttons{padding:10px;text-align:right;}
|
|
882
|
-
#dialog .buttons input{margin-left:10px;}
|
|
883
|
-
#dialog small{font-weight:normal;color:gray;}
|
|
884
|
-
#dialog_note{margin:10px auto 0px auto;border:0;}
|
|
885
|
-
#dialog_note td{text-align:center;}
|
|
886
|
-
div.notice{width:400px;margin:80px 100px;padding:10px;position:absolute;z-index:100;background:#f7f7f7;border:solid 3px #3B5998;}
|
|
887
|
-
div.notice h4{margin-bottom:10px;}
|
|
888
|
-
div.notice .buttons{margin:10px 0px 0px;text-align:center;}
|
|
889
|
-
div.notice .buttons input{margin-left:10px;width:60px;}
|
|
890
|
-
#dynamic_dialog{position:absolute;z-index:1;background:#FFFFFF;left:0px;top:0px;width:360px;}
|
|
891
|
-
.dialog_padding #content{padding:20px 0px;}
|
|
508
|
+
.sprite.sx_icons.sx_alert_bw{background-position:0px -95px;}
|
|
509
|
+
.sprite.sx_icons.sx_analytics{background-position:0px -111px;}
|
|
510
|
+
.sprite.sx_icons.sx_aol_logo{width:48px;background-position:0px -127px;}
|
|
511
|
+
.sprite.sx_icons.sx_audioplayer{height:15px;background-position:0px -143px;}
|
|
512
|
+
.sprite.sx_icons.sx_beacon{background-position:0px -158px;}
|
|
513
|
+
.sprite.sx_icons.sx_blog{height:15px;background-position:0px -174px;}
|
|
514
|
+
.sprite.sx_icons.sx_blogmini{width:14px;height:14px;background-position:0px -189px;}
|
|
515
|
+
.sprite.sx_icons.sx_bookmark{background-position:0px -203px;}
|
|
516
|
+
.sprite.sx_icons.sx_bookreview{background-position:0px -219px;}
|
|
517
|
+
.sprite.sx_icons.sx_button_gradient{width:6px;height:30px;background-position:0px -235px;}
|
|
518
|
+
.sprite.sx_icons.sx_calendar{background-position:0px -265px;}
|
|
519
|
+
.sprite.sx_icons.sx_canada{height:10px;background-position:0px -281px;}
|
|
520
|
+
.sprite.sx_icons.sx_canada_flag{background-position:0px -291px;}
|
|
521
|
+
.sprite.sx_icons.sx_demote_x2_hover{width:15px;background-position:0px -307px;}
|
|
522
|
+
.sprite.sx_icons.sx_demote_x2_hover{width:15px;background-position:0px -323px;}
|
|
523
|
+
.sprite.sx_icons.sx_demote_x2_off{width:15px;background-position:0px -339px;}
|
|
524
|
+
.sprite.sx_icons.sx_demote_x2_off{width:15px;background-position:0px -355px;}
|
|
525
|
+
.sprite.sx_icons.sx_demote_x2_on{width:15px;background-position:0px -371px;}
|
|
526
|
+
.sprite.sx_icons.sx_demote_x2_on{width:15px;background-position:0px -387px;}
|
|
527
|
+
.sprite.sx_icons.sx_dev_app{width:18px;height:18px;background-position:0px -403px;}
|
|
528
|
+
.sprite.sx_icons.sx_developer{background-position:0px -421px;}
|
|
529
|
+
.sprite.sx_icons.sx_discussion{height:18px;background-position:0px -437px;}
|
|
530
|
+
.sprite.sx_icons.sx_edit_profile{background-position:0px -455px;}
|
|
531
|
+
.sprite.sx_icons.sx_election{height:13px;background-position:0px -471px;}
|
|
532
|
+
.sprite.sx_icons.sx_email_application{width:18px;background-position:0px -484px;}
|
|
533
|
+
.sprite.sx_icons.sx_email_web{width:17px;height:17px;background-position:0px -500px;}
|
|
534
|
+
.sprite.sx_icons.sx_event{height:17px;background-position:0px -517px;}
|
|
535
|
+
.sprite.sx_icons.sx_external_link{width:12px;height:12px;background-position:0px -534px;}
|
|
536
|
+
.sprite.sx_icons.sx_favicon{background-position:0px -546px;}
|
|
537
|
+
.sprite.sx_icons.sx_fbfile{width:14px;background-position:0px -562px;}
|
|
538
|
+
.sprite.sx_icons.sx_fbguy{width:17px;height:20px;background-position:0px -578px;}
|
|
539
|
+
.sprite.sx_icons.sx_fbml{background-position:0px -598px;}
|
|
540
|
+
.sprite.sx_icons.sx_fbpage{background-position:0px -614px;}
|
|
541
|
+
.sprite.sx_icons.sx_fbpage_add{background-position:0px -630px;}
|
|
542
|
+
.sprite.sx_icons.sx_feed{width:15px;height:15px;background-position:0px -646px;}
|
|
543
|
+
.sprite.sx_icons.sx_flag{background-position:0px -661px;}
|
|
544
|
+
.sprite.sx_icons.sx_flash{background-position:0px -677px;}
|
|
545
|
+
.sprite.sx_icons.sx_flashplayer{background-position:0px -693px;}
|
|
546
|
+
.sprite.sx_icons.sx_friend{background-position:0px -709px;}
|
|
547
|
+
.sprite.sx_icons.sx_friend_finder{background-position:0px -725px;}
|
|
548
|
+
.sprite.sx_icons.sx_friend_gal{background-position:0px -741px;}
|
|
549
|
+
.sprite.sx_icons.sx_friend_gal_pink{background-position:0px -757px;}
|
|
550
|
+
.sprite.sx_icons.sx_friend_guy{height:17px;background-position:0px -773px;}
|
|
551
|
+
.sprite.sx_icons.sx_friend_list_icon{width:19px;height:23px;background-position:0px -790px;}
|
|
552
|
+
.sprite.sx_icons.sx_friend_list_plus{width:19px;height:10px;background-position:0px -813px;}
|
|
553
|
+
.sprite.sx_icons.sx_friend_list_plus_blue{width:19px;height:10px;background-position:0px -823px;}
|
|
554
|
+
.sprite.sx_icons.sx_friend_mob{height:17px;background-position:0px -833px;}
|
|
555
|
+
.sprite.sx_icons.sx_friend_suggestion{background-position:0px -850px;}
|
|
556
|
+
.sprite.sx_icons.sx_gift{height:15px;background-position:0px -866px;}
|
|
557
|
+
.sprite.sx_icons.sx_gmail_logo{width:49px;height:17px;background-position:0px -881px;}
|
|
558
|
+
.sprite.sx_icons.sx_gmap_tiny_marker{width:12px;height:20px;background-position:0px -898px;}
|
|
559
|
+
.sprite.sx_icons.sx_gmap_tiny_marker_shadow{width:22px;height:20px;background-position:0px -918px;}
|
|
560
|
+
.sprite.sx_icons.sx_group{height:14px;background-position:0px -938px;}
|
|
561
|
+
.sprite.sx_icons.sx_hidden{background-position:0px -952px;}
|
|
562
|
+
.sprite.sx_icons.sx_hotmail_logo{width:58px;height:19px;background-position:0px -968px;}
|
|
563
|
+
.sprite.sx_icons.sx_hourglass{background-position:0px -987px;}
|
|
564
|
+
.sprite.sx_icons.sx_im{width:17px;height:15px;background-position:0px -1003px;}
|
|
565
|
+
.sprite.sx_icons.sx_install_app{width:17px;height:14px;background-position:0px -1018px;}
|
|
566
|
+
.sprite.sx_icons.sx_interest{background-position:0px -1032px;}
|
|
567
|
+
.sprite.sx_icons.sx_link{height:15px;background-position:0px -1048px;}
|
|
568
|
+
.sprite.sx_icons.sx_madness{height:15px;background-position:0px -1063px;}
|
|
569
|
+
.sprite.sx_icons.sx_magnifying_glass{background-position:0px -1078px;}
|
|
570
|
+
.sprite.sx_icons.sx_marketplace{background-position:0px -1094px;}
|
|
571
|
+
.sprite.sx_icons.sx_message{height:12px;background-position:0px -1110px;}
|
|
572
|
+
.sprite.sx_icons.sx_mobile{height:18px;background-position:0px -1122px;}
|
|
573
|
+
.sprite.sx_icons.sx_mobile_app{background-position:0px -1140px;}
|
|
574
|
+
.sprite.sx_icons.sx_mobile_note{width:14px;background-position:0px -1156px;}
|
|
575
|
+
.sprite.sx_icons.sx_mobile_photo{height:19px;background-position:0px -1172px;}
|
|
576
|
+
.sprite.sx_icons.sx_motion{background-position:0px -1191px;}
|
|
577
|
+
.sprite.sx_icons.sx_music{height:15px;background-position:0px -1207px;}
|
|
578
|
+
.sprite.sx_icons.sx_new_feature{background-position:0px -1222px;}
|
|
579
|
+
.sprite.sx_icons.sx_news{background-position:0px -1238px;}
|
|
580
|
+
.sprite.sx_icons.sx_note{height:17px;background-position:0px -1254px;}
|
|
581
|
+
.sprite.sx_icons.sx_notifications{background-position:0px -1271px;}
|
|
582
|
+
.sprite.sx_icons.sx_pages{width:15px;height:15px;background-position:0px -1287px;}
|
|
583
|
+
.sprite.sx_icons.sx_photo{background-position:0px -1302px;}
|
|
584
|
+
.sprite.sx_icons.sx_photos_notes{height:17px;background-position:0px -1318px;}
|
|
585
|
+
.sprite.sx_icons.sx_poke{height:14px;background-position:0px -1335px;}
|
|
586
|
+
.sprite.sx_icons.sx_polls{background-position:0px -1349px;}
|
|
587
|
+
.sprite.sx_icons.sx_post{height:15px;background-position:0px -1365px;}
|
|
588
|
+
.sprite.sx_icons.sx_printer{height:13px;background-position:0px -1380px;}
|
|
589
|
+
.sprite.sx_icons.sx_privacy{background-position:0px -1393px;}
|
|
590
|
+
.sprite.sx_icons.sx_privacy_lock{background-position:0px -1409px;}
|
|
591
|
+
.sprite.sx_icons.sx_promote_t2_hover{width:18px;background-position:0px -1425px;}
|
|
592
|
+
.sprite.sx_icons.sx_promote_t2_hover{width:18px;background-position:0px -1441px;}
|
|
593
|
+
.sprite.sx_icons.sx_promote_t2_off{width:18px;background-position:0px -1457px;}
|
|
594
|
+
.sprite.sx_icons.sx_promote_t2_off{width:18px;background-position:0px -1473px;}
|
|
595
|
+
.sprite.sx_icons.sx_promote_t2_on{width:18px;background-position:0px -1489px;}
|
|
596
|
+
.sprite.sx_icons.sx_promote_t2_on{width:18px;background-position:0px -1505px;}
|
|
597
|
+
.sprite.sx_icons.sx_props{background-position:0px -1521px;}
|
|
598
|
+
.sprite.sx_icons.sx_props_off{width:24px;height:24px;background-position:0px -1537px;}
|
|
599
|
+
.sprite.sx_icons.sx_props_off_hover{width:24px;height:24px;background-position:0px -1561px;}
|
|
600
|
+
.sprite.sx_icons.sx_props_on{width:24px;height:24px;background-position:0px -1585px;}
|
|
601
|
+
.sprite.sx_icons.sx_props_on_hover{width:24px;height:24px;background-position:0px -1609px;}
|
|
602
|
+
.sprite.sx_icons.sx_relationship{background-position:0px -1633px;}
|
|
603
|
+
.sprite.sx_icons.sx_relationship_remove{height:17px;background-position:0px -1649px;}
|
|
604
|
+
.sprite.sx_icons.sx_request_button_icon{width:15px;height:10px;background-position:0px -1666px;}
|
|
605
|
+
.sprite.sx_icons.sx_requests{background-position:0px -1676px;}
|
|
606
|
+
.sprite.sx_icons.sx_reviews{background-position:0px -1692px;}
|
|
607
|
+
.sprite.sx_icons.sx_reviews{background-position:0px -1708px;}
|
|
608
|
+
.sprite.sx_icons.sx_see_more{width:5px;height:9px;background-position:0px -1724px;}
|
|
609
|
+
.sprite.sx_icons.sx_settings{background-position:0px -1733px;}
|
|
610
|
+
.sprite.sx_icons.sx_share{width:14px;height:14px;background-position:0px -1749px;}
|
|
611
|
+
.sprite.sx_icons.sx_share_button_large{background-position:0px -1763px;}
|
|
612
|
+
.sprite.sx_icons.sx_share_button_small{width:12px;height:12px;background-position:0px -1779px;}
|
|
613
|
+
.sprite.sx_icons.sx_share_plus{width:14px;height:14px;background-position:0px -1791px;}
|
|
614
|
+
.sprite.sx_icons.sx_social_ad{background-position:0px -1805px;}
|
|
615
|
+
.sprite.sx_icons.sx_sort{width:11px;height:13px;background-position:0px -1821px;}
|
|
616
|
+
.sprite.sx_icons.sx_sort_dark{width:11px;height:3px;background-position:0px -1834px;}
|
|
617
|
+
.sprite.sx_icons.sx_start_quote{width:18px;height:12px;background-position:0px -1837px;}
|
|
618
|
+
.sprite.sx_icons.sx_start_quote_small{width:14px;height:10px;background-position:0px -1849px;}
|
|
619
|
+
.sprite.sx_icons.sx_tack{background-position:0px -1859px;}
|
|
620
|
+
.sprite.sx_icons.sx_transfer{height:14px;background-position:0px -1875px;}
|
|
621
|
+
.sprite.sx_icons.sx_translations{background-position:0px -1889px;}
|
|
622
|
+
.sprite.sx_icons.sx_updates{background-position:0px -1905px;}
|
|
623
|
+
.sprite.sx_icons.sx_video{height:17px;background-position:0px -1921px;}
|
|
624
|
+
.sprite.sx_icons.sx_wall_post{background-position:0px -1938px;}
|
|
625
|
+
.sprite.sx_icons.sx_yahoo_logo{width:79px;height:14px;background-position:0px -1954px;}
|
|
892
626
|
|
|
893
627
|
|
|
894
628
|
#attachment_buttons_list{clear:both;}
|
|
@@ -896,105 +630,69 @@ div.notice .buttons input{margin-left:10px;width:60px;}
|
|
|
896
630
|
#attachment_buttons_list .attachment_buttons{float:left;}
|
|
897
631
|
#attachment_buttons_list .empty_item{padding:6px 0px 0px 4px;}
|
|
898
632
|
#attachment_buttons_list .attachment_link{float:left;}
|
|
899
|
-
#attachment_buttons_list .attachment_link a{display:block;margin:2px;white-space:nowrap;cursor:pointer;}
|
|
633
|
+
#attachment_buttons_list .attachment_link a{display:block;margin:2px;white-space:nowrap;cursor:pointer;}
|
|
900
634
|
#attachment_buttons_list .attachment_link a span{display:block;padding:4px 6px 4px 24px;background-repeat:no-repeat;background-position:3px 3px;}
|
|
901
|
-
#attachment_buttons_list .attachment_link a:hover{color:#444;margin:1px;border:1px solid #a9a9a9;background:#f1f1f1 url(/
|
|
635
|
+
#attachment_buttons_list .attachment_link a:hover{color:#444;margin:1px;border:1px solid #a9a9a9;background:#f1f1f1 url(/images/components/attach_bg_default.gif) repeat-x top left;}
|
|
902
636
|
.attachment_dialog table.pop_dialog_table{width:500px;}
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
637
|
+
.attachment_view_wrapper{display:none;margin:6px 0px 8px 0px;}
|
|
638
|
+
.attachment_edit_loading,
|
|
639
|
+
.attachment_view_loading{display:none;background:url('/images/upload_progress.gif') center no-repeat;clear:both;padding:6px 0px;}
|
|
640
|
+
.attachment_view_container{float:left;padding-bottom:6px;}
|
|
641
|
+
.attachment_view_loading{padding-bottom:0px;}
|
|
908
642
|
.attachment_remove{font-size:9px;text-align:right;padding-bottom:3px;}
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
.attached_item{margin:10px 0 0;padding:0px 0px 0px 7px;border-left:2px solid #
|
|
643
|
+
.attachment_edit .attachment_stage{background:white;border:0px none;}
|
|
644
|
+
.attachment_edit .attachment_stage_area{padding:0px;}
|
|
645
|
+
.attachment_edit .attachment_stage_area .share_a_link .inputtext{width:300px;}
|
|
646
|
+
.attachment_edit .attachment_stage .has_image .summary_wrap{width:334px;}
|
|
647
|
+
.attachment_view{width:378px;}
|
|
648
|
+
.attachment_view .attachment_stage .has_image .summary_wrap{width:243px;}
|
|
649
|
+
.attachment_view .attached_item{background:white;border:1px solid #BDC7D8;padding:6px;margin-top:0px;}
|
|
650
|
+
.attached_item{margin:10px 0 0;padding:0px 0px 0px 7px;border-left:2px solid #e0e0e0;overflow:hidden;}
|
|
917
651
|
.attached_item.no_text,
|
|
918
652
|
.attached_item_info.no_text{margin-top:0px;}
|
|
919
653
|
div.attachment_info{clear:both;color:#666;font-size:9px;padding:8px 0px 3px 0px;}
|
|
920
654
|
div.attachment_info span{padding:3px 0px 2px 21px;}
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
#
|
|
924
|
-
#
|
|
925
|
-
#
|
|
926
|
-
#
|
|
927
|
-
#
|
|
928
|
-
#
|
|
929
|
-
#
|
|
930
|
-
#
|
|
931
|
-
#
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
.
|
|
935
|
-
#generic_dialog.captcha table.pop_dialog_table{width:340px;}
|
|
936
|
-
#generic_dialog.captcha #generic_dialog_popup{border:0px solid white;margin:auto;}
|
|
937
|
-
#generic_dialog.captcha #generic_dialog_popup legend{display:none;}
|
|
938
|
-
.audiocaptcha{overflow:hidden;display:block;margin:0;padding:0;height:0;}
|
|
939
|
-
.audiocaptcha a{display:block;text-indent:-5000px;}
|
|
940
|
-
|
|
941
|
-
.unconfirmed_actions_rooster{border:solid 1px #CCC;background:#f7f7f7;}
|
|
942
|
-
.unconfirmed_actions_rooster .unconfirmed_actions_rooster_container{margin:-10px;}
|
|
943
|
-
.unconfirmed_actions_rooster .unconfirmed_actions{background:url('/fakebook-assets/icons/favicon.gif') no-repeat 0px 0px;margin:0px;padding:0px;padding-left:22px;padding-top:0px;margin-top:7px;margin-left:11px;padding-bottom:6px;}
|
|
944
|
-
.unconfirmed_actions_rooster .unconfirmed_actions .help_link{float:right;padding:0px;margin:0px;padding-right:10px;position:relative;}
|
|
945
|
-
.unconfirmed_actions_rooster .unconfirmed_actions_summary{padding-bottom:2px;font-weight:bold;}
|
|
946
|
-
.unconfirmed_actions_rooster .unconfirmed_actions_summary_subtitle{font-size:9px;padding:0px;margin:0px;color:#999;}
|
|
947
|
-
.unconfirmed_actions_rooster .unconfirmed_actions_first_time{padding:0px;margin:0px;padding-top:7px;padding-left:13px;padding-bottom:3px;padding-right:10px;line-height:14px;}
|
|
948
|
-
#unconfirmed_actions_footer{color:#999999;text-align:left;}
|
|
949
|
-
#unconfirmed_actions_footer .help_links{float:right;text-align:right;width:300px;}
|
|
950
|
-
#unconfirmed_actions_details{padding-left:0px;border-top:1px solid #dedfef;}
|
|
951
|
-
#unconfirmed_actions_details .unconfirmed_action{background:white;padding:4px 6px 0px 10px;}
|
|
952
|
-
#unconfirmed_actions_details .last_action{border-bottom:solid 1px #dedfef;}
|
|
953
|
-
#unconfirmed_actions_details .unconfirmed_action table{padding:0px;margin:0px;width:100%;}
|
|
954
|
-
#unconfirmed_actions_details .unconfirmed_action table tr{padding:0px;margin:0px;}
|
|
955
|
-
#unconfirmed_actions_details .unconfirmed_action table tr td{padding:0px;margin:0px;}
|
|
956
|
-
#unconfirmed_actions_details .unconfirmed_action table .unconfirmed_action_remove_link{text-align:left;vertical-align:top;border-left:1px solid #ddd;white-space:nowrap;padding-left:10px;padding-top:2px;}
|
|
957
|
-
#unconfirmed_actions_details .unconfirmed_action table .unconfirmed_action_remove{width:11px;padding-top:2px;vertical-align:top;}
|
|
958
|
-
#unconfirmed_actions_details .unconfirmed_action table .unconfirmed_action_description{padding-right:8px;width:100%;}
|
|
959
|
-
#unconfirmed_actions_details .unconfirmed_action table .unconfirmed_action_description div{background-position:0px 2px;}
|
|
960
|
-
#unconfirmed_actions_details .unconfirmed_action table .unconfirmed_action_remove a.x_to_hide{border:none;width:3px;display:block;float:right;padding:0px 5px 2px;margin-left:3px;background:transparent url(/fakebook-assets/x_to_hide.gif) no-repeat center center;}
|
|
961
|
-
#unconfirmed_actions_details .unconfirmed_action table .unconfirmed_action_remove a.x_to_hide:hover{background:#3B5998 url(/fakebook-assets/x_to_hide_hover.gif) no-repeat center center;}
|
|
962
|
-
#unconfirmed_actions_details .unconfirmed_action .x_to_hide{margin-left:6px;}
|
|
963
|
-
#unconfirmed_actions_details .unconfirmed_action div{background:no-repeat 0px 0px;padding-left:22px;padding-top:4px;padding-bottom:2px;}
|
|
964
|
-
#unconfirmed_actions_details .unconfirmed_action .unconfirmed_action_tcontainer{padding:0px;margin:0px;padding-bottom:6px;border-bottom:1px solid #e5e5e5;}
|
|
965
|
-
#unconfirmed_actions_details .last_action .unconfirmed_action_tcontainer{border:0px;}
|
|
966
|
-
#unconfirmed_actions_controls{margin:0px;padding:0px;padding-top:6px;padding-right:10px;padding-bottom:7px;padding-left:10px;}
|
|
967
|
-
#unconfirmed_actions_info_links{padding-left:22px;padding-right:35px;}
|
|
968
|
-
#unconfirmed_actions_controls table{border-collapse:collapse;width:100%;}
|
|
969
|
-
#unconfirmed_actions_controls table td{padding-top:0;padding-bottom:0;white-space:nowrap;}
|
|
970
|
-
#unconfirmed_actions_controls label{font-weight:normal;padding-left:3px;}
|
|
655
|
+
#attachment_more_menu{position:relative;float:left;margin-top:3px;padding:0;}
|
|
656
|
+
#attachment_more_menu #attachment_more_link{padding:1px 5px 3px 13px;margin:1px;color:#3b5998;float:left;display:block;background:url(/images/menu_down_arrow.gif) no-repeat 0px 1px;}
|
|
657
|
+
#attachment_more_menu #attachment_more_link:hover,
|
|
658
|
+
#attachment_more_menu #attachment_more_link.active,
|
|
659
|
+
#attachment_more_menu #attachment_more_link.active:hover{color:#fff;cursor:pointer;background-color:#5c75aa;background-position:0px -15px;text-decoration:none;}
|
|
660
|
+
#attachment_more_menu #attachment_more_link.active,
|
|
661
|
+
#attachment_more_menu #attachment_more_link.active:hover{margin:0;border:1px solid #3B5998;}
|
|
662
|
+
#attachment_more_menu #wall_attachment_more_menu{padding:5px 0px;position:absolute;top:18px;left:0;background:white;border:solid 1px #3B5998;}
|
|
663
|
+
#attachment_more_menu #wall_attachment_more_menu a{display:block;color:#3b5998;width:112px;padding:3px 5px 3px 7px;}
|
|
664
|
+
#attachment_more_menu #wall_attachment_more_menu a:hover{text-decoration:none;background:#5c75aa;color:white;cursor:pointer;}
|
|
665
|
+
#attachment_more_menu #wall_attachment_more_menu a:hover
|
|
666
|
+
.attachment_more_menu_option_icon{background-position:0px 0px;}
|
|
667
|
+
#attachment_more_menu #wall_attachment_more_menu .attachment_more_menu_option_icon{float:left;width:16px;line-height:16px;background-position:-16px 0px;background-repeat:no-repeat;}
|
|
668
|
+
#attachment_more_menu #wall_attachment_more_menu .attachment_more_menu_option_text{float:left;width:90px;display:block;text-align:left;padding-left:6px;}
|
|
971
669
|
|
|
972
670
|
|
|
973
671
|
.editor{margin:3px auto 7px;}
|
|
974
|
-
.editor_panel{padding:10px 0px;
|
|
672
|
+
.editor_panel{background:#f7f7f7;padding:10px 0px;}
|
|
975
673
|
.editor td{border:none;margin:0px;padding:5px 1px 1px;}
|
|
976
|
-
.editor td.label{
|
|
674
|
+
.editor td.label{color:#666;font-weight:bold;padding-right:10px;}
|
|
977
675
|
.editor td.label small{color:#999;}
|
|
978
|
-
.editor .suboption_group{border-
|
|
676
|
+
.editor .suboption_group{border-bottom:1px solid #c0c0c0;border-top:1px solid #c0c0c0;margin-left:20px;}
|
|
979
677
|
.editor .suboption_group td{padding:0px;}
|
|
980
678
|
.editor tr.tallrow{vertical-align:top;}
|
|
981
679
|
.editor tr.tallrow td.label{padding-top:7px;}
|
|
982
680
|
.editor tr.subrow{vertical-align:top;}
|
|
983
681
|
.editor tr.subrow td{margin-top:0px;padding-top:0px;}
|
|
984
|
-
.editor .buttons{
|
|
985
|
-
.editor .buttons_left{text-align:left;
|
|
682
|
+
.editor .buttons{padding:10px 0px 0px;text-align:center;}
|
|
683
|
+
.editor .buttons_left{padding-left:0px;text-align:left;}
|
|
986
684
|
.editor .buttons .inputsubmit,
|
|
987
685
|
.editor .buttons .inputbutton{margin:2px 4px;}
|
|
988
686
|
.editor .buttons_left .inputsubmit,
|
|
989
687
|
.editor .buttons_left .inputbutton{margin-left:0px;}
|
|
990
|
-
.editor label{
|
|
991
|
-
.editor table.option_field td{padding:0px 2px 0px 0px;
|
|
992
|
-
.editor .option_caption{padding-bottom:2px;width:260px;
|
|
688
|
+
.editor label{color:black;font-weight:normal;width:200px;}
|
|
689
|
+
.editor table.option_field td{margin:0px;padding:0px 2px 0px 0px;}
|
|
690
|
+
.editor .option_caption{color:#777;font-weight:normal;padding-bottom:2px;width:260px;}
|
|
993
691
|
.editor .inputtext,
|
|
994
692
|
.editor .inputpassword{margin-left:0px;width:300px;}
|
|
995
|
-
.editor
|
|
996
|
-
.editor select{margin-
|
|
997
|
-
.editor .checkbox_array{padding:5px 0px 0px;
|
|
693
|
+
.editor textarea{margin-left:0px;width:300px;}
|
|
694
|
+
.editor select{margin-left:0px;margin-right:5px;}
|
|
695
|
+
.editor .checkbox_array{margin:0px;padding:5px 0px 0px;}
|
|
998
696
|
.editor .checkbox_array td{margin:0px;padding:0px 0px 0px;}
|
|
999
697
|
.editor .checkbox_array label{padding-right:15px;}
|
|
1000
698
|
.editor .relationship .inputtext{width:200px;}
|
|
@@ -1005,18 +703,20 @@ div.attachment_info span{padding:3px 0px 2px 21px;}
|
|
|
1005
703
|
.editor .text_with_privacy input{margin-right:5px;width:105px;}
|
|
1006
704
|
.editor .text_with_privacy select{margin-left:5px;width:auto;}
|
|
1007
705
|
.editor .text_with_privacy td{color:#777;}
|
|
1008
|
-
.editor .divider{
|
|
706
|
+
.editor .divider{border-bottom:solid 1px #fff;border-top:solid 1px #ccc;height:0px;margin:5px 0px;overflow:hidden;}
|
|
1009
707
|
.editor .date_time span, .editor .inline_text{margin:0px 4px 0px -2px;}
|
|
1010
708
|
.editor .note{width:300px;}
|
|
1011
709
|
.editor .hiddenrow{display:none;}
|
|
1012
710
|
.editor .calendar_popup{display:inline;}
|
|
711
|
+
.editor .calendar_at_time{padding:0px 0px 0px 8px;}
|
|
1013
712
|
.editor .calicon{padding:0px 2px 1px 0px;}
|
|
1014
713
|
.editor .calendars td{padding:0px;}
|
|
1015
|
-
.editor #start_calendar, .editor #end_calendar{
|
|
714
|
+
.editor #start_calendar, .editor #end_calendar{background-color:#fff;border-bottom:solid 1px #3b5998;border-left:solid 1px #d8dfea;border-right:solid 1px #d8dfea;margin-left:147px;margin-top:-3px;position:absolute;width:168px;z-index:100;}
|
|
715
|
+
.editor #box_separator{padding:0px 3px 0px 3px;}
|
|
1016
716
|
|
|
1017
717
|
|
|
1018
|
-
.sidebar{padding-right:176px;overflow:hidden;background:#fff url(/
|
|
1019
|
-
.sidebar.other_side{padding-left:176px;padding-right:0;background:#fff url(/
|
|
718
|
+
.sidebar{padding-right:176px;overflow:hidden;background:#fff url(/images/components/sidebar_rightbg.gif) repeat-y top right;}
|
|
719
|
+
.sidebar.other_side{padding-left:176px;padding-right:0;background:#fff url(/images/components/sidebar_leftbg.gif) repeat-y top left;}
|
|
1020
720
|
.sidebar .content_frame{float:left;width:100%;margin-right:-176px;padding-right:176px;}
|
|
1021
721
|
.sidebar .content_frame.other_side{float:right;margin-left:-176px;margin-right:0;padding-left:176px;border-right:none;}
|
|
1022
722
|
.sidebar .sidebar_frame{float:left;width:176px;margin-right:-176px;}
|
|
@@ -1028,19 +728,19 @@ div.attachment_info span{padding:3px 0px 2px 21px;}
|
|
|
1028
728
|
#dt_attachment label{padding-top:4px;}
|
|
1029
729
|
#dd_attachment{border-bottom:1px solid #ccc;padding-bottom:10px;}
|
|
1030
730
|
#attach_dropdown{z-index:10;position:relative;}
|
|
1031
|
-
.attachment_button{background:#f1f1f1 url(/
|
|
731
|
+
.attachment_button{background:#f1f1f1 url(/images/components/attach_bg_default.gif) repeat-x top left;border:solid 1px #999;cursor:pointer;display:block;float:left;font-size:9px;font-weight:bold;line-height:14px;line-height:11px;padding:0px;margin:0px 4px 4px 0px;white-space:nowrap;}
|
|
1032
732
|
.attachment_button a{background-repeat:no-repeat;background-position:4px 2px;color:#444;display:block;padding:4px 5px 4px 25px;}
|
|
1033
733
|
#attach{clear:both;}
|
|
1034
734
|
#dd_attachment{border-bottom:1px solid #ccc;padding-bottom:10px;}
|
|
1035
735
|
#attach_dropdown{z-index:10;position:relative;}
|
|
1036
736
|
#attach_dropdown .app_switcher_unselected{position:relative;float:left;}
|
|
1037
|
-
#attach_dropdown .app_switcher_button{background:#f1f1f1 url(/
|
|
737
|
+
#attach_dropdown .app_switcher_button{background:#f1f1f1 url(/images/components/attach_bg_default.gif) repeat-x top left;cursor:pointer;color:#555;color:#444;float:left;display:block;padding:0px 6px 0px 8px;margin:0px;font-weight:bold;line-height:14px;line-height:11px;text-decoration:none;border:solid 1px #999;}
|
|
1038
738
|
#attach_dropdown .app_switcher_button .arrow,
|
|
1039
739
|
#attach_dropdown .app_switcher_button .name,
|
|
1040
740
|
#attach_dropdown .app_switcher_button .icon{float:left;}
|
|
1041
|
-
#attach_dropdown .app_switcher_unselected .app_switcher_button:hover{border:solid 1px #666;background:#fff url(/
|
|
741
|
+
#attach_dropdown .app_switcher_unselected .app_switcher_button:hover{border:solid 1px #666;background:#fff url(/images/app_switcher_hover_shadow.gif) repeat-x bottom left;}
|
|
1042
742
|
#attach_dropdown .app_switcher_selected .app_switcher_button{color:white;background:#6d84b4;border:solid 1px #3B5998;}
|
|
1043
|
-
#attach_dropdown .app_switcher_button .arrow{width:13px;padding:4px 0px 3px;margin-top:1px;background:transparent url('/
|
|
743
|
+
#attach_dropdown .app_switcher_button .arrow{width:13px;padding:4px 0px 3px;margin-top:1px;background:transparent url('/images/app_switcher_down_arrow.gif') no-repeat -11px center;}
|
|
1044
744
|
#attach_dropdown .app_switcher_selected .app_switcher_button .arrow{background-position:2px center;}
|
|
1045
745
|
#attach_dropdown .app_switcher_button .name{padding:4px 0px 4px 6px;}
|
|
1046
746
|
#attach_dropdown .app_switcher_button .icon{width:16px;padding:4px 0px;background-position:-16px center;background-repeat:no-repeat;}
|
|
@@ -1053,48 +753,47 @@ div.attachment_info span{padding:3px 0px 2px 21px;}
|
|
|
1053
753
|
#attach_dropdown_menu .app_icon,
|
|
1054
754
|
#attach_dropdown_menu .name{float:left;}
|
|
1055
755
|
#attach_dropdown_menu .side_space{width:7px;padding:4px 0px;margin:0px 3px;}
|
|
1056
|
-
#attach_dropdown_menu .selector_arrow{background:url(/
|
|
1057
|
-
#attach_dropdown_menu a:hover .selector_arrow{background:url(/
|
|
1058
|
-
#attach_dropdown_menu .app_icon{width:16px;padding:4px 0px;margin:0px 0px 0px 2px;background:url('/
|
|
756
|
+
#attach_dropdown_menu .selector_arrow{background:url(/images/rightarrow.gif) no-repeat -7px center;}
|
|
757
|
+
#attach_dropdown_menu a:hover .selector_arrow{background:url(/images/rightarrow.gif) no-repeat 0px center;}
|
|
758
|
+
#attach_dropdown_menu .app_icon{width:16px;padding:4px 0px;margin:0px 0px 0px 2px;background:url('/images/icons/hidden.gif') no-repeat -16px center;}
|
|
1059
759
|
#attach_dropdown_menu a:hover .app_icon{background-position:0px center;}
|
|
1060
760
|
#attach_dropdown_menu .name{padding:4px 0px;margin:0px 0px 0px 5px;}
|
|
1061
761
|
|
|
1062
762
|
|
|
1063
|
-
.
|
|
1064
|
-
.
|
|
1065
|
-
.
|
|
1066
|
-
.
|
|
1067
|
-
.
|
|
1068
|
-
.
|
|
1069
|
-
.
|
|
1070
|
-
.
|
|
1071
|
-
.
|
|
1072
|
-
.
|
|
1073
|
-
.
|
|
1074
|
-
.
|
|
1075
|
-
.
|
|
1076
|
-
.
|
|
1077
|
-
.
|
|
1078
|
-
.
|
|
1079
|
-
.
|
|
1080
|
-
.
|
|
1081
|
-
.
|
|
1082
|
-
.
|
|
1083
|
-
.
|
|
1084
|
-
.
|
|
1085
|
-
.share_pop_dialog .share_status{padding:0px 10px 10px;}
|
|
763
|
+
.pop_dialog .share_composer{margin:-10px;}
|
|
764
|
+
.share_composer .share_header{padding-top:12px;}
|
|
765
|
+
.share_composer .share_methods{border-bottom:1px solid #ddd;padding:10px 0px;text-align:center;}
|
|
766
|
+
.share_composer .share_methods label{color:black;font-weight:normal;margin-right:5px;}
|
|
767
|
+
.share_composer div.tokenizer,
|
|
768
|
+
.share_composer .composer_fields dd,
|
|
769
|
+
.share_composer .composer_fields .field #subject_field{width:355px;}
|
|
770
|
+
.share_composer .attachment_stage{width:360px;}
|
|
771
|
+
.share_composer div.tokenizer{border:1px solid #8496ba;}
|
|
772
|
+
.share_composer .composer_fields textarea{height:50px;}
|
|
773
|
+
.share_composer .share_send,
|
|
774
|
+
.share_composer .share_wall,
|
|
775
|
+
.share_composer .share_post{background:#f7f7f7;padding-top:15px;}
|
|
776
|
+
.share_composer.share_status_wall .share_send,
|
|
777
|
+
.share_composer.share_status_wall .share_post,
|
|
778
|
+
.share_composer.share_status_send .share_post,
|
|
779
|
+
.share_composer.share_status_send .share_wall,
|
|
780
|
+
.share_composer.share_status_post .share_send,
|
|
781
|
+
.share_composer.share_status_post .share_wall{position:absolute;left:-32000px;top:-32000px;}
|
|
782
|
+
.share_composer .share_buttons{margin:auto;padding-top:0px!important;padding-top:10px;padding-bottom:10px;text-align:center;}
|
|
783
|
+
.pop_dialog .share_message{padding:10px;}
|
|
784
|
+
.share_composer .share_status{padding:0px 10px 10px;}
|
|
1086
785
|
.sharer .share_status{background:#f7f7f7;}
|
|
1087
|
-
.
|
|
1088
|
-
.
|
|
786
|
+
.pop_dialog .status{margin:10px;}
|
|
787
|
+
.pop_dialog .status h2{background:#fff9d7;border:none;color:black;font-size:11px;}
|
|
1089
788
|
body.sharer_popup{overflow:hidden;}
|
|
1090
789
|
#booklet .share_message .status{margin-top:140px;}
|
|
1091
790
|
#booklet .status h2{font-size:13px;}
|
|
1092
|
-
#booklet .
|
|
791
|
+
#booklet .share_composer .share_header{height:20px;}
|
|
1093
792
|
#booklet .dialog_content{height:398px;overflow:hidden;}
|
|
1094
793
|
#booklet .share_send,
|
|
1095
794
|
#booklet .share_post{height:326px;overflow:auto;}
|
|
1096
|
-
.
|
|
1097
|
-
#booklet .share_buttons{background:#f0f0f0;height:35px;line-height:30px;vertical-align:middle;padding:0px;left:1px;position:absolute;bottom:0px;width:
|
|
795
|
+
.share_composer .composer_fields{margin:auto;width:463px;}
|
|
796
|
+
#booklet .share_buttons{background:#f0f0f0;height:35px;line-height:30px;vertical-align:middle;padding:0px;left:1px;position:absolute;bottom:0px;width:100%;border-top:1px solid #aaa;}
|
|
1098
797
|
#booklet .share_buttons input{margin-top:3px;vertical-align:middle;}
|
|
1099
798
|
.sharer #content{padding:0px;}
|
|
1100
799
|
.sharer .share_buttons{padding-bottom:8px;width:auto;}
|
|
@@ -1103,12 +802,12 @@ body.sharer_popup{overflow:hidden;}
|
|
|
1103
802
|
.attachment_caption .remove{float:right;font-weight:bold;}
|
|
1104
803
|
.attachment_stage h2{margin-left:0px;}
|
|
1105
804
|
.attachment_stage_area{padding:8px 3px 7px 8px;overflow:hidden;}
|
|
1106
|
-
.share_attachment_loading{background:url('/
|
|
805
|
+
.share_attachment_loading{background:url('/images/upload_progress.gif') center no-repeat;padding:15px;}
|
|
1107
806
|
.external_stage{padding:0;}
|
|
1108
807
|
.external_stage .url{color:#4f4f4f;display:block;font-size:9px;padding-top:3px;}
|
|
1109
808
|
.external_stage .thumbnail_dont_use .selector,
|
|
1110
809
|
.external_stage .thumbnail_dont_use .thumbnail{display:none;}
|
|
1111
|
-
.external_stage .thumbnail_viewer.loading{background:url('/
|
|
810
|
+
.external_stage .thumbnail_viewer.loading{background:url('/images/upload_progress.gif') center no-repeat;padding-top:15px;width:100px;}
|
|
1112
811
|
.external_stage .thumbnail_viewer label{padding:0px;}
|
|
1113
812
|
.external_stage .thumbnail_viewer .selector{width:100px;}
|
|
1114
813
|
.external_stage .thumbnail_viewer{float:left;width:auto;margin-right:0px;overflow:hidden;}
|
|
@@ -1119,7 +818,7 @@ body.sharer_popup{overflow:hidden;}
|
|
|
1119
818
|
.external_stage .thumbnail_stage .arrows{float:left;margin:0 6px 5px 0px;}
|
|
1120
819
|
.external_stage .thumbnail_stage .arrows a:hover{text-decoration:none;}
|
|
1121
820
|
.external_stage .thumbnail_stage .arrows .disabled{cursor:default;}
|
|
1122
|
-
.external_stage .thumbnail_stage .arrow{background-image:url('/inbox/
|
|
821
|
+
.external_stage .thumbnail_stage .arrow{background-image:url('/inbox/images/arrows.gif');background-repeat:no-repeat;display:block;float:left;height:21px;width:27px;}
|
|
1123
822
|
.external_stage .thumbnail_stage .arrows .left{width:28px;}
|
|
1124
823
|
.external_stage .thumbnail_stage .arrows .left .enabled{background-position:-28px 0px;}
|
|
1125
824
|
.external_stage .thumbnail_stage .arrows .left .active{background-position:0px 0px;}
|
|
@@ -1139,13 +838,17 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1139
838
|
.popup_url_form .sharer_form{padding:10px;}
|
|
1140
839
|
.popup_url_form .inputtext{width:250px;}
|
|
1141
840
|
#share_fatal_error{padding:10px;}
|
|
1142
|
-
.
|
|
841
|
+
.share_composer .no_friends_message{padding:40px 80px;}
|
|
842
|
+
.share_composer .no_friends_message h3.no_friends_header{border:0px;color:#333;font-size:13px;font-weight:bold;margin:0px;text-align:center;}
|
|
843
|
+
.share_composer .no_friends_message p.no_friends_detail{color:#111;font-size:11px;line-height:14px;margin:5px 0px;text-align:center;}
|
|
1143
844
|
|
|
1144
845
|
|
|
1145
846
|
.share_media{}
|
|
1146
847
|
.share_media h3{color:#777;font-size:11px;font-weight:bold;margin:0px;}
|
|
1147
|
-
.share_media .owner_comment
|
|
1148
|
-
.share_media .
|
|
848
|
+
.share_media .owner_comment,
|
|
849
|
+
.share_media .story_comment_quote{background:url(/images/start_quote_small.gif) no-repeat 1px 1px;padding:0px 0px 5px 18px;width:auto;clear:left;}
|
|
850
|
+
.share_media .owner_comment span.q,
|
|
851
|
+
.share_media .story_comment_back_quote{color:#555;background:url(/images/end_quote_small.gif) no-repeat bottom right;padding:0 16px 0 0;}
|
|
1149
852
|
.share_media .owner_comment .add_comment_link{padding:5px 0px 0px 0px;}
|
|
1150
853
|
.sharebox_narrow .owner_comment{}
|
|
1151
854
|
.sharebox_wide .owner_comment{}
|
|
@@ -1160,7 +863,7 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1160
863
|
.share_media .photo_metadata{}
|
|
1161
864
|
.share_media .photo .parent_label{color:#666;font-size:9px;}
|
|
1162
865
|
.share_media .photo .parent_name{color:#333;font-weight:bold;}
|
|
1163
|
-
.share_media .photo .photo_owner{color:#666;}
|
|
866
|
+
.share_media .photo .photo_owner{color:#666;font-size:10px;}
|
|
1164
867
|
.share_media .photo_album .album_title{color:#333;font-weight:bold;padding:0px 0px 2px 0px;}
|
|
1165
868
|
.share_media .photo_album .album_count{color:#666;font-size:9px;padding:0px 0px 1px 0px;}
|
|
1166
869
|
.share_media .photo_album .album_owner{color:#666;}
|
|
@@ -1172,8 +875,8 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1172
875
|
.share_media .album_label{font-size:9px;color:#777;}
|
|
1173
876
|
.share_media .meta_info{color:#777;}
|
|
1174
877
|
.share_media .wall .wall_quote{width:280px;float:left;}
|
|
1175
|
-
.share_media .wall em{float:left;margin:0px;padding-left:17px;background:url(/
|
|
1176
|
-
.share_media .wall_quote em span{padding-right:17px;background:url(/
|
|
878
|
+
.share_media .wall em{float:left;margin:0px;padding-left:17px;background:url(/images/start_quote_small.gif) top left no-repeat;}
|
|
879
|
+
.share_media .wall_quote em span{padding-right:17px;background:url(/images/end_quote_small.gif) bottom right no-repeat;font-size:11px;text-align:left;font-style:normal;}
|
|
1177
880
|
.share_media .wall .media img{margin-right:10px;float:left;}
|
|
1178
881
|
.share_media .wall .media img.photo_with_comment{margin:0px;margin-left:10px;float:right;}
|
|
1179
882
|
.share_media .wall .wall_title{padding:0px 0px 5px;font-weight:bold;}
|
|
@@ -1191,11 +894,12 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1191
894
|
.sharefeed_item .note_with_thumb .excerpt .textual{width:220px;}
|
|
1192
895
|
.share_media .note .continue{float:none;padding:5px 0px 0px 0px;}
|
|
1193
896
|
.share_media .note .owner_comment{clear:both;float:none;width:auto;}
|
|
1194
|
-
.share_media .group_photo{float:left;padding:0px
|
|
897
|
+
.share_media .group_photo{float:left;padding:0px 8px 8px 0px;}
|
|
1195
898
|
.share_media .group_info{padding:0px 0px 3px 0px;}
|
|
1196
899
|
.share_media .no_photo .group_info{float:none;width:auto;}
|
|
1197
900
|
.share_media .has_photo .group_info{float:left;width:220px;}
|
|
1198
901
|
.share_media .group_title{font-weight:bold;padding:0px 0px 5px 0px;}
|
|
902
|
+
.share_media .fbpage_title{font-weight:bold;padding:0px 0px 0px 0px;}
|
|
1199
903
|
.share_media .group_description{padding:0px 0px 5px 0px;}
|
|
1200
904
|
.share_media .group_description label{color:gray;font-weight:normal;}
|
|
1201
905
|
.share_media .group .owner_comment{clear:both;}
|
|
@@ -1210,7 +914,7 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1210
914
|
.share_media .fbpage .owner_comment{clear:both;}
|
|
1211
915
|
.share_media .event_photo{padding:0px 8px 8px 0px;float:left;}
|
|
1212
916
|
.share_media .event_title{font-weight:bold;padding:0px 0px 5px 0px;}
|
|
1213
|
-
.share_media .event_tagline{color:#
|
|
917
|
+
.share_media .event_tagline{color:#666;font-size:10px;font-weight:normal;padding:1px 0px 0px 0px;}
|
|
1214
918
|
.share_media .event_description{padding:0px 0px 10px 0px;}
|
|
1215
919
|
.share_media.event .owner_comment{clear:both;}
|
|
1216
920
|
.share_media .event_has_photo .event_info{float:left;width:220px;}
|
|
@@ -1254,25 +958,40 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1254
958
|
.share_media .video_stage img{float:left;}
|
|
1255
959
|
.share_media .video_stage .video_info{float:left;padding-left:10px;}
|
|
1256
960
|
.share_media .video_stage h3{color:black;padding-bottom:3px;}
|
|
1257
|
-
.extra{
|
|
961
|
+
.extra{}
|
|
962
|
+
.large .share_thumb{width:200px;}
|
|
1258
963
|
.share_thumb{width:100px;}
|
|
1259
|
-
.has_thumb .extra
|
|
964
|
+
.has_thumb .extra,
|
|
965
|
+
.home .has_thumb .extra{float:right;padding:0 0 5px 8px;}
|
|
966
|
+
.share_ext_photo .has_thumb .extra{float:left;padding:0px 8px 5px 0px
|
|
967
|
+
}
|
|
968
|
+
.share_ext_photo .has_thumb .textual{float:left;width:320px;}
|
|
969
|
+
.large .has_thumb .extra{float:left;padding:0px 8px 5px 0px
|
|
970
|
+
}
|
|
971
|
+
.large .has_thumb .textual{float:left;width:240px;}
|
|
1260
972
|
.textual{float:none;}
|
|
1261
973
|
.has_extra .textual{float:left;float:none;}
|
|
1262
974
|
.no_extra .textual,
|
|
1263
975
|
.has_thumb .textual{float:none;width:auto;}
|
|
976
|
+
.textual .summary{padding:0 0 8px;}
|
|
1264
977
|
.share_media .video_for_share{padding:5px 0px;}
|
|
1265
|
-
.share_media a .video_fallback{background:#eee url(/
|
|
978
|
+
.share_media a .video_fallback{background:#eee url(/images/video_play_overlay.png) no-repeat center center;color:gray;display:block;float:left;font-size:11px;font-weight:bold;margin:0px;padding:65px 0px 20px 0px;width:130px;text-align:center;}
|
|
1266
979
|
.share_media a:hover .video_fallback{color:#3b5998;text-decoration:none;}
|
|
1267
|
-
|
|
980
|
+
a .video_thumb{display:block;float:left;margin:0px;}
|
|
1268
981
|
.share_media .video_thumb img{width:130px;}
|
|
1269
|
-
.
|
|
1270
|
-
.
|
|
1271
|
-
.
|
|
1272
|
-
.
|
|
1273
|
-
.
|
|
1274
|
-
.ad_capsule .share_media .video_thumb span.thumb{background-image:url(/
|
|
1275
|
-
.ad_capsule .share_media .video_thumb span.play{background-image:url(/
|
|
982
|
+
.video_thumb img.decoy{display:inline;visibility:hidden;}
|
|
983
|
+
.video_thumb span.thumb{background-image:url(/images/video_play_overlay.gif);background-position:center;background-repeat:no-repeat;cursor:pointer;position:absolute;z-index:9;}
|
|
984
|
+
.video_thumb span.play img{visibility:hidden;}
|
|
985
|
+
.video_thumb span.thumb img{visibility:visible;}
|
|
986
|
+
.video_thumb span.play{background-image:url(/images/video_play_overlay.png);background-position:center;background-repeat:no-repeat;display:inline;position:absolute;z-index:10;}
|
|
987
|
+
.ad_capsule .share_media .video_thumb span.thumb{background-image:url(/images/video_play_mini_overlay.gif);}
|
|
988
|
+
.ad_capsule .share_media .video_thumb span.play{background-image:url(/images/video_play_mini_overlay.gif);}
|
|
989
|
+
.share_media .lexicon{}
|
|
990
|
+
.share_media .lexicon .thumb{float:left;padding:0px 6px 6px 0px;}
|
|
991
|
+
.share_media .lexicon .thumb a{display:block;float:left;line-height:1px;padding:0px;text-decoration:none;}
|
|
992
|
+
.share_media .lexicon .info{clear:none;float:left;padding:10px 10px 0px 0px;width:133px;}
|
|
993
|
+
.share_media .lexicon .comment{clear:both;float:none;margin-top:8px;width:auto;}
|
|
994
|
+
.lexicon_title{color:#111;font-size:11px;font-weight:bold;}
|
|
1276
995
|
.mp3player .extra{float:none;padding:0px 0px 4px 0px;width:auto;}
|
|
1277
996
|
.mp3player .owner_comment{clear:both;}
|
|
1278
997
|
.album_art{float:left;margin-bottom:5px;margin-right:7px;width:100px;}
|
|
@@ -1284,6 +1003,9 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1284
1003
|
.mp3player .summary,
|
|
1285
1004
|
.mp3player .title,
|
|
1286
1005
|
.mp3player .url{display:none;}
|
|
1006
|
+
.minifeedwall .mp3player .summary,
|
|
1007
|
+
.minifeedwall .mp3player .title,
|
|
1008
|
+
.minifeedwall .mp3player .url{display:block;}
|
|
1287
1009
|
.share_media .mp3player .mp3player_holder{padding:6px 0px 0px 0px;}
|
|
1288
1010
|
.share_media .mp3player .info_field{padding:0px 0px 2px 0px;}
|
|
1289
1011
|
.share_media .mp3player .info_field strong{color:gray;display:block;float:left;font-weight:normal;width:50px;}
|
|
@@ -1297,16 +1019,21 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1297
1019
|
.share_media .mp3player .info_field a{font-weight:bold;}
|
|
1298
1020
|
.swfvideo{}
|
|
1299
1021
|
.swfvideo .extra{float:left;padding:0px 8px 10px 0px;}
|
|
1022
|
+
.swfvideo .story_posted_item .extra{padding-bottom:0;}
|
|
1300
1023
|
.swfvideo .textual{}
|
|
1301
1024
|
.swfvideo .textual .metadata{float:left;}
|
|
1302
1025
|
.sharebox_narrow .swfvideo .textual .metadata{width:197px;}
|
|
1303
1026
|
.sharebox_wide .swfvideo .textual .metadata{width:252px;}
|
|
1304
1027
|
.profilebox_wide .swfvideo .textual .metadata{width:216px;}
|
|
1028
|
+
.sharefeed_large .swfvideo .textual .metadata,
|
|
1029
|
+
.sharefeed_large .swfvideo .textual .metadata{width:285px;}
|
|
1305
1030
|
.sharefeed_item .swfvideo .textual .metadata{width:218px;}
|
|
1031
|
+
.home .swfvideo .story_comment_quote,
|
|
1306
1032
|
.swfvideo .textual .owner_comment{clear:both;}
|
|
1307
|
-
.
|
|
1308
|
-
.
|
|
1033
|
+
.share_media .url{color:#555555;font-size:9px;padding:1px 0px 6px 0px;}
|
|
1034
|
+
.sharefeed_item_large .url{padding:2px 0px 0px 0px;}
|
|
1309
1035
|
.share_media .title{font-weight:bold;}
|
|
1036
|
+
.sharefeed_item_large .title{padding:0px 7px 0px 0px;margin:0px;}
|
|
1310
1037
|
.playing .extra{padding:0px;}
|
|
1311
1038
|
.playing .textual .metadata{clear:both;float:none;width:auto !important;}
|
|
1312
1039
|
.portal_share h3{font-size:14px;font-weight:bold;color:#666;margin:0;padding:0 0 5px 0;}
|
|
@@ -1351,15 +1078,36 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1351
1078
|
.ad_capsule a .video_thumb img{width:100px;}
|
|
1352
1079
|
.ad_capsule .video_for_share{background:black;float:left;}
|
|
1353
1080
|
.ad_capsule .video_ad_body{float:left;width:70%;}
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
.
|
|
1360
|
-
.
|
|
1361
|
-
.
|
|
1362
|
-
.
|
|
1081
|
+
*
|
|
1082
|
+
*
|
|
1083
|
+
*
|
|
1084
|
+
*
|
|
1085
|
+
*/
|
|
1086
|
+
.fb_video .thumb{float:left;padding:0px 6px 6px 0px;}
|
|
1087
|
+
.fb_video .thumb a{border:1px solid #aaa;display:block;float:left;line-height:1px;padding:1px;text-decoration:none;}
|
|
1088
|
+
.fb_video .thumb a:hover{border:1px solid #3b5998;}
|
|
1089
|
+
.fb_video .info{clear:none;float:left;padding:5px 0px 10px 0px;width:180px;}
|
|
1090
|
+
.fb_video .story_posted_item .timestamp,
|
|
1091
|
+
.fb_video .info .timestamp{color:gray;font-size:9px;padding:1px 0px 0px 0px;}
|
|
1092
|
+
.fb_video .story_posted_item .timestamp strong,
|
|
1093
|
+
.fb_video .info .timestamp strong{color:#333;font-weight:bold;}
|
|
1094
|
+
.fb_video .owner_comment{clear:both;float:none;margin-top:8px;width:auto;}
|
|
1095
|
+
.fb_video .fb_video_holder{background:black;float:left;line-height:1px;margin:0px 8px 5px 0px;}
|
|
1096
|
+
.large .fb_video .info{float:none;clear:right;width:auto;margin-bottom:0px;}
|
|
1097
|
+
.video_container{overflow:hidden;clear:left;}
|
|
1098
|
+
.large .fb_video .byline{float:left;}
|
|
1099
|
+
.large .fb_video .timestamp{padding:0px 0px;}
|
|
1100
|
+
.large .owner_comment,
|
|
1101
|
+
.medium .owner_comment,
|
|
1102
|
+
.large .story_comment_quote,
|
|
1103
|
+
.medium .story_comment_quote{background:transparent url(/images/start_quote.gif) no-repeat scroll 0% 0%;margin:10px 0px 0px;font-size:12px;line-height:18px;padding:0px 0px 0px 25px;}
|
|
1104
|
+
.large .owner_comment span.q,
|
|
1105
|
+
.medium .owner_comment span.q,
|
|
1106
|
+
.large .story_comment_back_quote,
|
|
1107
|
+
.medium .story_comment_back_quote{background:none;}
|
|
1108
|
+
.medium .fb_video .info{clear:none;float:left;padding:5px 0px 10px 0px;width:285px;}
|
|
1109
|
+
.medium .interaction_story_container .fb_video .info{clear:none;float:left;padding:5px 0px 10px 0px;width:235px;}
|
|
1110
|
+
*********** end large video ***********/
|
|
1363
1111
|
.fb_video a .video_thumb{width:auto;}
|
|
1364
1112
|
.fb_video .video_thumb img{width:auto;}
|
|
1365
1113
|
.playing .fb_video .info{clear:both;float:none;width:auto;}
|
|
@@ -1370,9 +1118,8 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1370
1118
|
.fb_video_stage div.video_metadata div.video_byline{color:#333;}
|
|
1371
1119
|
.fb_video_stage div.video_metadata div.video_timestamp{color:#666;font-size:9px;padding:1px 0px 0px 0px;}
|
|
1372
1120
|
.fb_video_stage div.video_metadata div.video_timestamp strong{color:#333;font-weight:bold;}
|
|
1373
|
-
.fb_video_stage div.video_metadata div.remix_description{padding:6px 0px 0px 0px;}
|
|
1374
1121
|
.share_media .fb_videomsg{background:#0c0d0d;float:left;line-height:1px;padding:0px;}
|
|
1375
|
-
.share_media .fb_videomsg a{background:transparent url(/
|
|
1122
|
+
.share_media .fb_videomsg a{background:transparent url(/images/video_play_overlay.png) no-repeat center center;display:block;line-height:1px;}
|
|
1376
1123
|
.share_media .fb_videomsg a img{visibility:hidden;}
|
|
1377
1124
|
.share_media .fb_videomsg .video_player object,
|
|
1378
1125
|
.share_media .fb_videomsg .video_player embed{background:black;}
|
|
@@ -1389,18 +1136,20 @@ a.inline_edit:hover{background:#ffff99;text-decoration:none;width:auto;}
|
|
|
1389
1136
|
.share_item_wide .profilebox_wide .share_media{margin-left:24px;padding:0px 0px 5px;}
|
|
1390
1137
|
.share_item_wide .profilebox_wide .share_item_actions{margin-left:24px;}
|
|
1391
1138
|
ul.share_list{margin:0px;padding:0px;list-style:none;}
|
|
1392
|
-
.share_list .added{background:#fff8cc;border-bottom:solid 1px #ffe222;margin:0px 10px 10px -6px;padding:6px 6px 3px 6px;}
|
|
1139
|
+
.share_list .added{background:#fff8cc;border-bottom:solid 1px #ffe222;margin:0px 10px 10px -6px;padding:6px 6px 3px 6px;}
|
|
1393
1140
|
.share_list li{color:#777;padding-left:22px;padding-bottom:5px;font-size:9px;}
|
|
1141
|
+
.share_list .item_icon{position:absolute;padding-right:6px;}
|
|
1142
|
+
.share_list .item_container{color:#777;font-size:9px;padding-bottom:5px;}
|
|
1143
|
+
.share_list .item_contents{padding-left:22px;overflow:hidden;}
|
|
1394
1144
|
.share_list h3{color:#333;font-weight:normal;font-size:11px;padding:0px 0px 1px 0px;}
|
|
1395
1145
|
.share_list h3 a{font-weight:normal;}
|
|
1396
1146
|
|
|
1397
1147
|
|
|
1398
|
-
.
|
|
1399
|
-
.inbox #content .tabs, .thread #content .tabs{padding-top:20px;}
|
|
1148
|
+
.thread_is_search_result #content .tabs{background:white;}
|
|
1400
1149
|
.inbox .no_messages{color:#666;font-size:13px;padding:100px 0px 110px 0px;text-align:center;}
|
|
1401
1150
|
.inbox .no_messages strong{color:#333;font-weight:bold;}
|
|
1402
|
-
.inbox_menu{background:#f7f7f7;border-bottom:1px solid #ccc;padding:0px
|
|
1403
|
-
.inbox_menu .menu_block{float:left;height:
|
|
1151
|
+
.inbox_menu{background:#f7f7f7;border-bottom:1px solid #bbb;border-left:1px solid #ccc;border-right:1px solid #ccc;padding:0px 0px 0px 19px;}
|
|
1152
|
+
.inbox_menu .menu_block{float:left;height:27px;padding:7px 0px 0px 0px;position:relative;}
|
|
1404
1153
|
.inbox_menu .menu_block.selector{padding-right:5px;}
|
|
1405
1154
|
.inbox_menu .menu_block.selector select{margin-left:5px;}
|
|
1406
1155
|
.inbox_menu .menu_buttons{list-style:none;margin:0px;padding:0px;}
|
|
@@ -1408,59 +1157,60 @@ ul.share_list{margin:0px;padding:0px;list-style:none;}
|
|
|
1408
1157
|
.inbox_menu .menu_buttons li a{padding:4px 5px 4px 5px;display:block;}
|
|
1409
1158
|
.inbox_menu .menu_disabled a{color:#aaa;}
|
|
1410
1159
|
.inbox_menu .menu_disabled a:hover{cursor:default;text-decoration:none;}
|
|
1411
|
-
.inbox_menu .menu_block.pager{float:right;width:
|
|
1412
|
-
.inbox_menu .menu_block.pager .pagerpro{position:absolute;
|
|
1160
|
+
.inbox_menu .menu_block.pager{float:right;width:180px;}
|
|
1161
|
+
.inbox_menu .menu_block.pager .pagerpro{bottom:0px;position:absolute;right:19px;}
|
|
1413
1162
|
.inbox_menu .pagerpro li.current a{border-bottom-color:#3b5998;}
|
|
1414
1163
|
.inbox_menu .pagerpro a{border-bottom-color:#f7f7f7;}
|
|
1415
|
-
#loading_boxx td{background:url(/
|
|
1416
|
-
.inbox_footer{margin-top:-1px;
|
|
1417
|
-
.inbox_footer .
|
|
1418
|
-
.inbox_footer .pagerpro a{border-top:2px solid #
|
|
1419
|
-
.
|
|
1420
|
-
.inbox_new_user{background-color:#
|
|
1421
|
-
.inbox_new_user .column{float:left;padding:
|
|
1164
|
+
#loading_boxx td{background:url(/images/upload_progress.gif) no-repeat center center;padding:15px;}
|
|
1165
|
+
.inbox .inbox_footer{margin-top:-1px;border:1px solid #ccc;border-top:1px solid #bbb;border-bottom:1px solid #ccc;background:#f7f7f7;}
|
|
1166
|
+
.inbox .inbox_footer .pagerpro a{border-top:2px solid #f7f7f7;border-bottom:0;}
|
|
1167
|
+
.inbox .inbox_footer .pagerpro .current a{border-top:2px solid #3b5998;border-bottom:0;}
|
|
1168
|
+
.inbox .inbox_footer .quail{color:#f7f7f7;}
|
|
1169
|
+
.inbox_new_user{background-color:#e2e6f0;padding:10px 15px;border-bottom:1px solid #999;}
|
|
1170
|
+
.inbox_new_user .column{float:left;padding:10px 20px 0 0;}
|
|
1422
1171
|
.inbox_new_user .photoimg{width:93px;height:55px;background-repeat:no-repeat;}
|
|
1423
1172
|
.inbox_new_user .videoimg{width:61px;height:50px;background-repeat:no-repeat;}
|
|
1424
1173
|
.inbox_new_user .column ul{color:#666;margin:0;padding:0 0 0 25px;}
|
|
1425
1174
|
.inbox_new_user .column li{padding-bottom:5px;}
|
|
1426
|
-
.inbox_new_user .button{text-align:right;padding-top:
|
|
1427
|
-
.inbox_signup{background-color:#F7F7F7;padding:
|
|
1428
|
-
.inbox_signup .column{float:left;padding:
|
|
1175
|
+
.inbox_new_user .button{text-align:right;padding-top:40px;}
|
|
1176
|
+
.inbox_signup{background-color:#F7F7F7;padding:10px 15px 10px 15px;border:1px solid #ccc;border-bottom:1px solid #999;}
|
|
1177
|
+
.inbox_signup .column{float:left;padding:10px 20px 0 0;}
|
|
1429
1178
|
.inbox_signup .photoimg{width:93px;height:55px;background-repeat:no-repeat;}
|
|
1430
1179
|
.inbox_signup .videoimg{width:61px;height:50px;background-repeat:no-repeat;}
|
|
1431
1180
|
.inbox_signup .column ul{color:#666;margin:0;padding:0 0 0 25px;}
|
|
1432
1181
|
.inbox_signup .column li{padding-bottom:5px;}
|
|
1433
|
-
.inbox_signup .button{text-align:right;padding-top:
|
|
1182
|
+
.inbox_signup .button{text-align:right;padding-top:40px;}
|
|
1434
1183
|
.message_rows{border-collapse:collapse;}
|
|
1435
1184
|
.message_rows .new_message{background:#f4f8fc;}
|
|
1436
1185
|
.message_rows tr td{padding:5px 0;border-bottom:1px solid #e1e1e1;}
|
|
1437
1186
|
.message_rows .msg_icon a, .message_rows .msg_icon span{display:block;margin-top:1px;width:17px;height:14px;padding-left:10px;text-decoration:none;}
|
|
1438
1187
|
.message_rows .new_message .msg_icon a:hover,
|
|
1439
|
-
.message_rows .new_message .msg_icon.replied a:hover{background:#f4f8fc url('/inbox/
|
|
1188
|
+
.message_rows .new_message .msg_icon.replied a:hover{background:#f4f8fc url('/inbox/images/new_message.gif') no-repeat 11px center;}
|
|
1440
1189
|
.message_rows .msg_icon a:hover,
|
|
1441
|
-
.message_rows .msg_icon.replied a:hover{background:#fff url('/inbox/
|
|
1190
|
+
.message_rows .msg_icon.replied a:hover{background:#fff url('/inbox/images/new_message.gif') no-repeat 11px center;}
|
|
1442
1191
|
.message_rows .new_message .msg_icon a,
|
|
1443
|
-
.message_rows .new_message .msg_icon.replied a{background:#f4f8fc url('/inbox/
|
|
1444
|
-
.message_rows .msg_icon.replied a{background:#fff url('/
|
|
1445
|
-
.message_rows .checkbox_toggle{width:
|
|
1192
|
+
.message_rows .new_message .msg_icon.replied a{background:#f4f8fc url('/inbox/images/new_message.gif') no-repeat 11px center;}
|
|
1193
|
+
.message_rows .msg_icon.replied a{background:#fff url('/images/replied_mail_icon.gif') no-repeat 11px center;}
|
|
1194
|
+
.message_rows .checkbox_toggle{width:35px;}
|
|
1446
1195
|
.message_rows .profile_pic{width:60px;line-height:1px;}
|
|
1447
|
-
.message_rows .name_and_date .name{display:block;width:
|
|
1196
|
+
.message_rows .name_and_date .name{display:block;width:170px;margin-right:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
|
|
1448
1197
|
.name_and_date .date{display:block;padding:1px 0 0 0;font-size:9px;color:#777;}
|
|
1449
1198
|
.name_and_date .unread_name{font-weight:bold;}
|
|
1450
1199
|
.message_rows .subject{margin-right:10px;line-height:14px;}
|
|
1451
|
-
.message_rows .subject .subject_wrap{width:
|
|
1200
|
+
.message_rows .subject .subject_wrap{width:410px;padding:2px 0;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
|
|
1452
1201
|
.message_rows .new_message .subject{font-weight:bold;}
|
|
1453
1202
|
.message_rows .subject a{margin-right:5px;}
|
|
1454
1203
|
.message_rows .subject .subject_text{padding:2px 0 3px 22px;background-position:0 1px;background-repeat:no-repeat;}
|
|
1455
1204
|
.message_rows .subject .snippet_wrap{padding-left:22px;}
|
|
1456
1205
|
.message_rows .subject .snippet{font-weight:normal;color:#8d9ccf;}
|
|
1457
|
-
.message_rows .delete_msg{width:24px;padding-left:
|
|
1458
|
-
.message_rows .delete_msg a{display:block;margin-top:1px;width:13px;height:14px;background:transparent url(/
|
|
1459
|
-
.message_rows .delete_msg a:hover{background:#3B5998 url(/
|
|
1206
|
+
.message_rows .delete_msg{width:24px;padding-left:15px;}
|
|
1207
|
+
.message_rows .delete_msg a{display:block;margin-top:1px;width:13px;height:14px;background:transparent url(/images/x_to_hide.gif) no-repeat;}
|
|
1208
|
+
.message_rows .delete_msg a:hover{background:#3B5998 url(/images/x_to_hide_hover.gif) no-repeat;}
|
|
1460
1209
|
#loading_boxx{width:100%;}
|
|
1461
1210
|
#book #content .inbox_error #error{border:0px;margin:0px;padding:30px;}
|
|
1462
1211
|
#book #content .inbox_error #error h1{font-size:13px;font-weight:normal;text-align:center;}
|
|
1463
|
-
.
|
|
1212
|
+
.inbox .thread_error{background-color:#FFEBE8;padding:10px 0px;text-align:center;}
|
|
1213
|
+
.messages{padding:20px 60px 0;}
|
|
1464
1214
|
.thread #error{margin-top:10px;}
|
|
1465
1215
|
.thread_header{margin:0 0 10px;}
|
|
1466
1216
|
.thread_header h2{margin:0 20px 1px 163px;padding:0 0 0 22px;font-size:15px;color:#333;}
|
|
@@ -1470,21 +1220,24 @@ ul.share_list{margin:0px;padding:0px;list-style:none;}
|
|
|
1470
1220
|
.messages .previous_message{display:block;height:15px;width:12px;margin-top:4px;background-repeat:no-repeat;background-position:-4px 4px;}
|
|
1471
1221
|
.messages .next_message:hover,
|
|
1472
1222
|
.messages .previous_message:hover{background-color:#3b5998;background-position:4px 4px;text-decoration:none;}
|
|
1473
|
-
.messages .next_message{float:left;background-image:url('/inbox/
|
|
1474
|
-
.messages .previous_message{float:right;background-image:url('/inbox/
|
|
1223
|
+
.messages .next_message{float:left;background-image:url('/inbox/images/next_message_arrow.gif');}
|
|
1224
|
+
.messages .previous_message{float:right;background-image:url('/inbox/images/previous_message_arrow.gif');}
|
|
1225
|
+
.thread #inline_composer{margin-left:140px;}
|
|
1226
|
+
.thread #message_post_status{margin-left:104px;}
|
|
1475
1227
|
.thread_footer{margin:0px 0px 10px 185px;font-size:9px;padding:5px 3px 10px;}
|
|
1476
1228
|
.thread_footer .delete_thread{float:left;}
|
|
1477
1229
|
.thread_footer .leave_group{float:right;}
|
|
1478
|
-
.messages .header_divide{height:2px;margin:0px;padding:0;border-top:1px solid #b3b3b3;background:#fff url('/inbox/
|
|
1230
|
+
.messages .header_divide{height:2px;margin:0px;padding:0;border-top:1px solid #b3b3b3;background:#fff url('/inbox/images/header_divide.gif') top center no-repeat;overflow:hidden;}
|
|
1479
1231
|
.thread .message{display:block;margin-top:10px;}
|
|
1480
1232
|
.message .column{float:left;padding:0 0 10px;}
|
|
1481
1233
|
.message .author_picture{width:50px;padding-bottom:0;}
|
|
1482
1234
|
.message .author_picture img{display:block;}
|
|
1483
1235
|
.message .author_info{width:120px;padding:0 10px 0 0;font-weight:normal;font-size:9px;text-align:right;}
|
|
1484
1236
|
.message .author_info .name{padding:3px 5px 0 5px;font-size:11px;font-weight:bold;overflow:hidden;}
|
|
1485
|
-
.message.unread .author_info .name{padding:3px 5px 4px 20px;background:#eff2f7 url('/inbox/
|
|
1486
|
-
.message .author_info .date{display:block;padding:2px 5px
|
|
1487
|
-
.message .author_info .extras a{float:right;padding-right:5px;margin-
|
|
1237
|
+
.message.unread .author_info .name{padding:3px 5px 4px 20px;background:#eff2f7 url('/inbox/images/new_message.gif') no-repeat 7px 5px;border-top:1px solid #d8dfea;overflow:hidden;}
|
|
1238
|
+
.message .author_info .date{display:block;padding:2px 5px 0 0;color:#777;}
|
|
1239
|
+
.message .author_info .extras a{float:right;padding-right:5px;margin-top:2px;}
|
|
1240
|
+
.message .author_info .extras .holder{float:right;padding-right:5px;margin-top:2px;}
|
|
1488
1241
|
.message .body{padding:3px 0 14px 5px;}
|
|
1489
1242
|
.message .body.with_mobile{padding-bottom:2px;}
|
|
1490
1243
|
.message.unread .body{padding-top:4px;}
|
|
@@ -1495,7 +1248,7 @@ ul.share_list{margin:0px;padding:0px;list-style:none;}
|
|
|
1495
1248
|
.messages .deleted_messages,
|
|
1496
1249
|
.messages .branch_notice{margin:10px 0 0 180px;padding:4px 5px;font-size:9px;border:1px solid #ffe222;background:#fffbe2;}
|
|
1497
1250
|
.messages .branch_notice .loading{display:block;text-align:center;}
|
|
1498
|
-
.messages .branch_notice .loading span{background-image:url('/
|
|
1251
|
+
.messages .branch_notice .loading span{background-image:url('/images/upload_progress.gif');background-position:left center;background-repeat:no-repeat;padding-left:32px;}
|
|
1499
1252
|
.message div.attachment_info{padding-bottom:6px;}
|
|
1500
1253
|
#compose_message .attached_item,
|
|
1501
1254
|
.message .attached_item{width:367px;}
|
|
@@ -1512,6 +1265,11 @@ ul.share_list{margin:0px;padding:0px;list-style:none;}
|
|
|
1512
1265
|
.message_attachment .share_ext_photo .has_thumb .extra{float:none;padding-left:0px;}
|
|
1513
1266
|
.message_attachment .fb_photo .photo_thumb,
|
|
1514
1267
|
.message_attachment .share_ext_photo .share_thumb{width:360px;}
|
|
1268
|
+
#message_post_status{margin:0px 0px 10px 75px;padding:10px;border:solid 1px #ffe222;background:#fffbe2;width:338px;display:none;}
|
|
1269
|
+
#message_post_status h2{color:black;font-size:11px;margin:0px;}
|
|
1270
|
+
#message_post_status p{margin:4px 0px 0px;}
|
|
1271
|
+
#message_post_status a{text-decoration:none;}
|
|
1272
|
+
#message_post_status.async_saving{display:block;}
|
|
1515
1273
|
.message_sent_status{padding:0 30px 10px 215px;}
|
|
1516
1274
|
.thread .message_sent_status .status{color:#333333;font-size:13px;font-weight:bold;margin:10px 0 0 0;}
|
|
1517
1275
|
#safety_dialog_message{background:#f2f4f7;border:solid 1px #d8dfea;margin:10px 10px 0px;padding:10px 10px 0px 10px;}
|
|
@@ -1520,12 +1278,19 @@ ul.share_list{margin:0px;padding:0px;list-style:none;}
|
|
|
1520
1278
|
.fbpage_updates .dashboard_header .dh_titlebar{padding:10px 0;}
|
|
1521
1279
|
|
|
1522
1280
|
|
|
1523
|
-
div.
|
|
1524
|
-
div.
|
|
1281
|
+
div.intl_app_translation_dialog div.generic_dialog_popup,
|
|
1282
|
+
div.intl_translation_dialog div.generic_dialog_popup{width:484px;}
|
|
1283
|
+
div.intl_vmode_dialog div.generic_dialog_popup{width:63px;}
|
|
1284
|
+
div.intl_vmode_dialog div.generic_dialog_popup{width:63px;}
|
|
1525
1285
|
div.intl-dialog{border:1px solid #ccc;background-color:#fff;padding:10px;overflow:hidden;}
|
|
1526
1286
|
div.intl-dialog .glossary{border-top:1px solid #ccc;margin:10px 0px 0px 0px;}
|
|
1527
1287
|
div.intl-dialog .glossary h2{color:#3b5998;font-size:13px;margin:3px 0px 0px 0px;}
|
|
1528
1288
|
div.intl-dialog .glossary dl{margin:0px;}
|
|
1289
|
+
.fuzzies{padding:0 0 10px 17px;}
|
|
1290
|
+
.fuzzies p{margin:0 0 5px 0;}
|
|
1291
|
+
.fuzzies ul{list-style:none;margin:0;padding:0 0 0 4px;}
|
|
1292
|
+
.fuzzies ul li{list-style:none;line-height:16px;}
|
|
1293
|
+
.fuzzies ul li:before{content:"\00BB \0020";}
|
|
1529
1294
|
a.intl-more{clear:none;padding:0px;margin:0px;text-align:right;display:inline;}
|
|
1530
1295
|
html body em.intl-translatable,
|
|
1531
1296
|
html body em.intl-translated,
|
|
@@ -1536,7 +1301,7 @@ html body em.intl-translatable:hover,
|
|
|
1536
1301
|
html body em.intl-translated:hover,
|
|
1537
1302
|
html body em.intl-authored:hover,
|
|
1538
1303
|
html body em.intl-approved:hover,
|
|
1539
|
-
html body em.intl-approvable:hover{cursor:help;border-top:1px solid #ccc;
|
|
1304
|
+
html body em.intl-approvable:hover{cursor:help;border-top:1px solid #ccc;}
|
|
1540
1305
|
html body em.intl-translatable{border-bottom:2px solid #f99;background:none;}
|
|
1541
1306
|
html body em.intl-translatable:hover{background-color:#fcc;}
|
|
1542
1307
|
html body em.intl-translated{border-bottom:2px solid #6c9;background:none;}
|
|
@@ -1547,52 +1312,703 @@ html body em.intl-approved{border-bottom:2px solid #6c9;background:none;}
|
|
|
1547
1312
|
html body em.intl-approved:hover{background-color:#cdffcd;}
|
|
1548
1313
|
html body em.intl-approvable{border-bottom:2px solid #f99;background:none;}
|
|
1549
1314
|
html body em.intl-approvable:hover{background-color:#fcc;}
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1315
|
+
html body em.intl-complained{border-bottom:2px solid #fc0;background:none;font-style:normal;}
|
|
1316
|
+
html body em.intl-complained:hover{background-color:#ff9;}
|
|
1317
|
+
html body em.intl-complainable{border-bottom:2px solid #6c9;background:none;font-style:normal;}
|
|
1318
|
+
html body em.intl-complainable:hover{background-color:#cdffcd;}
|
|
1319
|
+
html body em.intl-voted{font-style:normal;}
|
|
1320
|
+
html body em.intl-votable{border-bottom:2px solid #6c9;background:none;font-style:normal;}
|
|
1321
|
+
html body em.intl-votable:hover{background-color:#cdffcd;}
|
|
1322
|
+
html body em.intl-unvotable{border-bottom:2px solid #fc0;background:none;font-style:normal;}
|
|
1323
|
+
html body em.intl-unvotable:hover{background-color:#ff9;}
|
|
1324
|
+
html body em.intl-voted{font-style:normal;}
|
|
1325
|
+
html body em.intl-votable{border-bottom:2px solid #6c9;background:none;font-style:normal;}
|
|
1326
|
+
html body em.intl-votable:hover{background-color:#cdffcd;}
|
|
1327
|
+
html body em.intl-unvotable{border-bottom:2px solid #fc0;background:none;font-style:normal;}
|
|
1328
|
+
html body em.intl-unvotable:hover{background-color:#ff9;}
|
|
1561
1329
|
span.intl-title{color:#3b5998;font-size:14px;}
|
|
1562
1330
|
span.intl-text{color:#333;}
|
|
1563
1331
|
input.intl-dialog{background-color:#ddddee;font-size:13px;font-weight:bold;}
|
|
1564
|
-
|
|
1332
|
+
.contextual_dialog_content .intl-dialog textarea{background-color:#ddddee;font-size:13px;font-weight:bold;width:420px;}
|
|
1565
1333
|
div.intl-page{background-color:#ffffff;}
|
|
1566
1334
|
.edit-translations #content{padding:12px 0px 0px 0px;}
|
|
1567
1335
|
.inputradio{padding:0px;margin:0px 5px 0px 0px;}
|
|
1568
1336
|
.native_string_dialog{width:430px;float:left;}
|
|
1569
|
-
.native_string_dialog p{color:#333;font-size:13px;margin:5px 0 6px 0px;padding:0 0 0 17px;width:430px;text-align:left;background:url(/
|
|
1337
|
+
.native_string_dialog p{color:#333;font-size:13px;margin:5px 0 6px 0px;padding:0 0 0 17px;width:430px;text-align:left;background:url(/images/start_quote_small.gif) no-repeat top left;}
|
|
1570
1338
|
.native_string_dialog.translated{width:420px;padding:10px 0 0 10px;float:left;}
|
|
1571
|
-
.native_string_dialog span{padding:0 17px 5px 0;margin:0 0 10px 0;background:url(/
|
|
1339
|
+
.native_string_dialog span{padding:0 17px 5px 0;margin:0 0 10px 0;background:url(/images/end_quote_small.gif) no-repeat right 2px;}
|
|
1572
1340
|
.native_string_dialog small{color:#777;display:block;padding-top:2px;}
|
|
1573
1341
|
.native_string_dialog .ns_suffix{color:#777;}
|
|
1574
1342
|
.native_string_tokens a{border-bottom:1px dotted #3b5998;padding:0px 0px 3px 0;}
|
|
1575
1343
|
.native_string_tokens a:hover{text-decoration:none;border-bottom:1px solid #3b5998;padding:0px 0px 3px 0;}
|
|
1576
1344
|
.native_string_tokens p{margin:5px 0 6px 2px;line-height:20px;}
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
#
|
|
1580
|
-
#
|
|
1581
|
-
#
|
|
1582
|
-
#
|
|
1583
|
-
#
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
#
|
|
1587
|
-
#
|
|
1588
|
-
#
|
|
1589
|
-
#
|
|
1590
|
-
#
|
|
1591
|
-
#xtrmode .xmode_row a:hover .onoff{color:#3b5998;}
|
|
1592
|
-
#xtrmode select{width:125px;}
|
|
1593
|
-
#xtrmode .on{font-weight:bold;color:#333;}
|
|
1594
|
-
#xtrmode .off{color:#a1a5a9;}
|
|
1595
|
-
#xtrmode .onoff{width:14px;}
|
|
1596
|
-
#xtrmode .xselect{padding-top:5px;}
|
|
1597
|
-
#xtrmode .tp_icon{margin-bottom:-3px;margin-right:5px;}
|
|
1345
|
+
#intl_extra_phrases{width:798px;clear:both;background-color:white;margin:0 auto;}
|
|
1346
|
+
#intl_extra_phrases .intl_inner_frame{width:626px;float:right;margin:12px 1px 12px 0;border:1px solid #ccc;border-bottom:1px solid #3b5998;}
|
|
1347
|
+
#intl_extra_phrases .intl_inner_frame{background:#f7f7f7;padding:10px;}
|
|
1348
|
+
#intl_extra_phrases .inside_inner_frame{background:#fff;border:1px solid #ddd;padding:10px;}
|
|
1349
|
+
#intl_extra_phrases #intl_col1{width:295px;float:left;padding-right:5px;}
|
|
1350
|
+
#intl_extra_phrases li{line-height:26px;}
|
|
1351
|
+
#intl_extra_phrases #intl_col2{padding-left:5px;width:295px;float:left;}
|
|
1352
|
+
.intl_header_notch h3{font-size:13px;font-weight:bold;color:#333;float:left;}
|
|
1353
|
+
.intl_header_notch span{float:right;font-weight:bold;}
|
|
1354
|
+
#intl_extra_phrases h1{margin:0 0 10px 0;border-bottom:1px solid #ccc;padding-bottom:4px;}
|
|
1355
|
+
#intl_extra_phrases .noted{margin:0;padding:12px 0;font-size:11px;color:#555;}
|
|
1356
|
+
#intl_extra_phrases ul.with_list_style{list-style:square;margin-left:0;line-height:18px;padding:0 0 0 15px;}
|
|
1357
|
+
#intl_extra_phrases ul.no_list_style{list-style:none;margin-left:0;line-height:18px;padding:0 0 0 15px;}
|
|
1358
|
+
#intl_extra_phrases .close_window{background:#f7f7f7;border-top:1px solid #e7e7e7;padding:5px;text-align:left;}
|
|
1598
1359
|
img.control{border:0px;padding:0px 0px 0px 10px;margin:0px;}
|
|
1360
|
+
.approve_table{margin-bottom:10px;}
|
|
1361
|
+
.approve_table th{border-bottom:1px solid #ccc;}
|
|
1362
|
+
.approve_table td{border-bottom:1px solid #ddd;font-weight:bold;color:#333;}
|
|
1363
|
+
.approve_table .over-row td{background:#d8dfea;}
|
|
1364
|
+
.approve_table .approved_row .score_row{background:#e7e7e7;}
|
|
1365
|
+
.approve_table .approved_row td{background:#f1f1f1;}
|
|
1366
|
+
.approve_table .score_row{background:#f8f8f8;text-align:center;}
|
|
1367
|
+
.report_table .info_para select{font-size:12px;}
|
|
1368
|
+
.report_table #impossible_form{padding-bottom:10px;}
|
|
1369
|
+
.complain_suggest{padding:2px 0 6px 0;color:#333;}
|
|
1370
|
+
.sucessMessage{background:#DDEEFF none repeat scroll 0%;border:1px solid #0066AA;clear:both;font-size:1.2em;font-weight:bold;margin:5px 0px 15px 2px;padding:15px;text-align:center;}
|
|
1371
|
+
.errorMessage{background:#FFEDED;border:1px solid #AA0000;clear:both;font-size:1.2em;font-weight:bold;margin:25px 10px;padding:10px 20px 10px 40px;text-align:center;}
|
|
1372
|
+
.variation_attrs{margin:10px 0 10px 20px;}
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
.so_sound_player{position:absolute;top:0px;left:0px;z-index:1000;}
|
|
1376
|
+
#sound_player_holder{position:absolute;}
|
|
1377
|
+
body > #presence{z-index:99;position:fixed;bottom:0px;right:0px;}
|
|
1378
|
+
#channel_iframe{position:absolute;top:-1000px;left:-1000px;width:5px;height:5px;}
|
|
1379
|
+
#presence_simple{position:absolute;width:15px;height:15px;top:45px;left:649px;padding:5px;border:1px solid #E5E5E5;border-left:none;background-color:#F7F7F7;}
|
|
1380
|
+
#presence{color:#111111;font-size:11px;height:25px;padding:0;margin-right:15px;}
|
|
1381
|
+
#presence.full{margin-right:0;width:100%;}
|
|
1382
|
+
#presence.full #presence_ui{margin-left:15px;margin-right:15px;border-left:1px solid #b5b5b5;background:url(/images/presence/bar_bg_bw.gif) repeat-x top left;}
|
|
1383
|
+
#presence.error{width:auto;border:none;background:transparent;margin-right:0px;}
|
|
1384
|
+
#presence_popout_sidebar .hidden,
|
|
1385
|
+
#presence .hidden{display:none;}
|
|
1386
|
+
#presence_bar,
|
|
1387
|
+
#presence_error_bar{padding:0;height:26px;background-repeat:repeat-x;background-position:top left;}
|
|
1388
|
+
#presence_bar{display:block;}
|
|
1389
|
+
.full #presence_bar{float:right;}
|
|
1390
|
+
#presence_error_bar{display:none;border-left:1px solid #b5b5b5;}
|
|
1391
|
+
#presence .shutdown_alert,
|
|
1392
|
+
#presence .alert .shutdown{display:none;}
|
|
1393
|
+
#presence .shutdown,
|
|
1394
|
+
#presence .alert .shutdown_alert{display:block;}
|
|
1395
|
+
#presence .shutdown{display:block;width:16px;}
|
|
1396
|
+
#presence .shutdown_alert_img{float:left;height:16px;width:16px;margin:-1px 4px 0 -4px;padding-left:3px;background:url("/images/icons/alert.gif") no-repeat 2px top;}
|
|
1397
|
+
#presence .shutdown_img{height:16px;width:16px;background:url("/images/icons/alert_bw.gif") no-repeat center top;}
|
|
1398
|
+
#presence_preload .preload_img{width:10px;height:10px;background:no-repeat top left;}
|
|
1399
|
+
#presence_preload .alert_bw{background-image:url(/images/icons/alert_bw.gif);}
|
|
1400
|
+
#presence_preload .alert{background-image:url(/images/icons/alert.gif);}
|
|
1401
|
+
#presence_preload .indicator{background-image:url(/images/indicator.gif);}
|
|
1402
|
+
#presence_preload .blank{background-image:url(/images/blank.gif);}
|
|
1403
|
+
.error #presence_bar,
|
|
1404
|
+
.show_popped_out,
|
|
1405
|
+
.popped_out .show_popped_in{display:none;}
|
|
1406
|
+
.popped_out .show_popped_out,
|
|
1407
|
+
.error #presence_error_bar{display:block;}
|
|
1408
|
+
#presence_bar{background:url(/images/presence/bar_bg_bw.gif) repeat-x top left;}
|
|
1409
|
+
#presence_popin_bar{background:url(/images/presence/bar_bg_bw.gif) repeat-x top left;}
|
|
1410
|
+
#presence_bar_buttons{float:none !important;display:inline !important;height:26px;}
|
|
1411
|
+
#presence_error_bar{border-right:1px solid #b5b5b5;margin-right:15px;padding:6px 6px 0;background-image:url(/images/presence/bar_bg_bw.gif);}
|
|
1412
|
+
#presence .presence_section_separator{float:left;padding:4px 1px;height:16px;background:url(/images/chat/sep_pipe.gif) no-repeat center 4px;}
|
|
1413
|
+
#presence .presence_section{position:relative;float:left;padding:2px 0 0 0;height:22px;margin:1px 0 0 0;}
|
|
1414
|
+
#presence .presence_bar_button{padding:5px 6px;height:17px;color:#333;cursor:pointer;margin-top:-2px;border-left:1px solid #b5b5b5;border-right:1px solid #e0e0e0;}
|
|
1415
|
+
#presence.popped_out .presence_bar_button{border-right:1px solid #b5b5b5;}
|
|
1416
|
+
#presence #chat_status_control_tab{border-right:1px solid #b5b5b5;}
|
|
1417
|
+
#presence #buddy_list_tab #buddy_count .buddy_count_num{color:#777;}
|
|
1418
|
+
#presence #buddy_list_tab #buddy_count strong{color:#333;}
|
|
1419
|
+
#presence #presence_bar_buttons .presence_bar_button.hover{color:#000;background-color:#fff;border-right:1px solid #fff;}
|
|
1420
|
+
#presence #presence_bar_buttons .presence_bar_button.presence_popout_button.hover,
|
|
1421
|
+
#presence #presence_bar_buttons .presence_bar_button.chat_status_control.hover{border-right:1px solid #b5b5b5;}
|
|
1422
|
+
#presence #presence_bar_buttons .presence_bar_button.presence_popout_button.focused.hover,
|
|
1423
|
+
#presence #presence_bar_buttons .presence_bar_button.chat_status_control.focused.hover{border-color:#333;}
|
|
1424
|
+
#presence #presence_bar_buttons .presence_bar_button.focused{color:#333;border-color:#333;background-color:#fff;}
|
|
1425
|
+
#presence .presence_bar_button.focused{border-bottom:1px solid #333;margin-top:-2px;padding-top:4px;padding-bottom:2px;}
|
|
1426
|
+
#presence_simple .titletip,
|
|
1427
|
+
#presence .titletip{background:url(/images/dark-pointer.gif) no-repeat right bottom;bottom:27px;display:none;padding-bottom:4px;position:absolute;right:12px;z-index:3;}
|
|
1428
|
+
#presence_simple.hover .titletip,
|
|
1429
|
+
#presence.tab_open.popped_out .hover .titletip,
|
|
1430
|
+
#presence .hover .titletip{display:block;}
|
|
1431
|
+
#presence.tab_open .hover .titletip{display:none;}
|
|
1432
|
+
#presence_simple .titletip strong,
|
|
1433
|
+
#presence .titletip strong{background:#282828;color:#fff;display:block;font-size:11px;font-weight:normal;padding:3px 8px;margin:0 -5px 0 0;text-align:center;white-space:nowrap;}
|
|
1434
|
+
#presence #presence_error_bar .titletip{right:27px;width:150px;}
|
|
1435
|
+
#presence #presence_error_bar .titletip strong{text-align:left;white-space:normal;}
|
|
1436
|
+
#presence .presence_menu_opts_wrapper{position:fixed;bottom:24px;right:15px;z-index:12;padding:0px;margin:0px;background:none;border:none;}
|
|
1437
|
+
#presence .presence_menu_opts{cursor:auto;padding:0 0 1px 0;border:1px solid #333;border-bottom:none;background:#fff;background-repeat:no-repeat;background-position:right bottom;width:200px;}
|
|
1438
|
+
#presence.wide_menus .presence_menu_opts{width:230px;}
|
|
1439
|
+
#presence #buddy_list .presence_menu_opts{background-position:left bottom;background-image:url(/images/presence/buddy_list_menu_bg.gif);}
|
|
1440
|
+
#presence.wide_menus #buddy_list .presence_menu_opts{background-image:url(/images/presence/buddy_list_menu_wide_bg.gif);}
|
|
1441
|
+
#presence #chat_status_control .presence_menu_opts{background-image:url(/images/presence/status_menu_bg.gif);padding-bottom:6px;}
|
|
1442
|
+
#presence #presence_notifications .presence_menu_opts{background-image:url(/images/presence/notifications_menu_bg.gif);}
|
|
1443
|
+
#presence #presence_translations .presence_menu_opts{background-image:url(/images/presence/translations_menu_bg.gif);}
|
|
1444
|
+
#presence_bar .presence_menu_opts h2{background:#526ea6 url(/images/chat/minimize.gif) no-repeat 181px 1px;color:#fff;padding:0;margin:-1px 0 0 -1px;font-size:11px;border:1px solid #254588;border-bottom:1px solid #526ea6;cursor:pointer;width:200px;}
|
|
1445
|
+
#presence_bar .presence_menu_opts h2:hover{background-position:181px -15px;}
|
|
1446
|
+
.wide_menus #presence_bar .presence_menu_opts h2{width:230px;background-position:211px 1px;}
|
|
1447
|
+
.wide_menus #presence_bar .presence_menu_opts h2:hover{background-position:211px -15px;}
|
|
1448
|
+
#presence_bar .presence_menu_opts h2 span{display:block;padding:3px 8px 4px;}
|
|
1449
|
+
.presence_menu_opts .presence_menu_header{background-color:#eee;padding:3px 6px 4px;text-align:right;}
|
|
1450
|
+
.presence_menu_opts .presence_menu_subheader{padding:5px 6px 0;margin:1px;border:none;background:none;}
|
|
1451
|
+
.presence_menu_opts .presence_menu_subheader h3{color:#222;font-size:11px;border-bottom:1px solid #B9C4DA;padding-bottom:3px;}
|
|
1452
|
+
.presence_menu_opts .presence_menu_content_wrapper{overflow:hidden;}
|
|
1453
|
+
.presence_menu_opts .presence_menu_content_wrapper.scroll{overflow:auto;overflow-x:hidden;}
|
|
1454
|
+
.presence_menu_opts .list_select{list-style-type:none;padding:5px 0 5px 0;margin:0;}
|
|
1455
|
+
.presence_menu_opts .list_select li a{display:block;padding:8px;cursor:pointer;}
|
|
1456
|
+
.presence_menu_opts .list_select li.selected a,
|
|
1457
|
+
.presence_menu_opts .list_select li a:hover{color:#fff;text-decoration:none;background-color:#3b5998;}
|
|
1458
|
+
.presence_menu_opts .list_select li img{float:left;padding:1px;}
|
|
1459
|
+
.presence_menu_opts .list_select li.selected a img,
|
|
1460
|
+
.presence_menu_opts .list_select li a:hover img{background:#6e84b3;}
|
|
1461
|
+
.presence_menu_opts .list_select li div strong{display:block;font-weight:normal;}
|
|
1462
|
+
.presence_menu_opts .list_select li div span{color:#666;font-size:9px;}
|
|
1463
|
+
.presence_menu_opts .list_select li div span.status_time{color:#999;}
|
|
1464
|
+
.presence_menu_opts .list_select li div em{font-style:normal;font-weight:bold;background:#dce1e8;}
|
|
1465
|
+
.presence_menu_opts .list_select li.selected div em{color:#fff;background:#5670a6;}
|
|
1466
|
+
.presence_menu_opts .list_select li.selected img,
|
|
1467
|
+
.presence_menu_opts .list_select li a:hover img{border-color:#a7b9d4;}
|
|
1468
|
+
.presence_menu_opts .list_select li.selected div span,
|
|
1469
|
+
.presence_menu_opts .list_select li a:hover div span{color:#a7b9d4;}
|
|
1470
|
+
#presence #presence_popout_tab .presence_bar_button{padding-left:22px;background-image:url(/images/chat/popout_window.gif);background-repeat:no-repeat;background-position:center 4px;}
|
|
1471
|
+
#presence_bar #presence_notifications_tab{padding-left:23px;background-image:url(/images/icons/notifications.gif);background-repeat:no-repeat;background-position:center 4px;}
|
|
1472
|
+
#presence .presence_section .slider_num_missed,
|
|
1473
|
+
#presence_bar #presence_notifications_count strong{color:white;position:absolute;top:-2px;right:0;padding:1px 0 0;height:16px;width:17px;font-size:9px;font-weight:normal;background:url(/images/chat/new_msg_badge_bg.gif) no-repeat center top;text-align:center;}
|
|
1474
|
+
#presence_bar #presence_notifications_content{padding:2px 2px 6px 2px;}
|
|
1475
|
+
#presence_bar .presence_notifications_see_all{float:right;margin:6px 6px 6px 0;}
|
|
1476
|
+
#presence_bar .no_notifications{color:#666;padding:4px 5px 2px;}
|
|
1477
|
+
#presence_bar .notification{clear:right;color:#000;padding:0px 5px;}
|
|
1478
|
+
#presence_bar .notification .icon{float:left;font-size:1px;line-height:1px;margin-top:3px;width:16px;text-align:center;}
|
|
1479
|
+
#presence_bar .notification .icon img{padding-top:3px;}
|
|
1480
|
+
#presence_bar .notification .notif_del{visibility:hidden;cursor:pointer;float:right;height:16px;width:16px;margin-top:6px;background:url(/images/x_to_hide_gray.gif) no-repeat center top;}
|
|
1481
|
+
#presence_bar .notification.hover .notif_del{visibility:visible;}
|
|
1482
|
+
#presence_bar .notif_unread{background-color:#fffbe2;}
|
|
1483
|
+
#presence_bar .notification .notif_del:hover{background-image:url(/images/x_to_hide_hover.gif);background-position:center top;}
|
|
1484
|
+
#presence_bar .notification .body{border-top:1px solid #e0e0e0;margin:0 0 0 22px;padding:5px 0;}
|
|
1485
|
+
#presence_bar .notification .time{color:#999;font-size:9px;}
|
|
1486
|
+
#presence_bar #presence_translations_tab{padding-left:23px;background-image:url(/images/icons/translations.gif);background-repeat:no-repeat;background-position:center 4px;}
|
|
1487
|
+
#presence_bar #presence_translations_content .xmode_row{line-height:15px;padding:0 10px 2px 10px;}
|
|
1488
|
+
#presence_bar #presence_translations_content .xselect{padding:5px 6px;background:#f7f7f7;}
|
|
1489
|
+
#presence_bar #presence_translations_content .xselect select{width:219px;}
|
|
1490
|
+
.wide_menus #presence_bar #presence_translations_content .xselect select{width:249px;}
|
|
1491
|
+
#presence_bar #presence_translations_content .translation_options{padding:8px 0;}
|
|
1492
|
+
#presence_bar #presence_translations_content .xexplain{margin:5px 10px 0 10px;padding-bottom:5px;line-height:15px;border-bottom:1px solid #e7e7e7;color:#555;}
|
|
1493
|
+
#presence.translations_nub .presence_menu_opts{width:231px;}
|
|
1494
|
+
.translations_nub #presence_bar .presence_menu_opts h2{width:231px;background-position:212px 1px;}
|
|
1495
|
+
.translations_nub #presence_bar .presence_menu_opts h2:hover{background-position:212px -15px;}
|
|
1496
|
+
.translations_nub #buddy_list .inputtext{width:197px;}
|
|
1497
|
+
#presence.wide_menus.translations_nub .presence_menu_opts{width:261px;}
|
|
1498
|
+
.wide_menus.translations_nub #presence_bar .presence_menu_opts h2{width:261px;background-position:242px 1px;}
|
|
1499
|
+
.wide_menus.translations_nub #presence_bar .presence_menu_opts h2:hover{background-position:242px -15px;}
|
|
1500
|
+
.wide_menus.translations_nub #buddy_list .inputtext{width:227px;}
|
|
1501
|
+
.ffriend .fchat{color:#777;padding-top:2px;}
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
#profileActions .box_img_chat{background:transparent url('/images/im_online.gif') no-repeat;float:right;line-height:14px;margin-top:3px;margin-right:5px;padding-right:3px;width:16px;height:10px;}
|
|
1505
|
+
#profileActions a:hover .box_img_chat{background:transparent url('/images/im_online_alt.gif') no-repeat;}
|
|
1506
|
+
#profileActions .text.text_box_chat{width:163px;}
|
|
1507
|
+
#chat_welcome{background:transparent url(/images/actually_important_right.gif) no-repeat scroll -488px bottom;width:180px;position:fixed;right:16px;bottom:27px;padding:4px 8px 28px 8px;color:#391800;font-size:11px;line-height:14px;z-index:2;}
|
|
1508
|
+
#chat_welcome.simple{position:absolute;background-image:url(/images/actually_important_upsidedown_right.gif);background-position:-488px top;bottom:auto;top:27px;right:0px;padding-top:20px;padding-bottom:2px;}
|
|
1509
|
+
#chat_welcome a{color:#3b5998;}
|
|
1510
|
+
#chat_welcome .close{float:left;font-size:10px;font-weight:bold;padding-top:2px;margin-left:20px;}
|
|
1511
|
+
#chat_welcome.simple .close{margin:4px 0;padding-top:4px;border-top:1px solid #fcdd81;width:100%;}
|
|
1512
|
+
#chat_welcome .chat_welcome_header{color:#d85d01;font-size:13px;font-weight:bold;padding:4px 0 4px 0;}
|
|
1513
|
+
#chat_welcome .section{padding:5px 0px;}
|
|
1514
|
+
#chat_welcome .section img{float:left;padding-top:2px;}
|
|
1515
|
+
#chat_welcome .section .text{margin-left:20px;}
|
|
1516
|
+
#chat_welcome .section .full_text{margin-left:0;}
|
|
1517
|
+
#chat_welcome .section a{display:block;padding:5px 5px 0 10px;}
|
|
1518
|
+
#chat_welcome.simple .section a{padding-left:0;}
|
|
1519
|
+
#chat_welcome .chat_welcome_warning{color:red;margin-left:20px;padding-bottom:5px;}
|
|
1520
|
+
#chat_welcome .bottom_section{padding:5px 0 0;}
|
|
1521
|
+
#chat,
|
|
1522
|
+
#chat_tab_bar{float:left;}
|
|
1523
|
+
#chat{height:26px;padding:0;}
|
|
1524
|
+
#presence #chat_previous_tab,
|
|
1525
|
+
#presence #chat_next_tab{color:#8FA2CA;border-left:1px solid #b5b5b5;border-right:none;padding:5px 3px 5px 12px;background-repeat:no-repeat;background-position:left 8px;background-image:url(/images/chat/tab_next.gif);margin-top:-2px;}
|
|
1526
|
+
#presence #chat_previous_tab{padding:5px 12px 5px 3px;background-position:right 8px;background-image:url(/images/chat/tab_previous.gif);}
|
|
1527
|
+
#presence #chat_previous_tab span,
|
|
1528
|
+
#presence #chat_next_tab span{color:#333;}
|
|
1529
|
+
#presence #chat_previous_tab.disabled span,
|
|
1530
|
+
#presence #chat_next_tab.disabled span{color:#999;}
|
|
1531
|
+
#presence #chat_previous_tab.disabled,
|
|
1532
|
+
#presence #chat_next_tab.disabled{background-image:url(/images/chat/tab_next_disabled.gif);}
|
|
1533
|
+
#presence #chat_previous_tab.disabled{background-image:url(/images/chat/tab_previous_disabled.gif);}
|
|
1534
|
+
#chat_tabs div{padding:0px;}
|
|
1535
|
+
#chat_tab_bar .tab_handle{color:#333;position:relative;float:left;height:24px;margin:1px 0 0 0;border-left:1px solid #b5b5b5;border-right:1px solid #e0e0e0;}
|
|
1536
|
+
#chat_tab_bar .tab_handle.highlight.disabled,
|
|
1537
|
+
#chat_tab_bar .tab_handle.highlight{color:#fff;margin:0;height:27px;padding:2px 0 0;border-color:#3b5998;background:url(/images/presence/bar_bg.gif) repeat-x top left;}
|
|
1538
|
+
#chat_tab_bar .tab_hit_area{position:relative;overflow:hidden;float:left;width:110px;cursor:pointer;padding:3px 4px 6px 6px;}
|
|
1539
|
+
#chat_tab_bar .tab_image{float:left;width:18px;height:18px;border:1px solid #6e84b3;border-top:1px solid #3b5998;border-left:1px solid #3b5998;}
|
|
1540
|
+
#chat_tab_bar .tab_count{position:absolute;top:-2px;right:12px;padding-top:1px;font-weight:bold;text-align:center;width:20px;height:20px;font-size:9px;color:white;display:none;background:url(/images/chat/new_msg_badge_bg.gif) no-repeat center top;}
|
|
1541
|
+
#chat_tab_bar .highlight .tab_count{top:-3px;}
|
|
1542
|
+
#chat_tab_bar .tab_button_div{height:24px;}
|
|
1543
|
+
#chat_tab_bar .tab_button_div.hover{background:#fff;}
|
|
1544
|
+
#chat_tab_bar .tab_handle.highlight .tab_button_div.hover{background:none;}
|
|
1545
|
+
#chat_tab_bar .tab_button_div .tab_name{float:left;padding-top:3px;font-weight:bold;white-space:nowrap;background-repeat:no-repeat;background-position:right 5px;padding-right:12px;background-image:url(/images/chat/im_online_dot.gif);}
|
|
1546
|
+
#chat_tab_bar .idle .tab_button_div .tab_name{background-image:url(/images/chat/im_idle_dot.gif);}
|
|
1547
|
+
#chat_tab_bar .tab_handle.highlight.typing .tab_button_div .tab_name,
|
|
1548
|
+
#chat_tab_bar .typing .tab_button_div .tab_name{background-image:url(/images/chat/typ.gif);background-position:right 2px;padding-bottom:2px;padding-right:18px;}
|
|
1549
|
+
#chat_tab_bar .disabled .tab_button_div .tab_name{background-image:url(/images/chat/im_offline_dot.gif);}
|
|
1550
|
+
#chat_tab_bar .tab_handle.highlight .tab_button_div .tab_name{padding-top:2px;background-position:right 3px;background-image:url(/images/chat/im_online_dot_alt.gif);}
|
|
1551
|
+
#chat_tab_bar .disabled .tab_button_div.hover .tab_name,
|
|
1552
|
+
#chat_tab_bar .tab_button_div.hover .tab_name{text-decoration:underline;}
|
|
1553
|
+
#chat_tab_bar .tab_handle.disabled{color:#555;background:#cfcfcf;border-right:1px solid #cfcfcf;}
|
|
1554
|
+
#chat_tab_bar .tab_handle.highlight.disabled{color:#C3CDDF;}
|
|
1555
|
+
#chat_tab_bar .tab_handle.disabled.focused{color:#555;background:#fff;}
|
|
1556
|
+
#chat_tab_bar .tab_handle.focused{color:#111;border-color:#333;border-bottom:1px solid #333;margin-top:0;background:#fff;}
|
|
1557
|
+
#chat_tab_bar .tab_handle.focused .tab_hit_area{margin-top:0;padding-top:3px;padding-bottom:5px;}
|
|
1558
|
+
#chat_tab_bar .tab_x{float:right;margin-top:4px;height:13px;width:14px;color:#666;font-weight:bold;text-align:center;cursor:pointer;background:url(/images/chat/close_tab.gif) no-repeat -4px 0px;}
|
|
1559
|
+
#chat_tab_bar .focused .tab_x{margin-top:4px;background-position:-4px top;background-image:url(/images/chat/close_tab.gif);}
|
|
1560
|
+
#chat_tab_bar .tab_x.hover{background-position:-4px -33px;}
|
|
1561
|
+
#chat_tab_bar .disabled.focused .tab_x,
|
|
1562
|
+
#chat_tab_bar .focused .tab_x.hover{background-position:-4px -33px;}
|
|
1563
|
+
#chat_tab_bar .tab_handle.highlight .tab_x{background-position:-4px -17px;}
|
|
1564
|
+
#chat_tab_bar .chat_window_wrapper{position:fixed;bottom:24px;margin-left:-99px;padding:6px 7px 0px 8px;background:url(/images/chat/window_shadow.png) no-repeat center top;z-index:12;}
|
|
1565
|
+
#chat_tab_bar .tab_handle .chat_window_wrapper,
|
|
1566
|
+
#chat_tab_bar .tab_handle .chat_window{display:none;}
|
|
1567
|
+
#chat_tab_bar .tab_handle.focused .chat_window_wrapper,
|
|
1568
|
+
#chat_tab_bar .tab_handle.focused .chat_window{display:block;}
|
|
1569
|
+
#chat_tab_bar .chat_header{background:#526ea6;border:1px solid #254588;border-bottom:1px solid #526ea6;cursor:pointer;}
|
|
1570
|
+
#chat_tab_bar .chat_header_name{margin-left:54px;padding:4px 0 3px;font-weight:bold;color:#fff;cursor:pointer;}
|
|
1571
|
+
#chat_tab_bar .chat_header .header_buttons{float:right;width:32px;margin-top:2px;margin-right:2px;cursor:pointer;}
|
|
1572
|
+
#chat_tab_bar .chat_header .header_buttons .minimize{float:right;display:block;height:15px;width:15px;background:url(/images/chat/minimize.gif) no-repeat center top;}
|
|
1573
|
+
#chat_tab_bar .chat_header .header_buttons .minimize:hover,
|
|
1574
|
+
#chat_tab_bar .chat_header:hover .header_buttons .minimize{background-position:center -16px;}
|
|
1575
|
+
#chat_tab_bar .chat_header.suppress_hover:hover .header_buttons .minimize{background-position:center top;}
|
|
1576
|
+
#chat_tab_bar .chat_header .header_buttons .close{float:right;display:block;height:15px;width:15px;background:url(/images/chat/close_window.gif) no-repeat center top;}
|
|
1577
|
+
#chat_tab_bar .chat_header .header_buttons .close:hover{background-position:center -17px;}
|
|
1578
|
+
#chat_tab_bar .chat_info{padding:2px 0 2px 55px;border-left:1px solid #333;border-right:1px solid #333;border-bottom:1px solid #ccc;background:#eee;min-height:28px;width:171px;}
|
|
1579
|
+
#chat_tab_bar img.chat_info_pic{position:absolute;top:11px;left:13px;width:45px;height:45px;padding:0 1px 1px 0;background:url(/images/chat/chat_info_pic_bg.gif) no-repeat center center;}
|
|
1580
|
+
#chat_tab_bar .chat_info .chat_info_status{padding:4px 6px 4px 0px;color:black;}
|
|
1581
|
+
#chat_tab_bar .chat_info .chat_info_link a{font-weight:bold;}
|
|
1582
|
+
#chat_tab_bar .chat_info .chat_info_status_time{font-size:9px;color:#666;padding-right:6px;white-space:nowrap;}
|
|
1583
|
+
#chat_tab_bar .chat_tab_settings{font-size:9px;padding:4px 6px;}
|
|
1584
|
+
#chat_tab_bar .history_loaded .chat_tab_settings{display:block;}
|
|
1585
|
+
#chat_tab_bar .chat_tab_settings a{float:left;}
|
|
1586
|
+
#chat_tab_bar .chat_clear_history_loading{background:url(/images/indicator.gif) no-repeat 0px 0px;height:16px;width:16px;float:left;margin:-2px 0px -3px 5px;display:none;}
|
|
1587
|
+
#chat_tab_bar .history_clearing .chat_clear_history_loading{display:block;}
|
|
1588
|
+
#chat_tab_bar .chat_conv .chat_info_clear_history{display:none;color:#3b5998;font-size:9px;padding:4px 6px;border-bottom:1px solid #e0e0e0;}
|
|
1589
|
+
#chat_tab_bar .chat_conv .chat_info_clear_history span:hover{cursor:pointer;text-decoration:underline;}
|
|
1590
|
+
#chat_tab_bar .history_loaded .chat_conv .chat_info_clear_history{display:block;}
|
|
1591
|
+
#chat_tab_bar .chat_window .chat_conv{overflow:auto;overflow-x:hidden;background:white none repeat scroll 0%;color:black;cursor:default;border-right:1px solid #333;border-left:1px solid #333;border-bottom:1px solid #B9C4DA;}
|
|
1592
|
+
#chat_tab_bar .disabled .chat_window .chat_conv{background:#f7f7f7;}
|
|
1593
|
+
#chat_tab_bar .chat_window .chat_conv .chat_conv_content{padding:3px 0;}
|
|
1594
|
+
#chat_tab_bar .chat_window .chat_conv h5{font-size:11px;margin:2px 0px 0 0;padding:3px 6px 1px;border-top:1px solid #eee;}
|
|
1595
|
+
#chat_tab_bar .chat_window .chat_conv h5.self{color:#777;}
|
|
1596
|
+
#chat_tab_bar .chat_window .chat_conv h5.other a{cursor:pointer;}
|
|
1597
|
+
#chat_tab_bar .chat_window .time_stamp{color:#999;float:right;font-size:9px;font-weight:normal;padding:1px 0px;}
|
|
1598
|
+
#chat_tab_bar .chat_window .chat_conv p{color:#000;padding:2px 3px;margin:0px 4px;line-height:14px;}
|
|
1599
|
+
#chat_tab_bar .chat_window .chat_conv .msg_error{background:#FFEBE8;margin:0;padding:1px 4px;}
|
|
1600
|
+
#chat_tab_bar .chat_window .chat_conv .msg_warning{background:#FFF9D7;margin:0;padding:1px 4px;}
|
|
1601
|
+
#chat_tab_bar .chat_window .chat_conv .visibility_change{background:#f7f7f7;color:#999999;margin:0;padding:3px 6px 2px 6px;}
|
|
1602
|
+
#chat_tab_bar .chat_window .chat_conv .chat_notice{font-size:9px;padding:4px 5px 5px 26px;margin:5px 0 0 0;background-position:4px 3px;background-repeat:no-repeat;background-color:#FFF9D7;}
|
|
1603
|
+
#chat_tab_bar .chat_window .chat_conv .chat_notice.sending{background-image:url(/images/indicator.gif);height:16px;padding-top:5px;}
|
|
1604
|
+
#chat_tab_bar .chat_window .chat_conv .chat_notice.chat_signed_on{background-image:url(/images/im_online.gif);}
|
|
1605
|
+
#chat_tab_bar .chat_window .chat_conv .chat_notice.chat_signed_off{background-image:url(/images/im_offline.gif);}
|
|
1606
|
+
#chat_tab_bar .chat_window .chat_conv .chat_notice.chat_msg_not_sent{background-color:#FFEBE8;background-position:4px 5px;background-image:url(/images/im_offline.gif);}
|
|
1607
|
+
#chat_tab_bar .chat_window .date_divider{margin-top:10px;font-size:9px;font-weight:bold;color:#777;padding-left:6px;}
|
|
1608
|
+
#chat_tab_bar .chat_window .date_divider.first{margin-top:2px;}
|
|
1609
|
+
#chat_tab_bar .chat_window .minifeed{padding:0px 4px 0px 6px;margin-top:2px;border-top:1px solid #E0E0E0;border-bottom:1px solid #E0E0E0;background:#f3f3f3;}
|
|
1610
|
+
#chat_tab_bar .chat_window .minifeed .icon{float:left;margin-top:2px;}
|
|
1611
|
+
#chat_tab_bar .chat_window .minifeed .body{width:auto;float:none;padding:0px 2px 2px 0px;margin-left:22px;border:none;}
|
|
1612
|
+
#chat_tab_bar .chat_window .minifeed img{border:none;}
|
|
1613
|
+
#chat_tab_bar .chat_window .minifeed .headline .title{width:auto;}
|
|
1614
|
+
#chat_tab_bar .chat_window .minifeed .date{float:right;padding-left:4px;}
|
|
1615
|
+
#chat_tab_bar .chat_window .minifeed .wall{margin:0px;}
|
|
1616
|
+
#chat_tab_bar .chat_window .chat_input_div{padding:0px 0px 1px;border-right:1px solid #333;border-left:1px solid #333;background:#fff url(/images/chat/chat_window_bg.gif) no-repeat bottom left;}
|
|
1617
|
+
#chat_tab_bar .chat_window .chat_shadow_input,
|
|
1618
|
+
#chat_tab_bar .chat_window .chat_input{padding:4px 4px 4px 24px;border-color:#93a2c1;border-left:none;border-right:none;border-bottom:none;background:url(/images/icons/im.gif) no-repeat 3px 3px;margin:0px;}
|
|
1619
|
+
#chat_tab_bar .chat_window .chat_shadow_input{position:fixed;left:-10000px;top:10000px;height:0px;width:196px;}
|
|
1620
|
+
#chat_tab_bar .chat_window .chat_input{overflow:auto;resize:none;}
|
|
1621
|
+
.emote_off .emote_img,
|
|
1622
|
+
.emote_text{display:none;}
|
|
1623
|
+
.emote_off .emote_text,
|
|
1624
|
+
.emote_img{overflow:hidden;width:16px;height:16px;margin-bottom:-5px;}
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
#presence #buddy_list_tab{width:112px;padding-left:21px;background-image:url(/images/presence/buddy_list.gif);background-repeat:no-repeat;background-position:4px 6px;}
|
|
1628
|
+
#presence.wide_menus #buddy_list_tab{width:142px;}
|
|
1629
|
+
#presence #buddy_list_tab.focused{background-position:4px 5px;}
|
|
1630
|
+
#presence #buddy_list_tab #clear_search{position:absolute;top:0;right:20px;}
|
|
1631
|
+
#chat_status_content #chat_su_placeholder{color:#3b5998;}
|
|
1632
|
+
#chat_status_editor{position:relative;margin-top:7px;padding-top:7px;border-top:1px solid #eee;}
|
|
1633
|
+
input#chat_edit_status_text{float:left;display:block;border-top:1px solid #777;border-left:1px solid #777;border-bottom:1px solid #777;border-right:0;height:17px;width:154px;margin:0px;padding:3px 2px 0px;}
|
|
1634
|
+
#presence_popout_sidebar input#chat_edit_status_text{width:143px;}
|
|
1635
|
+
#chat_edit_status_toggle{display:block;float:left;margin:0px;padding:3px 0px 0px;height:17px;width:14px;color:#3B5998;border-top:1px solid #777;border-right:1px solid #777;border-bottom:1px solid #777;border-left:none;background:#D8DFEA url(/images/status_off.gif) no-repeat 3px 9px;text-align:center;}
|
|
1636
|
+
#chat_edit_status_select{display:none;position:absolute;z-index:2;width:162px;border-left:1px solid #777;border-right:1px solid #777;border-bottom:1px solid #777;}
|
|
1637
|
+
#chat_edit_status_select a{display:block;overflow:hidden;width:156px;background:#fff;color:#000;border:none;border-top:1px solid #eee;padding:3px;margin:0px;margin-top:-1px;}
|
|
1638
|
+
#chat_edit_status_select a:hover{text-decoration:none;color:#fff;background:#3B5998;}
|
|
1639
|
+
#presence_popout_sidebar #chat_status_content,
|
|
1640
|
+
#presence #chat_status_content{color:#000;width:190px;}
|
|
1641
|
+
#presence .status_updates{padding:2px 10px 6px;margin-top:7px;}
|
|
1642
|
+
#presence_popout_sidebar .status_updates{display:none;}
|
|
1643
|
+
#presence_popout_sidebar .status_updates img,
|
|
1644
|
+
#presence .status_updates img{float:left;width:30px;}
|
|
1645
|
+
#presence_popout_sidebar #chat_status_meta,
|
|
1646
|
+
#presence #chat_status_meta{display:block;font-size:9px;}
|
|
1647
|
+
#presence_popout_sidebar #chat_status_meta #chat_su_time,
|
|
1648
|
+
#presence #chat_status_meta #chat_su_time{color:#777;}
|
|
1649
|
+
#presence_popout_sidebar .status_updates #chat_status_body,
|
|
1650
|
+
#presence .status_updates #chat_status_body{float:left;width:140px;margin-left:6px;}
|
|
1651
|
+
#presence_popout_sidebar .status_updates #chat_status_body{width:120px;}
|
|
1652
|
+
#presence_bar #chat_status_control ul{overflow:visible;}
|
|
1653
|
+
#presence_bar #chat_status_control_tab img{margin-top:2px;border:solid none;}
|
|
1654
|
+
#presence_popout_sidebar.buddy_list_hidden #buddy_list,
|
|
1655
|
+
#presence.buddy_list_hidden #buddy_list_tab{display:none;}
|
|
1656
|
+
#presence_bar #buddy_list_typeahead{background-color:#eee;padding:5px 6px;position:relative;}
|
|
1657
|
+
#buddy_list_typeahead .hide{position:absolute;top:8px;right:10px;width:16px;height:16px;background:url(/images/x_to_hide.gif) no-repeat center top;}
|
|
1658
|
+
#buddy_list_typeahead .hide:hover{background-image:url(/images/x_to_hide_hover.gif);}
|
|
1659
|
+
#presence_popout_sidebar #buddy_list_typeahead{margin-left:5px;}
|
|
1660
|
+
#buddy_list #buddy_list_content,
|
|
1661
|
+
#buddy_list.error #buddy_list_error{display:block;}
|
|
1662
|
+
#buddy_list.error #buddy_list_content,
|
|
1663
|
+
#buddy_list #buddy_list_error{display:none;}
|
|
1664
|
+
#buddy_list .buddy_error{color:#666;padding:6px 8px;}
|
|
1665
|
+
#buddy_list .info_text{color:#666;padding:8px 8px 3px 8px;}
|
|
1666
|
+
#buddy_list ul{padding:3px 0px;}
|
|
1667
|
+
#buddy_list ul li{overflow:hidden;}
|
|
1668
|
+
#buddy_list ul li.subheader{border:0 solid;background-color:#ccc;margin:4px 6px;padding:0px;height:1px;float:none;width:auto;}
|
|
1669
|
+
#buddy_list ul li.hide_idle_marker,
|
|
1670
|
+
#buddy_list ul li.suppress,
|
|
1671
|
+
#buddy_list ul li.hide_empty_item{display:none;}
|
|
1672
|
+
#buddy_list ul li a{padding:2px 5px;}
|
|
1673
|
+
#buddy_list ul li .friend_status,
|
|
1674
|
+
#buddy_list ul li .friendlist_status{float:left;margin-left:5px;height:27px;overflow:hidden;}
|
|
1675
|
+
#buddy_list ul li .friend_status{width:132px;}
|
|
1676
|
+
#buddy_list ul li.idle .friend_status,
|
|
1677
|
+
#buddy_list .compact ul li .friend_status{height:14px;}
|
|
1678
|
+
#presence_popout_sidebar #buddy_list ul li .friend_status{width:110px;}
|
|
1679
|
+
#buddy_list ul li .friend_status span{display:block;width:200px;padding-top:2px;}
|
|
1680
|
+
#buddy_list ul li .online_checkbox,
|
|
1681
|
+
#buddy_list ul li .available_dot{float:right;width:9px;height:9px;margin:2px 0;}
|
|
1682
|
+
#buddy_list ul li .available_dot{background-image:url(/images/chat/im_online_dot.gif);background-repeat:no-repeat;background-position:0px 0px;}
|
|
1683
|
+
#buddy_list ul li.idle.selected a,
|
|
1684
|
+
#buddy_list ul li.idle a:hover{color:#fff;}
|
|
1685
|
+
#buddy_list ul li.idle .available_dot{background-image:url(/images/chat/im_idle_dot.gif);}
|
|
1686
|
+
#buddy_list ul li.selected .available_dot,
|
|
1687
|
+
#buddy_list ul li a:hover .available_dot{background-image:url(/images/chat/im_online_dot_alt.gif);}
|
|
1688
|
+
#buddy_list ul li.selected.idle .available_dot,
|
|
1689
|
+
#buddy_list ul li.idle a:hover .available_dot{background-image:url(/images/chat/im_idle_dot_alt.gif);}
|
|
1690
|
+
#buddy_list ul li .online_checkbox{padding-right:10px;}
|
|
1691
|
+
#buddy_list ul li.friend_list{background-color:#f7f7f7;border-top:1px solid #ccc;padding-top:3px;}
|
|
1692
|
+
#buddy_list ul li.online{color:#000;}
|
|
1693
|
+
#buddy_list ul li.offline{color:#666;}
|
|
1694
|
+
#buddy_list .inputtext{width:166px;padding-left:17px;background:white url(/images/magglass.png) no-repeat scroll 3px 4px;}
|
|
1695
|
+
.wide_menus #buddy_list .inputtext{width:196px;}
|
|
1696
|
+
#presence_bar #buddy_list ul li .missed_msg_count{display:none;}
|
|
1697
|
+
#presence_popout_sidebar #buddy_list ul li .missed_msg_count{display:none;position:absolute;top:4px;right:4px;padding-top:1px;font-weight:bold;text-align:center;width:20px;height:20px;font-size:9px;color:white;display:none;background:url(/images/chat/new_msg_badge_bg.gif) no-repeat center top;}
|
|
1698
|
+
#presence_bar .available .show_available,
|
|
1699
|
+
#presence_bar .unavailable .show_unavailable,
|
|
1700
|
+
#presence_bar .idle .show_idle,
|
|
1701
|
+
#presence_bar .availability_loading .show_loading,
|
|
1702
|
+
#presence_bar .chat_setting_loading .show_loading,
|
|
1703
|
+
#presence_bar .hide_loading,
|
|
1704
|
+
#presence_popout_sidebar .available .show_available,
|
|
1705
|
+
#presence_popout_sidebar .idle .show_available,
|
|
1706
|
+
#presence_popout_sidebar .unavailable .show_unavailable,
|
|
1707
|
+
#presence_popout_sidebar .availability_loading .show_loading,
|
|
1708
|
+
#presence_popout_sidebar .chat_setting_loading .show_loading,
|
|
1709
|
+
#presence_popout_sidebar .hide_loading{display:block;}
|
|
1710
|
+
#presence_bar .available .show_unavailable,
|
|
1711
|
+
#presence_bar .available .show_idle,
|
|
1712
|
+
#presence_bar .idle .show_unavailable,
|
|
1713
|
+
#presence_bar .unavailable .show_available,
|
|
1714
|
+
#presence_bar .unavailable .show_idle,
|
|
1715
|
+
#presence_bar .idle .show_available,
|
|
1716
|
+
#presence_bar .available .availability_loading .hide_loading,
|
|
1717
|
+
#presence_bar .unavailable .availability_loading .hide_loading,
|
|
1718
|
+
#presence_bar .show_loading,
|
|
1719
|
+
#presence_bar .chat_setting_loading .hide_loading,
|
|
1720
|
+
#presence_popout_sidebar .available .show_unavailable,
|
|
1721
|
+
#presence_popout_sidebar .idle .show_unavailable,
|
|
1722
|
+
#presence_popout_sidebar .available .show_idle,
|
|
1723
|
+
#presence_popout_sidebar .idle span.show_available,
|
|
1724
|
+
#presence_popout_sidebar .unavailable .show_available,
|
|
1725
|
+
#presence_popout_sidebar .unavailable .show_idle,
|
|
1726
|
+
#presence_popout_sidebar .available .availability_loading .hide_loading,
|
|
1727
|
+
#presence_popout_sidebar .idle .availability_loading .hide_loading,
|
|
1728
|
+
#presence_popout_sidebar .unavailable .availability_loading .hide_loading,
|
|
1729
|
+
#presence_popout_sidebar .idle .availability_loading .hide_loading,
|
|
1730
|
+
#presence_popout_sidebar .chat_setting_loading .hide_loading,
|
|
1731
|
+
#presence_popout_sidebar .show_loading{display:none;}
|
|
1732
|
+
#chat_availability_toggle{border-bottom:1px solid #e0e0e0;padding:10px 0;margin:0 9px;color:#444;}
|
|
1733
|
+
#chat_availability_toggle img{float:left;padding:2px 8px;}
|
|
1734
|
+
#chat_availability_toggle .availability_text{padding:0px 0px 0px 37px;}
|
|
1735
|
+
#chat_availability_toggle a:hover{color:#3b5998;text-decoration:underline;}
|
|
1736
|
+
#chat_settings{border-top:1px solid #ccc;margin-top:6px;padding-bottom:5px;text-align:left;}
|
|
1737
|
+
#chat_settings .chat_setting{padding:6px 0px 4px 2px;}
|
|
1738
|
+
#chat_settings .chat_setting .input_box{float:left;width:16px;height:16px;}
|
|
1739
|
+
#chat_settings .chat_setting label{float:left;padding:2px 2px 0px 6px;font-weight:normal;color:#000;width:140px;cursor:default;}
|
|
1740
|
+
.presence_popout #chat_settings .chat_setting label{width:111px;padding-left:8px;}
|
|
1741
|
+
#chat_settings .chat_setting label a{font-size:9px;margin-left:6px;}
|
|
1742
|
+
#chat_mf_control_help{padding:2px 8px 0px 35px;font-size:10px;}
|
|
1743
|
+
#chat_status_control .chat_help{padding:4px 0px 4px 8px;}
|
|
1744
|
+
|
|
1745
|
+
|
|
1746
|
+
.minifeedwall{color:#333;margin-top:10px;}
|
|
1747
|
+
.minifeedwall .hidden{display:none;}
|
|
1748
|
+
.minifeedwall .icon{line-height:1px;font-size:1px;float:left;width:16px;height:16px;padding:0px 0px 0px;}
|
|
1749
|
+
.minifeedwall .icon img{width:100%;}
|
|
1750
|
+
.minifeedwall .date_divider{color:#999;font-weight:bold;font-size:9px;border-bottom:solid 1px #ccc;margin:10px 0 8px;padding:1px 5px 3px 0px;}
|
|
1751
|
+
.minifeedwall .date_divider span{background:#fff;float:left;margin-top:-7px;padding:2px 3px 0 0;}
|
|
1752
|
+
.minifeedwall .date_divider.first{margin-top:20px;}
|
|
1753
|
+
.minifeedwall .story{background:#fff;margin-left:34px;padding-bottom:6px;position:relative;overflow:hidden;}
|
|
1754
|
+
.minifeedwall .story_ff{margin-left:0;padding-bottom:8px;padding-left:0;padding-top:2px;}
|
|
1755
|
+
.minifeedwall .story_ff .icon{display:none;float:right;margin-bottom:-26px;margin-right:2px;}
|
|
1756
|
+
.minifeedwall .story_body{float:left;margin-left:7px;background-repeat:no-repeat;background-position:524px 8px;width:482px;}
|
|
1757
|
+
.minifeedwall .story_body p{margin:6px 0;padding:0;}
|
|
1758
|
+
.minifeedwall .story_body .caption .time{color:#999;font-size:9px;font-weight:normal;display:inline;margin:0;white-space:nowrap;}
|
|
1759
|
+
.minifeedwall .story_body .caption a.caption_more_toggle_link{font-size:11px;}
|
|
1760
|
+
.minifeedwall .border .story_body,
|
|
1761
|
+
.minifeedwall .extra_top_border{border-top:1px solid #e5e5e5;}
|
|
1762
|
+
.minifeedwall .extra_top_border{height:6px;margin-left:45px;width:472px;}
|
|
1763
|
+
.minifeedwall .border .story_body{padding-top:6px;}
|
|
1764
|
+
.minifeedwall .border .icon{padding-top:7px;}
|
|
1765
|
+
.minifeedwall .border .story_options{margin-top:7px;}
|
|
1766
|
+
.minifeedwall .no_border{border:0;}
|
|
1767
|
+
.minifeedwall .no_border .story_body{padding-top:1px;}
|
|
1768
|
+
.minifeedwall .story_ff.no_border .story_body{padding-top:0px;}
|
|
1769
|
+
.minifeedwall .no_border .icon{padding-top:0px;}
|
|
1770
|
+
.minifeedwall .actor_image{float:left;}
|
|
1771
|
+
.minifeedwall .acted_image{float:right;}
|
|
1772
|
+
.minifeedwall .acted_image a.name{font-size:11px;text-align:center;}
|
|
1773
|
+
.minifeedwall .story_content{color:#333;}
|
|
1774
|
+
.minifeedwall .has_caption .story_content{margin-top:6px;}
|
|
1775
|
+
.minifeedwall .story_content .information{margin-top:3px;}
|
|
1776
|
+
.minifeedwall .two_photos .story_content,
|
|
1777
|
+
.minifeedwall .one_photo .story_content{float:left;margin-top:0px;width:380px;}
|
|
1778
|
+
.minifeedwall .two_photos .story_content{width:240px;}
|
|
1779
|
+
.minifeedwall .story_title a.actor_name{font-weight:bold;}
|
|
1780
|
+
.minifeedwall .story_content_data,
|
|
1781
|
+
.minifeedwall .story_content_excerpt{color:#666;}
|
|
1782
|
+
.minifeedwall .platform_story .story_content_data{color:#333;}
|
|
1783
|
+
.minifeedwall .photobox{float:left;}
|
|
1784
|
+
.minifeedwall .platform_story .photobox{float:left;margin-right:0px;}
|
|
1785
|
+
.minifeedwall .photobox img{margin-right:6px;}
|
|
1786
|
+
.minifeedwall .share_item_actions,
|
|
1787
|
+
.minifeedwall .fb_video .info .timestamp{color:#666;}
|
|
1788
|
+
.minifeedwall .cluster_story_body{margin:0px 0px 0px 20px;}
|
|
1789
|
+
.minifeedwall .cluster_story_body .story_content_links{padding-left:11px;margin-bottom:10px;margin-left:0;background:url(/images/down_arrow_grey_small.gif) no-repeat left 5px;}
|
|
1790
|
+
.minifeedwall .cluster_story_body .story_content_links a{color:#666;}
|
|
1791
|
+
.minifeedwall .title a{font-weight:bold;}
|
|
1792
|
+
.minifeedwall .many_photos .title{clear:both;}
|
|
1793
|
+
.minifeedwall .status_story{color:#333;float:left;}
|
|
1794
|
+
.minifeedwall .subtitle{color:#666;font-size:11px;}
|
|
1795
|
+
.minifeedwall .fbpage_fan .subtitle{padding-top:0;}
|
|
1796
|
+
.minifeedwall .story .story_time{color:#999;font-weight:normal;font-size:9px;padding-left:2px;}
|
|
1797
|
+
.minifeedwall .share_media .owner_comment,
|
|
1798
|
+
.minifeedwall .story_comment_quote{display:block;background:url(/images/start_quote_small.gif) no-repeat top left;padding-left:17px;margin-bottom:2px;}
|
|
1799
|
+
.minifeedwall .wall_story .story_comment_quote{background:none;padding-left:0;}
|
|
1800
|
+
.minifeedwall .story_content.wall_post .story_comment_quote,
|
|
1801
|
+
.minifeedwall .story_content_data .story_comment_quote{color:#666;}
|
|
1802
|
+
.minifeedwall .story_with_photo .story_comment_quote{margin-top:0;}
|
|
1803
|
+
.minifeedwall .story_comment_back_quote{background:url(/images/end_quote_small.gif) no-repeat right bottom;padding-right:17px;}
|
|
1804
|
+
.minifeedwall .wall_story .story_comment_back_quote{background:none;}
|
|
1805
|
+
.minifeedwall .story_photo{border:1px solid #ccc;margin-right:6px;padding:4px;background:#fff;width:75px;}
|
|
1806
|
+
.minifeedwall .photo_story_primary.story_photo{margin:6px 0 3px;width:auto;}
|
|
1807
|
+
.minifeedwall a:hover .story_photo{border-color:#3B5998;}
|
|
1808
|
+
.minifeedwall .story_with_photo .story_photo{margin-right:0;float:left;margin-top:0;}
|
|
1809
|
+
.minifeedwall .story_with_photo.event_story .story_photo,
|
|
1810
|
+
.minifeedwall .story_with_photo.group_story .story_photo,
|
|
1811
|
+
.minifeedwall .story_with_photo.fbpage_fan .story_photo{border:none;float:left;margin-top:0;margin-right:6px;padding:0;}
|
|
1812
|
+
.minifeedwall .story_with_photo .story_photo_metadata{float:left;margin-left:4px;width:360px;}
|
|
1813
|
+
.minifeedwall .from_friend_story{margin-left:0;width:540px;}
|
|
1814
|
+
.minifeedwall .from_friend_story .from_friend{float:left;}
|
|
1815
|
+
.minifeedwall .from_friend_story .story_content{margin-left:52px;background:#f0f2f4;padding:3px 5px;}
|
|
1816
|
+
.minifeedwall .wall_story .story_content,
|
|
1817
|
+
.minifeedwall .from_friend_story.wall_story .story_content{min-height:44px;}
|
|
1818
|
+
.minifeedwall .from_friend_story .story_comment_quote{margin-top:0px;}
|
|
1819
|
+
.minifeedwall .from_friend_story .story_content .story_comment_quote{background:none;padding-left:0;}
|
|
1820
|
+
.minifeedwall .from_friend_story .story_content_links{color:#999;font-size:9px;margin:6px 0 2px;}
|
|
1821
|
+
.minifeedwall .from_friend_story .single_video,
|
|
1822
|
+
.minifeedwall .from_friend_story .photoset,
|
|
1823
|
+
.minifeedwall .from_friend_story .story_content_data{margin-top:2px;}
|
|
1824
|
+
.minifeedwall .wall_story .story_title{font-weight:bold;}
|
|
1825
|
+
.minifeedwall .wall_story .story_title,
|
|
1826
|
+
.minifeedwall .from_friend_story .story_title{padding:1px 3px 4px 0px;margin-bottom:0px;}
|
|
1827
|
+
.minifeedwall .platform_story .title{padding:1px 3px 6px 0px;margin-bottom:0px;}
|
|
1828
|
+
.minifeedwall .wall_story .story_title span{color:#999;}
|
|
1829
|
+
.minifeedwall .sharefeed_item .share_ext_video .story_comment_quote{clear:both;}
|
|
1830
|
+
.minifeedwall .story_posted_item .story_content_excerpt .title{margin-bottom:0;}
|
|
1831
|
+
.minifeedwall .timestamp,
|
|
1832
|
+
.minifeedwall .url,
|
|
1833
|
+
.minifeedwall .sharefeed_item_large .timestamp,
|
|
1834
|
+
.minifeedwall .sharefeed_item_large .url{font-size:9px;padding:1px 0;}
|
|
1835
|
+
.minifeedwall .event .event_has_photo .story_comment_quote,
|
|
1836
|
+
.minifeedwall .group .has_photo .story_comment_quote,
|
|
1837
|
+
.minifeedwall .note_with_thumb .story_comment_quote{clear:left;}
|
|
1838
|
+
.minifeedwall .sharefeed_item_large .photo_thumb{float:none;}
|
|
1839
|
+
.minifeedwall .share_media .fb_photo .story_comment_quote{float:left;width:340px;}
|
|
1840
|
+
.minifeedwall .fb_video .info{padding:0;}
|
|
1841
|
+
.minifeedwall .sharefeed_item .story_posted_item{border-left:2px solid #bfc8dc;margin-top:6px;margin-bottom:6px;padding-left:6px;overflow:hidden;}
|
|
1842
|
+
.wall_attachment .share_media .metadata{color:#666;float:none;}
|
|
1843
|
+
.wall_gift{float:right;}
|
|
1844
|
+
.wall_gift .gift_outer{float:none;}
|
|
1845
|
+
.minifeedwall .note_content div{padding-bottom:0;}
|
|
1846
|
+
.minifeedwall .note_story .story_content_excerpt,
|
|
1847
|
+
.minifeedwall .note_story .story_content_data{color:#333;margin:6px 0;}
|
|
1848
|
+
.wallattachment .app_content{overflow:hidden;}
|
|
1849
|
+
.photoset{margin-top:6px;}
|
|
1850
|
+
.platform_story .photoset{margin-top:0;}
|
|
1851
|
+
.fbpage .extra_media .fbpage_pic{float:left;padding:0px 0px 0px;}
|
|
1852
|
+
.fbpage .extra_media .fbpage_info{float:left;width:250px;padding:3px 0px 3px 7px;}
|
|
1853
|
+
.photo_story .subtitle,
|
|
1854
|
+
.photo_story .title{margin-bottom:6px;font-weight:normal;}
|
|
1855
|
+
.minifeedwall .share_thumb{float:left;margin-right:6px;}
|
|
1856
|
+
.minifeedwall .has_thumb .extra{float:none;}
|
|
1857
|
+
.wall_attachment .attached_item{border:0;padding:0;}
|
|
1858
|
+
.gift_story .gift_image{float:left;}
|
|
1859
|
+
.minifeedwall .gift_story .story_comment_quote{margin-left:75px;}
|
|
1860
|
+
.photobox_mobile_text em.q{width:230px;}
|
|
1861
|
+
.story em.q span.comment,
|
|
1862
|
+
.photobox_text em.q span.comment{background:url(/images/end_quote_small.gif) bottom right no-repeat;color:#666;font-size:11px;font-style:normal;padding-right:17px;text-align:left;}
|
|
1863
|
+
.mp3player .info{float:left;}
|
|
1864
|
+
.mp3player .mp3player_holder{float:left;}
|
|
1865
|
+
.minifeedwall .mp3player .mp3player_holder{padding-top:1px;}
|
|
1866
|
+
.minifeedwall .sharefeed_item .mp3player .no_artwork .info_field span{width:auto;}
|
|
1867
|
+
.minifeedwall .tag_story_box h3{font-size:11px;font-weight:bold;}
|
|
1868
|
+
.minifeedwall .story_options{position:absolute;right:0px;top:0px;z-index:2;}
|
|
1869
|
+
.minifeedwall .story_ff .story_options{top:2px;}
|
|
1870
|
+
.minifeedwall .story_options a{outline:none;}
|
|
1871
|
+
.minifeedwall .story_options .story_editor_menu{background:#edf0f7 url(/images/profile/story_editor_icon.gif) no-repeat 97px -18px;position:absolute;top:0;right:19px;width:100px;}
|
|
1872
|
+
.minifeedwall .story_options .story_editor{position:relative;height:15px;font-size:9px;overflow:hidden;padding:3px 23px 0 0;background:url(/images/profile/story_editor_icon.gif) no-repeat right top;}
|
|
1873
|
+
.minifeedwall .story_options.selected .story_editor,
|
|
1874
|
+
.minifeedwall .story_options:hover .story_editor,
|
|
1875
|
+
.minifeedwall .story_options .story_editor:hover{background-position:right bottom;}
|
|
1876
|
+
.minifeedwall .story_options.selected .story_editor{padding-right:0;text-indent:-1000px;width:18px;}
|
|
1877
|
+
.minifeedwall .story_options .story_editor_menu strong,
|
|
1878
|
+
.minifeedwall .story_options a{display:block;}
|
|
1879
|
+
.minifeedwall .story_options .story_editor_menu strong,
|
|
1880
|
+
.minifeedwall .story_options .story_editor_menu a{padding:4px 8px;}
|
|
1881
|
+
.minifeedwall .story .story_options a{position:relative;visibility:hidden;background-color:white;padding-left:5px;}
|
|
1882
|
+
.minifeedwall .story_ff .story_options a{background-color:#EEEEEE;}
|
|
1883
|
+
.minifeedwall .story_options.selected a,
|
|
1884
|
+
.minifeedwall .story.hover .story_options a{visibility:visible;}
|
|
1885
|
+
.minifeedwall .story_hide{background:transparent url(/images/x_to_hide.gif) no-repeat scroll center;}
|
|
1886
|
+
.minifeedwall a.story_hide:hover,
|
|
1887
|
+
.minifeedwall a.story_hide.hover{background:#3b5998 url(/images/x_to_hide_hover.gif) no-repeat scroll center;}
|
|
1888
|
+
.minifeedwall .story_options .story_featured{background:transparent url(/images/story_option_featured.gif) no-repeat 0px center;}
|
|
1889
|
+
.minifeedwall .story_options .story_featured:hover{background:#3b5998 url(/images/story_option_featured_hover.gif) no-repeat 0px center;}
|
|
1890
|
+
.minifeedwall .loading_layer{background:white url('/images/loading.gif') no-repeat center;filter:alpha(opacity=5);opacity:0.5;position:absolute;}
|
|
1891
|
+
.minifeedwall .loading_placeholder{background:white url('/images/loading.gif') no-repeat center;height:200px;}
|
|
1892
|
+
#feedwall_controls{background:#fff;color:#999;float:right;font-size:9px;height:15px;overflow:hidden;padding:14px 0 0 6px;}
|
|
1893
|
+
#feedwall_controls .filter.settings .setting_icon{background:url(/images/profile/feed_settings.gif) no-repeat left 1px;overflow:hidden;padding-left:12px;}
|
|
1894
|
+
#feedwall_controls .filter.settings.selected .setting_icon{background-position:left -10px;}
|
|
1895
|
+
#feedwall_with_composer .pager_prev,
|
|
1896
|
+
#feedwall_with_composer .pager_next{padding:10px 7px 0 0;text-align:right;}
|
|
1897
|
+
#feedwall_with_composer .pager_next{border-top:1px solid #ccc;}
|
|
1898
|
+
.minifeedwall .video_container{margin-top:3px;}
|
|
1899
|
+
|
|
1900
|
+
|
|
1901
|
+
#fb_menubar{background:transparent url(fb_menubar.png) no-repeat bottom center;position:absolute;top:0px;left:0px;width:964px;z-index:1;height:30px;font-size:11px;line-height:normal;}
|
|
1902
|
+
#fb_menubar #fb_menubar_logo{display:block;float:left;width:104px;}
|
|
1903
|
+
#fb_menubar #fb_menubar_logo a{background:transparent url(fb_menubar_logo.gif) no-repeat 40% 45%;display:block;}
|
|
1904
|
+
#fb_menubar #fb_menubar_logo a:hover{text-decoration:none;}
|
|
1905
|
+
#fb_menubar #fb_menubar_logo a span{display:block;height:2.727em;}
|
|
1906
|
+
#fb_menubar #fb_menubar_logo a:hover span{background:transparent url(/images/menubar/fb_menubar_house.gif) no-repeat 99% 55%;}
|
|
1907
|
+
.fb_menu_dropdown{background:white;border:1px solid #3b5998;margin:0px 0px 0px -1px;padding:5px 0px;position:absolute;width:220px;z-index:20;line-height:normal;font-size:11px;}
|
|
1908
|
+
.fb_menu_dropdown .fb_menu_item a{border:1px solid white;border-width:1px 0px;display:block;padding:3px 35px 3px 19px;}
|
|
1909
|
+
.fb_menu_dropdown .fb_menu_item a:hover{display:block;background:#6d84b4;border-top-color:#617aad;border-bottom-color:#3b5998;color:white;text-decoration:none;}
|
|
1910
|
+
.fb_menu_dropdown .fb_menu_item small{background-position:-16px 0px;background-repeat:no-repeat;display:block;float:left;font-size:11px;height:16px;margin:-1px 6px 0px 0px;width:16px;}
|
|
1911
|
+
.fb_menu_dropdown .fb_menu_item a:hover small{background-position:0px 0px;}
|
|
1912
|
+
.fb_menu_dropdown .fb_menu_item_disabled span{color:#808080;cursor:default;display:block;padding:4px 35px 4px 20px;}
|
|
1913
|
+
.fb_menu_dropdown .fb_menu_separator{margin:6px 4px 5px 4px;border-bottom:1px solid #e0e0e0;}
|
|
1914
|
+
#fb_menubar_core{float:left;padding:0px 4px;}
|
|
1915
|
+
#fb_menubar_core .fb_menu{float:left;margin:0.365em 4px 0px 0px;}
|
|
1916
|
+
#fb_menubar_core .fb_menu .fb_menu_title a{color:white;display:block;font-weight:bold;padding:4px 7px 4px 8px;}
|
|
1917
|
+
#fb_menubar_core .fb_menu .fb_menu_title .hover,
|
|
1918
|
+
#fb_menubar_core .fb_menu .fb_menu_title a:hover{background:#5c75aa;text-decoration:none;}
|
|
1919
|
+
#fb_menubar_aux{display:block;float:right;padding:0px 4px 0px 0px;}
|
|
1920
|
+
#fb_menubar_aux .fb_menu{display:block;float:left;margin:0.365em 0px 0px 0px;}
|
|
1921
|
+
#fb_menubar_aux .fb_menu .fb_menu_title a{color:#c3cddf;display:block;padding:4px 7px 4px 8px;}
|
|
1922
|
+
#fb_menubar_aux .fb_menu .fb_menu_title .hover,
|
|
1923
|
+
#fb_menubar_aux .fb_menu .fb_menu_title a:hover{color:white;text-decoration:underline;}
|
|
1924
|
+
#fb_menubar_aux .fb_menu#fb_menu_account .fb_menu_title a{padding:0.5em 0px 0.5em 0px;width:24px;text-align:center;}
|
|
1925
|
+
#fb_menubar_aux .fb_menu#fb_menu_account .fb_menu_title a span{background:transparent url(/images/menubar/fb_menubar_lock.gif) no-repeat 0px 0px;display:block;height:11px;margin:0px auto;width:9px;padding:0px;}
|
|
1926
|
+
#fb_menubar_aux .fb_menu#fb_menu_account .fb_menu_title .hover,
|
|
1927
|
+
#fb_menubar_aux .fb_menu#fb_menu_account .fb_menu_title a:hover{background:#5c75aa;text-decoration:none;}
|
|
1928
|
+
#fb_menubar_aux .fb_menu#fb_menu_account .fb_menu_title .hover span,
|
|
1929
|
+
#fb_menubar_aux .fb_menu#fb_menu_account .fb_menu_title a:hover span{background-position:-9px 0px;padding:0px;}
|
|
1930
|
+
#fb_menu_account .fb_menu_dropdown{margin:0px -1px 0px 0px;width:200px;}
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
.scroll_area_scroll{height:200px;overflow:hidden;position:relative;margin-top:0px;}
|
|
1934
|
+
.scroll_area_scroll a.arrow{background-color:#fff;background-position:center center;background-repeat:no-repeat;border:1px solid white;border-width:1px 0px;cursor:default;height:18px;left:0px;position:absolute;text-align:center;text-decoration:none;width:100%;}
|
|
1935
|
+
.scroll_area_scroll a.arrow span{background-color:transparent;background-image:url(/images/menubar/fb_menubar_scroll_arrows.gif);background-repeat:no-repeat;display:block;height:7px;margin:0px auto;width:11px;}
|
|
1936
|
+
.scroll_area_scroll a.arrow:hover{background-color:#6d84b4;border-top-color:#617aad;border-bottom-color:#3b5998;}
|
|
1937
|
+
.scroll_area_scroll a.up_arrow{top:0px;}
|
|
1938
|
+
.scroll_area_scroll a.up_arrow span{background-position:0px 0px;margin:5px auto 8px auto;}
|
|
1939
|
+
.scroll_area_scroll a.up_arrow:hover span{background-position:-11px 0px;}
|
|
1940
|
+
.scroll_area_scroll a.down_arrow{bottom:0px;}
|
|
1941
|
+
.scroll_area_scroll a.down_arrow span{background-position:0px -7px;margin:7px auto 6px auto;}
|
|
1942
|
+
.scroll_area_scroll a.down_arrow:hover span{background-position:-11px -7px;}
|
|
1943
|
+
.at_top a.up_arrow,
|
|
1944
|
+
.at_bottom a.down_arrow{display:none;}
|
|
1945
|
+
|
|
1946
|
+
|
|
1947
|
+
#universal_search{float:left;margin:0.4em 3px 0em 8px;}
|
|
1948
|
+
#universal_search #universal_search_input{float:left;}
|
|
1949
|
+
#universal_search #universal_search_input #q{background:white url(/images/menubar/fb_menubar_search_shadow.gif) no-repeat top left;border:1px solid #315091;border-right:0px;float:left;margin:0px;padding:3px 4px;width:156px;}
|
|
1950
|
+
#universal_search #universal_search_input .typeahead_found#q{background:#e1e9f6;}
|
|
1951
|
+
.typeahead_search.typeahead_list{border:1px solid #95a5c6;border-bottom:none;border-top:none;}
|
|
1952
|
+
.typeahead_search .blue_top_border{border-top:solid 1px #95a5c6;}
|
|
1953
|
+
.typeahead_search .blue_bottom_border{border-bottom:solid 1px #3b5998;}
|
|
1954
|
+
.typeahead_search .no_border_list{border:none;}
|
|
1955
|
+
.typeahead_search .typeahead_suggestion{filter:alpha(opacity=100);opacity:1.0;}
|
|
1956
|
+
.typeahead_search .typeaheadpro_header{background:#f7f7f7;border-top:solid 1px #95A5C6;color:#555;font-size:9px;padding:3px;}
|
|
1957
|
+
.typeahead_search .icon{background-position:-16px 0px;background-repeat:no-repeat;float:left;margin-right:5px;height:16px;width:16px;}
|
|
1958
|
+
.typeahead_search .typeahead_selected .icon{background-position:0px 0px;}
|
|
1959
|
+
.typeahead_search .app span{float:left;padding:1px 0px 0px 1px;width:132px;}
|
|
1960
|
+
.typeahead_search .typeahead_suggestion{overflow:hidden;position:relative;}
|
|
1961
|
+
.typeahead_search img{border:1px solid white;position:absolute;margin-top:2px;line-height:1px;height:25px;width:25px;top:1px;left:3px;}
|
|
1962
|
+
.typeahead_search .typeahead_selected img{border:1px solid #6e84b3;}
|
|
1963
|
+
.typeahead_search .with_pic{padding-left:32px;}
|
|
1964
|
+
.typeahead_search .typeahead_suggestion .with_pic small{padding:1px 0px;}
|
|
1965
|
+
.typeahead_search .typeahead_suggestion .with_pic small,
|
|
1966
|
+
.typeahead_search .typeahead_suggestion .with_pic span{display:block;padding-left:0px;}
|
|
1967
|
+
#universal_search #universal_search_submit{float:left;width:21px;}
|
|
1968
|
+
#universal_search #universal_search_submit a{background:#6d84b4 url(/images/search_input_gloss.gif) top center repeat-x;border:1px solid #315091;display:block;font-size:11px;margin:0px;padding:0px;text-decoration:none;width:19px;}
|
|
1969
|
+
#universal_search #universal_search_submit a span{background:url(/images/search_glass.gif) 0% 70% no-repeat;display:block;margin:0px;padding:3px 0px;}
|
|
1970
|
+
#universal_search #universal_search_submit a:active{background:#5b75ab;border:1px solid #3b5998;border:1px solid #315091;}
|
|
1971
|
+
#universal_search #universal_search_submit a:active span{background:url(/images/search_glass.gif) 100% 70% no-repeat;}
|
|
1972
|
+
|
|
1973
|
+
|
|
1974
|
+
#pagefooter .locale_footer_selector{float:left;position:relative;}
|
|
1975
|
+
#pagefooter .pipe{float:left;padding-left:6px;}
|
|
1976
|
+
#pagefooter #locale_footer_selector_menu{position:absolute;z-index:97;padding-top:5px;padding-bottom:5px;background:white;border:1px solid #3b5998;width:140px;height:260px;overflow:auto;}
|
|
1977
|
+
#pagefooter #locale_footer_selector_menu a{padding:3px 10px 3px 10px;text-decoration:none;display:block;font-size:11px;}
|
|
1978
|
+
#pagefooter #locale_footer_selector_menu a:hover{background:#5c75aa;color:white;text-decoration:none;}
|
|
1979
|
+
#pagefooter .locale_footer_selector_hitarea{padding-left:4px;float:left;padding-right:0px;}
|
|
1980
|
+
#pagefooter .locale_footer_selector_hitarea a{float:left;display:block;}
|
|
1981
|
+
#pagefooter .locale_footer_selector_hitarea .locale_footer_selector_hitarea_right{float:left;margin:0px;padding:0px 0px 0px 3px;background:transparent url(/images/down_arrow.gif) top left no-repeat;width:12px;cursor:pointer;height:15px;}
|
|
1982
|
+
#pagefooter .locale_footer_selector_hitarea a:hover{text-decoration:none;}
|
|
1983
|
+
#pagefooter .locale_footer_selector .active{background:#5c75aa;padding-left:4px;padding-right:0px;float:left;color:white;}
|
|
1984
|
+
#pagefooter .locale_footer_selector .active a{float:left;display:block;}
|
|
1985
|
+
#pagefooter .locale_footer_selector .active .locale_footer_selector_hitarea_right{background-position:-13px 0px;}
|
|
1986
|
+
#pagefooter .locale_footer_selector .active a{color:white;}
|
|
1987
|
+
#pagefooter .copyright_and_location #locale{float:left;margin-top:-1px;}
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
#fb_dropmenu_container .flyout_menu{font-size:11px;line-height:normal;}
|
|
1991
|
+
.flyout_menu{position:absolute;margin-top:-6px;margin-left:-6px;top:0px;left:0px;padding:0px;overflow:visible;width:173px;z-index:20;}
|
|
1992
|
+
.flyout_menu .flyout_menu_header_shadow{margin:0px;padding:0px;margin-top:1px;position:relative;overflow:visible;}
|
|
1993
|
+
.flyout_menu .flyout_menu_header{margin:0px;padding:0px;margin-top:-1px;overflow:hidden;border:1px solid #333;}
|
|
1994
|
+
.flyout_menu .flyout_menu_header .flyout_menu_mask{width:27px;height:22px;border:4px solid white;border-right:0px;margin:0px;float:left;}
|
|
1995
|
+
.flyout_menu .flyout_menu_header .flyout_menu_title{padding:6px 5px 6px 8px;height:18px;color:#666;text-align:left;float:left;font-size:13px;width:127px;background-color:white;}
|
|
1996
|
+
.flyout_menu .flyout_menu_content_shadow{float:right;clear:left;margin:0px;padding:0px;position:relative;margin-top:-1px;}
|
|
1997
|
+
.flyout_menu .menu_content{width:140px;padding:0px;border:1px solid #333;border-top:solid 1px #ccc;margin:0px;margin-left:-1px;background:white;clear:both;}
|
|
1998
|
+
.link_menu_list .menu_content ul{margin:0px;padding:0px;}
|
|
1999
|
+
.link_menu_list .menu_content ul li{list-style-type:none;padding:0px;margin:0px;}
|
|
2000
|
+
.link_menu .menu_content .opt_group,
|
|
2001
|
+
.link_menu .menu_content a,
|
|
2002
|
+
.link_menu_list .menu_content ul li a.tab_link{height:auto;width:auto;display:block;overflow:hidden;margin:0px;border-bottom:1px solid #ededed;background:#f7f7f7;font-size:10px;overflow:hidden;font-weight:bold;padding:5px 8px 5px 8px;}
|
|
2003
|
+
.flyout_menu.link_menu .menu_content div.opt_group{color:#777;}
|
|
2004
|
+
.link_menu .menu_content a:hover,
|
|
2005
|
+
.link_menu .menu_content a.opt_group_link:hover,
|
|
2006
|
+
.link_menu_list .menu_content ul li a.tab_link:hover{text-decoration:none;background:#899bc1;color:white;}
|
|
2007
|
+
.flyout_menu.link_menu .menu_content a.opt_group_link{background-color:#eee;font-weight:normal;padding-left:15px;}
|
|
2008
|
+
.flyout_menu_left .flyout_menu_content_shadow{float:left;}
|
|
2009
|
+
.flyout_menu_left .menu_content{margin:0px;}
|
|
2010
|
+
.flyout_menu_left .flyout_menu_header .flyout_menu_mask{float:right;}
|
|
2011
|
+
.flyout_menu_18{margin-top:-4px;margin-left:-4px;}
|
|
2012
|
+
.flyout_menu_18 .flyout_menu_header .flyout_menu_title{padding:5px 12px 3px 4px;height:16px;width:131px;}
|
|
2013
|
+
.flyout_menu_18 .flyout_menu_header .flyout_menu_mask{width:18px;height:18px;border:3px solid white;}
|
|
2014
|
+
.flyout_menu_18 .menu_content{width:150px;}
|