From d40f25ae0829af144e94e94348ccf174cb034519 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 17 Aug 2012 07:59:21 +0200 Subject: [PATCH 01/30] bbcode: Function for cleaning CSS commands (not yet in function) items.php: The detection if a rss/atom-title is identically to the body is improved. --- include/bbcode.php | 17 +++++++++++++++++ include/items.php | 2 ++ 2 files changed, 19 insertions(+) diff --git a/include/bbcode.php b/include/bbcode.php index d83cd3581..97e9d76f8 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -3,7 +3,24 @@ require_once("include/oembed.php"); require_once('include/event.php'); +function cleancss($input) { + $cleaned = ""; + + $input = strtolower($input); + + for ($i = 0; $i < strlen($input); $i++) { + $char = substr($input, $i, 1); + + if (($char >= "a") and ($char <= "z")) + $cleaned .= $char; + + if (!(strpos(" #;:0123456789", $char) === false)) + $cleaned .= $char; + } + + return($cleaned); +} function stripcode_br_cb($s) { return '[code]' . str_replace('
', '', $s[1]) . '[/code]'; diff --git a/include/items.php b/include/items.php index 701a7ada7..1a664b301 100755 --- a/include/items.php +++ b/include/items.php @@ -378,10 +378,12 @@ function title_is_body($title, $body) { $title = strip_tags($title); $title = trim($title); + $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8'); $title = str_replace(array("\n", "\r", "\t", " "), array("","","",""), $title); $body = strip_tags($body); $body = trim($body); + $body = html_entity_decode($body, ENT_QUOTES, 'UTF-8'); $body = str_replace(array("\n", "\r", "\t", " "), array("","","",""), $body); if (strlen($title) < strlen($body)) From 3c24a7ed3e7e1c78aea827ddcdc4e9aeaa5eedda Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 2 Sep 2012 17:49:06 +0200 Subject: [PATCH 02/30] items: added some logging infos --- include/items.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/items.php b/include/items.php index 1a664b301..79fab8a65 100755 --- a/include/items.php +++ b/include/items.php @@ -793,6 +793,8 @@ function get_atom_elements($feed,$item) { // There is some better way to parse this array - but it didn't worked for me. $child = $item->feed->data["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["feed"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["entry"][0]["child"]["http://activitystrea.ms/spec/1.0/"][object][0]["child"]; if (is_array($child)) { + logger('get_atom_elements: Looking for status.net repeated message'); + $message = $child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["content"][0]["data"]; $author = $child[SIMPLEPIE_NAMESPACE_ATOM_10]["author"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]; $uri = $author["uri"][0]["data"]; @@ -801,6 +803,8 @@ function get_atom_elements($feed,$item) { $avatar = $avatar["href"]; if (($name != "") and ($uri != "") and ($avatar != "") and ($message != "")) { + logger('get_atom_elements: fixing sender of repeated message'); + $res["owner-name"] = $res["author-name"]; $res["owner-link"] = $res["author-link"]; $res["owner-avatar"] = $res["author-avatar"]; From 6afa5d1c4821ce16d86430df0fca0cc910cb7ac7 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Nov 2012 23:18:52 +0100 Subject: [PATCH 03/30] In the API you now can update not only the body but also the title. In html2plain the function for valid urls was improved. --- include/api.php | 2 ++ include/html2plain.php | 3 +++ 2 files changed, 5 insertions(+) diff --git a/include/api.php b/include/api.php index 456d984de..fb03b30a0 100644 --- a/include/api.php +++ b/include/api.php @@ -559,6 +559,8 @@ $_REQUEST['body'] = requestdata('status'); //$_REQUEST['body'] = urldecode(requestdata('status')); + $_REQUEST['title'] = requestdata('title'); + $parent = requestdata('in_reply_to_status_id'); if(ctype_digit($parent)) $_REQUEST['parent'] = $parent; diff --git a/include/html2plain.php b/include/html2plain.php index 839dd70a7..4afac41d8 100644 --- a/include/html2plain.php +++ b/include/html2plain.php @@ -92,6 +92,9 @@ function collecturls($message) { if ((strpos($treffer[1], "//plus.google.com/") !== false) and (strpos($treffer[1], "/posts") !== false)) $ignore = false; + if ((strpos($treffer[1], "//plus.google.com/") !== false) and (strpos($treffer[1], "/photos") !== false)) + $ignore = false; + if (!$ignore) $urls[$treffer[1]] = $treffer[1]; } From ff40442768e0486a1969b2919d85d63111463238 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Nov 2012 00:20:32 +0100 Subject: [PATCH 04/30] Restoring the community pages in diabook --- view/theme/diabook/theme.php | 47 ++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php index c0ca82b41..b4d7de179 100644 --- a/view/theme/diabook/theme.php +++ b/view/theme/diabook/theme.php @@ -37,6 +37,7 @@ load_config("diabook"); load_pconfig(local_user(), "diabook"); //get statuses of boxes at right-hand-column +$close_pages = get_diabook_config( "close_pages", 0 ); $close_profiles = get_diabook_config( "close_profiles", 0 ); $close_helpers = get_diabook_config( "close_helpers", 0 ); $close_services = get_diabook_config( "close_services", 0 ); @@ -301,6 +302,11 @@ if ($color=="dark") $color_path = "/diabook-dark/"; document.getElementById( "close_mapquery" ).style.display = "none"; }; + if('.$close_pages.') + { + document.getElementById( "close_pages" ).style.display = "none"; + }; + if('.$close_profiles.') { document.getElementById( "close_profiles" ).style.display = "none"; @@ -362,6 +368,7 @@ if ($color=="dark") $color_path = "/diabook-dark/"; function diabook_community_info() { $a = get_app(); + $close_pages = get_diabook_config( "close_pages", 0 ); $close_profiles = get_diabook_config( "close_profiles", 0 ); $close_helpers = get_diabook_config( "close_helpers", 0 ); $close_services = get_diabook_config( "close_services", 0 ); @@ -372,6 +379,43 @@ if ($color=="dark") $color_path = "/diabook-dark/"; $close_twitter = get_diabook_config( "close_twitter", 1 ); $close_mapquery = get_diabook_config( "close_mapquery", 1 ); + //Community_Pages at right_aside + if($close_pages != "1") { + if(local_user()) { + $page = ' +

'.t("Community Pages").'

+
    '; + + $pagelist = array(); + + $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact` + WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d + ORDER BY `name` ASC", + intval($a->user['uid']) + ); + + $pageD = array(); + + // Look if the profile is a community page + foreach($contacts as $contact) { + $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']); + }; + + + $contacts = $pageD; + + foreach($contacts as $contact) { + $page .= '
  • ' . $contact['url'] . ' '. + $contact["name"]."
  • "; + } + $page .= '
'; + //if (sizeof($contacts) > 0) + $aside['$page'] = $page; + } + } + //END Community Page + // comunity_profiles if($close_profiles != "1") { $aside['$comunity_profiles_title'] = t('Community Profiles'); @@ -575,6 +619,7 @@ if ($color=="dark") $color_path = "/diabook-dark/"; } //end twitter if($ccCookie != "10") { + $close_pages = get_diabook_config( "close_pages", 0 ); $close_profiles = get_diabook_config( "close_profiles", 0 ); $close_helpers = get_diabook_config( "close_helpers", 0 ); $close_services = get_diabook_config( "close_services", 0 ); @@ -587,6 +632,7 @@ if ($color=="dark") $color_path = "/diabook-dark/"; $close_or_not = array('1'=>t("don't show"), '0'=>t("show"),); $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", ""); $aside['$boxsettings'] = $boxsettings; + $aside['$close_pages'] = array('diabook_close_pages', t('Community Pages'), $close_pages, '', $close_or_not); $aside['$close_mapquery'] = array('diabook_close_mapquery', t('Earth Layers'), $close_mapquery, '', $close_or_not); $aside['$close_profiles'] = array('diabook_close_profiles', t('Community Profiles'), $close_profiles, '', $close_or_not); $aside['$close_helpers'] = array('diabook_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not); @@ -600,6 +646,7 @@ if ($color=="dark") $color_path = "/diabook-dark/"; $baseurl = $a->get_baseurl($ssl_state); $aside['$baseurl'] = $baseurl; if (isset($_POST['diabook-settings-box-sub']) && $_POST['diabook-settings-box-sub']!=''){ + set_pconfig(local_user(), 'diabook', 'close_pages', $_POST['diabook_close_pages']); set_pconfig(local_user(), 'diabook', 'close_mapquery', $_POST['diabook_close_mapquery']); set_pconfig(local_user(), 'diabook', 'close_profiles', $_POST['diabook_close_profiles']); set_pconfig(local_user(), 'diabook', 'close_helpers', $_POST['diabook_close_helpers']); From 5d2d306d9fc91399501e282228bba71129a07a07 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 8 Nov 2012 21:45:53 +0100 Subject: [PATCH 05/30] Make reshared Diaspora postings look lile wall-to-wall postings (preparation for real forwards in friendica) --- include/diaspora.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index f645aeb39..275b29a90 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1022,10 +1022,12 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray['owner-name'] = $contact['name']; $datarray['owner-link'] = $contact['url']; $datarray['owner-avatar'] = $contact['thumb']; - $datarray['author-name'] = $contact['name']; - $datarray['author-link'] = $contact['url']; - $datarray['author-avatar'] = $contact['thumb']; - $datarray['body'] = $prefix . $body; + $datarray['author-name'] = $person['name']; // Let reshared messages look like wall-to-wall posts + $datarray['author-link'] = $person['url']; // we have to set an additional value in the item in the future + // $datarray['author-avatar'] = $person['thumb']; // to distinct the wall-to-wall-posts from reshared/repeated messages + $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); + // $datarray['body'] = $prefix . $body; + $datarray['body'] = $body; $datarray['tag'] = $str_tags; $datarray['app'] = 'Diaspora'; From b14e557575daff84912914788319b8bc5b76b955 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Nov 2012 01:19:24 +0100 Subject: [PATCH 06/30] Vier: Fixing "vier" so that it looks again like it was intended. --- object/Item.php | 1 + view/theme/vier/style.css | 24 +++++++++++++++++++++++- view/theme/vier/wall_thread.tpl | 26 +++++++++++++++++++------- 3 files changed, 43 insertions(+), 8 deletions(-) diff --git a/object/Item.php b/object/Item.php index 9ec63b4f2..c807f7053 100644 --- a/object/Item.php +++ b/object/Item.php @@ -253,6 +253,7 @@ class Item extends BaseObject { 'vote' => $buttons, 'like' => $like, 'dislike' => $dislike, + 'switchcomment' => t('Comment'), 'comment' => $this->get_comment_box($indent), 'previewing' => ($conv->is_preview() ? ' preview ' : ''), 'wait' => t('Please wait'), diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 96903bba0..c7b6661b2 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -722,7 +722,7 @@ ul.menu-popup .empty { aside { display: table-cell; vertical-align: top; - width: 200px; + width: 185px; padding: 0px 10px 0px 20px; border-right: 1px solid #D2D2D2; /* background: #F1F1F1; */ @@ -779,6 +779,28 @@ aside #dfrn-request-link:hover { aside #profiles-menu { width: 20em; } + +aside #search-text { + width: 150px; + height: 17px; + padding-left: 10px; + border-top-left-radius: 15px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; + border-bottom-left-radius: 15px; + -moz-border-bottom-colors: #dbdbdb; + -moz-border-top-colors: #999; + -moz-border-left-colors: #999; + -moz-border-right-colors: #dbdbdb; +} + +.nets-ul { + margin-top: 0px; +} +.nets-all { + margin-left: 16px; +} + #contact-block { overflow: auto; height: auto; diff --git a/view/theme/vier/wall_thread.tpl b/view/theme/vier/wall_thread.tpl index f6f4679cb..b422ae926 100644 --- a/view/theme/vier/wall_thread.tpl +++ b/view/theme/vier/wall_thread.tpl @@ -49,8 +49,16 @@ {{ endif }} -
$item.location
+
+ $item.name + {{ if $item.owner_url }}$item.to $item.owner_name {{ endif }} + - + {{ if $item.plink }}$item.ago{{ else }} $item.ago {{ endif }} + {{ if $item.lock }} - $item.lock {{ endif }} + +
+
{{ if $item.title }}

$item.title

{{ endif }} $item.body @@ -79,7 +87,8 @@ {{ if $item.plink }}$item.plink.title{{ endif }}
-
+
$item.location
+
+ {{ if $item.star }} $item.star.do $item.star.undo $item.star.tagger - {{ endif }} {{ if $item.filer }} $item.filer @@ -134,7 +145,7 @@ {{ if $item.threaded }}{{ if $item.comment }}
-
+
$item.comment
@@ -159,10 +170,11 @@ {{ endif }} {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}} -
$item.comment
+
$item.comment
{{ endif }}{{ endif }}{{ endif }} {{ if $item.flatten }} -
$item.comment
+ +
$item.comment
{{ endif }} From b41687e20928736e045faa981ee69b7635187f12 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Nov 2012 01:56:51 +0100 Subject: [PATCH 07/30] "vier": Button for show/hide of text area for comments --- view/theme/vier/style.css | 6 ++++++ view/theme/vier/wall_thread.tpl | 21 +++++---------------- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index c7b6661b2..9e88dd8f5 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -1059,6 +1059,12 @@ section { color: #2d2d2d; border: 1px solid #2d2d2d; } + +.togglecomment { + float: left; + margin-right: 1em; +} + .comment-edit-preview { width: 710px; border: 1px solid #2d2d2d; diff --git a/view/theme/vier/wall_thread.tpl b/view/theme/vier/wall_thread.tpl index b422ae926..9861c4feb 100644 --- a/view/theme/vier/wall_thread.tpl +++ b/view/theme/vier/wall_thread.tpl @@ -87,21 +87,11 @@ {{ if $item.plink }}$item.plink.title{{ endif }}
-
$item.location
- - +
$item.location
- + {{ if $item.comment }} + $item.switchcomment + {{ endif }} {{ if $item.star }} $item.star.do $item.star.undo @@ -175,6 +165,5 @@ {{ if $item.flatten }} - -
$item.comment
+ {{ endif }} From fb02d72a359bdb6e5ffeb192b5c888b7890ff65f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Nov 2012 08:01:16 +0100 Subject: [PATCH 08/30] vier: toggle comments only with threaded comments --- view/theme/vier/wall_thread.tpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/view/theme/vier/wall_thread.tpl b/view/theme/vier/wall_thread.tpl index 9861c4feb..cd0cf36e9 100644 --- a/view/theme/vier/wall_thread.tpl +++ b/view/theme/vier/wall_thread.tpl @@ -89,9 +89,9 @@
$item.location
- {{ if $item.comment }} + {{ if $item.threaded }}{{ if $item.comment }} $item.switchcomment - {{ endif }} + {{ endif }}{{ endif }} {{ if $item.star }} $item.star.do $item.star.undo @@ -135,7 +135,7 @@ {{ if $item.threaded }}{{ if $item.comment }}
-
+
@@ -165,5 +165,5 @@ {{ if $item.flatten }} - +
$item.comment
{{ endif }} From b875191237756534a0b3cd076ccedac7911e10fa Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Nov 2012 23:19:32 +0100 Subject: [PATCH 09/30] Diaspora: Avatars of repeated items weren't found Vier: Complete redesign of the navigation header --- include/dba.php | 2 +- include/diaspora.php | 11 +-- view/theme/vier/nav.tpl | 84 ++++++++++++---------- view/theme/vier/style.css | 142 +++++++++++++++++++++++++++++++++----- 4 files changed, 182 insertions(+), 57 deletions(-) diff --git a/include/dba.php b/include/dba.php index 9f2dab519..ad33705bf 100644 --- a/include/dba.php +++ b/include/dba.php @@ -231,7 +231,7 @@ function q($sql) { unset($args[0]); if($db && $db->connected) { - $stmt = vsprintf($sql,$args); + $stmt = @vsprintf($sql,$args); // Disabled warnings //logger("dba: q: $stmt", LOGGER_ALL); if($stmt === false) logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG); diff --git a/include/diaspora.php b/include/diaspora.php index 275b29a90..6a8d4a358 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -859,7 +859,8 @@ function diaspora_post($importer,$xml,$msg) { $datarray['parent'] = 0; $datarray['owner-name'] = $contact['name']; $datarray['owner-link'] = $contact['url']; - $datarray['owner-avatar'] = $contact['thumb']; + //$datarray['owner-avatar'] = $contact['thumb']; + $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']); $datarray['author-name'] = $contact['name']; $datarray['author-link'] = $contact['url']; $datarray['author-avatar'] = $contact['thumb']; @@ -1021,7 +1022,7 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray['parent'] = 0; $datarray['owner-name'] = $contact['name']; $datarray['owner-link'] = $contact['url']; - $datarray['owner-avatar'] = $contact['thumb']; + $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']); $datarray['author-name'] = $person['name']; // Let reshared messages look like wall-to-wall posts $datarray['author-link'] = $person['url']; // we have to set an additional value in the item in the future // $datarray['author-avatar'] = $person['thumb']; // to distinct the wall-to-wall-posts from reshared/repeated messages @@ -1118,7 +1119,8 @@ function diaspora_asphoto($importer,$xml,$msg) { $datarray['parent'] = 0; $datarray['owner-name'] = $contact['name']; $datarray['owner-link'] = $contact['url']; - $datarray['owner-avatar'] = $contact['thumb']; + //$datarray['owner-avatar'] = $contact['thumb']; + $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']); $datarray['author-name'] = $contact['name']; $datarray['author-link'] = $contact['url']; $datarray['author-avatar'] = $contact['thumb']; @@ -1866,7 +1868,8 @@ EOT; $arr['owner-name'] = $parent_item['name']; $arr['owner-link'] = $parent_item['url']; - $arr['owner-avatar'] = $parent_item['thumb']; + //$arr['owner-avatar'] = $parent_item['thumb']; + $arr['owner-avatar'] = ((x($parent_item,'thumb')) ? $parent_item['thumb'] : $parent_item['photo']); $arr['author-name'] = $person['name']; $arr['author-link'] = $person['url']; diff --git a/view/theme/vier/nav.tpl b/view/theme/vier/nav.tpl index bb3ce2016..b2b6cc785 100644 --- a/view/theme/vier/nav.tpl +++ b/view/theme/vier/nav.tpl @@ -6,20 +6,6 @@
$item.name - {{ if $item.owner_url }}$item.to $item.owner_name {{ endif }} + {{ if $item.owner_url }}$item.via $item.owner_name {{ endif }} - {{ if $item.plink }}$item.ago{{ else }} $item.ago {{ endif }} {{ if $item.lock }} - $item.lock {{ endif }} From fce18fd2239de5fe99317d6bee23e5db8b342d02 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 15 Nov 2012 21:47:36 +0100 Subject: [PATCH 14/30] Vier: New Icon set --- view/theme/vier/css/font-awesome-ie7.css | 645 ++++++++++++++++++ view/theme/vier/css/font-awesome.css | 303 ++++++++ view/theme/vier/font/fontawesome-webfont.eot | Bin 0 -> 38708 bytes view/theme/vier/font/fontawesome-webfont.svg | 255 +++++++ view/theme/vier/font/fontawesome-webfont.ttf | Bin 0 -> 68476 bytes view/theme/vier/font/fontawesome-webfont.woff | Bin 0 -> 41752 bytes view/theme/vier/mail_list.tpl | 8 + view/theme/vier/prv_message.tpl | 33 + view/theme/vier/search_item.tpl | 2 +- view/theme/vier/style.css | 25 + view/theme/vier/theme.php | 9 + view/theme/vier/wall_thread.tpl | 35 +- 12 files changed, 1295 insertions(+), 20 deletions(-) create mode 100644 view/theme/vier/css/font-awesome-ie7.css create mode 100644 view/theme/vier/css/font-awesome.css create mode 100755 view/theme/vier/font/fontawesome-webfont.eot create mode 100755 view/theme/vier/font/fontawesome-webfont.svg create mode 100755 view/theme/vier/font/fontawesome-webfont.ttf create mode 100755 view/theme/vier/font/fontawesome-webfont.woff create mode 100644 view/theme/vier/mail_list.tpl create mode 100644 view/theme/vier/prv_message.tpl create mode 100644 view/theme/vier/theme.php diff --git a/view/theme/vier/css/font-awesome-ie7.css b/view/theme/vier/css/font-awesome-ie7.css new file mode 100644 index 000000000..c1dc3ac6b --- /dev/null +++ b/view/theme/vier/css/font-awesome-ie7.css @@ -0,0 +1,645 @@ +[class^="icon-"], +[class*=" icon-"] { + font-family: FontAwesome; + font-style: normal; + font-weight: normal; +} +.btn.dropdown-toggle [class^="icon-"], +.btn.dropdown-toggle [class*=" icon-"] { + /* keeps button heights with and without icons the same */ + + line-height: 1.4em; +} +.icon-large { + font-size: 1.3333em; +} +.icon-glass { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-music { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-search { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-envelope { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-heart { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-star { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-star-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-user { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-film { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-th-large { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-th { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-th-list { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-ok { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-remove { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-zoom-in { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-zoom-out { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-off { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-signal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-cog { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-trash { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-home { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-file { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-time { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-road { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-download-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-download { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-upload { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-inbox { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-play-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-repeat { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-refresh { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-list-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-lock { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-flag { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-headphones { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-volume-off { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-volume-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-volume-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-qrcode { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-barcode { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-tag { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-tags { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-book { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bookmark { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-print { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-camera { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bold { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-italic { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-text-height { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-text-width { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-align-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-align-center { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-align-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-align-justify { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-list { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-indent-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-indent-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-facetime-video { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-picture { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-pencil { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-map-marker { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-adjust { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-tint { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-edit { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-share { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-check { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-move { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-step-backward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-fast-backward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-backward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-play { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-pause { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-stop { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-fast-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-step-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-eject { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-chevron-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-chevron-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-plus-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-minus-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-remove-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-ok-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-question-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-info-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-screenshot { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-remove-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-ok-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-ban-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-arrow-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-arrow-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-arrow-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-arrow-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-share-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-resize-full { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-resize-small { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-plus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-minus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-asterisk { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-exclamation-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-gift { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-leaf { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-fire { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-eye-open { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-eye-close { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-warning-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-plane { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-calendar { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-random { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-comment { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-magnet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-chevron-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-chevron-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-retweet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-shopping-cart { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-folder-close { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-folder-open { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-resize-vertical { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-resize-horizontal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bar-chart { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-twitter-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-facebook-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-camera-retro { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-key { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-cogs { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-comments { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-thumbs-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-thumbs-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-star-half { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-heart-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-signout { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-linkedin-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-pushpin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-external-link { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-signin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-trophy { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-github-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-upload-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-lemon { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-phone { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-check-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bookmark-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-phone-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-twitter { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-facebook { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-github { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-unlock { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-credit-card { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-rss { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-hdd { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bullhorn { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bell { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-certificate { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-hand-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-hand-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-hand-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-hand-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-circle-arrow-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-circle-arrow-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-circle-arrow-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-circle-arrow-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-globe { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-wrench { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-tasks { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-filter { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-briefcase { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-fullscreen { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-group { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-link { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-cloud { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-beaker { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-cut { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-copy { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-paper-clip { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-save { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-sign-blank { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-reorder { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-list-ul { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-list-ol { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-strikethrough { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-underline { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-table { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-magic { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-truck { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-pinterest { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-pinterest-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-google-plus-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-google-plus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-money { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-caret-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-caret-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-caret-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-caret-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-columns { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-sort { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-sort-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-sort-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-envelope-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-linkedin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-undo { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-legal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-dashboard { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-comment-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-comments-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-bolt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-sitemap { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-umbrella { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-paste { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} +.icon-user-md { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); +} diff --git a/view/theme/vier/css/font-awesome.css b/view/theme/vier/css/font-awesome.css new file mode 100644 index 000000000..4697599c7 --- /dev/null +++ b/view/theme/vier/css/font-awesome.css @@ -0,0 +1,303 @@ +/* Font Awesome + the iconic font designed for use with Twitter Bootstrap + ------------------------------------------------------- + The full suite of pictographic icons, examples, and documentation + can be found at: http://fortawesome.github.com/Font-Awesome/ + + License + ------------------------------------------------------- + The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0: + http://creativecommons.org/licenses/by/3.0/ A mention of + 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable + source code is considered acceptable attribution (most common on the web). + If human readable source code is not available to the end user, a mention in + an 'About' or 'Credits' screen is considered acceptable (most common in desktop + or mobile software). + + Contact + ------------------------------------------------------- + Email: dave@davegandy.com + Twitter: http://twitter.com/fortaweso_me + Work: http://lemonwi.se co-founder + + */ +@font-face { + font-family: "FontAwesome"; + src: url('../font/fontawesome-webfont.eot'); + src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg'); + font-weight: normal; + font-style: normal; +} + +/* Font Awesome styles + ------------------------------------------------------- */ +[class^="icon-"]:before, [class*=" icon-"]:before { + font-family: FontAwesome; + font-weight: normal; + font-style: normal; + display: inline-block; + text-decoration: inherit; +} +a [class^="icon-"], a [class*=" icon-"] { + display: inline-block; + text-decoration: inherit; +} +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: top; + font-size: 1.3333333333333333em; +} +.btn [class^="icon-"], .btn [class*=" icon-"] { + /* keeps button heights with and without icons the same */ + + line-height: .9em; +} +li [class^="icon-"], li [class*=" icon-"] { + display: inline-block; + width: 1.25em; + text-align: center; +} +li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] { + /* 1.5 increased font size for icon-large * 1.25 width */ + + width: 1.875em; +} +li[class^="icon-"], li[class*=" icon-"] { + margin-left: 0; + list-style-type: none; +} +li[class^="icon-"]:before, li[class*=" icon-"]:before { + text-indent: -2em; + text-align: center; +} +li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before { + text-indent: -1.3333333333333333em; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.icon-glass:before { content: "\f000"; } +.icon-music:before { content: "\f001"; } +.icon-search:before { content: "\f002"; } +.icon-envelope:before { content: "\f003"; } +.icon-heart:before { content: "\f004"; } +.icon-star:before { content: "\f005"; } +.icon-star-empty:before { content: "\f006"; } +.icon-user:before { content: "\f007"; } +.icon-film:before { content: "\f008"; } +.icon-th-large:before { content: "\f009"; } +.icon-th:before { content: "\f00a"; } +.icon-th-list:before { content: "\f00b"; } +.icon-ok:before { content: "\f00c"; } +.icon-remove:before { content: "\f00d"; } +.icon-zoom-in:before { content: "\f00e"; } + +.icon-zoom-out:before { content: "\f010"; } +.icon-off:before { content: "\f011"; } +.icon-signal:before { content: "\f012"; } +.icon-cog:before { content: "\f013"; } +.icon-trash:before { content: "\f014"; } +.icon-home:before { content: "\f015"; } +.icon-file:before { content: "\f016"; } +.icon-time:before { content: "\f017"; } +.icon-road:before { content: "\f018"; } +.icon-download-alt:before { content: "\f019"; } +.icon-download:before { content: "\f01a"; } +.icon-upload:before { content: "\f01b"; } +.icon-inbox:before { content: "\f01c"; } +.icon-play-circle:before { content: "\f01d"; } +.icon-repeat:before { content: "\f01e"; } + +/* \f020 doesn't work in Safari. all shifted one down */ +.icon-refresh:before { content: "\f021"; } +.icon-list-alt:before { content: "\f022"; } +.icon-lock:before { content: "\f023"; } +.icon-flag:before { content: "\f024"; } +.icon-headphones:before { content: "\f025"; } +.icon-volume-off:before { content: "\f026"; } +.icon-volume-down:before { content: "\f027"; } +.icon-volume-up:before { content: "\f028"; } +.icon-qrcode:before { content: "\f029"; } +.icon-barcode:before { content: "\f02a"; } +.icon-tag:before { content: "\f02b"; } +.icon-tags:before { content: "\f02c"; } +.icon-book:before { content: "\f02d"; } +.icon-bookmark:before { content: "\f02e"; } +.icon-print:before { content: "\f02f"; } + +.icon-camera:before { content: "\f030"; } +.icon-font:before { content: "\f031"; } +.icon-bold:before { content: "\f032"; } +.icon-italic:before { content: "\f033"; } +.icon-text-height:before { content: "\f034"; } +.icon-text-width:before { content: "\f035"; } +.icon-align-left:before { content: "\f036"; } +.icon-align-center:before { content: "\f037"; } +.icon-align-right:before { content: "\f038"; } +.icon-align-justify:before { content: "\f039"; } +.icon-list:before { content: "\f03a"; } +.icon-indent-left:before { content: "\f03b"; } +.icon-indent-right:before { content: "\f03c"; } +.icon-facetime-video:before { content: "\f03d"; } +.icon-picture:before { content: "\f03e"; } + +.icon-pencil:before { content: "\f040"; } +.icon-map-marker:before { content: "\f041"; } +.icon-adjust:before { content: "\f042"; } +.icon-tint:before { content: "\f043"; } +.icon-edit:before { content: "\f044"; } +.icon-share:before { content: "\f045"; } +.icon-check:before { content: "\f046"; } +.icon-move:before { content: "\f047"; } +.icon-step-backward:before { content: "\f048"; } +.icon-fast-backward:before { content: "\f049"; } +.icon-backward:before { content: "\f04a"; } +.icon-play:before { content: "\f04b"; } +.icon-pause:before { content: "\f04c"; } +.icon-stop:before { content: "\f04d"; } +.icon-forward:before { content: "\f04e"; } + +.icon-fast-forward:before { content: "\f050"; } +.icon-step-forward:before { content: "\f051"; } +.icon-eject:before { content: "\f052"; } +.icon-chevron-left:before { content: "\f053"; } +.icon-chevron-right:before { content: "\f054"; } +.icon-plus-sign:before { content: "\f055"; } +.icon-minus-sign:before { content: "\f056"; } +.icon-remove-sign:before { content: "\f057"; } +.icon-ok-sign:before { content: "\f058"; } +.icon-question-sign:before { content: "\f059"; } +.icon-info-sign:before { content: "\f05a"; } +.icon-screenshot:before { content: "\f05b"; } +.icon-remove-circle:before { content: "\f05c"; } +.icon-ok-circle:before { content: "\f05d"; } +.icon-ban-circle:before { content: "\f05e"; } + +.icon-arrow-left:before { content: "\f060"; } +.icon-arrow-right:before { content: "\f061"; } +.icon-arrow-up:before { content: "\f062"; } +.icon-arrow-down:before { content: "\f063"; } +.icon-share-alt:before { content: "\f064"; } +.icon-resize-full:before { content: "\f065"; } +.icon-resize-small:before { content: "\f066"; } +.icon-plus:before { content: "\f067"; } +.icon-minus:before { content: "\f068"; } +.icon-asterisk:before { content: "\f069"; } +.icon-exclamation-sign:before { content: "\f06a"; } +.icon-gift:before { content: "\f06b"; } +.icon-leaf:before { content: "\f06c"; } +.icon-fire:before { content: "\f06d"; } +.icon-eye-open:before { content: "\f06e"; } + +.icon-eye-close:before { content: "\f070"; } +.icon-warning-sign:before { content: "\f071"; } +.icon-plane:before { content: "\f072"; } +.icon-calendar:before { content: "\f073"; } +.icon-random:before { content: "\f074"; } +.icon-comment:before { content: "\f075"; } +.icon-magnet:before { content: "\f076"; } +.icon-chevron-up:before { content: "\f077"; } +.icon-chevron-down:before { content: "\f078"; } +.icon-retweet:before { content: "\f079"; } +.icon-shopping-cart:before { content: "\f07a"; } +.icon-folder-close:before { content: "\f07b"; } +.icon-folder-open:before { content: "\f07c"; } +.icon-resize-vertical:before { content: "\f07d"; } +.icon-resize-horizontal:before { content: "\f07e"; } + +.icon-bar-chart:before { content: "\f080"; } +.icon-twitter-sign:before { content: "\f081"; } +.icon-facebook-sign:before { content: "\f082"; } +.icon-camera-retro:before { content: "\f083"; } +.icon-key:before { content: "\f084"; } +.icon-cogs:before { content: "\f085"; } +.icon-comments:before { content: "\f086"; } +.icon-thumbs-up:before { content: "\f087"; } +.icon-thumbs-down:before { content: "\f088"; } +.icon-star-half:before { content: "\f089"; } +.icon-heart-empty:before { content: "\f08a"; } +.icon-signout:before { content: "\f08b"; } +.icon-linkedin-sign:before { content: "\f08c"; } +.icon-pushpin:before { content: "\f08d"; } +.icon-external-link:before { content: "\f08e"; } + +.icon-signin:before { content: "\f090"; } +.icon-trophy:before { content: "\f091"; } +.icon-github-sign:before { content: "\f092"; } +.icon-upload-alt:before { content: "\f093"; } +.icon-lemon:before { content: "\f094"; } +.icon-phone:before { content: "\f095"; } +.icon-check-empty:before { content: "\f096"; } +.icon-bookmark-empty:before { content: "\f097"; } +.icon-phone-sign:before { content: "\f098"; } +.icon-twitter:before { content: "\f099"; } +.icon-facebook:before { content: "\f09a"; } +.icon-github:before { content: "\f09b"; } +.icon-unlock:before { content: "\f09c"; } +.icon-credit-card:before { content: "\f09d"; } +.icon-rss:before { content: "\f09e"; } + +.icon-hdd:before { content: "\f0a0"; } +.icon-bullhorn:before { content: "\f0a1"; } +.icon-bell:before { content: "\f0a2"; } +.icon-certificate:before { content: "\f0a3"; } +.icon-hand-right:before { content: "\f0a4"; } +.icon-hand-left:before { content: "\f0a5"; } +.icon-hand-up:before { content: "\f0a6"; } +.icon-hand-down:before { content: "\f0a7"; } +.icon-circle-arrow-left:before { content: "\f0a8"; } +.icon-circle-arrow-right:before { content: "\f0a9"; } +.icon-circle-arrow-up:before { content: "\f0aa"; } +.icon-circle-arrow-down:before { content: "\f0ab"; } +.icon-globe:before { content: "\f0ac"; } +.icon-wrench:before { content: "\f0ad"; } +.icon-tasks:before { content: "\f0ae"; } + +.icon-filter:before { content: "\f0b0"; } +.icon-briefcase:before { content: "\f0b1"; } +.icon-fullscreen:before { content: "\f0b2"; } + +.icon-group:before { content: "\f0c0"; } +.icon-link:before { content: "\f0c1"; } +.icon-cloud:before { content: "\f0c2"; } +.icon-beaker:before { content: "\f0c3"; } +.icon-cut:before { content: "\f0c4"; } +.icon-copy:before { content: "\f0c5"; } +.icon-paper-clip:before { content: "\f0c6"; } +.icon-save:before { content: "\f0c7"; } +.icon-sign-blank:before { content: "\f0c8"; } +.icon-reorder:before { content: "\f0c9"; } +.icon-list-ul:before { content: "\f0ca"; } +.icon-list-ol:before { content: "\f0cb"; } +.icon-strikethrough:before { content: "\f0cc"; } +.icon-underline:before { content: "\f0cd"; } +.icon-table:before { content: "\f0ce"; } + +.icon-magic:before { content: "\f0d0"; } +.icon-truck:before { content: "\f0d1"; } +.icon-pinterest:before { content: "\f0d2"; } +.icon-pinterest-sign:before { content: "\f0d3"; } +.icon-google-plus-sign:before { content: "\f0d4"; } +.icon-google-plus:before { content: "\f0d5"; } +.icon-money:before { content: "\f0d6"; } +.icon-caret-down:before { content: "\f0d7"; } +.icon-caret-up:before { content: "\f0d8"; } +.icon-caret-left:before { content: "\f0d9"; } +.icon-caret-right:before { content: "\f0da"; } +.icon-columns:before { content: "\f0db"; } +.icon-sort:before { content: "\f0dc"; } +.icon-sort-down:before { content: "\f0dd"; } +.icon-sort-up:before { content: "\f0de"; } + +.icon-envelope-alt:before { content: "\f0e0"; } +.icon-linkedin:before { content: "\f0e1"; } +.icon-undo:before { content: "\f0e2"; } +.icon-legal:before { content: "\f0e3"; } +.icon-dashboard:before { content: "\f0e4"; } +.icon-comment-alt:before { content: "\f0e5"; } +.icon-comments-alt:before { content: "\f0e6"; } +.icon-bolt:before { content: "\f0e7"; } +.icon-sitemap:before { content: "\f0e8"; } +.icon-umbrella:before { content: "\f0e9"; } +.icon-paste:before { content: "\f0ea"; } + +.icon-user-md:before { content: "\f200"; } diff --git a/view/theme/vier/font/fontawesome-webfont.eot b/view/theme/vier/font/fontawesome-webfont.eot new file mode 100755 index 0000000000000000000000000000000000000000..89070c1e63c2703b2334023922ecc1664f759b55 GIT binary patch literal 38708 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/view/theme/vier/font/fontawesome-webfont.ttf b/view/theme/vier/font/fontawesome-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..c17e9f8d100d01a002029b5b93cc081062618bf3 GIT binary patch literal 68476 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 literal 0 HcmV?d00001 diff --git a/view/theme/vier/mail_list.tpl b/view/theme/vier/mail_list.tpl new file mode 100644 index 000000000..1d78db2fc --- /dev/null +++ b/view/theme/vier/mail_list.tpl @@ -0,0 +1,8 @@ +
+ $subject + $from_name + $date + $count + + +
diff --git a/view/theme/vier/prv_message.tpl b/view/theme/vier/prv_message.tpl new file mode 100644 index 000000000..23a64f4f6 --- /dev/null +++ b/view/theme/vier/prv_message.tpl @@ -0,0 +1,33 @@ + +

$header

+ +
+
+ +$parent + +
$to
+$select + +
$subject
+ + +
$yourmessage
+ + + +
+ +
+
+
+ +
+ +
+
+
+
+
diff --git a/view/theme/vier/search_item.tpl b/view/theme/vier/search_item.tpl index 65c5f64a3..851e2bc66 100644 --- a/view/theme/vier/search_item.tpl +++ b/view/theme/vier/search_item.tpl @@ -45,7 +45,7 @@
- {{ if $item.plink }}$item.plink.title{{ endif }} + {{ if $item.plink }}{{ endif }}
diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 16b2ecb58..b39422a4a 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -3,6 +3,9 @@ * Additional Changes: Michael Vogel **/ +/* @import "css/font-awesome.css"; */ +@import url("css/font-awesome.css") all; + /* ========= */ /* = Admin = */ /* ========= */ @@ -1058,6 +1061,22 @@ section { .wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { display: table-cell; vertical-align: middle; + /* font-size: 17px; */ +} +.mail-list-wrapper a, +.wall-item-container .wall-item-bottom a, +.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions a, +.wall-item-container .wall-item-links, .wall-item-container .wall-item-links a, +.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions .fakelink { + color: #999; +} +.mail-list-wrapper a:hover, +.wall-item-container .wall-item-bottom a:hover, +.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions a:hover, +.wall-item-container .wall-item-links, .wall-item-container .wall-item-links a:hover, +.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions .fakelink:hover { + color: #000; + text-decoration: none; } .wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { opacity: 0.5; @@ -1096,9 +1115,11 @@ section { } .wall-item-container .wall-item-actions-tools a { float: right; + margin-left: 10px; } .wall-item-container .wall-item-actions-tools input { float: right; + margin-left: 10px; } .wall-item-container.comment { margin-top: 5px; @@ -1827,6 +1848,10 @@ blockquote { #prof-separator { display: none;} */ +#prvmail-upload { + margin-left: 10px; +} + #prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { margin-bottom: 10px; margin-top: 20px; diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php new file mode 100644 index 000000000..7dd3797ef --- /dev/null +++ b/view/theme/vier/theme.php @@ -0,0 +1,9 @@ + + * Author: Ike + * Maintainer: Ike + */ + diff --git a/view/theme/vier/wall_thread.tpl b/view/theme/vier/wall_thread.tpl index 48e84d945..05fd005e7 100644 --- a/view/theme/vier/wall_thread.tpl +++ b/view/theme/vier/wall_thread.tpl @@ -84,43 +84,40 @@
-
$item.location
{{ if $item.threaded }}{{ if $item.comment }} - $item.switchcomment + {{ endif }}{{ endif }} + {{ if $item.vote }} + + + {{ endif }} + {{ if $item.vote.share }} + + {{ endif }} {{ if $item.star }} - $item.star.do - $item.star.undo - $item.star.tagger + + + {{ endif }} {{ if $item.filer }} - $item.filer - {{ endif }} - - {{ if $item.vote }} - $item.vote.like.1 - $item.vote.dislike.1 + {{ endif }} - - {{ if $item.vote.share }} - $item.vote.share.1 - {{ endif }}
- +
$item.location
{{ if $item.drop.pagedrop }} {{ endif }} {{ if $item.drop.dropping }} - $item.drop.delete + {{ endif }} {{ if $item.edpost }} - + {{ endif }}
From 09150cb5dcc75b71da5539c4f56f46cdbf99ba85 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Thu, 15 Nov 2012 23:54:13 +0000 Subject: [PATCH 15/30] Diabook - some heavy lifting. Lots more still to do. --- .../diabook/diabook-aerith/style-network.css | 2598 +--------------- .../diabook/diabook-aerith/style-profile.css | 2494 +-------------- view/theme/diabook/diabook-aerith/style.css | 2704 +---------------- 3 files changed, 280 insertions(+), 7516 deletions(-) diff --git a/view/theme/diabook/diabook-aerith/style-network.css b/view/theme/diabook/diabook-aerith/style-network.css index ef6e5cac1..edc387243 100644 --- a/view/theme/diabook/diabook-aerith/style-network.css +++ b/view/theme/diabook/diabook-aerith/style-network.css @@ -1,88 +1,6 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ - -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +@import url('../style-network.css'); +/* There seem to be a stupid number of icons. Can we do this better? Are they all actually used? */ .icon.contacts { background-image: url("../diabook-aerith/icons/contacts.png");} .icon.notifications { @@ -93,7 +11,6 @@ background-image: url("../diabook-aerith/icons/messages.png");} .icon.community { background-image: url("../diabook-aerith/icons/community.png");} - .icon.drop { background-image: url("../diabook-aerith/icons/drop.png");} .icon.drophide { background-image: url("../diabook-aerith/icons/drop.png");} .icon.dislike { background-image: url("../diabook-aerith/icons/dislike.png");} @@ -109,419 +26,87 @@ .icon.lock { background-image: url("../diabook-aerith/icons/lock.png");} .icon.unlock { background-image: url("../diabook-aerith/icons/unlock.png");} .icon.language { background-image: url("../diabook-aerith/icons/language.png");} - - -.camera { background-image: url("../diabook-aerith/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-aerith/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-aerith/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-aerith/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-aerith/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-aerith/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-aerith/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-aerith/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-aerith/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-aerith/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-aerith/icons/camera.png");} +.attach { background-image: url("../diabook-aerith/icons/attach.png");} +.video2 { background-image: url("../diabook-aerith/icons/video.png");} +.video { background-image: url("../diabook-aerith/icons/video.png");} +.audio2 { background-image: url("../diabook-aerith/icons/audio.png");} +.audio { background-image: url("../diabook-aerith/icons/audio.png");} +.weblink { background-image: url("../diabook-aerith/icons/weblink.png");} +.globe { background-image: url("../diabook-aerith/icons/globe.png");} +.unglobe { background-image: url("../diabook-aerith/icons/unglobe.png");} +.edit {background-image: url("../diabook-aerith/icons/pencil2.png");} .icon.on { background-image: url("../diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ - -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - +.attachtype {background-image: url('../../../../images/content-types.png');} .icon.border.camera{ - background-image: url("../diabook-aerith/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-aerith/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } + background-image: url("../diabook-aerith/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-aerith/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} +.hide-comments-outer {background-color: #fff;} -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 1px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - background-color: #fff; - padding: 8px; -} +a {color: #333333;} -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #3465A4; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} #saved-search-ul .tool:hover, #nets-sidebar .tool:hover, #sidebar-group-list .tool:hover , #fileas-sidebar .tool:hover { background: aliceBlue; } -.tool .label { - float: left; -} -.tool .action { - float: right; -} + .tool a { color: #3465A4; } -.tool a:hover { - text-decoration: none; -} + /* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ +div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #ff500f; background-color: #ff500f; - z-index: 100; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; @@ -539,47 +124,21 @@ background-image: -webkit-gradient( color-stop(0.82, rgb(255,255,255)) ); } -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; -} + +header #site-location {display: none;} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: black; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; - margin-left: 3px; } -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; background: #ff500f; color: #000; - z-index: 99; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; @@ -597,95 +156,7 @@ background-image: -webkit-gradient( color-stop(0.82, rgb(255,255,255)) ); } -nav a, -nav a:active, -nav a:visited, -nav a:link, -nav a:hover { - /*color: #1f1f1f;*/ - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; -} -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -696,93 +167,21 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { + nav .nav-notify { background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} -nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; -} + +nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;} nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-aerith/icons/messages.png"); - } + background-image: url("../diabook-aerith/icons/messages.png");} /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-aerith/icons/notify.png"); - } + background-image: url("../diabook-aerith/icons/notify.png");} nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-aerith/icons/contacts.png"); - } + background-image: url("../diabook-aerith/icons/contacts.png");} nav #nav-apps-link.selected { background-color: #fff; @@ -791,1327 +190,70 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #3465A4; /*bdcdd4;*/ + background-color: #3465A4; color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; - -} #profile_side a{ color: #333; } -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: aliceBlue; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../diabook-aerith/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../diabook-aerith/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../diabook-aerith/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../diabook-aerith/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../diabook-aerith/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../diabook-aerith/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../diabook-aerith/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; --moz-border-bottom-colors: #dbdbdb; - -moz-border-top-colors: #999; - -moz-border-left-colors: #999; - -moz-border-right-colors: #dbdbdb; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums ul li a{ - color: #3465A4; -} -.widget .tool.selected { - background: url("../diabook-aerith/icons/selected.png") no-repeat left center; -} -/* widget: search */ -span.sbox_l { - background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - -} +.menu-profile-list:hover{background: aliceBlue;} -span.sbox_r { - background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; -} +.menu-profile-icon.home{background: url("../diabook-aerith/icons/home.png") no-repeat;} +.menu-profile-icon.photos{background: url("../diabook-aerith/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{background: url("../diabook-aerith/icons/events.png") no-repeat;} +.menu-profile-icon.notes{background: url("../diabook-aerith/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{background: url("../diabook-aerith/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{background: url("../diabook-aerith/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{background: url("../diabook-aerith/icons/pscontacts.png") no-repeat;} -span.sbox input { - background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: auto; - padding: 0px 0px 0px 12px; -} +aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} +#side-bar-photos-albums li{list-style-type: disc;} +#side-bar-photos-albums ul li{margin-left: 30px; + padding-left: 0px;} +#side-bar-photos-albums ul li a{color: #3465A4;} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } -#birthday-wrapper a { - color: #3465A4; - } -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} +.widget .tool.selected {background: url("../diabook-aerith/icons/selected.png") no-repeat left center;} +span.sbox_l {background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left;} +span.sbox_r {background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left;} +span.sbox input {background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left;} +#birthday-wrapper a {color: #3465A4;} right_aside a{color: #3465A4;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} + .close_box { background-image: url("../diabook-aerith/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; - } -.close_box:hover { - background-image: url("../diabook-aerith/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; - } + cursor: pointer;} +.close_box:hover {background-image: url("../diabook-aerith/icons/close_box.png");} -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} -.tread-wrapper a{ - color: #3465A4; -} +.tread-wrapper a{color: #3465A4;} -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} +.wall-item-comment-wrapper {background-color: #fff; + width: 500px;} -.wall-item-container { - display: table; - width: 580px; -} +.button.creation2 {background-color: #3465A4;} +#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;} -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} +#acl-showall {background-image: url("../../../../images/show_all_off.png");} -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} +#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");} -.wall-item-container .wall-item-content { +.acl-button-show {background-image: url("../../../../images/show_off.png");} +.acl-button-hide {background-image: url("../../../../images/hide_off.png");} +.acl-button-show.selected {background-image: url("../../../../images/show_on.png");} +.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");} - max-width: 420px; - word-wrap: break-word; +ul.tabs li .active {background-color: #3465A4;} +.field .onoff a {background-image: url("../../../../images/onoff.jpg");} -} +.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");} -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} - -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; - background-color: #fff; - width: 500px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 1.6em ; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} -.button.creation2 { - background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -ul.tabs li .active { - background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; @@ -2119,498 +261,17 @@ border-radius: 10px; height: 145px !important; width: 145px !important; } + .lframe { float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} -/* page footer */ -footer { - height: 100px; - display: table-row; -} +.event-description:before {content: url('../../../../images/calendar.png');} -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ +.calendar.eventcal a {color: #3465A4;} -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.calendar.eventcal a { - color: #3465A4; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2618,40 +279,5 @@ list-style-type: disc; padding-left: 3px; background-color: #EEE; } -.photo-top-album-link{ - color: #3465A4; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} +.photo-top-album-link{color: #3465A4;} diff --git a/view/theme/diabook/diabook-aerith/style-profile.css b/view/theme/diabook/diabook-aerith/style-profile.css index 2b7d3df17..25e93c8b8 100644 --- a/view/theme/diabook/diabook-aerith/style-profile.css +++ b/view/theme/diabook/diabook-aerith/style-profile.css @@ -1,99 +1,10 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../style-profile.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ - -.icon.contacts { - background-image: url("../diabook-aerith/icons/contacts.png");} -.icon.notifications { - background-image: url("../diabook-aerith/icons/notifications.png");} -.icon.notify { - background-image: url("../diabook-aerith/icons/notify.png");} -.icon.messages { - background-image: url("../diabook-aerith/icons/messages.png");} -.icon.community { - background-image: url("../diabook-aerith/icons/community.png");} - + .icon.contacts {background-image: url("../diabook-aerith/icons/contacts.png");} +.icon.notifications {background-image: url("../diabook-aerith/icons/notifications.png");} +.icon.notify {background-image: url("../diabook-aerith/icons/notify.png");} +.icon.messages {background-image: url("../diabook-aerith/icons/messages.png");} +.icon.community {background-image: url("../diabook-aerith/icons/community.png");} .icon.drop { background-image: url("../diabook-aerith/icons/drop.png");} .icon.drophide { background-image: url("../diabook-aerith/icons/drop.png");} .icon.dislike { background-image: url("../diabook-aerith/icons/dislike.png");} @@ -109,419 +20,73 @@ .icon.lock { background-image: url("../diabook-aerith/icons/lock.png");} .icon.unlock { background-image: url("../diabook-aerith/icons/unlock.png");} .icon.language { background-image: url("../diabook-aerith/icons/language.png");} - - -.camera { background-image: url("../diabook-aerith/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-aerith/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-aerith/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-aerith/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-aerith/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-aerith/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-aerith/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-aerith/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-aerith/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-aerith/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-aerith/icons/camera.png");} +.attach { background-image: url("../diabook-aerith/icons/attach.png");} +.video2 { background-image: url("../diabook-aerith/icons/video.png");} +.video { background-image: url("../diabook-aerith/icons/video.png");} +.audio2 { background-image: url("../diabook-aerith/icons/audio.png");} +.audio { background-image: url("../diabook-aerith/icons/audio.png");} +.weblink { background-image: url("../diabook-aerith/icons/weblink.png");} +.globe { background-image: url("../diabook-aerith/icons/globe.png");} +.unglobe { background-image: url("../diabook-aerith/icons/unglobe.png");} +.edit {background-image: url("../diabook-aerith/icons/pencil2.png");} .icon.on { background-image: url("../diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ +.attachtype {background-image: url('../../../../images/content-types.png');} +.icon.border.camera{background-image: url("../diabook-aerith/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-aerith/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} +a {color: #333333;} -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } +#sidebar-group-list .tool:hover {background: #EEE;} -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../diabook-aerith/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-aerith/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - border-top: 1px solid #BDCDD4; - - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #3465A4; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover { - background: #EEE; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ + background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #ff500f; background-color: #ff500f; - z-index: 100; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; @@ -539,47 +104,18 @@ background-image: -webkit-gradient( color-stop(0.82, rgb(255,255,255)) ); } -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; -} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + font-weight: bolder;} + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; background: #ff500f; color: #1f1f1f; - z-index: 99; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; @@ -597,95 +133,23 @@ background-image: -webkit-gradient( color-stop(0.82, rgb(255,255,255)) ); } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { - color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} + color: #1f1f1f;} + nav #banner a, nav #banner a:active, nav #banner a:visited, nav #banner a:link, nav #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -696,81 +160,10 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; -} nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ background-image: url("../diabook-aerith/icons/messages.png"); @@ -783,7 +176,7 @@ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selecte nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ background-image: url("../diabook-aerith/icons/contacts.png"); } - + nav #nav-apps-link.selected { background-color: #fff; moz-border-radius: 5px 5px 0 0; @@ -791,169 +184,11 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #3465A4; /*bdcdd4;*/ + background-color: #3465A4; color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - padding-top: 3px; - padding-bottom: 3px; - padding-left: 16px; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #EEE; - } -.menu-profile-list-item{ - padding-left: 5px; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ .menu-profile-list.home{ background: url("../diabook-aerith/icons/home.png") no-repeat; } @@ -973,172 +208,10 @@ ul.menu-popup .empty { background: url("../diabook-aerith/icons/com_side.png") no-repeat; } -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} - -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 48px; - height: 48px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} + } + #side-bar-photos-albums li{ list-style-type: disc; } @@ -1149,780 +222,55 @@ list-style-type: disc; #side-bar-photos-albums ul li a{ color: #3465A4; } + .widget .tool.selected { background: url("../diabook-aerith/icons/selected.png") no-repeat left center; } -/* widget: search */ + span.sbox_l { background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - } span.sbox_r { background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; } span.sbox input { background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 611px; - padding: 0px 0px 0px 12px; } -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} - -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } #birthday-wrapper a { color: #3465A4; } -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - /*padding-right: 10px;*/ - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} right_aside a{color: #3465A4;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} + .close_box { background-image: url("../diabook-aerith/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; } .close_box:hover { background-image: url("../diabook-aerith/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} + + .tread-wrapper a{ color: #3465A4; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} -.wall-item-container { - display: table; - width: 580px; -} - - -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} - -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} - -.wall-item-container .wall-item-content { - - max-width: 420px; - word-wrap: break-word; - - -} - -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 1.6em ; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} .button.creation2 { - background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; - cursor: pointer; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} + background-color: #3465A4;} + #acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; + background: #ffffff url("../../../../images/search_18.png") no-repeat right center; } + #acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} + background-image: url("../../../../images/show_all_off.png");} + #acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} + background-image: url("../../../../images/show_all_on.png");} + .acl-button-show { background-image: url("../../../../images/show_off.png"); } @@ -1930,657 +278,37 @@ transition: all 0.2s ease-in-out; background-image: url("../../../../images/hide_off.png"); } .acl-button-show.selected { - color: #000000; - background-color: #9ade00; background-image: url("../../../../images/show_on.png"); } .acl-button-hide.selected { - color: #000000; - background-color: #ff4141; background-image: url("../../../../images/hide_on.png"); } -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + ul.tabs li .active { - background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} + background-color: #3465A4;} + .field .onoff a { - display: block; - border: 1px solid #666666; background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; } -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} .oauthapp img.noicon { background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ + } + .photo { box-shadow: 2px 2px 5px 0px #000000; -margin: 0px; -border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; -} +margin: 0px;} -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 48px; - height: 48px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} .event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} + content: url('../../../../images/calendar.png');} -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { color: #3465A4; } -.today { - font-weight: bold; - color: #FF0000; -} -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2591,37 +319,3 @@ list-style-type: disc; .photo-top-album-link{ color: #3465A4; } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - diff --git a/view/theme/diabook/diabook-aerith/style.css b/view/theme/diabook/diabook-aerith/style.css index 630b331e9..33a533da3 100644 --- a/view/theme/diabook/diabook-aerith/style.css +++ b/view/theme/diabook/diabook-aerith/style.css @@ -1,119 +1,22 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../style.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; - list-style: none; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +/* Why are these paths so long? They should probably become ../icons/ in the next revision */ .icon.bb-url{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png");} .icon.quote{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png");} .icon.bold{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png");} .icon.underline{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png");} .icon.italic{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png");} .icon.bb-image{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png");} .icon.bb-video{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png"); - float: right; - margin-top: 2px;} - -.icon.contacts { + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png");} + .icon.contacts { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");} .icon.notifications { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notifications.png");} @@ -139,446 +42,57 @@ .icon.lock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/lock.png");} .icon.unlock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unlock.png");} .icon.language { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/language.png");} - - -.camera { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} -.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat;} -.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;} -.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png"); - display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;} - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");} +.attach { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png");} +.video2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); } +.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");} +.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");} +.audio { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");} +.weblink { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");} +.globe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png");} +.unglobe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png");} +.edit {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png");} +.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");} .icon.on { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;} .icon.prev { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/prev.png"); background-repeat: no-repeat;} .icon.next { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/next.png"); background-repeat: no-repeat;} -/*.tagged { background-position: -130px -60px;}*/ +icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");} +.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");} +av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");} +.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");} +nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 684px; - border-bottom: 1px solid #BDCDD4; - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -#jappix_mini { -right: 45px !important; -} +.menu-profile-icon.home{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat;} +.menu-profile-icon.photos{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat;} +.menu-profile-icon.notes{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat;} -h4 { - font-size: 1.1em; -} -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} -.wall-item-name-link { -/* float: left;*/ -} +a {color: #333333;} -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} +#fileas-sidebar .tool:hover {background: aliceBlue;} -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #3465A4; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -.intro-end { - border-bottom: 1px solid black; - clear: both; - margin-bottom: 25px; - padding-bottom: 25px; - width: 75%; - } -.intro-form-end { - clear: both; - } -.intro-fullname { - padding-bottom: 5px; - padding-top: 5px; - } -.intro-wrapper-end { - clear: both; - padding-bottom: 5px; - } -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, -#fileas-sidebar .tool:hover { - background: aliceBlue; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ } -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} /* header */ header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #ff500f; background-color: #ff500f; - z-index: 100; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; @@ -587,7 +101,6 @@ background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,2 background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%); background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%); background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%); - background-image: -webkit-gradient( linear, left bottom, @@ -595,127 +108,30 @@ background-image: -webkit-gradient( color-stop(0.26, rgb(215,227,241)), color-stop(0.82, rgb(255,255,255)) ); -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: banner; - width: 82%; - margin-left: 25%; -} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; } + header #banner #logo-text { font-size: 20px!important;position: relative!important;top: -4px!important; } + /* messages */ #message-new { background: #3465A4; border: 1px solid #333; - width: 150px; -} -#message-new a { - color: #ffffff; - text-align: center; - display: block; - font-weight: bold; - padding: 1em 0px; - text-decoration: none; -} -.mail-list-wrapper { - background-color: #f6f7f8; - margin-bottom: 5px; - width: 100%; - height: auto; - overflow: hidden; -} -.mail-list-wrapper span { - display: block; - float: left; - width: 20%; - overflow: hidden; -} -.mail-list-wrapper .mail-subject { - width: 30%; - padding: 4px 0px 0px 4px; -} -.mail-list-wrapper .mail-subject a { - display: block; -} -.mail-list-wrapper .mail-subject.unseen a { - font-weight: bold; -} -.mail-list-wrapper .mail-date { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-from { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-count { - padding: 4px 4px 0px 4px; - text-align: right; -} -.mail-list-wrapper .mail-delete { - float: right; -} -#mail-display-subject { - background-color: #f6f7f8; - color: #2d2d2d; - margin-bottom: 10px; - width: 100%; - height: auto; - overflow: hidden; -} -#mail-display-subject span { - float: left; - overflow: hidden; - padding: 4px 0px 0px 10px; -} -#mail-display-subject .mail-delete { - float: right; - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -#mail-display-subject:hover .mail-delete { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; } + /* nav */ -nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #ff500f; +nav { background: #ff500f; color: #1f1f1f; - z-index: 99; - border-bottom: 1px; + border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%); @@ -732,95 +148,15 @@ background-image: -webkit-gradient( color-stop(0.82, rgb(255,255,255)) ); } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -831,94 +167,15 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; +background-color: #fff; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } + nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; +font-size: 14px; } -nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png"); - } - -/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png"); - } - -nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png"); - } - nav #nav-apps-link.selected { background-color: #fff; moz-border-radius: 5px 5px 0 0; @@ -926,285 +183,18 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} + background: #fff;} + ul.menu-popup a:hover { background-color: #3465A4; /*bdcdd4;*/ color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 425px !important; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } .menu-profile-list:hover{ background: aliceBlue; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 180px; - padding: 0px 10px 0px 20px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 173px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 173px; - } -aside #side-peoplefind-url { - width: 173px; - } -#contact-block { - overflow: auto; - height: auto; } + aside #likes a, a:visited, a:link { color: #3465A4; text-decoration: none; @@ -1215,41 +205,8 @@ aside #likes a:hover{ text-decoration: underline; } -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -#login-submit-wrapper{ - margin-bottom: 12px; - } -aside #login-submit-button{ - margin-left: 0px!important; - } -aside #login-extra-links{ - padding-top: 0px!important; - } + .group_selected { background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; float: left; @@ -1294,283 +251,24 @@ transition: all 0.2s ease-in-out; float: right; height: 10px; } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} + #side-bar-photos-albums ul li{ margin-left: 30px; padding-left: 0px; } #side-bar-photos-albums ul li a{ color: #3465A4; -} -.widget .tool.selected { - background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center; -} -/* widget: search */ -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 800px; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 775px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } +.widget .tool.selected { + background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center;} #birthday-wrapper a { color: #3465A4; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 775px; - padding-top: 10px; -} + .tread-wrapper a{ color: #3465A4; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 780px; -} -.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} -.wall-item-photo-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-photo-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-photo-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-photo-container .wall-item-content { - - max-width: 720px; - word-wrap: break-word; - - margin-bottom: 14px; -} -.wall-item-photo-container .wall-item-content img { - max-width: 700px; -} -.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-name { - font-weight: bold; -} -.wall-item-photo-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-photo-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-photo-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-tools a { - float: right; -} -.wall-item-photo-container .wall-item-actions-tools input { - float: right; -} -.wall-item-photo-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 40px; - width: 650px; - border-bottom: 1px solid #D2D2D2; -} -.wall-item-photo-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-photo-container { - display: table; - width: 780px; -} -.my-comment-photo { - width: 48px; - margin-left: 40px; - margin-right: 32px; - } -.comment-edit-preview { - width: 500px; - margin-top: 10px; -} -.comment-edit-text-empty { - width: 500px; - border: 1px solid #D2D2D2; - height: 3.2em; - color: #2d2d2d; -} -.comment-edit-text-full { - font-size: 12.5px; - height: 3.3em; - - border: 1px solid #D2D2D2; - width: 500px; -} -.comment-edit-photo { - margin: 10px 0 0; - display: table-cell; -} - .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { display: table-row; @@ -1685,1261 +383,41 @@ body .pageheader{ width: 700px; border-bottom: 1px solid hsl(198, 21%, 79%); } -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 1.6em ; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} + .comment-edit-preview { width: 500px; margin-top: 10px; background-color: #fff797; } -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 785px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 783px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title, #profile-jot-form #jot-category { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 785px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 785px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 785px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} .button.creation2 { background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; cursor: pointer; } -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + +/*ACL*/ + ul.tabs li .active { background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -//settings tabs -ul.rs_tabs { - list-style-type: none; - font-size: 11px; -} -ul.rs_tabs li { - float: left; - margin-bottom: 30px; - clear: both; -} + box-shadow: 2px 2px 2px #CFCFCF;} + ul.rs_tabs li .selected { - background-color: #3465A4; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - font-size: 13px; -} -.rs_tabs { - list-style-type: none; - font-size: 11px; - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.rs_tab.button { - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: bolder; - padding: 3px; - color: #333333; - text-decoration: none; - } -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -.suggest-select { -width: 500px; -height: 350px; - } -.message-to-select { - width: 400px; - height: 150px; - } -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} + background-color: #3465A4;} -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } +/*Photo */ -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { -position: relative; -width: 400px; -padding: 20px; -padding-top: 10px; -margin: 0 0px; -margin-bottom: 10px; -background-color: white; --webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); --moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -} -.vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-description { -margin-left: 10px; -margin-right: 10px; -font-size: 1.1em; -font-weight: bolder; -} -.vevent .event-start, .vevent .event-end { - -margin-right: 20px; -margin-bottom: 2px; -margin-top: 2px; -font-size: 0.9em; -text-align: left; -} -.event-start .dtstart, .event-end .dtend { -float: right; -} - - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url("../../../view/theme/diabook/icons/events2.png") !important; - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { color: #3465A4; - } -.today { - font-weight: bold; - color: #FF0000; } -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 10px; - } -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -section .directory-item dl { - height: auto; - overflow: auto; -} -section .directory-item dt { - float: left; - margin-left: 0px; - text-align: right; - color: #999; -} -section .directory-item dd { - float: left; - margin-left: 5px; -} -.directory-profile-wrapper { - float: left; - max-height: 178px; - overflow: hidden; - width: 635px; -} -.directory-copy-wrapper { - float: left; - overflow: hidden; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 800px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} - -section .directory-photo-wrapper { - float: left; - height: 200px; - width: 165px; -} -.contact-name { - font-weight: bold; - font-size: 18px; - margin-bottom: -3px; - text-align: left; -} -.contact-details { - color: #999999; -} -.page-type { - font-size: 10px; - font-style: italic; -} -.directory-detailscolumn-wrapper { - float: left; - width: 305px; - margin-right: 10px; -} -.directory-profile-wrapper dl { - margin-top: 3px; - margin-bottom: 3px; -} -.directory-profile-title { - font-weight: bold; - margin-bottom: 3px; - font-size: 14px; -} -#side-bar-photos-albums{ - margin-top: 15px; -} -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2949,38 +427,4 @@ section .directory-photo-wrapper { } .photo-top-album-link{ color: #3465A4; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - +} \ No newline at end of file From b19c83238189504148fbfb4f77c45ffc7229b764 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 16 Nov 2012 00:36:52 +0000 Subject: [PATCH 16/30] Diabook. Get the paths right. There seems to be something in the PHP putting us in unexpected directories...but it works now. --- view/theme/diabook/diabook-aerith/style-network.css | 2 +- view/theme/diabook/diabook-aerith/style-profile.css | 2 +- view/theme/diabook/diabook-aerith/style.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/view/theme/diabook/diabook-aerith/style-network.css b/view/theme/diabook/diabook-aerith/style-network.css index edc387243..5b78eb8cc 100644 --- a/view/theme/diabook/diabook-aerith/style-network.css +++ b/view/theme/diabook/diabook-aerith/style-network.css @@ -1,4 +1,4 @@ -@import url('../style-network.css'); +@import url('../../diabook/style-network.css'); /* There seem to be a stupid number of icons. Can we do this better? Are they all actually used? */ .icon.contacts { diff --git a/view/theme/diabook/diabook-aerith/style-profile.css b/view/theme/diabook/diabook-aerith/style-profile.css index 25e93c8b8..c6c1fecfa 100644 --- a/view/theme/diabook/diabook-aerith/style-profile.css +++ b/view/theme/diabook/diabook-aerith/style-profile.css @@ -1,4 +1,4 @@ -@import url('../style-profile.css'); +@import url('../../diabook/style-profile.css'); .icon.contacts {background-image: url("../diabook-aerith/icons/contacts.png");} .icon.notifications {background-image: url("../diabook-aerith/icons/notifications.png");} diff --git a/view/theme/diabook/diabook-aerith/style.css b/view/theme/diabook/diabook-aerith/style.css index 33a533da3..077c25930 100644 --- a/view/theme/diabook/diabook-aerith/style.css +++ b/view/theme/diabook/diabook-aerith/style.css @@ -1,4 +1,4 @@ -@import url('../style.css'); +@import url('../diabook/style.css'); /* Why are these paths so long? They should probably become ../icons/ in the next revision */ From bb862146982dab56fe28cadea6c4daff1bf9da6e Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 16 Nov 2012 01:44:09 +0000 Subject: [PATCH 17/30] Add the event/birthday thing from Andreas. --- view/theme/diabook/style-network.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/view/theme/diabook/style-network.css b/view/theme/diabook/style-network.css index 729893013..888b5b6c7 100644 --- a/view/theme/diabook/style-network.css +++ b/view/theme/diabook/style-network.css @@ -1211,7 +1211,11 @@ body .pageheader{ } #birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; + background-color: lightblue; + border: think solid black; + margin: 2px; + padding: 5px; + width: 95%; } right_aside { From da2aabd61deba28b04b707613fa5850b80f5d68a Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 16 Nov 2012 01:58:28 +0000 Subject: [PATCH 18/30] Diabook - couple of fixes. --- view/theme/diabook/diabook-aerith/style-network.css | 4 ++++ view/theme/diabook/diabook-aerith/style.css | 1 + 2 files changed, 5 insertions(+) diff --git a/view/theme/diabook/diabook-aerith/style-network.css b/view/theme/diabook/diabook-aerith/style-network.css index 5b78eb8cc..af5920364 100644 --- a/view/theme/diabook/diabook-aerith/style-network.css +++ b/view/theme/diabook/diabook-aerith/style-network.css @@ -99,6 +99,10 @@ a {color: #333333;} color: #3465A4; } +nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { +color: #000; +} + /* popup notifications */ div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} diff --git a/view/theme/diabook/diabook-aerith/style.css b/view/theme/diabook/diabook-aerith/style.css index 077c25930..3ca3fa104 100644 --- a/view/theme/diabook/diabook-aerith/style.css +++ b/view/theme/diabook/diabook-aerith/style.css @@ -108,6 +108,7 @@ background-image: -webkit-gradient( color-stop(0.26, rgb(215,227,241)), color-stop(0.82, rgb(255,255,255)) ); +} header #banner a, header #banner a:active, From c12a27c73c17fe194cdf5c83a52e3ae1a448a52e Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 16 Nov 2012 02:49:05 +0000 Subject: [PATCH 19/30] More diabook... --- view/theme/diabook/style-profile.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/view/theme/diabook/style-profile.css b/view/theme/diabook/style-profile.css index 927549fa3..b7d4da59c 100644 --- a/view/theme/diabook/style-profile.css +++ b/view/theme/diabook/style-profile.css @@ -1186,7 +1186,11 @@ body .pageheader{ } #birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; + background-color: lightblue; + border: think solid black; + margin: 2px; + padding: 5px; + width: 95%; } right_aside { From 94a16f23c43ff57b326d9ee2b8681d53d61badde Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 16 Nov 2012 09:58:00 +0100 Subject: [PATCH 20/30] DE: update to the strings --- view/de/messages.po | 636 ++++++++++++++++++++++---------------------- view/de/strings.php | 7 +- 2 files changed, 329 insertions(+), 314 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 0f0c64da7..f1c4fa7a0 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-11-08 10:00-0800\n" -"PO-Revision-Date: 2012-11-10 07:33+0000\n" +"POT-Creation-Date: 2012-11-14 10:00-0800\n" +"PO-Revision-Date: 2012-11-16 08:50+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren." #: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 #: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:132 ../../mod/photos.php:994 +#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995 #: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 #: ../../mod/notifications.php:66 ../../mod/contacts.php:146 #: ../../mod/settings.php:86 ../../mod/settings.php:525 @@ -67,7 +67,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren." #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 #: ../../mod/message.php:38 ../../mod/message.php:168 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 -#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9 #: ../../mod/display.php:165 ../../mod/profiles.php:7 #: ../../mod/profiles.php:424 ../../mod/delegate.php:6 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 @@ -75,7 +75,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren." #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 #: ../../addon/fbpost/fbpost.php:165 #: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3971 -#: ../../index.php:319 ../../addon.old/facebook/facebook.php:510 +#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510 #: ../../addon.old/facebook/facebook.php:516 #: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165 #: ../../addon.old/dav/friendica/layout.fnk.php:354 @@ -145,10 +145,10 @@ msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:455 ../../mod/photos.php:1027 -#: ../../mod/photos.php:1103 ../../mod/photos.php:1366 -#: ../../mod/photos.php:1406 ../../mod/photos.php:1450 -#: ../../mod/photos.php:1522 ../../mod/install.php:246 +#: ../../mod/events.php:455 ../../mod/photos.php:1028 +#: ../../mod/photos.php:1104 ../../mod/photos.php:1367 +#: ../../mod/photos.php:1407 ../../mod/photos.php:1451 +#: ../../mod/photos.php:1523 ../../mod/install.php:246 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 #: ../../mod/content.php:693 ../../mod/contacts.php:351 #: ../../mod/settings.php:543 ../../mod/settings.php:697 @@ -197,7 +197,7 @@ msgstr "Neues Foto von dieser URL" #: ../../view/theme/diabook/theme.php:599 #: ../../view/theme/diabook/config.php:152 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:559 ../../addon.old/fromgplus/fromgplus.php:40 +#: ../../object/Item.php:562 ../../addon.old/fromgplus/fromgplus.php:40 #: ../../addon.old/facebook/facebook.php:619 #: ../../addon.old/snautofollow/snautofollow.php:64 #: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226 @@ -246,20 +246,20 @@ msgstr "Neues Foto von dieser URL" msgid "Submit" msgstr "Senden" -#: ../../mod/help.php:30 +#: ../../mod/help.php:79 msgid "Help:" msgstr "Hilfe:" -#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225 #: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225 msgid "Help" msgstr "Hilfe" -#: ../../mod/help.php:38 ../../index.php:228 +#: ../../mod/help.php:90 ../../index.php:218 msgid "Not Found" msgstr "Nicht gefunden" -#: ../../mod/help.php:41 ../../index.php:231 +#: ../../mod/help.php:93 ../../index.php:221 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -297,12 +297,12 @@ msgstr "l, F j" msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:323 ../../include/text.php:1185 +#: ../../mod/events.php:323 ../../include/text.php:1192 msgid "link to source" msgstr "Link zum Originalbeitrag" #: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90 -#: ../../include/nav.php:52 ../../boot.php:1711 +#: ../../include/nav.php:52 ../../boot.php:1745 msgid "Events" msgstr "Veranstaltungen" @@ -360,7 +360,7 @@ msgstr "Beschreibung" #: ../../mod/events.php:448 ../../mod/directory.php:134 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412 -#: ../../boot.php:1241 +#: ../../boot.php:1275 msgid "Location:" msgstr "Ort:" @@ -375,7 +375,7 @@ msgstr "Veranstaltung teilen" #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:142 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 -#: ../../include/conversation.php:1001 +#: ../../include/conversation.php:1005 #: ../../addon.old/js_upload/js_upload.php:45 msgid "Cancel" msgstr "Abbrechen" @@ -445,33 +445,33 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: ../../mod/photos.php:50 ../../boot.php:1704 +#: ../../mod/photos.php:51 ../../boot.php:1738 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../mod/photos.php:58 ../../mod/photos.php:153 ../../mod/photos.php:1008 -#: ../../mod/photos.php:1095 ../../mod/photos.php:1110 -#: ../../mod/photos.php:1565 ../../mod/photos.php:1577 +#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1096 ../../mod/photos.php:1111 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1578 #: ../../addon/communityhome/communityhome.php:110 #: ../../view/theme/diabook/theme.php:485 #: ../../addon.old/communityhome/communityhome.php:110 msgid "Contact Photos" msgstr "Kontaktbilder" -#: ../../mod/photos.php:65 ../../mod/photos.php:1126 ../../mod/photos.php:1615 +#: ../../mod/photos.php:66 ../../mod/photos.php:1127 ../../mod/photos.php:1616 msgid "Upload New Photos" msgstr "Weitere Fotos hochladen" -#: ../../mod/photos.php:78 ../../mod/settings.php:23 +#: ../../mod/photos.php:79 ../../mod/settings.php:23 msgid "everybody" msgstr "jeder" -#: ../../mod/photos.php:142 +#: ../../mod/photos.php:143 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: ../../mod/photos.php:153 ../../mod/photos.php:675 ../../mod/photos.php:1095 -#: ../../mod/photos.php:1110 ../../mod/profile_photo.php:74 +#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1096 +#: ../../mod/photos.php:1111 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 #: ../../mod/profile_photo.php:305 @@ -482,221 +482,221 @@ msgstr "Kontaktinformationen nicht verfügbar" msgid "Profile Photos" msgstr "Profilbilder" -#: ../../mod/photos.php:163 +#: ../../mod/photos.php:164 msgid "Album not found." msgstr "Album nicht gefunden." -#: ../../mod/photos.php:181 ../../mod/photos.php:1104 +#: ../../mod/photos.php:182 ../../mod/photos.php:1105 msgid "Delete Album" msgstr "Album löschen" -#: ../../mod/photos.php:244 ../../mod/photos.php:1367 +#: ../../mod/photos.php:245 ../../mod/photos.php:1368 msgid "Delete Photo" msgstr "Foto löschen" -#: ../../mod/photos.php:606 +#: ../../mod/photos.php:607 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: ../../mod/photos.php:606 +#: ../../mod/photos.php:607 msgid "a photo" msgstr "einem Foto" -#: ../../mod/photos.php:711 ../../addon/js_upload/js_upload.php:315 +#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:315 #: ../../addon.old/js_upload/js_upload.php:315 msgid "Image exceeds size limit of " msgstr "Die Bildgröße übersteigt das Limit von " -#: ../../mod/photos.php:719 +#: ../../mod/photos.php:720 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: ../../mod/photos.php:751 ../../mod/profile_photo.php:153 -#: ../../mod/wall_upload.php:110 +#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:112 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: ../../mod/photos.php:778 ../../mod/profile_photo.php:301 -#: ../../mod/wall_upload.php:136 +#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:138 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." -#: ../../mod/photos.php:864 ../../mod/community.php:18 +#: ../../mod/photos.php:865 ../../mod/community.php:18 #: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 #: ../../mod/display.php:7 ../../mod/search.php:86 ../../mod/directory.php:31 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." -#: ../../mod/photos.php:874 +#: ../../mod/photos.php:875 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: ../../mod/photos.php:975 +#: ../../mod/photos.php:976 msgid "Access to this item is restricted." msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: ../../mod/photos.php:1037 +#: ../../mod/photos.php:1038 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." -#: ../../mod/photos.php:1040 +#: ../../mod/photos.php:1041 #, php-format msgid "You have used %1$.2f Mbytes of photo storage." msgstr "Du verwendest %1$.2f Mbyte des Foto-Speichers." -#: ../../mod/photos.php:1046 +#: ../../mod/photos.php:1047 msgid "Upload Photos" msgstr "Bilder hochladen" -#: ../../mod/photos.php:1050 ../../mod/photos.php:1099 +#: ../../mod/photos.php:1051 ../../mod/photos.php:1100 msgid "New album name: " msgstr "Name des neuen Albums: " -#: ../../mod/photos.php:1051 +#: ../../mod/photos.php:1052 msgid "or existing album name: " msgstr "oder existierender Albumname: " -#: ../../mod/photos.php:1052 +#: ../../mod/photos.php:1053 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: ../../mod/photos.php:1054 ../../mod/photos.php:1362 +#: ../../mod/photos.php:1055 ../../mod/photos.php:1363 msgid "Permissions" msgstr "Berechtigungen" -#: ../../mod/photos.php:1114 +#: ../../mod/photos.php:1115 msgid "Edit Album" msgstr "Album bearbeiten" -#: ../../mod/photos.php:1120 +#: ../../mod/photos.php:1121 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: ../../mod/photos.php:1122 +#: ../../mod/photos.php:1123 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: ../../mod/photos.php:1146 ../../mod/photos.php:1598 +#: ../../mod/photos.php:1147 ../../mod/photos.php:1599 msgid "View Photo" msgstr "Fotos betrachten" -#: ../../mod/photos.php:1181 +#: ../../mod/photos.php:1182 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: ../../mod/photos.php:1183 +#: ../../mod/photos.php:1184 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: ../../mod/photos.php:1239 +#: ../../mod/photos.php:1240 msgid "View photo" msgstr "Fotos ansehen" -#: ../../mod/photos.php:1239 +#: ../../mod/photos.php:1240 msgid "Edit photo" msgstr "Foto bearbeiten" -#: ../../mod/photos.php:1240 +#: ../../mod/photos.php:1241 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: ../../mod/photos.php:1246 ../../mod/content.php:603 -#: ../../object/Item.php:103 +#: ../../mod/photos.php:1247 ../../mod/content.php:603 +#: ../../object/Item.php:104 msgid "Private Message" msgstr "Private Nachricht" -#: ../../mod/photos.php:1265 +#: ../../mod/photos.php:1266 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: ../../mod/photos.php:1339 +#: ../../mod/photos.php:1340 msgid "Tags: " msgstr "Tags: " -#: ../../mod/photos.php:1342 +#: ../../mod/photos.php:1343 msgid "[Remove any tag]" msgstr "[Tag entfernen]" -#: ../../mod/photos.php:1352 +#: ../../mod/photos.php:1353 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: ../../mod/photos.php:1353 +#: ../../mod/photos.php:1354 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: ../../mod/photos.php:1355 +#: ../../mod/photos.php:1356 msgid "New album name" msgstr "Name des neuen Albums" -#: ../../mod/photos.php:1358 +#: ../../mod/photos.php:1359 msgid "Caption" msgstr "Bildunterschrift" -#: ../../mod/photos.php:1360 +#: ../../mod/photos.php:1361 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: ../../mod/photos.php:1364 +#: ../../mod/photos.php:1365 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1384 ../../mod/content.php:667 -#: ../../object/Item.php:196 +#: ../../mod/photos.php:1385 ../../mod/content.php:667 +#: ../../object/Item.php:197 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: ../../mod/photos.php:1385 ../../mod/content.php:668 -#: ../../object/Item.php:197 +#: ../../mod/photos.php:1386 ../../mod/content.php:668 +#: ../../object/Item.php:198 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: ../../mod/photos.php:1386 ../../include/conversation.php:962 +#: ../../mod/photos.php:1387 ../../include/conversation.php:966 msgid "Share" msgstr "Teilen" -#: ../../mod/photos.php:1387 ../../mod/editpost.php:118 -#: ../../mod/content.php:482 ../../mod/content.php:846 +#: ../../mod/photos.php:1388 ../../mod/editpost.php:118 +#: ../../mod/content.php:482 ../../mod/content.php:848 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293 #: ../../mod/message.php:481 ../../include/conversation.php:624 -#: ../../include/conversation.php:981 ../../object/Item.php:258 +#: ../../include/conversation.php:985 ../../object/Item.php:261 msgid "Please wait" msgstr "Bitte warten" -#: ../../mod/photos.php:1403 ../../mod/photos.php:1447 -#: ../../mod/photos.php:1519 ../../mod/content.php:690 -#: ../../object/Item.php:556 +#: ../../mod/photos.php:1404 ../../mod/photos.php:1448 +#: ../../mod/photos.php:1520 ../../mod/content.php:690 +#: ../../object/Item.php:559 msgid "This is you" msgstr "Das bist du" -#: ../../mod/photos.php:1405 ../../mod/photos.php:1449 -#: ../../mod/photos.php:1521 ../../mod/content.php:692 ../../boot.php:589 -#: ../../object/Item.php:558 +#: ../../mod/photos.php:1406 ../../mod/photos.php:1450 +#: ../../mod/photos.php:1522 ../../mod/content.php:692 ../../boot.php:605 +#: ../../object/Item.php:561 msgid "Comment" msgstr "Kommentar" -#: ../../mod/photos.php:1407 ../../mod/photos.php:1451 -#: ../../mod/photos.php:1523 ../../mod/editpost.php:139 -#: ../../mod/content.php:702 ../../include/conversation.php:999 -#: ../../object/Item.php:568 +#: ../../mod/photos.php:1408 ../../mod/photos.php:1452 +#: ../../mod/photos.php:1524 ../../mod/editpost.php:139 +#: ../../mod/content.php:702 ../../include/conversation.php:1003 +#: ../../object/Item.php:571 msgid "Preview" msgstr "Vorschau" -#: ../../mod/photos.php:1491 ../../mod/content.php:439 +#: ../../mod/photos.php:1492 ../../mod/content.php:439 #: ../../mod/content.php:724 ../../mod/settings.php:606 #: ../../mod/group.php:168 ../../mod/admin.php:696 -#: ../../include/conversation.php:569 ../../object/Item.php:117 +#: ../../include/conversation.php:569 ../../object/Item.php:118 msgid "Delete" msgstr "Löschen" -#: ../../mod/photos.php:1604 +#: ../../mod/photos.php:1605 msgid "View Album" msgstr "Album betrachten" -#: ../../mod/photos.php:1613 +#: ../../mod/photos.php:1614 msgid "Recent Photos" msgstr "Neueste Fotos" @@ -754,96 +754,96 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: ../../mod/editpost.php:88 ../../include/conversation.php:948 +#: ../../mod/editpost.php:88 ../../include/conversation.php:952 msgid "Post to Email" msgstr "An E-Mail senden" #: ../../mod/editpost.php:103 ../../mod/content.php:711 -#: ../../mod/settings.php:605 ../../object/Item.php:107 +#: ../../mod/settings.php:605 ../../object/Item.php:108 msgid "Edit" msgstr "Bearbeiten" #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/message.php:291 ../../mod/message.php:478 -#: ../../include/conversation.php:963 +#: ../../include/conversation.php:967 msgid "Upload photo" msgstr "Foto hochladen" -#: ../../mod/editpost.php:105 ../../include/conversation.php:964 +#: ../../mod/editpost.php:105 ../../include/conversation.php:968 msgid "upload photo" msgstr "Bild hochladen" -#: ../../mod/editpost.php:106 ../../include/conversation.php:965 +#: ../../mod/editpost.php:106 ../../include/conversation.php:969 msgid "Attach file" msgstr "Datei anhängen" -#: ../../mod/editpost.php:107 ../../include/conversation.php:966 +#: ../../mod/editpost.php:107 ../../include/conversation.php:970 msgid "attach file" msgstr "Datei anhängen" #: ../../mod/editpost.php:108 ../../mod/wallmessage.php:151 #: ../../mod/message.php:292 ../../mod/message.php:479 -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:971 msgid "Insert web link" msgstr "einen Link einfügen" -#: ../../mod/editpost.php:109 ../../include/conversation.php:968 +#: ../../mod/editpost.php:109 ../../include/conversation.php:972 msgid "web link" msgstr "Weblink" -#: ../../mod/editpost.php:110 ../../include/conversation.php:969 +#: ../../mod/editpost.php:110 ../../include/conversation.php:973 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: ../../mod/editpost.php:111 ../../include/conversation.php:970 +#: ../../mod/editpost.php:111 ../../include/conversation.php:974 msgid "video link" msgstr "Video-Link" -#: ../../mod/editpost.php:112 ../../include/conversation.php:971 +#: ../../mod/editpost.php:112 ../../include/conversation.php:975 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: ../../mod/editpost.php:113 ../../include/conversation.php:972 +#: ../../mod/editpost.php:113 ../../include/conversation.php:976 msgid "audio link" msgstr "Audio-Link" -#: ../../mod/editpost.php:114 ../../include/conversation.php:973 +#: ../../mod/editpost.php:114 ../../include/conversation.php:977 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: ../../mod/editpost.php:115 ../../include/conversation.php:974 +#: ../../mod/editpost.php:115 ../../include/conversation.php:978 msgid "set location" msgstr "Ort setzen" -#: ../../mod/editpost.php:116 ../../include/conversation.php:975 +#: ../../mod/editpost.php:116 ../../include/conversation.php:979 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: ../../mod/editpost.php:117 ../../include/conversation.php:976 +#: ../../mod/editpost.php:117 ../../include/conversation.php:980 msgid "clear location" msgstr "Ort löschen" -#: ../../mod/editpost.php:119 ../../include/conversation.php:982 +#: ../../mod/editpost.php:119 ../../include/conversation.php:986 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: ../../mod/editpost.php:127 ../../include/conversation.php:991 +#: ../../mod/editpost.php:127 ../../include/conversation.php:995 msgid "CC: email addresses" msgstr "Cc:-E-Mail-Addressen" -#: ../../mod/editpost.php:128 ../../include/conversation.php:992 +#: ../../mod/editpost.php:128 ../../include/conversation.php:996 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: ../../mod/editpost.php:131 ../../include/conversation.php:978 +#: ../../mod/editpost.php:131 ../../include/conversation.php:982 msgid "Set title" msgstr "Titel setzen" -#: ../../mod/editpost.php:133 ../../include/conversation.php:980 +#: ../../mod/editpost.php:133 ../../include/conversation.php:984 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: ../../mod/editpost.php:134 ../../include/conversation.php:994 +#: ../../mod/editpost.php:134 ../../include/conversation.php:998 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -1036,36 +1036,35 @@ msgstr "Adresse deines Profils:" msgid "Submit Request" msgstr "Anfrage abschicken" -#: ../../mod/uexport.php:10 ../../mod/settings.php:30 -#: ../../include/nav.php:137 +#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:137 msgid "Account settings" msgstr "Kontoeinstellungen" -#: ../../mod/uexport.php:15 ../../mod/settings.php:35 +#: ../../mod/uexport.php:14 ../../mod/settings.php:35 msgid "Display settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/uexport.php:21 ../../mod/settings.php:41 +#: ../../mod/uexport.php:20 ../../mod/settings.php:41 msgid "Connector settings" msgstr "Connector-Einstellungen" -#: ../../mod/uexport.php:26 ../../mod/settings.php:46 +#: ../../mod/uexport.php:25 ../../mod/settings.php:46 msgid "Plugin settings" msgstr "Plugin-Einstellungen" -#: ../../mod/uexport.php:31 ../../mod/settings.php:51 +#: ../../mod/uexport.php:30 ../../mod/settings.php:51 msgid "Connected apps" msgstr "Verbundene Programme" -#: ../../mod/uexport.php:36 ../../mod/uexport.php:81 ../../mod/settings.php:56 +#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:56 msgid "Export personal data" msgstr "Persönliche Daten exportieren" -#: ../../mod/uexport.php:41 ../../mod/settings.php:61 +#: ../../mod/uexport.php:40 ../../mod/settings.php:61 msgid "Remove account" msgstr "Konto löschen" -#: ../../mod/uexport.php:49 ../../mod/settings.php:69 +#: ../../mod/uexport.php:48 ../../mod/settings.php:69 #: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990 #: ../../addon/dav/friendica/layout.fnk.php:225 #: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:614 @@ -1074,21 +1073,21 @@ msgstr "Konto löschen" msgid "Settings" msgstr "Einstellungen" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:72 msgid "Export account" msgstr "Account exportieren" -#: ../../mod/uexport.php:73 +#: ../../mod/uexport.php:72 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen." -#: ../../mod/uexport.php:74 +#: ../../mod/uexport.php:73 msgid "Export all" msgstr "Alles exportieren" -#: ../../mod/uexport.php:74 +#: ../../mod/uexport.php:73 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " @@ -1416,7 +1415,7 @@ msgid "is interested in:" msgstr "ist interessiert an:" #: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1179 +#: ../../include/contact_widgets.php:9 ../../boot.php:1213 msgid "Connect" msgstr "Verbinden" @@ -1446,19 +1445,19 @@ msgid "Group: " msgstr "Gruppe: " #: ../../mod/content.php:438 ../../mod/content.php:723 -#: ../../include/conversation.php:568 ../../object/Item.php:116 +#: ../../include/conversation.php:568 ../../object/Item.php:117 msgid "Select" msgstr "Auswählen" -#: ../../mod/content.php:455 ../../mod/content.php:816 -#: ../../mod/content.php:817 ../../include/conversation.php:587 -#: ../../object/Item.php:227 ../../object/Item.php:228 +#: ../../mod/content.php:455 ../../mod/content.php:817 +#: ../../mod/content.php:818 ../../include/conversation.php:587 +#: ../../object/Item.php:229 ../../object/Item.php:230 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: ../../mod/content.php:465 ../../mod/content.php:828 -#: ../../include/conversation.php:607 ../../object/Item.php:240 +#: ../../mod/content.php:465 ../../mod/content.php:829 +#: ../../include/conversation.php:607 ../../object/Item.php:242 #, php-format msgid "%s from %s" msgstr "%s von %s" @@ -1467,15 +1466,15 @@ msgstr "%s von %s" msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: ../../mod/content.php:586 ../../object/Item.php:277 +#: ../../mod/content.php:586 ../../object/Item.php:280 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../mod/content.php:588 ../../include/text.php:1441 -#: ../../object/Item.php:279 ../../object/Item.php:292 +#: ../../mod/content.php:588 ../../include/text.php:1448 +#: ../../object/Item.php:282 ../../object/Item.php:295 msgid "comment" msgid_plural "comments" msgstr[0] "" @@ -1483,93 +1482,93 @@ msgstr[1] "Kommentar" #: ../../mod/content.php:589 ../../addon/page/page.php:77 #: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:195 ../../boot.php:590 -#: ../../object/Item.php:280 ../../addon.old/page/page.php:77 +#: ../../include/contact_widgets.php:195 ../../boot.php:606 +#: ../../object/Item.php:283 ../../addon.old/page/page.php:77 #: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119 msgid "show more" msgstr "mehr anzeigen" -#: ../../mod/content.php:667 ../../object/Item.php:196 +#: ../../mod/content.php:667 ../../object/Item.php:197 msgid "like" msgstr "mag ich" -#: ../../mod/content.php:668 ../../object/Item.php:197 +#: ../../mod/content.php:668 ../../object/Item.php:198 msgid "dislike" msgstr "mag ich nicht" -#: ../../mod/content.php:670 ../../object/Item.php:199 +#: ../../mod/content.php:670 ../../object/Item.php:200 msgid "Share this" msgstr "Weitersagen" -#: ../../mod/content.php:670 ../../object/Item.php:199 +#: ../../mod/content.php:670 ../../object/Item.php:200 msgid "share" msgstr "Teilen" -#: ../../mod/content.php:694 ../../object/Item.php:560 +#: ../../mod/content.php:694 ../../object/Item.php:563 msgid "Bold" msgstr "Fett" -#: ../../mod/content.php:695 ../../object/Item.php:561 +#: ../../mod/content.php:695 ../../object/Item.php:564 msgid "Italic" msgstr "Kursiv" -#: ../../mod/content.php:696 ../../object/Item.php:562 +#: ../../mod/content.php:696 ../../object/Item.php:565 msgid "Underline" msgstr "Unterstrichen" -#: ../../mod/content.php:697 ../../object/Item.php:563 +#: ../../mod/content.php:697 ../../object/Item.php:566 msgid "Quote" msgstr "Zitat" -#: ../../mod/content.php:698 ../../object/Item.php:564 +#: ../../mod/content.php:698 ../../object/Item.php:567 msgid "Code" msgstr "Code" -#: ../../mod/content.php:699 ../../object/Item.php:565 +#: ../../mod/content.php:699 ../../object/Item.php:568 msgid "Image" msgstr "Bild" -#: ../../mod/content.php:700 ../../object/Item.php:566 +#: ../../mod/content.php:700 ../../object/Item.php:569 msgid "Link" msgstr "Verweis" -#: ../../mod/content.php:701 ../../object/Item.php:567 +#: ../../mod/content.php:701 ../../object/Item.php:570 msgid "Video" msgstr "Video" -#: ../../mod/content.php:736 ../../object/Item.php:180 +#: ../../mod/content.php:736 ../../object/Item.php:181 msgid "add star" msgstr "markieren" -#: ../../mod/content.php:737 ../../object/Item.php:181 +#: ../../mod/content.php:737 ../../object/Item.php:182 msgid "remove star" msgstr "Markierung entfernen" -#: ../../mod/content.php:738 ../../object/Item.php:182 +#: ../../mod/content.php:738 ../../object/Item.php:183 msgid "toggle star status" msgstr "Markierung umschalten" -#: ../../mod/content.php:741 ../../object/Item.php:185 +#: ../../mod/content.php:741 ../../object/Item.php:186 msgid "starred" msgstr "markiert" -#: ../../mod/content.php:742 ../../object/Item.php:186 +#: ../../mod/content.php:742 ../../object/Item.php:187 msgid "add tag" msgstr "Tag hinzufügen" -#: ../../mod/content.php:746 ../../object/Item.php:120 +#: ../../mod/content.php:746 ../../object/Item.php:121 msgid "save to folder" msgstr "In Ordner speichern" -#: ../../mod/content.php:818 ../../object/Item.php:229 +#: ../../mod/content.php:819 ../../object/Item.php:231 msgid "to" msgstr "zu" -#: ../../mod/content.php:819 ../../object/Item.php:230 +#: ../../mod/content.php:820 ../../object/Item.php:232 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../mod/content.php:820 ../../object/Item.php:231 +#: ../../mod/content.php:821 ../../object/Item.php:233 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" @@ -2089,7 +2088,7 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 #: ../../addon/public_server/public_server.php:62 #: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3359 -#: ../../boot.php:803 ../../addon.old/facebook/facebook.php:702 +#: ../../boot.php:821 ../../addon.old/facebook/facebook.php:702 #: ../../addon.old/facebook/facebook.php:1200 #: ../../addon.old/fbpost/fbpost.php:661 #: ../../addon.old/public_server/public_server.php:62 @@ -2103,7 +2102,7 @@ msgid "" "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: ../../mod/lostpass.php:83 ../../boot.php:940 +#: ../../mod/lostpass.php:83 ../../boot.php:960 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -2757,7 +2756,7 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: ../../mod/notes.php:44 ../../boot.php:1718 +#: ../../mod/notes.php:44 ../../boot.php:1752 msgid "Personal Notes" msgstr "Persönliche Notizen" @@ -2766,7 +2765,7 @@ msgstr "Persönliche Notizen" #: ../../addon/privacy_image_cache/privacy_image_cache.php:263 #: ../../addon/fbpost/fbpost.php:267 #: ../../addon/dav/friendica/layout.fnk.php:441 -#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688 #: ../../addon.old/facebook/facebook.php:770 #: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263 #: ../../addon.old/fbpost/fbpost.php:267 @@ -2775,26 +2774,32 @@ msgstr "Persönliche Notizen" msgid "Save" msgstr "Speichern" -#: ../../mod/uimport.php:41 +#: ../../mod/uimport.php:50 ../../mod/register.php:190 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: ../../mod/uimport.php:64 msgid "Import" msgstr "Import" -#: ../../mod/uimport.php:43 +#: ../../mod/uimport.php:66 msgid "Move account" msgstr "Account umziehen" -#: ../../mod/uimport.php:44 +#: ../../mod/uimport.php:67 msgid "" -"You can move here an account from another Friendica server.
\r\n" -" You need to export your account form the old server and upload it here. We will create here your old account with all your contacts. We will try also to inform you friends that you moved here.
\r\n" -" This feature is experimental. We can't move here contacts from ostatus network (statusnet/identi.ca) or from diaspora" +"You can import an account from another Friendica server.
\r\n" +" You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n" +" This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora" msgstr "Du kannst deinen Account auf einen anderen Friendica Server umziehen.
Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.
Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden." -#: ../../mod/uimport.php:47 +#: ../../mod/uimport.php:70 msgid "Account file" msgstr "Account Datei" -#: ../../mod/uimport.php:47 +#: ../../mod/uimport.php:70 msgid "" "To export your accont, go to \"Settings->Export your porsonal data\" and " "select \"Export account\"" @@ -2831,7 +2836,7 @@ msgstr "Kein Empfänger." #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/message.php:242 ../../mod/message.php:250 -#: ../../include/conversation.php:898 ../../include/conversation.php:916 +#: ../../include/conversation.php:902 ../../include/conversation.php:920 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" @@ -2914,7 +2919,7 @@ msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50 -#: ../../boot.php:1694 +#: ../../boot.php:1728 msgid "Profile" msgstr "Profil" @@ -3085,7 +3090,7 @@ msgstr "Gruppe nicht gefunden." msgid "Group name changed." msgstr "Gruppenname geändert." -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:318 +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332 msgid "Permission denied" msgstr "Zugriff verweigert" @@ -3137,7 +3142,7 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" msgid "No contacts." msgstr "Keine Kontakte." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:625 msgid "View Contacts" msgstr "Kontakte anzeigen" @@ -3168,12 +3173,6 @@ msgstr "Registrierungsanfrage auf %s" msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/register.php:190 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - #: ../../mod/register.php:218 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " @@ -3225,7 +3224,7 @@ msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:902 +#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:920 msgid "Register" msgstr "Registrieren" @@ -3235,7 +3234,7 @@ msgstr "Personensuche" #: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62 #: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1437 +#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1444 #: ../../include/diaspora.php:1835 ../../include/conversation.php:125 #: ../../include/conversation.php:253 #: ../../addon.old/communityhome/communityhome.php:163 @@ -3282,7 +3281,7 @@ msgid "Access denied." msgstr "Zugriff verweigert." #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89 -#: ../../include/nav.php:51 ../../boot.php:1701 +#: ../../include/nav.php:51 ../../boot.php:1735 msgid "Photos" msgstr "Bilder" @@ -3311,8 +3310,8 @@ msgstr "Konnte den Originalbeitrag nicht finden." msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: ../../mod/item.php:420 ../../mod/wall_upload.php:133 -#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 +#: ../../mod/item.php:420 ../../mod/wall_upload.php:135 +#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Pinnwand-Bilder" @@ -3377,7 +3376,7 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90 #, php-format msgid "Image exceeds size limit of %d" msgstr "Bildgröße überschreitet das Limit von %d" @@ -4160,7 +4159,7 @@ msgstr "FTP Nutzername" msgid "FTP Password" msgstr "FTP Passwort" -#: ../../mod/profile.php:21 ../../boot.php:1089 +#: ../../mod/profile.php:21 ../../boot.php:1123 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht vorhanden." @@ -4230,8 +4229,8 @@ msgid "" "Account not found and OpenID registration is not permitted on this site." msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet." -#: ../../mod/openid.php:93 ../../include/auth.php:98 -#: ../../include/auth.php:161 +#: ../../mod/openid.php:93 ../../include/auth.php:110 +#: ../../include/auth.php:173 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." @@ -4268,8 +4267,8 @@ msgstr "Anwendungen" msgid "No installed applications." msgstr "Keine Applikationen installiert." -#: ../../mod/search.php:96 ../../include/text.php:678 -#: ../../include/text.php:679 ../../include/nav.php:91 +#: ../../mod/search.php:96 ../../include/text.php:685 +#: ../../include/text.php:686 ../../include/nav.php:91 msgid "Search" msgstr "Suche" @@ -4561,28 +4560,28 @@ msgstr "Alter: " msgid "Edit/Manage Profiles" msgstr "Verwalte/Editiere Profile" -#: ../../mod/profiles.php:689 ../../boot.php:1207 +#: ../../mod/profiles.php:689 ../../boot.php:1241 msgid "Change profile photo" msgstr "Profilbild ändern" -#: ../../mod/profiles.php:690 ../../boot.php:1208 +#: ../../mod/profiles.php:690 ../../boot.php:1242 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: ../../mod/profiles.php:701 ../../boot.php:1218 +#: ../../mod/profiles.php:701 ../../boot.php:1252 msgid "Profile Image" msgstr "Profilbild" -#: ../../mod/profiles.php:703 ../../boot.php:1221 +#: ../../mod/profiles.php:703 ../../boot.php:1255 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: ../../mod/profiles.php:704 ../../boot.php:1222 +#: ../../mod/profiles.php:704 ../../boot.php:1256 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: ../../mod/filer.php:29 ../../include/conversation.php:902 -#: ../../include/conversation.php:920 +#: ../../mod/filer.php:29 ../../include/conversation.php:906 +#: ../../include/conversation.php:924 msgid "Save to Folder:" msgstr "In diesen Ordner verschieben:" @@ -4706,17 +4705,17 @@ msgid "Gender: " msgstr "Geschlecht:" #: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 -#: ../../boot.php:1243 +#: ../../boot.php:1277 msgid "Gender:" msgstr "Geschlecht:" #: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 -#: ../../boot.php:1246 +#: ../../boot.php:1280 msgid "Status:" msgstr "Status:" #: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 -#: ../../boot.php:1248 +#: ../../boot.php:1282 msgid "Homepage:" msgstr "Homepage:" @@ -5586,7 +5585,7 @@ msgstr "Aktiviere Planeten Plugin" #: ../../addon/communityhome/communityhome.php:34 #: ../../addon/communityhome/twillingham/communityhome.php:28 #: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:927 +#: ../../include/nav.php:64 ../../boot.php:946 #: ../../addon.old/communityhome/communityhome.php:28 #: ../../addon.old/communityhome/communityhome.php:34 #: ../../addon.old/communityhome/twillingham/communityhome.php:28 @@ -5626,7 +5625,7 @@ msgid "Latest likes" msgstr "Neueste Favoriten" #: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1435 +#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1442 #: ../../include/conversation.php:117 ../../include/conversation.php:245 #: ../../addon.old/communityhome/communityhome.php:155 msgid "event" @@ -5780,7 +5779,7 @@ msgstr "Tage" #: ../../addon/dav/common/wdcal_edit.inc.php:254 #: ../../addon/dav/common/wdcal_edit.inc.php:270 #: ../../addon/dav/common/wdcal_edit.inc.php:293 -#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:231 #: ../../addon.old/dav/common/wdcal_edit.inc.php:254 #: ../../addon.old/dav/common/wdcal_edit.inc.php:270 @@ -5791,7 +5790,7 @@ msgstr "Sonntag" #: ../../addon/dav/common/wdcal_edit.inc.php:235 #: ../../addon/dav/common/wdcal_edit.inc.php:274 -#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:235 #: ../../addon.old/dav/common/wdcal_edit.inc.php:274 #: ../../addon.old/dav/common/wdcal_edit.inc.php:308 @@ -5799,35 +5798,35 @@ msgid "Monday" msgstr "Montag" #: ../../addon/dav/common/wdcal_edit.inc.php:238 -#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:238 #: ../../addon.old/dav/common/wdcal_edit.inc.php:277 msgid "Tuesday" msgstr "Dienstag" #: ../../addon/dav/common/wdcal_edit.inc.php:241 -#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:241 #: ../../addon.old/dav/common/wdcal_edit.inc.php:280 msgid "Wednesday" msgstr "Mittwoch" #: ../../addon/dav/common/wdcal_edit.inc.php:244 -#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:244 #: ../../addon.old/dav/common/wdcal_edit.inc.php:283 msgid "Thursday" msgstr "Donnerstag" #: ../../addon/dav/common/wdcal_edit.inc.php:247 -#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:247 #: ../../addon.old/dav/common/wdcal_edit.inc.php:286 msgid "Friday" msgstr "Freitag" #: ../../addon/dav/common/wdcal_edit.inc.php:250 -#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:915 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922 #: ../../addon.old/dav/common/wdcal_edit.inc.php:250 #: ../../addon.old/dav/common/wdcal_edit.inc.php:289 msgid "Saturday" @@ -8215,218 +8214,218 @@ msgstr "neuer" msgid "older" msgstr "älter" -#: ../../include/text.php:597 +#: ../../include/text.php:604 msgid "No contacts" msgstr "Keine Kontakte" -#: ../../include/text.php:606 +#: ../../include/text.php:613 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" -#: ../../include/text.php:719 +#: ../../include/text.php:726 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:719 ../../include/conversation.php:210 +#: ../../include/text.php:726 ../../include/conversation.php:210 msgid "poked" msgstr "stupste" -#: ../../include/text.php:720 +#: ../../include/text.php:727 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:720 +#: ../../include/text.php:727 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:721 +#: ../../include/text.php:728 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:721 +#: ../../include/text.php:728 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:722 +#: ../../include/text.php:729 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:722 +#: ../../include/text.php:729 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:723 +#: ../../include/text.php:730 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:723 +#: ../../include/text.php:730 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:724 +#: ../../include/text.php:731 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:724 +#: ../../include/text.php:731 msgid "rebuffed" msgstr "abfuhrerteilte" -#: ../../include/text.php:736 +#: ../../include/text.php:743 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:737 +#: ../../include/text.php:744 msgid "sad" msgstr "traurig" -#: ../../include/text.php:738 +#: ../../include/text.php:745 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:739 +#: ../../include/text.php:746 msgid "tired" msgstr "müde" -#: ../../include/text.php:740 +#: ../../include/text.php:747 msgid "perky" msgstr "frech" -#: ../../include/text.php:741 +#: ../../include/text.php:748 msgid "angry" msgstr "sauer" -#: ../../include/text.php:742 +#: ../../include/text.php:749 msgid "stupified" msgstr "verblüfft" -#: ../../include/text.php:743 +#: ../../include/text.php:750 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:744 +#: ../../include/text.php:751 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:745 +#: ../../include/text.php:752 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:746 +#: ../../include/text.php:753 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:747 +#: ../../include/text.php:754 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:748 +#: ../../include/text.php:755 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:749 +#: ../../include/text.php:756 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:750 +#: ../../include/text.php:757 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:751 +#: ../../include/text.php:758 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:752 +#: ../../include/text.php:759 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:753 +#: ../../include/text.php:760 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:754 +#: ../../include/text.php:761 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:755 +#: ../../include/text.php:762 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "January" msgstr "Januar" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "February" msgstr "Februar" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "March" msgstr "März" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "April" msgstr "April" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "May" msgstr "Mai" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "June" msgstr "Juni" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "July" msgstr "Juli" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "August" msgstr "August" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "September" msgstr "September" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "October" msgstr "Oktober" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "November" msgstr "November" -#: ../../include/text.php:919 +#: ../../include/text.php:926 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1005 +#: ../../include/text.php:1012 msgid "bytes" msgstr "Byte" -#: ../../include/text.php:1032 ../../include/text.php:1044 +#: ../../include/text.php:1039 ../../include/text.php:1051 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: ../../include/text.php:1217 ../../include/user.php:236 +#: ../../include/text.php:1224 ../../include/user.php:236 msgid "default" msgstr "Standard" -#: ../../include/text.php:1229 +#: ../../include/text.php:1236 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" -#: ../../include/text.php:1439 +#: ../../include/text.php:1446 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:1442 +#: ../../include/text.php:1449 msgid "post" msgstr "Beitrag" -#: ../../include/text.php:1597 +#: ../../include/text.php:1604 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -8462,22 +8461,31 @@ msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendic msgid "Error! I can't import this file: DB schema version is not compatible." msgstr "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel." -#: ../../include/uimport.php:92 +#: ../../include/uimport.php:81 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: ../../include/uimport.php:85 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: ../../include/uimport.php:104 msgid "User creation error" msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" -#: ../../include/uimport.php:110 +#: ../../include/uimport.php:122 msgid "User profile creation error" msgstr "Fehler beim Anlegen des Nutzerkontos" -#: ../../include/uimport.php:155 +#: ../../include/uimport.php:167 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d Kontakt nicht importiert" msgstr[1] "%d Kontakte nicht importiert" -#: ../../include/uimport.php:233 +#: ../../include/uimport.php:245 msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" @@ -8512,7 +8520,7 @@ msgstr "Neue Gruppe erstellen" msgid "Contacts not in any group" msgstr "Kontakte in keiner Gruppe" -#: ../../include/nav.php:46 ../../boot.php:926 +#: ../../include/nav.php:46 ../../boot.php:945 msgid "Logout" msgstr "Abmelden" @@ -8520,7 +8528,7 @@ msgstr "Abmelden" msgid "End this session" msgstr "Diese Sitzung beenden" -#: ../../include/nav.php:49 ../../boot.php:1687 +#: ../../include/nav.php:49 ../../boot.php:1721 msgid "Status" msgstr "Status" @@ -8600,11 +8608,11 @@ msgstr "Verwalten" msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: ../../include/nav.php:138 ../../boot.php:1201 +#: ../../include/nav.php:138 ../../boot.php:1235 msgid "Profiles" msgstr "Profile" -#: ../../include/nav.php:138 ../../boot.php:1201 +#: ../../include/nav.php:138 ../../boot.php:1235 msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" @@ -8679,17 +8687,17 @@ msgstr "Alles" msgid "Categories" msgstr "Kategorien" -#: ../../include/auth.php:35 +#: ../../include/auth.php:36 msgid "Logged out." msgstr "Abgemeldet." -#: ../../include/auth.php:114 +#: ../../include/auth.php:126 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." -#: ../../include/auth.php:114 +#: ../../include/auth.php:126 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" @@ -9122,7 +9130,7 @@ msgstr "Bitte lade ein Profilbild hoch." msgid "Welcome back " msgstr "Willkommen zurück " -#: ../../include/security.php:354 +#: ../../include/security.php:357 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." @@ -9177,11 +9185,11 @@ msgstr "Nachricht/Beitrag" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" -#: ../../include/conversation.php:599 ../../object/Item.php:218 +#: ../../include/conversation.php:599 ../../object/Item.php:220 msgid "Categories:" msgstr "Kategorien" -#: ../../include/conversation.php:600 ../../object/Item.php:219 +#: ../../include/conversation.php:600 ../../object/Item.php:221 msgid "Filed under:" msgstr "Abgelegt unter:" @@ -9221,46 +9229,46 @@ msgstr "%2$d Leute mögen das nicht." msgid "and" msgstr "und" -#: ../../include/conversation.php:872 +#: ../../include/conversation.php:875 #, php-format msgid ", and %d other people" msgstr " und %d andere" -#: ../../include/conversation.php:873 +#: ../../include/conversation.php:877 #, php-format msgid "%s like this." msgstr "%s mögen das." -#: ../../include/conversation.php:873 +#: ../../include/conversation.php:877 #, php-format msgid "%s don't like this." msgstr "%s mögen das nicht." -#: ../../include/conversation.php:897 ../../include/conversation.php:915 +#: ../../include/conversation.php:901 ../../include/conversation.php:919 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: ../../include/conversation.php:899 ../../include/conversation.php:917 +#: ../../include/conversation.php:903 ../../include/conversation.php:921 msgid "Please enter a video link/URL:" msgstr "Bitte Link/URL zum Video einfügen:" -#: ../../include/conversation.php:900 ../../include/conversation.php:918 +#: ../../include/conversation.php:904 ../../include/conversation.php:922 msgid "Please enter an audio link/URL:" msgstr "Bitte Link/URL zum Audio einfügen:" -#: ../../include/conversation.php:901 ../../include/conversation.php:919 +#: ../../include/conversation.php:905 ../../include/conversation.php:923 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:903 ../../include/conversation.php:921 +#: ../../include/conversation.php:907 ../../include/conversation.php:925 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: ../../include/conversation.php:904 +#: ../../include/conversation.php:908 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: ../../include/conversation.php:983 +#: ../../include/conversation.php:987 msgid "permissions" msgstr "Zugriffsrechte" @@ -9276,105 +9284,109 @@ msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." -#: ../../boot.php:588 +#: ../../boot.php:604 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: ../../boot.php:591 +#: ../../boot.php:607 msgid "show fewer" msgstr "weniger anzeigen" -#: ../../boot.php:798 +#: ../../boot.php:816 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: ../../boot.php:800 +#: ../../boot.php:818 #, php-format msgid "Update Error at %s" msgstr "Updatefehler bei %s" -#: ../../boot.php:901 +#: ../../boot.php:919 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: ../../boot.php:929 +#: ../../boot.php:948 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: ../../boot.php:930 +#: ../../boot.php:949 msgid "Password: " msgstr "Passwort: " -#: ../../boot.php:933 +#: ../../boot.php:950 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#: ../../boot.php:953 msgid "Or login using OpenID: " msgstr "Oder melde dich mit deiner OpenID an: " -#: ../../boot.php:939 +#: ../../boot.php:959 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:1050 +#: ../../boot.php:1084 msgid "Requested account is not available." msgstr "Das angefragte Profil ist nicht vorhanden." -#: ../../boot.php:1127 +#: ../../boot.php:1161 msgid "Edit profile" msgstr "Profil bearbeiten" -#: ../../boot.php:1193 +#: ../../boot.php:1227 msgid "Message" msgstr "Nachricht" -#: ../../boot.php:1315 ../../boot.php:1401 +#: ../../boot.php:1349 ../../boot.php:1435 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: ../../boot.php:1316 ../../boot.php:1402 +#: ../../boot.php:1350 ../../boot.php:1436 msgid "F d" msgstr "d. F" -#: ../../boot.php:1361 ../../boot.php:1442 +#: ../../boot.php:1395 ../../boot.php:1476 msgid "[today]" msgstr "[heute]" -#: ../../boot.php:1373 +#: ../../boot.php:1407 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: ../../boot.php:1374 +#: ../../boot.php:1408 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: ../../boot.php:1435 +#: ../../boot.php:1469 msgid "[No description]" msgstr "[keine Beschreibung]" -#: ../../boot.php:1453 +#: ../../boot.php:1487 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: ../../boot.php:1454 +#: ../../boot.php:1488 msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: ../../boot.php:1690 +#: ../../boot.php:1724 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../boot.php:1697 +#: ../../boot.php:1731 msgid "Profile Details" msgstr "Profildetails" -#: ../../boot.php:1714 +#: ../../boot.php:1748 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: ../../boot.php:1721 +#: ../../boot.php:1755 msgid "Only You Can See This" msgstr "Nur du kannst das sehen" -#: ../../index.php:380 +#: ../../index.php:398 msgid "toggle mobile" msgstr "auf/von Mobile Ansicht wechseln" diff --git a/view/de/strings.php b/view/de/strings.php index c7ba70053..0fd4103ce 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -603,9 +603,10 @@ $a->strings["Private messages to this person are at risk of public disclosure."] $a->strings["Invalid contact."] = "Ungültiger Kontakt."; $a->strings["Personal Notes"] = "Persönliche Notizen"; $a->strings["Save"] = "Speichern"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; $a->strings["Import"] = "Import"; $a->strings["Move account"] = "Account umziehen"; -$a->strings["You can move here an account from another Friendica server.
\r\n You need to export your account form the old server and upload it here. We will create here your old account with all your contacts. We will try also to inform you friends that you moved here.
\r\n This feature is experimental. We can't move here contacts from ostatus network (statusnet/identi.ca) or from diaspora"] = "Du kannst deinen Account auf einen anderen Friendica Server umziehen.
Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.
Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden."; +$a->strings["You can import an account from another Friendica server.
\r\n You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "Du kannst deinen Account auf einen anderen Friendica Server umziehen.
Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.
Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden."; $a->strings["Account file"] = "Account Datei"; $a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; @@ -683,7 +684,6 @@ $a->strings["Failed to send email message. Here is the message that failed."] = $a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; $a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; $a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."; $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; $a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; @@ -1806,6 +1806,8 @@ $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; $a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; $a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel."; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; $a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; $a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; $a->strings["%d contact not imported"] = array( @@ -2004,6 +2006,7 @@ $a->strings["Update Error at %s"] = "Updatefehler bei %s"; $a->strings["Create a New Account"] = "Neues Konto erstellen"; $a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; $a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; $a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; $a->strings["Forgot your password?"] = "Passwort vergessen?"; $a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; From 3f9eef1ef6ddac9cf541c96546f9b3cbd27a0938 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 16 Nov 2012 22:29:39 +0000 Subject: [PATCH 21/30] Diabook - some more heavy lifting. --- .../diabook/diabook-blue/style-network.css | 2617 +--------------- .../diabook/diabook-blue/style-profile.css | 2522 +-------------- view/theme/diabook/diabook-blue/style.css | 2787 +---------------- 3 files changed, 358 insertions(+), 7568 deletions(-) diff --git a/view/theme/diabook/diabook-blue/style-network.css b/view/theme/diabook/diabook-blue/style-network.css index 123792b65..873cbb26f 100644 --- a/view/theme/diabook/diabook-blue/style-network.css +++ b/view/theme/diabook/diabook-blue/style-network.css @@ -1,88 +1,6 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ - -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +@import url('../../diabook/style-network.css'); +/* There seem to be a stupid number of icons. Can we do this better? Are they all actually used? */ .icon.contacts { background-image: url("../diabook-blue/icons/contacts.png");} .icon.notifications { @@ -93,7 +11,6 @@ background-image: url("../diabook-blue/icons/messages.png");} .icon.community { background-image: url("../diabook-blue/icons/community.png");} - .icon.drop { background-image: url("../diabook-blue/icons/drop.png");} .icon.drophide { background-image: url("../diabook-blue/icons/drop.png");} .icon.dislike { background-image: url("../diabook-blue/icons/dislike.png");} @@ -109,557 +26,109 @@ .icon.lock { background-image: url("../diabook-blue/icons/lock.png");} .icon.unlock { background-image: url("../diabook-blue/icons/unlock.png");} .icon.language { background-image: url("../diabook-blue/icons/language.png");} - - -.camera { background-image: url("../diabook-blue/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-blue/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-blue/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-blue/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-blue/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-blue/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-blue/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-blue/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-blue/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-blue/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-blue/icons/camera.png");} +.attach { background-image: url("../diabook-blue/icons/attach.png");} +.video2 { background-image: url("../diabook-blue/icons/video.png");} +.video { background-image: url("../diabook-blue/icons/video.png");} +.audio2 { background-image: url("../diabook-blue/icons/audio.png");} +.audio { background-image: url("../diabook-blue/icons/audio.png");} +.weblink { background-image: url("../diabook-blue/icons/weblink.png");} +.globe { background-image: url("../diabook-blue/icons/globe.png");} +.unglobe { background-image: url("../diabook-blue/icons/unglobe.png");} +.edit {background-image: url("../diabook-blue/icons/pencil2.png");} .icon.on { background-image: url("../diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ - -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - +.attachtype {background-image: url('../../../../images/content-types.png');} .icon.border.camera{ - background-image: url("../diabook-blue/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-blue/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } + background-image: url("../diabook-blue/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-blue/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} +.hide-comments-outer {background-color: #fff;} -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 1px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - background-color: #fff; - padding: 8px; -} +a {color: #333333;} -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #1872A2; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} #saved-search-ul .tool:hover, #nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, +#sidebar-group-list .tool:hover , #fileas-sidebar .tool:hover { - background: #308DBF; -} -.tool .label { - float: left; -} -.tool .action { - float: right; + background: aliceBlue; } + .tool a { - color: ##3F8FBA; + color: #333333; } -.tool a:hover { - text-decoration: none; + +nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { +color: #fff; } + /* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ +div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #1872a2; background-color: #1872a2; - z-index: 100; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; } + +header #site-location {display: none;} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; - margin-left: 3px; + color: #fff; + font-weight: bolder; } -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; background: #1872a2; - color: #ffffff; - z-index: 99; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; -} -nav a, -nav a:active, -nav a:visited, -nav a:link, -nav a:hover { - color: #ffffff; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; + color: #fff; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { background-color: #308dbf; position: relative; @@ -671,1408 +140,88 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} -nav .nav-notify { - display: none; - position: absolute; - background-color: #ff0000; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; -} -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; + nav .nav-notify { + border: 1px solid black; } +nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;} + nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-blue/icons/messages2.png"); - } + background-image: url("../diabook-blue/icons/messages.png");} /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-blue/icons/notify2.png"); - } + background-image: url("../diabook-blue/icons/notify.png");} nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-blue/icons/contacts2.png"); - } + background-image: url("../diabook-blue/icons/contacts.png");} nav #nav-apps-link.selected { - background-color: #364e59; + background-color: #364e59;; + moz-border-radius: 5px 5px 0 0; +-webkit-border-radius: 5px 5px 0 0; +border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #308DBF; /*bdcdd4;*/ + background-color: #308DBF; color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} +.menu-profile-list:hover{background: #308DBF;} -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} +.menu-profile-icon.home{background: url("../diabook-blue/icons/home.png") no-repeat;} +.menu-profile-icon.photos{background: url("../diabook-blue/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{background: url("../diabook-blue/icons/events.png") no-repeat;} +.menu-profile-icon.notes{background: url("../diabook-blue/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{background: url("../diabook-blue/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{background: url("../diabook-blue/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{background: url("../diabook-blue/icons/pscontacts.png") no-repeat;} -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #308DBF; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../diabook-blue/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../diabook-blue/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../diabook-blue/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../diabook-blue/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../diabook-blue/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../diabook-blue/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../diabook-blue/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; --moz-border-bottom-colors: #dbdbdb; - -moz-border-top-colors: #999; - -moz-border-left-colors: #999; - -moz-border-right-colors: #dbdbdb; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums ul li a{ - color: #1872A2; -} -.widget .tool.selected { - background: url("../diabook-blue/icons/selected.png") no-repeat left center; -} -/* widget: search */ -span.sbox_l { - background: white url('../diabook-blue/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - -} +aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;} -span.sbox_r { - background: white url('../diabook-blue/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; -} +#side-bar-photos-albums li{list-style-type: disc;} +#side-bar-photos-albums ul li{margin-left: 30px; + padding-left: 0px;} +#side-bar-photos-albums ul li a{color: #1872a2;} -span.sbox input { - background: white url('../diabook-blue/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: auto; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} +.widget .tool.selected {background: url("../diabook-blue/icons/selected.png") no-repeat left center;} +span.sbox_l {background: white url('../diabook-blue/icons/srch_l.gif') no-repeat top left;} +span.sbox_r {background: white url('../diabook-blue/icons/srch_r.gif') no-repeat top left;} +span.sbox input {background: white url('../diabook-blue/icons/srch_bg.gif') repeat-x top left;} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } +right_aside a{color: #1872a2;} -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} -right_aside a{color: #1872A2;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} .close_box { background-image: url("../diabook-blue/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; - } -.close_box:hover { - background-image: url("../diabook-blue/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; - } - -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} -.tread-wrapper a{ - color: #1872A2; -} + cursor: pointer;} -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} +.close_box:hover {background-image: url("../diabook-blue/icons/close_box.png");} -.wall-item-container { - display: table; - width: 580px; -} +.tread-wrapper a{color: #1872a2;} +.wall-item-comment-wrapper {background-color: #fff; + width: 500px;} -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} +.button.creation2 {background-color: #055580;} -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} +#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;} -.wall-item-container .wall-item-content { +#acl-showall {background-image: url("../../../../images/show_all_off.png");} - max-width: 420px; - word-wrap: break-word; +#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");} +.acl-button-show {background-image: url("../../../../images/show_off.png");} +.acl-button-hide {background-image: url("../../../../images/hide_off.png");} +.acl-button-show.selected {background-image: url("../../../../images/show_on.png");} +.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");} -} +ul.tabs li .active {background-color: #055580;} -.wall-item-container .wall-item-content img { - max-width: 400px; +.field .onoff a {background-image: url("../../../../images/onoff.jpg");} -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ +.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");} -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} - -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; - background-color: #fff; - width: 500px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} -.button.creation2 { - background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -ul.tabs li .active { - background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; @@ -2080,498 +229,17 @@ border-radius: 10px; height: 145px !important; width: 145px !important; } + .lframe { float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -20px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} -/* page footer */ -footer { - height: 100px; - display: table-row; -} +.event-description:before {content: url('../../../../images/calendar.png');} -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ +.calendar.eventcal a {color: #1872a2;} -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.calendar.eventcal a { - color: #1872A2; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2579,40 +247,5 @@ list-style-type: disc; padding-left: 3px; background-color: #EEE; } -.photo-top-album-link{ - color: #1872A2; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} +.photo-top-album-link{color: #1872a2;} diff --git a/view/theme/diabook/diabook-blue/style-profile.css b/view/theme/diabook/diabook-blue/style-profile.css index b8064c9c0..fb21d7e57 100644 --- a/view/theme/diabook/diabook-blue/style-profile.css +++ b/view/theme/diabook/diabook-blue/style-profile.css @@ -1,99 +1,10 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../../diabook/style-profile.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ - -.icon.contacts { - background-image: url("../diabook-blue/icons/contacts.png");} -.icon.notifications { - background-image: url("../diabook-blue/icons/notifications.png");} -.icon.notify { - background-image: url("../diabook-blue/icons/notify.png");} -.icon.messages { - background-image: url("../diabook-blue/icons/messages.png");} -.icon.community { - background-image: url("../diabook-blue/icons/community.png");} - + .icon.contacts {background-image: url("../diabook-blue/icons/contacts.png");} +.icon.notifications {background-image: url("../diabook-blue/icons/notifications.png");} +.icon.notify {background-image: url("../diabook-blue/icons/notify.png");} +.icon.messages {background-image: url("../diabook-blue/icons/messages.png");} +.icon.community {background-image: url("../diabook-blue/icons/community.png");} .icon.drop { background-image: url("../diabook-blue/icons/drop.png");} .icon.drophide { background-image: url("../diabook-blue/icons/drop.png");} .icon.dislike { background-image: url("../diabook-blue/icons/dislike.png");} @@ -109,559 +20,106 @@ .icon.lock { background-image: url("../diabook-blue/icons/lock.png");} .icon.unlock { background-image: url("../diabook-blue/icons/unlock.png");} .icon.language { background-image: url("../diabook-blue/icons/language.png");} - - -.camera { background-image: url("../diabook-blue/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-blue/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-blue/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-blue/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-blue/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-blue/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-blue/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-blue/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-blue/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-blue/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-blue/icons/camera.png");} +.attach { background-image: url("../diabook-blue/icons/attach.png");} +.video2 { background-image: url("../diabook-blue/icons/video.png");} +.video { background-image: url("../diabook-blue/icons/video.png");} +.audio2 { background-image: url("../diabook-blue/icons/audio.png");} +.audio { background-image: url("../diabook-blue/icons/audio.png");} +.weblink { background-image: url("../diabook-blue/icons/weblink.png");} +.globe { background-image: url("../diabook-blue/icons/globe.png");} +.unglobe { background-image: url("../diabook-blue/icons/unglobe.png");} +.edit {background-image: url("../diabook-blue/icons/pencil2.png");} .icon.on { background-image: url("../diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ +.attachtype {background-image: url('../../../../images/content-types.png');} +.icon.border.camera{background-image: url("../diabook-blue/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-blue/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} +a {color: #333333;} -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } -.icon.drop, .icon.drophide { - float: left; -} +#sidebar-group-list .tool:hover {background: #EEE;} -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../diabook-blue/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-blue/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - border-top: 1px solid #BDCDD4; - - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #1872A2; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover { - background: #EEE; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ + background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #1872a2; background-color: #1872a2; - z-index: 100; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; } + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + font-weight: bolder;} + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; background: #1872a2; color: #ffffff; - z-index: 99; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { - color: #ffffff; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} + color: #ffffff;} + nav #banner a, nav #banner a:active, nav #banner a:visited, nav #banner a:link, nav #banner a:hover { color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { - background-color: #308dbf; position: relative; height: 22px; padding: 5px; @@ -671,259 +129,35 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; background-color: #ff0000; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; -} -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; + border: 1px solid black; } nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-blue/icons/messages2.png"); + background-image: url("../diabook-blue/icons/messages.png"); } /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-blue/icons/notify2.png"); + background-image: url("../diabook-blue/icons/notify.png"); } nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-blue/icons/contacts2.png"); + background-image: url("../diabook-blue/icons/contacts.png"); } - + nav #nav-apps-link.selected { - background-color: #364e59; + background-color: #364e59; + moz-border-radius: 5px 5px 0 0; +-webkit-border-radius: 5px 5px 0 0; +border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #308DBF; /*bdcdd4;*/ + background-color: #308dbf; color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - padding-top: 3px; - padding-bottom: 3px; - padding-left: 16px; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #EEE; - } -.menu-profile-list-item{ - padding-left: 5px; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ .menu-profile-list.home{ background: url("../diabook-blue/icons/home.png") no-repeat; } @@ -943,172 +177,10 @@ ul.menu-popup .empty { background: url("../diabook-blue/icons/com_side.png") no-repeat; } -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} - -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 48px; - height: 48px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} + } + #side-bar-photos-albums li{ list-style-type: disc; } @@ -1117,779 +189,57 @@ list-style-type: disc; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #1872A2; + color: #308dbf; } + .widget .tool.selected { background: url("../diabook-blue/icons/selected.png") no-repeat left center; } -/* widget: search */ + span.sbox_l { background: white url('../diabook-blue/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - } span.sbox_r { background: white url('../diabook-blue/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; } span.sbox input { background: white url('../diabook-blue/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 611px; - padding: 0px 0px 0px 12px; } -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} - -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; +#birthday-wrapper a { + color: #308dbf; } -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - /*padding-right: 10px;*/ - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} -right_aside a{color: #1872A2;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} +right_aside a{color: #308dbf;} + .close_box { background-image: url("../diabook-blue/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; } .close_box:hover { background-image: url("../diabook-blue/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} + + .tread-wrapper a{ - color: #1872A2; -} - -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 580px; + color: #308dbf; } -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} - -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} - -.wall-item-container .wall-item-content { - - max-width: 420px; - word-wrap: break-word; - - -} - -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - font-size: 14px; -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} .button.creation2 { - background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} + background-color: #308dbf;} + #acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; + background: #ffffff url("../../../../images/search_18.png") no-repeat right center; } + #acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} + background-image: url("../../../../images/show_all_off.png");} + #acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} + background-image: url("../../../../images/show_all_on.png");} + .acl-button-show { background-image: url("../../../../images/show_off.png"); } @@ -1897,657 +247,37 @@ transition: all 0.2s ease-in-out; background-image: url("../../../../images/hide_off.png"); } .acl-button-show.selected { - color: #000000; - background-color: #9ade00; background-image: url("../../../../images/show_on.png"); } .acl-button-hide.selected { - color: #000000; - background-color: #ff4141; background-image: url("../../../../images/hide_on.png"); } -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + ul.tabs li .active { - background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} + background-color: #308dbf;} + .field .onoff a { - display: block; - border: 1px solid #666666; background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; } -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} .oauthapp img.noicon { background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ + } + .photo { box-shadow: 2px 2px 5px 0px #000000; -margin: 0px; -border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; -} +margin: 0px;} -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -20px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 48px; - height: 48px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} .event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} + content: url('../../../../images/calendar.png');} -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { - color: #1872A2; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; + color: #308dbf; } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2556,39 +286,5 @@ list-style-type: disc; background-color: #EEE; } .photo-top-album-link{ - color: #1872A2; + color: #308dbf; } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - diff --git a/view/theme/diabook/diabook-blue/style.css b/view/theme/diabook/diabook-blue/style.css index 952f90775..993eb38d5 100644 --- a/view/theme/diabook/diabook-blue/style.css +++ b/view/theme/diabook/diabook-blue/style.css @@ -1,801 +1,139 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../diabook/style.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ +/* Why are these paths so long? They should probably become ../icons/ in the next revision */ -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; - list-style: none; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ .icon.bb-url{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-url.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png");} .icon.quote{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/quote.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png");} .icon.bold{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/bold.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png");} .icon.underline{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/underline.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png");} .icon.italic{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/italic.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png");} .icon.bb-image{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-image.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png");} .icon.bb-video{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-video.png"); - float: right; - margin-top: 2px;} - -.icon.contacts { - background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts.png");} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png");} + .icon.contacts { + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");} .icon.notifications { - background-image: url("../../../view/theme/diabook/diabook-blue/icons/notifications.png");} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notifications.png");} .icon.notify { - background-image: url("../../../view/theme/diabook/diabook-blue/icons/notify.png");} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");} .icon.messages { - background-image: url("../../../view/theme/diabook/diabook-blue/icons/messages.png");} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");} .icon.community { - background-image: url("../../../view/theme/diabook/diabook-blue/icons/community.png");} + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/community.png");} -.icon.drop { background-image: url("../../../view/theme/diabook/diabook-blue/icons/drop.png");} -.icon.drophide { background-image: url("../../../view/theme/diabook/diabook-blue/icons/drop.png");} -.icon.dislike { background-image: url("../../../view/theme/diabook/diabook-blue/icons/dislike.png");} -.icon.like { background-image: url("../../../view/theme/diabook/diabook-blue/icons/like.png");} -.icon.pencil { background-image: url("../../../view/theme/diabook/diabook-blue/icons/pencil.png");} -.icon.recycle { background-image: url("../../../view/theme/diabook/diabook-blue/icons/recycle.png");} -.icon.remote-link { background-image: url("../../../view/theme/diabook/diabook-blue/icons/remote.png");} -.icon.tagged { background-image: url("../../../view/theme/diabook/diabook-blue/icons/tagged.png");} -.icon.file-as { background-image: url("../../../view/theme/diabook/diabook-blue/icons/file_as.png");} -.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unstarred.png");} -.star-item.icon.starred { background-image: url("../../../view/theme/diabook/diabook-blue/icons/starred.png");} -.icon.link { background-image: url("../../../view/theme/diabook/diabook-blue/icons/link.png");} -.icon.lock { background-image: url("../../../view/theme/diabook/diabook-blue/icons/lock.png");} -.icon.unlock { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unlock.png");} -.icon.language { background-image: url("../../../view/theme/diabook/diabook-blue/icons/language.png");} +.icon.drop { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/drop.png");} +.icon.drophide { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/drop.png");} +.icon.dislike { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/dislike.png");} +.icon.like { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/like.png");} +.icon.pencil { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil.png");} +.icon.recycle { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/recycle.png");} +.icon.remote-link { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/remote.png");} +.icon.tagged { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/tagged.png");} +.icon.file-as { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/file_as.png");} +.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unstarred.png");} +.star-item.icon.starred { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/starred.png");} +.icon.link { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/link.png");} +.icon.lock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/lock.png");} +.icon.unlock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unlock.png");} +.icon.language { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/language.png");} +.camera { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");} +.attach { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png");} +.video2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); } +.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");} +.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");} +.audio { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");} +.weblink { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");} +.globe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png");} +.unglobe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png");} +.edit {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png");} +.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");} +.icon.on { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;} +.icon.off { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;} +.icon.prev { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/prev.png"); background-repeat: no-repeat;} +.icon.next { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/next.png"); background-repeat: no-repeat;} +icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");} +.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");} +av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");} +.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ + background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");} +nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");} + +.menu-profile-icon.home{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat;} +.menu-profile-icon.photos{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat;} +.menu-profile-icon.notes{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{ + background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat;} -.camera { background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../../../view/theme/diabook/diabook-blue/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../../../view/theme/diabook/diabook-blue/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../../../view/theme/diabook/diabook-blue/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} -.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat;} -.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;} -.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png"); - display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;} - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ +a {color: #333333;} -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} +#fileas-sidebar .tool:hover {background: #308dbf;} -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - -.icon.on { background-image: url("../../../view/theme/diabook/diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;} -.icon.off { background-image: url("../../../view/theme/diabook/diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;} -.icon.prev { background-image: url("../../../view/theme/diabook/diabook-blue/icons/prev.png"); background-repeat: no-repeat;} -.icon.next { background-image: url("../../../view/theme/diabook/diabook-blue/icons/next.png"); background-repeat: no-repeat;} -/*.tagged { background-position: -130px -60px;}*/ - -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 684px; - border-bottom: 1px solid #BDCDD4; - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -#jappix_mini { -right: 45px !important; -} - - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #1872A2; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -.intro-end { - border-bottom: 1px solid black; - clear: both; - margin-bottom: 25px; - padding-bottom: 25px; - width: 75%; - } -.intro-form-end { - clear: both; - } -.intro-fullname { - padding-bottom: 5px; - padding-top: 5px; - } -.intro-wrapper-end { - clear: both; - padding-bottom: 5px; - } -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, -#fileas-sidebar .tool:hover { - background: #308DBF; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ } -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} /* header */ header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #1872a2; background-color: #1872a2; - z-index: 100; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; } -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: banner; - width: 82%; - margin-left: 25%; -} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; + font-weight: bolder; } + header #banner #logo-text { - font-size: 20px!important;position: relative!important;top: -4px!important; + font-size: 20px!important;position: relative!important;top: -4px!important; } + /* messages */ #message-new { background: #055580; border: 1px solid #333; - width: 150px; -} -#message-new a { - color: #ffffff; - text-align: center; - display: block; - font-weight: bold; - padding: 1em 0px; - text-decoration: none; -} -.mail-list-wrapper { - background-color: #f6f7f8; - margin-bottom: 5px; - width: 100%; - height: auto; - overflow: hidden; -} -.mail-list-wrapper span { - display: block; - float: left; - width: 20%; - overflow: hidden; -} -.mail-list-wrapper .mail-subject { - width: 30%; - padding: 4px 0px 0px 4px; -} -.mail-list-wrapper .mail-subject a { - display: block; -} -.mail-list-wrapper .mail-subject.unseen a { - font-weight: bold; -} -.mail-list-wrapper .mail-date { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-from { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-count { - padding: 4px 4px 0px 4px; - text-align: right; -} -.mail-list-wrapper .mail-delete { - float: right; -} -#mail-display-subject { - background-color: #f6f7f8; - color: #2d2d2d; - margin-bottom: 10px; - width: 100%; - height: auto; - overflow: hidden; -} -#mail-display-subject span { - float: left; - overflow: hidden; - padding: 4px 0px 0px 10px; -} -#mail-display-subject .mail-delete { - float: right; - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -#mail-display-subject:hover .mail-delete { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; } + /* nav */ -nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #1872a2; +nav { background: #1872a2; color: #ffffff; - z-index: 99; - border-bottom: 1px; + border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { color: #ffffff; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { - background-color: #308dbf; position: relative; height: 22px; padding: 5px; @@ -805,411 +143,46 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; - background-color: #ff0000; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; +background-color: #ff0000; + border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } + nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; +font-size: 14px; } -nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/messages2.png"); - } - -/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/notify2.png"); - } - -nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts2.png"); - } - nav #nav-apps-link.selected { - background-color: #364e59; + background-color: #364e59; + moz-border-radius: 5px 5px 0 0; +-webkit-border-radius: 5px 5px 0 0; +border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} + background: #fff;} + ul.menu-popup a:hover { - background-color: #308DBF; /*bdcdd4;*/ + background-color: #055580; /*bdcdd4;*/ color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 425px !important; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } .menu-profile-list:hover{ - background: #308DBF; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../../../view/theme/diabook/diabook-blue/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../../../view/theme/diabook/diabook-blue/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../../../view/theme/diabook/diabook-blue/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../../../view/theme/diabook/diabook-blue/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../../../view/theme/diabook/diabook-blue/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../../../view/theme/diabook/diabook-blue/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../../../view/theme/diabook/diabook-blue/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 180px; - padding: 0px 10px 0px 20px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ + background: #308dbf; } -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 173px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 173px; - } -aside #side-peoplefind-url { - width: 173px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -#login-submit-wrapper{ - margin-bottom: 12px; - } -aside #login-submit-button{ - margin-left: 0px!important; - } -aside #login-extra-links{ - padding-top: 0px!important; +aside #likes a, a:visited, a:link { + color: #055580; + text-decoration: none; + cursor: pointer; + +} +aside #likes a:hover{ + text-decoration: underline; } + + + .group_selected { background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; float: left; @@ -1254,282 +227,25 @@ transition: all 0.2s ease-in-out; float: right; height: 10px; } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} + #side-bar-photos-albums ul li{ margin-left: 30px; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #1872A2; -} + color: #055580; + .widget .tool.selected { - background: url("../../../view/theme/diabook/diabook-blue/icons/selected.png") no-repeat left center; -} -/* widget: search */ -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 800px; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 775px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} + background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center;} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; +#birthday-wrapper a { + color: #055580; } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 775px; - padding-top: 10px; -} + .tread-wrapper a{ - color: #1872A2; + color: #055580; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 780px; -} -.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} -.wall-item-photo-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-photo-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-photo-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-photo-container .wall-item-content { - - max-width: 720px; - word-wrap: break-word; - - margin-bottom: 14px; -} -.wall-item-photo-container .wall-item-content img { - max-width: 700px; -} -.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-name { - font-weight: bold; -} -.wall-item-photo-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-photo-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-photo-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-tools a { - float: right; -} -.wall-item-photo-container .wall-item-actions-tools input { - float: right; -} -.wall-item-photo-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 40px; - width: 650px; - border-bottom: 1px solid #D2D2D2; -} -.wall-item-photo-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-photo-container { - display: table; - width: 780px; -} -.my-comment-photo { - width: 48px; - margin-left: 40px; - margin-right: 32px; - } -.comment-edit-preview { - width: 500px; - margin-top: 10px; -} -.comment-edit-text-empty { - width: 500px; - border: 1px solid #D2D2D2; - height: 3.2em; - color: #2d2d2d; -} -.comment-edit-text-full { - font-size: 12.5px; - height: 3.3em; - - border: 1px solid #D2D2D2; - width: 500px; -} -.comment-edit-photo { - margin: 10px 0 0; - display: table-cell; -} - - - .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { display: table-row; } @@ -1643,1261 +359,40 @@ body .pageheader{ width: 700px; border-bottom: 1px solid hsl(198, 21%, 79%); } -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} + .comment-edit-preview { width: 500px; margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; } -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 785px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 783px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title, #profile-jot-form #jot-category { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 785px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 785px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 785px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} .button.creation2 { background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; + cursor: pointer; } + + +/*ACL*/ + ul.tabs li .active { background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; -} -//settings tabs -ul.rs_tabs { - list-style-type: none; - font-size: 11px; -} -ul.rs_tabs li { - float: left; - margin-bottom: 30px; - clear: both; -} + box-shadow: 2px 2px 2px #CFCFCF;} + ul.rs_tabs li .selected { - background-color: #055580; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - font-size: 13px; -} -.rs_tabs { - list-style-type: none; - font-size: 11px; - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.rs_tab.button { - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: bolder; - padding: 3px; - color: #333333; - text-decoration: none; - } -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -.suggest-select { -width: 500px; -height: 350px; - } -.message-to-select { - width: 400px; - height: 150px; - } -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} + background-color: #055580;} -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } +/*Photo */ -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -20px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { -position: relative; -width: 400px; -padding: 20px; -padding-top: 10px; -margin: 0 0px; -margin-bottom: 10px; -background-color: white; --webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); --moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -} -.vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-description { -margin-left: 10px; -margin-right: 10px; -font-size: 1.1em; -font-weight: bolder; -} -.vevent .event-start, .vevent .event-end { - -margin-right: 20px; -margin-bottom: 2px; -margin-top: 2px; -font-size: 0.9em; -text-align: left; -} -.event-start .dtstart, .event-end .dtend { -float: right; -} - - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url("../../../view/theme/diabook/icons/events2.png") !important; - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { - color: #1872A2; - } -.today { - font-weight: bold; - color: #FF0000; + color: #055580; } -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 10px; - } -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -section .directory-item dl { - height: auto; - overflow: auto; -} -section .directory-item dt { - float: left; - margin-left: 0px; - text-align: right; - color: #999; -} -section .directory-item dd { - float: left; - margin-left: 5px; -} -.directory-profile-wrapper { - float: left; - max-height: 178px; - overflow: hidden; - width: 635px; -} -.directory-copy-wrapper { - float: left; - overflow: hidden; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 800px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} - -section .directory-photo-wrapper { - float: left; - height: 200px; - width: 165px; -} -.contact-name { - font-weight: bold; - font-size: 18px; - margin-bottom: -3px; - text-align: left; -} -.contact-details { - color: #999999; -} -.page-type { - font-size: 10px; - font-style: italic; -} -.directory-detailscolumn-wrapper { - float: left; - width: 305px; - margin-right: 10px; -} -.directory-profile-wrapper dl { - margin-top: 3px; - margin-bottom: 3px; -} -.directory-profile-title { - font-weight: bold; - margin-bottom: 3px; - font-size: 14px; -} -#side-bar-photos-albums{ - margin-top: 15px; -} -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2906,39 +401,5 @@ section .directory-photo-wrapper { background-color: #EEE; } .photo-top-album-link{ - color: #1872A2; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - + color: #055580; +} \ No newline at end of file From f17377e6ded9540d31c57166aedd2d177b519331 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Nov 2012 00:50:39 +0100 Subject: [PATCH 22/30] New cache system with subdirectories --- boot.php | 51 +++++++++++++++++++++++++++++++++ include/network.php | 8 ++---- include/poller.php | 16 ++--------- include/text.php | 8 ++---- mod/photo.php | 49 ++++++++++++++----------------- view/theme/vier/prv_message.tpl | 33 --------------------- view/theme/vier/style.css | 4 +-- 7 files changed, 83 insertions(+), 86 deletions(-) delete mode 100644 view/theme/vier/prv_message.tpl diff --git a/boot.php b/boot.php index 8e79d6d9b..f69f6fe82 100644 --- a/boot.php +++ b/boot.php @@ -1847,3 +1847,54 @@ function random_digits($digits) { } return $rn; } + +function get_cachefile($file, $writemode = true) { + $cache = get_config("system","itemcache"); + + if ($cache == "") + return(""); + + if (!is_dir($cache)) + return(""); + + $subfolder = $cache."/".substr($file, 0, 2); + + $cachepath = $subfolder."/".$file; + + if ($writemode) { + if (!is_dir($subfolder)) { + mkdir($subfolder); + chmod($subfolder, 0777); + } + } + + return($cachepath); +} + +function clear_cache($basepath = "", $path = "") { + if ($path == "") { + $basepath = get_config('system','itemcache'); + $path = $basepath; + } + + if (($path == "") OR (!is_dir($path))) + return; + + if (substr(realpath($path), 0, strlen($basepath)) != $basepath) + return; + + $cachetime = (int)get_config('system','itemcache_duration'); + if ($cachetime == 0) + $cachetime = 86400; + + if ($dh = opendir($path)) { + while (($file = readdir($dh)) !== false) { + $fullpath = $path."/".$file; + if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != "..")) + clear_cache($basepath, $fullpath); + if ((filetype($fullpath) == "file") and filectime($fullpath) < (time() - $cachetime)) + unlink($fullpath); + } + closedir($dh); + } +} diff --git a/include/network.php b/include/network.php index 0e1a63792..edd03d557 100644 --- a/include/network.php +++ b/include/network.php @@ -823,15 +823,13 @@ function scale_external_images($s, $include_link = true, $scale_replace = false) $scaled = $mtch[1]; $i = fetch_url($scaled); - $cache = get_config('system','itemcache'); - if (($cache != '') and is_dir($cache)) { - $cachefile = $cache."/".hash("md5", $scaled); + $cachefile = get_cachefile(hash("md5", $scaled)); + if ($cachefile != '') file_put_contents($cachefile, $i); - } // guess mimetype from headers or filename $type = guess_image_type($mtch[1],true); - + if($i) { $ph = new Photo($i, $type); if($ph->is_valid()) { diff --git a/include/poller.php b/include/poller.php index d5efa36a8..6f2eeed82 100644 --- a/include/poller.php +++ b/include/poller.php @@ -102,18 +102,8 @@ function poller_run(&$argv, &$argc){ // clear old cache Cache::clear(); - // clear item cache files if they are older than one day - $cache = get_config('system','itemcache'); - if (($cache != '') and is_dir($cache)) { - if ($dh = opendir($cache)) { - while (($file = readdir($dh)) !== false) { - $fullpath = $cache."/".$file; - if ((filetype($fullpath) == "file") and filectime($fullpath) < (time() - 86400)) - unlink($fullpath); - } - closedir($dh); - } - } + // clear old item cache files + clear_cache(); $manual_id = 0; $generation = 0; @@ -128,7 +118,7 @@ function poller_run(&$argv, &$argc){ $restart = true; $generation = intval($argv[2]); if(! $generation) - killme(); + killme(); } if(($argc > 1) && intval($argv[1])) { diff --git a/include/text.php b/include/text.php index 044a1f892..a32641241 100644 --- a/include/text.php +++ b/include/text.php @@ -962,13 +962,11 @@ if(! function_exists('prepare_body')) { function prepare_body($item,$attach = false) { $a = get_app(); - call_hooks('prepare_body_init', $item); + call_hooks('prepare_body_init', $item); - $cache = get_config('system','itemcache'); - - if (($cache != '')) { - $cachefile = $cache."/".$item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']); + $cachefile = get_cachefile($item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body'])); + if (($cachefile != '')) { if (file_exists($cachefile)) $s = file_get_contents($cachefile); else { diff --git a/mod/photo.php b/mod/photo.php index dee483d83..bd49437e2 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -4,30 +4,7 @@ require_once('include/security.php'); require_once('include/Photo.php'); function photo_init(&$a) { - - // To-Do: - // - checking with realpath - // - checking permissions - /* - $cache = get_config('system','itemcache'); - if (($cache != '') and is_dir($cache)) { - $cachefile = $cache."/".$a->argc."-".$a->argv[1]."-".$a->argv[2]."-".$a->argv[3]; - if (file_exists($cachefile)) { - $data = file_get_contents($cachefile); - - if(function_exists('header_remove')) { - header_remove('Pragma'); - header_remove('pragma'); - } - - header("Content-type: image/jpeg"); - header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT"); - header("Cache-Control: max-age=" . (3600*24)); - echo $data; - killme(); - // NOTREACHED - } - }*/ + global $_SERVER; $prvcachecontrol = false; @@ -50,6 +27,22 @@ function photo_init(&$a) { // NOTREACHED } + // strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= filemtime($localFileName)) { + if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) { + header('HTTP/1.1 304 Not Modified'); + header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT"); + header('Etag: '.$_SERVER['HTTP_IF_NONE_MATCH']); + header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT"); + header("Cache-Control: max-age=31536000"); + if(function_exists('header_remove')) { + header_remove('Last-Modified'); + header_remove('Expires'); + header_remove('Cache-Control'); + } + exit; + } + + $default = 'images/person-175.jpg'; if(isset($type)) { @@ -203,10 +196,10 @@ function photo_init(&$a) { } else { - - header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT"); - header("Cache-Control: max-age=" . (3600*24)); - + header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT"); + header('Etag: "'.md5($data).'"'); + header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT"); + header("Cache-Control: max-age=31536000"); } echo $data; killme(); diff --git a/view/theme/vier/prv_message.tpl b/view/theme/vier/prv_message.tpl deleted file mode 100644 index 23a64f4f6..000000000 --- a/view/theme/vier/prv_message.tpl +++ /dev/null @@ -1,33 +0,0 @@ - -

$header

- -
-
- -$parent - -
$to
-$select - -
$subject
- - -
$yourmessage
- - - -
- -
-
-
- -
- -
-
-
-
-
diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index b39422a4a..2c4a7c704 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -887,8 +887,8 @@ aside #search-text { margin: 0px 2px 2px 0px; } #contact-block .contact-block-link img { - widht: 48px; - height: 58px; + width: 48px; + height: 48px; } .group_selected { background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; From 25b4ec32c7959d397bf131c916c594c62bf70a32 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Nov 2012 14:27:30 +0100 Subject: [PATCH 23/30] Clean up code - removed useless cache code --- mod/photo.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mod/photo.php b/mod/photo.php index bd49437e2..e37b92738 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -175,10 +175,6 @@ function photo_init(&$a) { } } - // Writing in cachefile - if (isset($cachefile) && $cachefile != '') - file_put_contents($cachefile, $data); - if(function_exists('header_remove')) { header_remove('Pragma'); header_remove('pragma'); From 5dbf89be88398d6ed7cf3bf0bc4f752c2a833f5a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Nov 2012 16:27:49 +0100 Subject: [PATCH 24/30] Making the new reshare method optional --- htconfig.php | 3 +++ include/diaspora.php | 25 +++++++++++++++++-------- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/htconfig.php b/htconfig.php index ab9a7ca50..bb0f47727 100644 --- a/htconfig.php +++ b/htconfig.php @@ -91,3 +91,6 @@ $a->config['system']['lockpath'] = ""; // If enabled, the MyBB fulltext engine is used // $a->config['system']['use_fulltext_engine'] = true; + +// Let reshared messages look like wall-to-wall posts +// $a->config['system']['diaspora_newreshare'] = true; diff --git a/include/diaspora.php b/include/diaspora.php index 6a8d4a358..c2b2fbcf4 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -963,8 +963,8 @@ function diaspora_reshare($importer,$xml,$msg) { $details = '[url=' . $person['url'] . ']' . $person['name'] . '[/url]'; else $details = $orig_author; - - $prefix = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . $details . "\n"; + + $prefix = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . $details . "\n"; // allocate a guid on our system - we aren't fixing any collisions. @@ -1023,12 +1023,21 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray['owner-name'] = $contact['name']; $datarray['owner-link'] = $contact['url']; $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']); - $datarray['author-name'] = $person['name']; // Let reshared messages look like wall-to-wall posts - $datarray['author-link'] = $person['url']; // we have to set an additional value in the item in the future - // $datarray['author-avatar'] = $person['thumb']; // to distinct the wall-to-wall-posts from reshared/repeated messages - $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); - // $datarray['body'] = $prefix . $body; - $datarray['body'] = $body; + if (intval(get_config('system','diaspora_newreshare'))) { + // Let reshared messages look like wall-to-wall posts + // we have to set an additional value in the item in the future + // to distinct the wall-to-wall-posts from reshared/repeated messages + $datarray['author-name'] = $person['name']; + $datarray['author-link'] = $person['url']; + $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); + $datarray['body'] = $body; + } else { + $datarray['author-name'] = $contact['name']; + $datarray['author-link'] = $contact['url']; + $datarray['author-avatar'] = $contact['thumb']; + $datarray['body'] = $prefix . $body; + } + $datarray['tag'] = $str_tags; $datarray['app'] = 'Diaspora'; From f9fbab948e822bf2d7044ac2d4e08eaff46e8b7b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 18 Nov 2012 20:10:05 +0100 Subject: [PATCH 25/30] ZH-CN: initial pieces of the Chinese (China) translation. Thx to matthew_exon --- view/zh-cn/follow_notify_eml.tpl | 14 + view/zh-cn/friend_complete_eml.tpl | 22 + view/zh-cn/intro_complete_eml.tpl | 22 + view/zh-cn/lostpass_eml.tpl | 32 + view/zh-cn/messages.po | 9420 ++++++++++++++++++++++++++++ view/zh-cn/passchanged_eml.tpl | 20 + view/zh-cn/register_open_eml.tpl | 34 + view/zh-cn/register_verify_eml.tpl | 25 + view/zh-cn/request_notify_eml.tpl | 17 + view/zh-cn/strings.php | 2027 ++++++ view/zh-cn/update_fail_eml.tpl | 11 + 11 files changed, 11644 insertions(+) create mode 100644 view/zh-cn/follow_notify_eml.tpl create mode 100644 view/zh-cn/friend_complete_eml.tpl create mode 100644 view/zh-cn/intro_complete_eml.tpl create mode 100644 view/zh-cn/lostpass_eml.tpl create mode 100644 view/zh-cn/messages.po create mode 100644 view/zh-cn/passchanged_eml.tpl create mode 100644 view/zh-cn/register_open_eml.tpl create mode 100644 view/zh-cn/register_verify_eml.tpl create mode 100644 view/zh-cn/request_notify_eml.tpl create mode 100644 view/zh-cn/strings.php create mode 100644 view/zh-cn/update_fail_eml.tpl diff --git a/view/zh-cn/follow_notify_eml.tpl b/view/zh-cn/follow_notify_eml.tpl new file mode 100644 index 000000000..48f75f3db --- /dev/null +++ b/view/zh-cn/follow_notify_eml.tpl @@ -0,0 +1,14 @@ + +尊敬的$[myname], + +您有新关注的在$[sitename]-「$[requestor]」。 + +您能看他的简介在$[url]。 + +请再您的网页登记为确认或取消要求。 + +$[siteurl] + +谨上, + + $[sitename]行政人员 \ No newline at end of file diff --git a/view/zh-cn/friend_complete_eml.tpl b/view/zh-cn/friend_complete_eml.tpl new file mode 100644 index 000000000..a25896f09 --- /dev/null +++ b/view/zh-cn/friend_complete_eml.tpl @@ -0,0 +1,22 @@ + +尊敬的$[username], + + 精彩新闻... 「$[fn]」在「$[dfrn_url]」接受了 +您的连通要求在「$[sitename]」。 + +您们现在是共同的朋友们,会兑换现状更新,照片和邮件 +无限 + +请看您的联络页在$[sitename]如果您想做 +什么变化关于这个关系。 + +$[siteurl] + +[例如,您会想造成区分的简介括无 +公开-和分配看权利给「$[fn]」 + +谨上, + + $[sitename]行政人员 + + \ No newline at end of file diff --git a/view/zh-cn/intro_complete_eml.tpl b/view/zh-cn/intro_complete_eml.tpl new file mode 100644 index 000000000..8d8d4f603 --- /dev/null +++ b/view/zh-cn/intro_complete_eml.tpl @@ -0,0 +1,22 @@ + +尊敬的$[username], + + 「$[fn]」在「$[dfrn_url]」接受了 +您的联络要求在「$[sitename]」 + + 「$[fn]」接受您为迷。这限制 +有的种类沟通,例如私人信息和简介 +操作。如果这是名人或社会页,这些设置是 +自动地应用。 + + 「$[fn]」会将来选择延长关系成双向的或更允许的 +关系。 + + 您会开始受到公开的现状更新从「$[fn]」, +它们出现在您的「网络」页在 + +$[siteurl] + +谨上, + + $[sitename]行政人员 \ No newline at end of file diff --git a/view/zh-cn/lostpass_eml.tpl b/view/zh-cn/lostpass_eml.tpl new file mode 100644 index 000000000..8c5ec5c7b --- /dev/null +++ b/view/zh-cn/lostpass_eml.tpl @@ -0,0 +1,32 @@ + +尊敬的$[username], + $[sitename]最近收到一个要求复位您的账户 +密码。为肯定这个要求,请点击肯定按钮 +在下边或粘贴在您的游览器地址条 + +如果您没有要求这个变化,请别点击这个按努i +和不理或删除这个邮件。 + +您密码没有被变化直到我们证实您 +发送这个要求时。 + +点击这个按钮为证实您的同一个人: + +$[reset_link] + +然后您收到后续通信包括新密码。 + +您会变化密码在您的账户设置页登记后。 + +登记细节是: + +网站位置: $[siteurl] +登记名: $[email] + + + + +谨上, + $[sitename]行政人员 + + \ No newline at end of file diff --git a/view/zh-cn/messages.po b/view/zh-cn/messages.po new file mode 100644 index 000000000..caef6e326 --- /dev/null +++ b/view/zh-cn/messages.po @@ -0,0 +1,9420 @@ +# FRIENDICA Distributed Social Network +# Copyright (C) 2010, 2011 the Friendica Project +# This file is distributed under the same license as the Friendica package. +# +# Translators: +# Mike Macgirvin, 2010. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" +"POT-Creation-Date: 2012-11-14 10:00-0800\n" +"PO-Revision-Date: 2012-11-18 17:14+0000\n" +"Last-Translator: matthew_exon \n" +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "评论发表了。" + +#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 +#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[嵌入内容-重新加载页为看]" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "熟人设置应用了。" + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "熟人更新失败。" + +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:90 ../../mod/network.php:6 +#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 +#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 +#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139 +#: ../../mod/item.php:155 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9 +#: ../../mod/display.php:165 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:424 ../../mod/delegate.php:6 +#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3971 +#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510 +#: ../../addon.old/facebook/facebook.php:516 +#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165 +#: ../../addon.old/dav/friendica/layout.fnk.php:354 +msgid "Permission denied." +msgstr "权限不够。" + +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 +msgid "Contact not found." +msgstr "没找到熟人。" + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "维修熟人设置" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "注意:这是很高等的,你输入错的信息你和熟人的沟通会弄失灵了。" + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "请立即用后退按钮如果您不确定怎么用这页" + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "" + +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 +msgid "Name" +msgstr "名字" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "帐户昵称" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname越过名/昵称" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "帐户URL" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "朋友请求URL" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "朋友确认URL" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "通知端URL" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "喂URL" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "新照片从这个URL" + +#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 +#: ../../mod/events.php:455 ../../mod/photos.php:1028 +#: ../../mod/photos.php:1104 ../../mod/photos.php:1367 +#: ../../mod/photos.php:1407 ../../mod/photos.php:1451 +#: ../../mod/photos.php:1523 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:351 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:594 ../../mod/invite.php:119 +#: ../../addon/fromgplus/fromgplus.php:40 +#: ../../addon/facebook/facebook.php:619 +#: ../../addon/snautofollow/snautofollow.php:64 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158 +#: ../../addon/uhremotestorage/uhremotestorage.php:89 +#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 +#: ../../addon/remote_permissions/remote_permissions.php:47 +#: ../../addon/remote_permissions/remote_permissions.php:195 +#: ../../addon/startpage/startpage.php:92 +#: ../../addon/geonames/geonames.php:187 +#: ../../addon/forumlist/forumlist.php:175 +#: ../../addon/impressum/impressum.php:83 +#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 +#: ../../addon/qcomment/qcomment.php:61 +#: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/group_text/group_text.php:84 +#: ../../addon/libravatar/libravatar.php:99 +#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:307 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 +#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:562 ../../addon.old/fromgplus/fromgplus.php:40 +#: ../../addon.old/facebook/facebook.php:619 +#: ../../addon.old/snautofollow/snautofollow.php:64 +#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226 +#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93 +#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211 +#: ../../addon.old/planets/planets.php:158 +#: ../../addon.old/uhremotestorage/uhremotestorage.php:89 +#: ../../addon.old/randplace/randplace.php:177 +#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110 +#: ../../addon.old/startpage/startpage.php:92 +#: ../../addon.old/geonames/geonames.php:187 +#: ../../addon.old/oembed.old/oembed.php:41 +#: ../../addon.old/forumlist/forumlist.php:175 +#: ../../addon.old/impressum/impressum.php:83 +#: ../../addon.old/notimeline/notimeline.php:64 +#: ../../addon.old/blockem/blockem.php:57 +#: ../../addon.old/qcomment/qcomment.php:61 +#: ../../addon.old/openstreetmap/openstreetmap.php:70 +#: ../../addon.old/group_text/group_text.php:84 +#: ../../addon.old/libravatar/libravatar.php:99 +#: ../../addon.old/libertree/libertree.php:90 +#: ../../addon.old/altpager/altpager.php:87 +#: ../../addon.old/mathjax/mathjax.php:42 +#: ../../addon.old/editplain/editplain.php:84 +#: ../../addon.old/blackout/blackout.php:98 +#: ../../addon.old/gravatar/gravatar.php:95 +#: ../../addon.old/pageheader/pageheader.php:55 +#: ../../addon.old/ijpost/ijpost.php:93 +#: ../../addon.old/jappixmini/jappixmini.php:307 +#: ../../addon.old/statusnet/statusnet.php:278 +#: ../../addon.old/statusnet/statusnet.php:292 +#: ../../addon.old/statusnet/statusnet.php:318 +#: ../../addon.old/statusnet/statusnet.php:325 +#: ../../addon.old/statusnet/statusnet.php:353 +#: ../../addon.old/statusnet/statusnet.php:576 +#: ../../addon.old/tumblr/tumblr.php:90 +#: ../../addon.old/numfriends/numfriends.php:85 +#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110 +#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89 +#: ../../addon.old/twitter/twitter.php:180 +#: ../../addon.old/twitter/twitter.php:209 +#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55 +#: ../../addon.old/fromapp/fromapp.php:77 +#: ../../addon.old/blogger/blogger.php:102 +#: ../../addon.old/posterous/posterous.php:103 +msgid "Submit" +msgstr "提交" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "帮助:" + +#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225 +msgid "Help" +msgstr "帮助" + +#: ../../mod/help.php:90 ../../index.php:218 +msgid "Not Found" +msgstr "未发现" + +#: ../../mod/help.php:93 ../../index.php:221 +msgid "Page not found." +msgstr "页发现。" + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "文件数目超过最多%d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "文件上传失败。" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "朋友建议发送了。" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "建议朋友们" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "建议朋友给%s" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:279 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:301 +msgid "Edit event" +msgstr "编项目" + +#: ../../mod/events.php:323 ../../include/text.php:1192 +msgid "link to source" +msgstr "链接到来源" + +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90 +#: ../../include/nav.php:52 ../../boot.php:1745 +msgid "Events" +msgstr "事件" + +#: ../../mod/events.php:348 +msgid "Create New Event" +msgstr "造成新的项目" + +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 +#: ../../addon.old/dav/friendica/layout.fnk.php:263 +msgid "Previous" +msgstr "上" + +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 +#: ../../addon.old/dav/friendica/layout.fnk.php:266 +msgid "Next" +msgstr "下" + +#: ../../mod/events.php:423 +msgid "hour:minute" +msgstr "小时:分钟" + +#: ../../mod/events.php:433 +msgid "Event details" +msgstr "项目内容" + +#: ../../mod/events.php:434 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:436 +msgid "Event Starts:" +msgstr "事件开始:" + +#: ../../mod/events.php:436 ../../mod/events.php:450 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:439 +msgid "Finish date/time is not known or not relevant" +msgstr "结束日/时未知或无关" + +#: ../../mod/events.php:441 +msgid "Event Finishes:" +msgstr "事件结束:" + +#: ../../mod/events.php:444 +msgid "Adjust for viewer timezone" +msgstr "调为观众的时间" + +#: ../../mod/events.php:446 +msgid "Description:" +msgstr "描述:" + +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1275 +msgid "Location:" +msgstr "位置:" + +#: ../../mod/events.php:450 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:452 +msgid "Share this event" +msgstr "分享这个项目" + +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:142 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1005 +#: ../../addon.old/js_upload/js_upload.php:45 +msgid "Cancel" +msgstr "退消" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "标签去除了" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "去除项目标签" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "选择标签去除" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:468 +msgid "Remove" +msgstr "移走" + +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "授权应用连接" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "回归您的应用和输入这个安全密码:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "请登记为继续。" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章" + +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:574 +msgid "Yes" +msgstr "是" + +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:238 +#: ../../mod/profiles.php:575 +msgid "No" +msgstr "否" + +#: ../../mod/photos.php:51 ../../boot.php:1738 +msgid "Photo Albums" +msgstr "相册" + +#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1096 ../../mod/photos.php:1111 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1578 +#: ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook/theme.php:485 +#: ../../addon.old/communityhome/communityhome.php:110 +msgid "Contact Photos" +msgstr "熟人照片" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1127 ../../mod/photos.php:1616 +msgid "Upload New Photos" +msgstr "上传新照片" + +#: ../../mod/photos.php:79 ../../mod/settings.php:23 +msgid "everybody" +msgstr "每人" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "熟人信息不可用" + +#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1096 +#: ../../mod/photos.php:1111 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +#: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook/theme.php:486 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 +#: ../../addon.old/communityhome/communityhome.php:111 +msgid "Profile Photos" +msgstr "简介照片" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "取回不了相册." + +#: ../../mod/photos.php:182 ../../mod/photos.php:1105 +msgid "Delete Album" +msgstr "删除相册" + +#: ../../mod/photos.php:245 ../../mod/photos.php:1368 +msgid "Delete Photo" +msgstr "删除照片" + +#: ../../mod/photos.php:607 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: ../../mod/photos.php:607 +msgid "a photo" +msgstr "" + +#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:315 +#: ../../addon.old/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "图片超出最大尺寸" + +#: ../../mod/photos.php:720 +msgid "Image file is empty." +msgstr "图片文件空的。" + +#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:112 +msgid "Unable to process image." +msgstr "处理不了图像." + +#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:138 +msgid "Image upload failed." +msgstr "图像上载失败了." + +#: ../../mod/photos.php:865 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:86 ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "公众看拒绝" + +#: ../../mod/photos.php:875 +msgid "No photos selected" +msgstr "没有照片挑选了" + +#: ../../mod/photos.php:976 +msgid "Access to this item is restricted." +msgstr "这个项目使用权限的。" + +#: ../../mod/photos.php:1038 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: ../../mod/photos.php:1041 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "" + +#: ../../mod/photos.php:1047 +msgid "Upload Photos" +msgstr "上传照片" + +#: ../../mod/photos.php:1051 ../../mod/photos.php:1100 +msgid "New album name: " +msgstr "新册名:" + +#: ../../mod/photos.php:1052 +msgid "or existing album name: " +msgstr "或现有册名" + +#: ../../mod/photos.php:1053 +msgid "Do not show a status post for this upload" +msgstr "别显示现状报到关于这个上传" + +#: ../../mod/photos.php:1055 ../../mod/photos.php:1363 +msgid "Permissions" +msgstr "权利" + +#: ../../mod/photos.php:1115 +msgid "Edit Album" +msgstr "编照片册" + +#: ../../mod/photos.php:1121 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1123 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1147 ../../mod/photos.php:1599 +msgid "View Photo" +msgstr "看照片" + +#: ../../mod/photos.php:1182 +msgid "Permission denied. Access to this item may be restricted." +msgstr "无权利。用这个项目可能受限制。" + +#: ../../mod/photos.php:1184 +msgid "Photo not available" +msgstr "照片不可获得的 " + +#: ../../mod/photos.php:1240 +msgid "View photo" +msgstr "看照片" + +#: ../../mod/photos.php:1240 +msgid "Edit photo" +msgstr "编辑照片" + +#: ../../mod/photos.php:1241 +msgid "Use as profile photo" +msgstr "用为资料图" + +#: ../../mod/photos.php:1247 ../../mod/content.php:603 +#: ../../object/Item.php:104 +msgid "Private Message" +msgstr "私人的新闻" + +#: ../../mod/photos.php:1266 +msgid "View Full Size" +msgstr "看全尺寸" + +#: ../../mod/photos.php:1340 +msgid "Tags: " +msgstr "标签:" + +#: ../../mod/photos.php:1343 +msgid "[Remove any tag]" +msgstr "[删除任何标签]" + +#: ../../mod/photos.php:1353 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:1354 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:1356 +msgid "New album name" +msgstr "新册名" + +#: ../../mod/photos.php:1359 +msgid "Caption" +msgstr "字幕" + +#: ../../mod/photos.php:1361 +msgid "Add a Tag" +msgstr "加标签" + +#: ../../mod/photos.php:1365 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv" + +#: ../../mod/photos.php:1385 ../../mod/content.php:667 +#: ../../object/Item.php:197 +msgid "I like this (toggle)" +msgstr "我喜欢这(交替)" + +#: ../../mod/photos.php:1386 ../../mod/content.php:668 +#: ../../object/Item.php:198 +msgid "I don't like this (toggle)" +msgstr "我不喜欢这(交替)" + +#: ../../mod/photos.php:1387 ../../include/conversation.php:966 +msgid "Share" +msgstr "分享" + +#: ../../mod/photos.php:1388 ../../mod/editpost.php:118 +#: ../../mod/content.php:482 ../../mod/content.php:848 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:624 +#: ../../include/conversation.php:985 ../../object/Item.php:261 +msgid "Please wait" +msgstr "请等一下" + +#: ../../mod/photos.php:1404 ../../mod/photos.php:1448 +#: ../../mod/photos.php:1520 ../../mod/content.php:690 +#: ../../object/Item.php:559 +msgid "This is you" +msgstr "这是你" + +#: ../../mod/photos.php:1406 ../../mod/photos.php:1450 +#: ../../mod/photos.php:1522 ../../mod/content.php:692 ../../boot.php:605 +#: ../../object/Item.php:561 +msgid "Comment" +msgstr "评论" + +#: ../../mod/photos.php:1408 ../../mod/photos.php:1452 +#: ../../mod/photos.php:1524 ../../mod/editpost.php:139 +#: ../../mod/content.php:702 ../../include/conversation.php:1003 +#: ../../object/Item.php:571 +msgid "Preview" +msgstr "预演" + +#: ../../mod/photos.php:1492 ../../mod/content.php:439 +#: ../../mod/content.php:724 ../../mod/settings.php:606 +#: ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:569 ../../object/Item.php:118 +msgid "Delete" +msgstr "删除" + +#: ../../mod/photos.php:1605 +msgid "View Album" +msgstr "看照片册" + +#: ../../mod/photos.php:1614 +msgid "Recent Photos" +msgstr "最近的照片" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "不可用的" + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:92 +#: ../../include/nav.php:101 +msgid "Community" +msgstr "社会" + +#: ../../mod/community.php:61 ../../mod/community.php:86 +#: ../../mod/search.php:159 ../../mod/search.php:185 +msgid "No results." +msgstr "没有结果" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "这是Friendica,版本" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "运作再网址" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "请看Friendica.com发现多关于Friendica工程。" + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "问题报案:请去" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "没有安装的插件/应用" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "项目没找到" + +#: ../../mod/editpost.php:36 +msgid "Edit post" +msgstr "编辑文章" + +#: ../../mod/editpost.php:88 ../../include/conversation.php:952 +msgid "Post to Email" +msgstr "电邮发布" + +#: ../../mod/editpost.php:103 ../../mod/content.php:711 +#: ../../mod/settings.php:605 ../../object/Item.php:108 +msgid "Edit" +msgstr "编辑" + +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:967 +msgid "Upload photo" +msgstr "上传照片" + +#: ../../mod/editpost.php:105 ../../include/conversation.php:968 +msgid "upload photo" +msgstr "上传照片" + +#: ../../mod/editpost.php:106 ../../include/conversation.php:969 +msgid "Attach file" +msgstr "附上文件" + +#: ../../mod/editpost.php:107 ../../include/conversation.php:970 +msgid "attach file" +msgstr "附上文件" + +#: ../../mod/editpost.php:108 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:971 +msgid "Insert web link" +msgstr "插入网页环节" + +#: ../../mod/editpost.php:109 ../../include/conversation.php:972 +msgid "web link" +msgstr "网页环节" + +#: ../../mod/editpost.php:110 ../../include/conversation.php:973 +msgid "Insert video link" +msgstr "插入视频环节" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:974 +msgid "video link" +msgstr "视频环节" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:975 +msgid "Insert audio link" +msgstr "插入录音环节" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:976 +msgid "audio link" +msgstr "录音环节" + +#: ../../mod/editpost.php:114 ../../include/conversation.php:977 +msgid "Set your location" +msgstr "设定您的位置" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:978 +msgid "set location" +msgstr "" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:979 +msgid "Clear browser location" +msgstr "清空浏览器位置" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:980 +msgid "clear location" +msgstr "" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:986 +msgid "Permission settings" +msgstr "权设置" + +#: ../../mod/editpost.php:127 ../../include/conversation.php:995 +msgid "CC: email addresses" +msgstr "抄送: 电子邮件地址" + +#: ../../mod/editpost.php:128 ../../include/conversation.php:996 +msgid "Public post" +msgstr "公开的消息" + +#: ../../mod/editpost.php:131 ../../include/conversation.php:982 +msgid "Set title" +msgstr "指定标题" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:984 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:998 +msgid "Example: bob@example.com, mary@example.com" +msgstr "比如: li@example.com, wang@example.com" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "这个介绍已经接受了。" + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 +msgid "Profile location is not valid or does not contain profile information." +msgstr "简介位置失效或不包括简介信息。" + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 +msgid "Warning: profile location has no identifiable owner name." +msgstr "警告:简介位置没有可设别的主名。" + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 +msgid "Warning: profile location has no profile photo." +msgstr "警告:简介位置没有简介图。" + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d需要的参数没找到在输入的位置。" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "介绍完成的。" + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "不能恢复的协议错误" + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "简介无效" + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s今天已经受到了太多联络要求" + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "垃圾保护措施被用了。" + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "朋友们被建议请24小时后再试。" + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "无效找到物" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "" + +#: ../../mod/dfrn_request.php:361 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: ../../mod/dfrn_request.php:457 +msgid "Unable to resolve your name at the provided location." +msgstr "不可疏解您的名字再输入的位置。" + +#: ../../mod/dfrn_request.php:470 +msgid "You have already introduced yourself here." +msgstr "您已经自我介绍这儿。" + +#: ../../mod/dfrn_request.php:474 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "看上去您已经是%s的朋友。" + +#: ../../mod/dfrn_request.php:495 +msgid "Invalid profile URL." +msgstr "无效的简介URL。" + +#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "不允许的简介地址." + +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 +msgid "Failed to update contact record." +msgstr "更新熟人记录失败了。" + +#: ../../mod/dfrn_request.php:591 +msgid "Your introduction has been sent." +msgstr "您的介绍发布了。" + +#: ../../mod/dfrn_request.php:644 +msgid "Please login to confirm introduction." +msgstr "请登记为确认介绍。" + +#: ../../mod/dfrn_request.php:658 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "错误的用户登记者。请用这个用户。" + +#: ../../mod/dfrn_request.php:669 +msgid "Hide this contact" +msgstr "" + +#: ../../mod/dfrn_request.php:672 +#, php-format +msgid "Welcome home %s." +msgstr "欢迎%s。" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "请确认您的介绍/联络要求给%s。" + +#: ../../mod/dfrn_request.php:674 +msgid "Confirm" +msgstr "确认" + +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3350 +msgid "[Name Withheld]" +msgstr "[名字拒给]" + +#: ../../mod/dfrn_request.php:810 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: ../../mod/dfrn_request.php:826 +msgid "Connect as an email follower (Coming soon)" +msgstr "" + +#: ../../mod/dfrn_request.php:828 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "" + +#: ../../mod/dfrn_request.php:831 +msgid "Friend/Connection Request" +msgstr "朋友/联络要求。" + +#: ../../mod/dfrn_request.php:832 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:833 +msgid "Please answer the following:" +msgstr "请回答下述的:" + +#: ../../mod/dfrn_request.php:834 +#, php-format +msgid "Does %s know you?" +msgstr "%s是否认识你?" + +#: ../../mod/dfrn_request.php:837 +msgid "Add a personal note:" +msgstr "添加个人的便条" + +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:840 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/联合社会化网" + +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:842 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: ../../mod/dfrn_request.php:843 +msgid "Your Identity Address:" +msgstr "您的同一个人地址:" + +#: ../../mod/dfrn_request.php:846 +msgid "Submit Request" +msgstr "提交要求" + +#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:137 +msgid "Account settings" +msgstr "帐户配置" + +#: ../../mod/uexport.php:14 ../../mod/settings.php:35 +msgid "Display settings" +msgstr "" + +#: ../../mod/uexport.php:20 ../../mod/settings.php:41 +msgid "Connector settings" +msgstr "插销设置" + +#: ../../mod/uexport.php:25 ../../mod/settings.php:46 +msgid "Plugin settings" +msgstr "插件设置" + +#: ../../mod/uexport.php:30 ../../mod/settings.php:51 +msgid "Connected apps" +msgstr "" + +#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:56 +msgid "Export personal data" +msgstr "出口私人信息" + +#: ../../mod/uexport.php:40 ../../mod/settings.php:61 +msgid "Remove account" +msgstr "" + +#: ../../mod/uexport.php:48 ../../mod/settings.php:69 +#: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:614 +#: ../../include/nav.php:137 ../../addon.old/dav/friendica/layout.fnk.php:225 +#: ../../addon.old/mathjax/mathjax.php:36 +msgid "Settings" +msgstr "配置" + +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "" + +#: ../../mod/uexport.php:72 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "" + +#: ../../mod/uexport.php:73 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +msgstr "Friendica社会交通服务器-安装" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "解不了数据库。" + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "造成不了表格。" + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "您Friendica网站数据库被安装了。" + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。" + +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:488 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "请看文件「INSTALL.txt」" + +#: ../../mod/install.php:201 +msgid "System check" +msgstr "系统检测" + +#: ../../mod/install.php:206 +msgid "Check again" +msgstr "再检测" + +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "数据库接通" + +#: ../../mod/install.php:226 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "为安装Friendica我们要知道怎么连接您的数据库。" + +#: ../../mod/install.php:227 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。" + +#: ../../mod/install.php:228 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。" + +#: ../../mod/install.php:232 +msgid "Database Server Name" +msgstr "数据库服务器名" + +#: ../../mod/install.php:233 +msgid "Database Login Name" +msgstr "数据库登录名" + +#: ../../mod/install.php:234 +msgid "Database Login Password" +msgstr "数据库登录密码" + +#: ../../mod/install.php:235 +msgid "Database Name" +msgstr "数据库名字" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "Site administrator email address" +msgstr "网站行政人员邮件地址" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "您账户邮件地址必要符合这个为用网站处理仪表板" + +#: ../../mod/install.php:240 ../../mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "请选择您网站的默认时区" + +#: ../../mod/install.php:265 +msgid "Site settings" +msgstr "网站设置" + +#: ../../mod/install.php:318 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "没找到命令行PHP在网服务器PATH。" + +#: ../../mod/install.php:319 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "" + +#: ../../mod/install.php:323 +msgid "PHP executable path" +msgstr "PHP可执行路径" + +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/install.php:328 +msgid "Command line PHP" +msgstr "命令行PHP" + +#: ../../mod/install.php:337 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "您系统的命令行PHP没有能够「register_argc_argv」。" + +#: ../../mod/install.php:338 +msgid "This is required for message delivery to work." +msgstr "这必要为通信发布成功。" + +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/install.php:361 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙" + +#: ../../mod/install.php:362 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。" + +#: ../../mod/install.php:364 +msgid "Generate encryption keys" +msgstr "产生加密钥匙" + +#: ../../mod/install.php:371 +msgid "libCurl PHP module" +msgstr "libCurl PHP模块" + +#: ../../mod/install.php:372 +msgid "GD graphics PHP module" +msgstr "GD显示PHP模块" + +#: ../../mod/install.php:373 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP模块" + +#: ../../mod/install.php:374 +msgid "mysqli PHP module" +msgstr "mysqli PHP模块" + +#: ../../mod/install.php:375 +msgid "mb_string PHP module" +msgstr "mb_string PHP模块" + +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../mod/install.php:380 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。" + +#: ../../mod/install.php:388 +msgid "Error: libCURL PHP module required but not installed." +msgstr "错误:libCurl PHP模块是必要的可却不安装的。" + +#: ../../mod/install.php:392 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。" + +#: ../../mod/install.php:396 +msgid "Error: openssl PHP module required but not installed." +msgstr "错误:openssl PHP模块是必要的可却不安装的。" + +#: ../../mod/install.php:400 +msgid "Error: mysqli PHP module required but not installed." +msgstr "错误:mysqli PHP模块是必要的可却不安装的。" + +#: ../../mod/install.php:404 +msgid "Error: mb_string PHP module required but not installed." +msgstr "错误:mbstring PHP模块必要可没安装的。" + +#: ../../mod/install.php:421 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "网页安装者要能造成叫「.htconfig.php」在网服务器主文件夹可却不能。" + +#: ../../mod/install.php:422 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。" + +#: ../../mod/install.php:423 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: ../../mod/install.php:424 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:427 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php是可写的" + +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/install.php:451 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "数据库设置文件「.htconfig.php」不能被写。请把包括的正文造成设置文件在网服务器子目录。" + +#: ../../mod/install.php:475 +msgid "Errors encountered creating database tables." +msgstr "造成数据库列表相遇错误。" + +#: ../../mod/install.php:486 +msgid "

What next

" +msgstr "" + +#: ../../mod/install.php:487 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "重要:您要[手工地]准备安排的任务给喂器。" + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:390 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "时间装换" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC时间: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "现在时区: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "装换的当地时间:%s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "请选择你的时区:" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "简介符合" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "没有符合的关键字。请在您的默认简介加关键字。" + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "感兴趣对:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:9 ../../boot.php:1213 +msgid "Connect" +msgstr "连接" + +#: ../../mod/match.php:65 ../../mod/dirfind.php:60 +msgid "No matches" +msgstr "没有结果" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "摇隐私信息无效" + +#: ../../mod/lockview.php:48 +#: ../../addon/remote_permissions/remote_permissions.php:123 +msgid "Visible to:" +msgstr "可见给:" + +#: ../../mod/content.php:119 ../../mod/network.php:544 +msgid "No such group" +msgstr "没有这个组" + +#: ../../mod/content.php:130 ../../mod/network.php:555 +msgid "Group is empty" +msgstr "组没有成员" + +#: ../../mod/content.php:134 ../../mod/network.php:559 +msgid "Group: " +msgstr "组:" + +#: ../../mod/content.php:438 ../../mod/content.php:723 +#: ../../include/conversation.php:568 ../../object/Item.php:117 +msgid "Select" +msgstr "选择" + +#: ../../mod/content.php:455 ../../mod/content.php:817 +#: ../../mod/content.php:818 ../../include/conversation.php:587 +#: ../../object/Item.php:229 ../../object/Item.php:230 +#, php-format +msgid "View %s's profile @ %s" +msgstr "看%s的简介@ %s" + +#: ../../mod/content.php:465 ../../mod/content.php:829 +#: ../../include/conversation.php:607 ../../object/Item.php:242 +#, php-format +msgid "%s from %s" +msgstr "%s从%s" + +#: ../../mod/content.php:480 ../../include/conversation.php:622 +msgid "View in context" +msgstr "看在上下文" + +#: ../../mod/content.php:586 ../../object/Item.php:280 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d评论" + +#: ../../mod/content.php:588 ../../include/text.php:1448 +#: ../../object/Item.php:282 ../../object/Item.php:295 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" + +#: ../../mod/content.php:589 ../../addon/page/page.php:77 +#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../boot.php:606 +#: ../../object/Item.php:283 ../../addon.old/page/page.php:77 +#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119 +msgid "show more" +msgstr "看多" + +#: ../../mod/content.php:667 ../../object/Item.php:197 +msgid "like" +msgstr "喜欢" + +#: ../../mod/content.php:668 ../../object/Item.php:198 +msgid "dislike" +msgstr "讨厌" + +#: ../../mod/content.php:670 ../../object/Item.php:200 +msgid "Share this" +msgstr "分享这个" + +#: ../../mod/content.php:670 ../../object/Item.php:200 +msgid "share" +msgstr "分享" + +#: ../../mod/content.php:694 ../../object/Item.php:563 +msgid "Bold" +msgstr "" + +#: ../../mod/content.php:695 ../../object/Item.php:564 +msgid "Italic" +msgstr "" + +#: ../../mod/content.php:696 ../../object/Item.php:565 +msgid "Underline" +msgstr "" + +#: ../../mod/content.php:697 ../../object/Item.php:566 +msgid "Quote" +msgstr "" + +#: ../../mod/content.php:698 ../../object/Item.php:567 +msgid "Code" +msgstr "" + +#: ../../mod/content.php:699 ../../object/Item.php:568 +msgid "Image" +msgstr "" + +#: ../../mod/content.php:700 ../../object/Item.php:569 +msgid "Link" +msgstr "" + +#: ../../mod/content.php:701 ../../object/Item.php:570 +msgid "Video" +msgstr "" + +#: ../../mod/content.php:736 ../../object/Item.php:181 +msgid "add star" +msgstr "加星" + +#: ../../mod/content.php:737 ../../object/Item.php:182 +msgid "remove star" +msgstr "消星" + +#: ../../mod/content.php:738 ../../object/Item.php:183 +msgid "toggle star status" +msgstr "转变星现状" + +#: ../../mod/content.php:741 ../../object/Item.php:186 +msgid "starred" +msgstr "被贴星" + +#: ../../mod/content.php:742 ../../object/Item.php:187 +msgid "add tag" +msgstr "加标签" + +#: ../../mod/content.php:746 ../../object/Item.php:121 +msgid "save to folder" +msgstr "" + +#: ../../mod/content.php:819 ../../object/Item.php:231 +msgid "to" +msgstr "至" + +#: ../../mod/content.php:820 ../../object/Item.php:232 +msgid "Wall-to-Wall" +msgstr "从墙到墙" + +#: ../../mod/content.php:821 ../../object/Item.php:233 +msgid "via Wall-To-Wall:" +msgstr "通过从墙到墙" + +#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179 +#: ../../addon.old/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "%s欢迎你" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "无效要求身份号。" + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Discard" +msgstr "丢弃" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:163 +#: ../../mod/notifications.php:209 ../../mod/contacts.php:324 +#: ../../mod/contacts.php:378 +msgid "Ignore" +msgstr "忽视" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "系统" + +#: ../../mod/notifications.php:83 ../../include/nav.php:113 +msgid "Network" +msgstr "网络" + +#: ../../mod/notifications.php:88 ../../mod/network.php:407 +msgid "Personal" +msgstr "私人" + +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:86 +#: ../../include/nav.php:77 ../../include/nav.php:115 +msgid "Home" +msgstr "主页" + +#: ../../mod/notifications.php:98 ../../include/nav.php:121 +msgid "Introductions" +msgstr "介绍" + +#: ../../mod/notifications.php:103 ../../mod/message.php:176 +#: ../../include/nav.php:128 +msgid "Messages" +msgstr "消息" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "显示不理的要求" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "隐藏不理的要求" + +#: ../../mod/notifications.php:148 ../../mod/notifications.php:194 +msgid "Notification type: " +msgstr "通知种类:" + +#: ../../mod/notifications.php:149 +msgid "Friend Suggestion" +msgstr "朋友建议" + +#: ../../mod/notifications.php:151 +#, php-format +msgid "suggested by %s" +msgstr "由%s建议的" + +#: ../../mod/notifications.php:156 ../../mod/notifications.php:203 +#: ../../mod/contacts.php:384 +msgid "Hide this contact from others" +msgstr "隐藏这个熟人给别人" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +msgid "Post a new friend activity" +msgstr "" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +msgid "if applicable" +msgstr "" + +#: ../../mod/notifications.php:160 ../../mod/notifications.php:207 +#: ../../mod/admin.php:694 +msgid "Approve" +msgstr "批准" + +#: ../../mod/notifications.php:180 +msgid "Claims to be known to you: " +msgstr "声称被您认识:" + +#: ../../mod/notifications.php:180 +msgid "yes" +msgstr "是" + +#: ../../mod/notifications.php:180 +msgid "no" +msgstr "否" + +#: ../../mod/notifications.php:187 +msgid "Approve as: " +msgstr "批准作为" + +#: ../../mod/notifications.php:188 +msgid "Friend" +msgstr "朋友" + +#: ../../mod/notifications.php:189 +msgid "Sharer" +msgstr "分享者" + +#: ../../mod/notifications.php:189 +msgid "Fan/Admirer" +msgstr "迷/赞赏者" + +#: ../../mod/notifications.php:195 +msgid "Friend/Connect Request" +msgstr "友谊/联络要求" + +#: ../../mod/notifications.php:195 +msgid "New Follower" +msgstr "新关注者:" + +#: ../../mod/notifications.php:216 +msgid "No introductions." +msgstr "没有介绍。" + +#: ../../mod/notifications.php:219 ../../include/nav.php:122 +msgid "Notifications" +msgstr "通知" + +#: ../../mod/notifications.php:256 ../../mod/notifications.php:381 +#: ../../mod/notifications.php:468 +#, php-format +msgid "%s liked %s's post" +msgstr "%s喜欢了%s的消息" + +#: ../../mod/notifications.php:265 ../../mod/notifications.php:390 +#: ../../mod/notifications.php:477 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s不喜欢了%s的消息" + +#: ../../mod/notifications.php:279 ../../mod/notifications.php:404 +#: ../../mod/notifications.php:491 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s成为%s的朋友" + +#: ../../mod/notifications.php:286 ../../mod/notifications.php:411 +#, php-format +msgid "%s created a new post" +msgstr "%s造成新文章" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:500 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s便条%s的文章" + +#: ../../mod/notifications.php:301 +msgid "No more network notifications." +msgstr "没有别的网络通信。" + +#: ../../mod/notifications.php:305 +msgid "Network Notifications" +msgstr "" + +#: ../../mod/notifications.php:331 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../mod/notifications.php:335 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "" + +#: ../../mod/notifications.php:426 +msgid "No more personal notifications." +msgstr "没有别的私人通信。" + +#: ../../mod/notifications.php:430 +msgid "Personal Notifications" +msgstr "" + +#: ../../mod/notifications.php:507 +msgid "No more home notifications." +msgstr "没有别的家通信。" + +#: ../../mod/notifications.php:511 +msgid "Home Notifications" +msgstr "" + +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 +msgid "Could not access contact record." +msgstr "用不了熟人记录。" + +#: ../../mod/contacts.php:98 +msgid "Could not locate selected profile." +msgstr "找不到选择的简介。" + +#: ../../mod/contacts.php:121 +msgid "Contact updated." +msgstr "熟人更新了。" + +#: ../../mod/contacts.php:186 +msgid "Contact has been blocked" +msgstr "熟人拦了" + +#: ../../mod/contacts.php:186 +msgid "Contact has been unblocked" +msgstr "熟人否拦了" + +#: ../../mod/contacts.php:200 +msgid "Contact has been ignored" +msgstr "熟人不理了" + +#: ../../mod/contacts.php:200 +msgid "Contact has been unignored" +msgstr "熟人否不理了" + +#: ../../mod/contacts.php:219 +msgid "Contact has been archived" +msgstr "" + +#: ../../mod/contacts.php:219 +msgid "Contact has been unarchived" +msgstr "" + +#: ../../mod/contacts.php:232 +msgid "Contact has been removed." +msgstr "熟人删除了。" + +#: ../../mod/contacts.php:266 +#, php-format +msgid "You are mutual friends with %s" +msgstr "您和%s是共同朋友们" + +#: ../../mod/contacts.php:270 +#, php-format +msgid "You are sharing with %s" +msgstr "您分享给%s" + +#: ../../mod/contacts.php:275 +#, php-format +msgid "%s is sharing with you" +msgstr "%s给您分享" + +#: ../../mod/contacts.php:292 +msgid "Private communications are not available for this contact." +msgstr "没有私人的沟通跟这个熟人" + +#: ../../mod/contacts.php:295 +msgid "Never" +msgstr "从未" + +#: ../../mod/contacts.php:299 +msgid "(Update was successful)" +msgstr "(更新成功)" + +#: ../../mod/contacts.php:299 +msgid "(Update was not successful)" +msgstr "(更新不成功)" + +#: ../../mod/contacts.php:301 +msgid "Suggest friends" +msgstr "建议朋友们" + +#: ../../mod/contacts.php:305 +#, php-format +msgid "Network type: %s" +msgstr "网络种类: %s" + +#: ../../mod/contacts.php:308 ../../include/contact_widgets.php:190 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d共同熟人" + +#: ../../mod/contacts.php:313 +msgid "View all contacts" +msgstr "看所有的熟人" + +#: ../../mod/contacts.php:318 ../../mod/contacts.php:377 +#: ../../mod/admin.php:698 +msgid "Unblock" +msgstr "不拦" + +#: ../../mod/contacts.php:318 ../../mod/contacts.php:377 +#: ../../mod/admin.php:697 +msgid "Block" +msgstr "拦" + +#: ../../mod/contacts.php:321 +msgid "Toggle Blocked status" +msgstr "" + +#: ../../mod/contacts.php:324 ../../mod/contacts.php:378 +msgid "Unignore" +msgstr "停不理" + +#: ../../mod/contacts.php:327 +msgid "Toggle Ignored status" +msgstr "" + +#: ../../mod/contacts.php:331 +msgid "Unarchive" +msgstr "" + +#: ../../mod/contacts.php:331 +msgid "Archive" +msgstr "" + +#: ../../mod/contacts.php:334 +msgid "Toggle Archive status" +msgstr "" + +#: ../../mod/contacts.php:337 +msgid "Repair" +msgstr "维修" + +#: ../../mod/contacts.php:340 +msgid "Advanced Contact Settings" +msgstr "" + +#: ../../mod/contacts.php:346 +msgid "Communications lost with this contact!" +msgstr "" + +#: ../../mod/contacts.php:349 +msgid "Contact Editor" +msgstr "熟人编器" + +#: ../../mod/contacts.php:352 +msgid "Profile Visibility" +msgstr "简历可见量" + +#: ../../mod/contacts.php:353 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。" + +#: ../../mod/contacts.php:354 +msgid "Contact Information / Notes" +msgstr "熟人信息/便条" + +#: ../../mod/contacts.php:355 +msgid "Edit contact notes" +msgstr "编辑熟人便条" + +#: ../../mod/contacts.php:360 ../../mod/contacts.php:552 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "看%s的简介[%s]" + +#: ../../mod/contacts.php:361 +msgid "Block/Unblock contact" +msgstr "拦/否拦熟人" + +#: ../../mod/contacts.php:362 +msgid "Ignore contact" +msgstr "忽视熟人" + +#: ../../mod/contacts.php:363 +msgid "Repair URL settings" +msgstr "维修URL设置" + +#: ../../mod/contacts.php:364 +msgid "View conversations" +msgstr "看交流" + +#: ../../mod/contacts.php:366 +msgid "Delete contact" +msgstr "删除熟人" + +#: ../../mod/contacts.php:370 +msgid "Last update:" +msgstr "上个更新:" + +#: ../../mod/contacts.php:372 +msgid "Update public posts" +msgstr "更新公开文章" + +#: ../../mod/contacts.php:374 ../../mod/admin.php:1170 +msgid "Update now" +msgstr "现在更新" + +#: ../../mod/contacts.php:381 +msgid "Currently blocked" +msgstr "现在拦的" + +#: ../../mod/contacts.php:382 +msgid "Currently ignored" +msgstr "现在不理的" + +#: ../../mod/contacts.php:383 +msgid "Currently archived" +msgstr "" + +#: ../../mod/contacts.php:384 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "回答/喜欢关您公开文章还可见的" + +#: ../../mod/contacts.php:437 +msgid "Suggestions" +msgstr "" + +#: ../../mod/contacts.php:440 +msgid "Suggest potential friends" +msgstr "" + +#: ../../mod/contacts.php:443 ../../mod/group.php:191 +msgid "All Contacts" +msgstr "所有的熟人" + +#: ../../mod/contacts.php:446 +msgid "Show all contacts" +msgstr "" + +#: ../../mod/contacts.php:449 +msgid "Unblocked" +msgstr "" + +#: ../../mod/contacts.php:452 +msgid "Only show unblocked contacts" +msgstr "" + +#: ../../mod/contacts.php:456 +msgid "Blocked" +msgstr "" + +#: ../../mod/contacts.php:459 +msgid "Only show blocked contacts" +msgstr "" + +#: ../../mod/contacts.php:463 +msgid "Ignored" +msgstr "" + +#: ../../mod/contacts.php:466 +msgid "Only show ignored contacts" +msgstr "" + +#: ../../mod/contacts.php:470 +msgid "Archived" +msgstr "" + +#: ../../mod/contacts.php:473 +msgid "Only show archived contacts" +msgstr "" + +#: ../../mod/contacts.php:477 +msgid "Hidden" +msgstr "" + +#: ../../mod/contacts.php:480 +msgid "Only show hidden contacts" +msgstr "" + +#: ../../mod/contacts.php:528 +msgid "Mutual Friendship" +msgstr "共同友谊" + +#: ../../mod/contacts.php:532 +msgid "is a fan of yours" +msgstr "是您迷" + +#: ../../mod/contacts.php:536 +msgid "you are a fan of" +msgstr "你喜欢" + +#: ../../mod/contacts.php:553 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "编熟人" + +#: ../../mod/contacts.php:574 ../../view/theme/diabook/theme.php:88 +#: ../../include/nav.php:139 +msgid "Contacts" +msgstr "熟人" + +#: ../../mod/contacts.php:578 +msgid "Search your contacts" +msgstr "搜索您的熟人" + +#: ../../mod/contacts.php:579 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "找着:" + +#: ../../mod/contacts.php:580 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "搜索" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "找不到效的账户。" + +#: ../../mod/lostpass.php:32 +msgid "Password reset request issued. Check your email." +msgstr "重设密码要求发布了。核对您的收件箱。" + +#: ../../mod/lostpass.php:43 +#, php-format +msgid "Password reset requested at %s" +msgstr "重设密码要求被发布%s" + +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:91 ../../mod/register.php:145 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 +#: ../../addon/facebook/facebook.php:702 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 +#: ../../addon/public_server/public_server.php:62 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3359 +#: ../../boot.php:821 ../../addon.old/facebook/facebook.php:702 +#: ../../addon.old/facebook/facebook.php:1200 +#: ../../addon.old/fbpost/fbpost.php:661 +#: ../../addon.old/public_server/public_server.php:62 +#: ../../addon.old/testdrive/testdrive.php:67 +msgid "Administrator" +msgstr "管理员" + +#: ../../mod/lostpass.php:65 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。" + +#: ../../mod/lostpass.php:83 ../../boot.php:960 +msgid "Password Reset" +msgstr "复位密码" + +#: ../../mod/lostpass.php:84 +msgid "Your password has been reset as requested." +msgstr "您的密码被重设如要求的。" + +#: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "你的新的密码是" + +#: ../../mod/lostpass.php:86 +msgid "Save or copy your new password - and then" +msgstr "保存或复制新密码-之后" + +#: ../../mod/lostpass.php:87 +msgid "click here to login" +msgstr "在这儿点击" + +#: ../../mod/lostpass.php:88 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "您的密码能被变化从设置页成功登记后。" + +#: ../../mod/lostpass.php:119 +msgid "Forgot your Password?" +msgstr "忘记你的密码吗?" + +#: ../../mod/lostpass.php:120 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。" + +#: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "昵称或邮件地址:" + +#: ../../mod/lostpass.php:122 +msgid "Reset" +msgstr "复位" + +#: ../../mod/settings.php:113 +msgid "Missing some important data!" +msgstr "有的重要信息失踪的!" + +#: ../../mod/settings.php:116 ../../mod/settings.php:569 +msgid "Update" +msgstr "更新" + +#: ../../mod/settings.php:221 +msgid "Failed to connect with email account using the settings provided." +msgstr "不能连接电子邮件账户用输入的设置。" + +#: ../../mod/settings.php:226 +msgid "Email settings updated." +msgstr "电子邮件设置更新了" + +#: ../../mod/settings.php:290 +msgid "Passwords do not match. Password unchanged." +msgstr "密码们不相配。密码没未改变的。" + +#: ../../mod/settings.php:295 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "空的密码禁止。密码没未改变的。" + +#: ../../mod/settings.php:306 +msgid "Password changed." +msgstr "密码变化了。" + +#: ../../mod/settings.php:308 +msgid "Password update failed. Please try again." +msgstr "密码更新失败了。请再试。" + +#: ../../mod/settings.php:373 +msgid " Please use a shorter name." +msgstr "请用短一点个名。" + +#: ../../mod/settings.php:375 +msgid " Name too short." +msgstr "名字太短。" + +#: ../../mod/settings.php:381 +msgid " Not valid email." +msgstr " 电子邮件地址无效." + +#: ../../mod/settings.php:383 +msgid " Cannot change to that email." +msgstr "不能变化到这个邮件地址。" + +#: ../../mod/settings.php:437 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: ../../mod/settings.php:441 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 +#: ../../addon/remote_permissions/remote_permissions.php:204 +#: ../../addon/impressum/impressum.php:78 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:389 +#: ../../addon.old/facebook/facebook.php:495 +#: ../../addon.old/fbpost/fbpost.php:144 +#: ../../addon.old/impressum/impressum.php:78 +#: ../../addon.old/openstreetmap/openstreetmap.php:80 +#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105 +#: ../../addon.old/twitter/twitter.php:389 +msgid "Settings updated." +msgstr "设置跟新了" + +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 +msgid "Add application" +msgstr "加入应用" + +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 +#: ../../addon.old/statusnet/statusnet.php:570 +msgid "Consumer Key" +msgstr "钥匙(Consumer Key)" + +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 +#: ../../addon.old/statusnet/statusnet.php:569 +msgid "Consumer Secret" +msgstr "密码(Consumer Secret)" + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +msgid "Redirect" +msgstr "重定向" + +#: ../../mod/settings.php:549 ../../mod/settings.php:575 +msgid "Icon url" +msgstr "图符URL" + +#: ../../mod/settings.php:560 +msgid "You can't edit this application." +msgstr "您不能编辑这个应用。" + +#: ../../mod/settings.php:603 +msgid "Connected Apps" +msgstr "连接着应用" + +#: ../../mod/settings.php:607 +msgid "Client key starts with" +msgstr "客户钥匙头字是" + +#: ../../mod/settings.php:608 +msgid "No name" +msgstr "无名" + +#: ../../mod/settings.php:609 +msgid "Remove authorization" +msgstr "撤消权能" + +#: ../../mod/settings.php:620 +msgid "No Plugin settings configured" +msgstr "没插件设置配置了" + +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 +#: ../../addon.old/widgets/widgets.php:123 +msgid "Plugin Settings" +msgstr "插件设置" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "包括的支持为%s连通性是%s" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "enabled" +msgstr "能够做的" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "disabled" +msgstr "使不能用" + +#: ../../mod/settings.php:641 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:673 +msgid "Email access is disabled on this site." +msgstr "这个网站没有邮件使用权" + +#: ../../mod/settings.php:679 +msgid "Connector Settings" +msgstr "连接器设置" + +#: ../../mod/settings.php:684 +msgid "Email/Mailbox Setup" +msgstr "邮件收件箱设置" + +#: ../../mod/settings.php:685 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。" + +#: ../../mod/settings.php:686 +msgid "Last successful email check:" +msgstr "上个成功收件箱检查:" + +#: ../../mod/settings.php:688 +msgid "IMAP server name:" +msgstr "IMAP服务器名字:" + +#: ../../mod/settings.php:689 +msgid "IMAP port:" +msgstr "IMAP服务器端口:" + +#: ../../mod/settings.php:690 +msgid "Security:" +msgstr "安全:" + +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:191 +msgid "None" +msgstr "没有" + +#: ../../mod/settings.php:691 +msgid "Email login name:" +msgstr "邮件登记名:" + +#: ../../mod/settings.php:692 +msgid "Email password:" +msgstr "邮件密码:" + +#: ../../mod/settings.php:693 +msgid "Reply-to address:" +msgstr "回答地址:" + +#: ../../mod/settings.php:694 +msgid "Send public posts to all email contacts:" +msgstr "发公开的文章给所有的邮件熟人:" + +#: ../../mod/settings.php:695 +msgid "Action after import:" +msgstr "" + +#: ../../mod/settings.php:695 +msgid "Mark as seen" +msgstr "" + +#: ../../mod/settings.php:695 +msgid "Move to folder" +msgstr "" + +#: ../../mod/settings.php:696 +msgid "Move to folder:" +msgstr "" + +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/settings.php:767 +msgid "Display Settings" +msgstr "" + +#: ../../mod/settings.php:773 ../../mod/settings.php:784 +msgid "Display Theme:" +msgstr "显示主题:" + +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:775 +msgid "Update browser every xx seconds" +msgstr "更新游览器每XX秒" + +#: ../../mod/settings.php:775 +msgid "Minimum of 10 seconds, no maximum" +msgstr "最小10秒,没有上限" + +#: ../../mod/settings.php:776 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:776 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:777 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:853 +msgid "Normal Account Page" +msgstr "" + +#: ../../mod/settings.php:854 +msgid "This account is a normal personal profile" +msgstr "这个帐户是正常私人简介" + +#: ../../mod/settings.php:857 +msgid "Soapbox Page" +msgstr "" + +#: ../../mod/settings.php:858 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "自动批准所有联络/友谊要求当只看的迷" + +#: ../../mod/settings.php:861 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: ../../mod/settings.php:862 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "自动批准所有联络/友谊要求当看写的迷" + +#: ../../mod/settings.php:865 +msgid "Automatic Friend Page" +msgstr "" + +#: ../../mod/settings.php:866 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "自动批准所有联络/友谊要求当朋友" + +#: ../../mod/settings.php:869 +msgid "Private Forum [Experimental]" +msgstr "" + +#: ../../mod/settings.php:870 +msgid "Private forum - approved members only" +msgstr "" + +#: ../../mod/settings.php:882 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:882 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(可选的)许这个OpenID这个账户登记。" + +#: ../../mod/settings.php:892 +msgid "Publish your default profile in your local site directory?" +msgstr "出版您默认简介在您当地的网站目录?" + +#: ../../mod/settings.php:898 +msgid "Publish your default profile in the global social directory?" +msgstr "出版您默认简介在综合社会目录?" + +#: ../../mod/settings.php:906 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "藏起来 发现您的熟人/朋友单不让这个简介看着看?\n " + +#: ../../mod/settings.php:910 +msgid "Hide your profile details from unknown viewers?" +msgstr "使简介信息给陌生的看着看不了?" + +#: ../../mod/settings.php:915 +msgid "Allow friends to post to your profile page?" +msgstr "允许朋友们贴文章在您的简介页?" + +#: ../../mod/settings.php:921 +msgid "Allow friends to tag your posts?" +msgstr "允许朋友们标签您的文章?" + +#: ../../mod/settings.php:927 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "允许我们建议您潜力朋友给新成员?" + +#: ../../mod/settings.php:933 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: ../../mod/settings.php:941 +msgid "Profile is not published." +msgstr "简介是没出版" + +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "或者" + +#: ../../mod/settings.php:949 +msgid "Your Identity Address is" +msgstr "您的同一个人地址是" + +#: ../../mod/settings.php:960 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: ../../mod/settings.php:960 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "如果空的,文章不会过期。过期的文章被删除" + +#: ../../mod/settings.php:961 +msgid "Advanced expiration settings" +msgstr "先进的过期设置" + +#: ../../mod/settings.php:962 +msgid "Advanced Expiration" +msgstr "先进的过期" + +#: ../../mod/settings.php:963 +msgid "Expire posts:" +msgstr "把文章过期:" + +#: ../../mod/settings.php:964 +msgid "Expire personal notes:" +msgstr "把私人便条过期:" + +#: ../../mod/settings.php:965 +msgid "Expire starred posts:" +msgstr "把星的文章过期:" + +#: ../../mod/settings.php:966 +msgid "Expire photos:" +msgstr "把照片过期:" + +#: ../../mod/settings.php:967 +msgid "Only expire posts by others:" +msgstr "" + +#: ../../mod/settings.php:974 +msgid "Account Settings" +msgstr "帐户设置" + +#: ../../mod/settings.php:982 +msgid "Password Settings" +msgstr "密码设置" + +#: ../../mod/settings.php:983 +msgid "New Password:" +msgstr "新密码:" + +#: ../../mod/settings.php:984 +msgid "Confirm:" +msgstr "确认:" + +#: ../../mod/settings.php:984 +msgid "Leave password fields blank unless changing" +msgstr "非变化留空密码栏" + +#: ../../mod/settings.php:988 +msgid "Basic Settings" +msgstr "基础设置" + +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "全名:" + +#: ../../mod/settings.php:990 +msgid "Email Address:" +msgstr "电子邮件地址:" + +#: ../../mod/settings.php:991 +msgid "Your Timezone:" +msgstr "您的时区:" + +#: ../../mod/settings.php:992 +msgid "Default Post Location:" +msgstr "默认文章位置:" + +#: ../../mod/settings.php:993 +msgid "Use Browser Location:" +msgstr "用游览器位置:" + +#: ../../mod/settings.php:996 +msgid "Security and Privacy Settings" +msgstr "安全和隐私设置" + +#: ../../mod/settings.php:998 +msgid "Maximum Friend Requests/Day:" +msgstr "最多友谊要求个天:" + +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 +msgid "(to prevent spam abuse)" +msgstr "(为防止垃圾邮件滥用)" + +#: ../../mod/settings.php:999 +msgid "Default Post Permissions" +msgstr "默认文章准许" + +#: ../../mod/settings.php:1000 +msgid "(click to open/close)" +msgstr "(点击为打开/关闭)" + +#: ../../mod/settings.php:1017 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1020 +msgid "Notification Settings" +msgstr "消息设置" + +#: ../../mod/settings.php:1021 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1022 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1023 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1024 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1025 +msgid "Send a notification email when:" +msgstr "发一个消息要是:" + +#: ../../mod/settings.php:1026 +msgid "You receive an introduction" +msgstr "你受到一个介绍" + +#: ../../mod/settings.php:1027 +msgid "Your introductions are confirmed" +msgstr "你的介绍确认了" + +#: ../../mod/settings.php:1028 +msgid "Someone writes on your profile wall" +msgstr "某人写在你的简历墙" + +#: ../../mod/settings.php:1029 +msgid "Someone writes a followup comment" +msgstr "某人写一个后续的评论" + +#: ../../mod/settings.php:1030 +msgid "You receive a private message" +msgstr "你受到一个私消息" + +#: ../../mod/settings.php:1031 +msgid "You receive a friend suggestion" +msgstr "你受到一个朋友建议" + +#: ../../mod/settings.php:1032 +msgid "You are tagged in a post" +msgstr "你被在新闻标签" + +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1036 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1037 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/manage.php:94 +msgid "Manage Identities and/or Pages" +msgstr "管理身份或页" + +#: ../../mod/manage.php:97 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: ../../mod/manage.php:99 +msgid "Select an identity to manage: " +msgstr "选择同一个人管理:" + +#: ../../mod/network.php:181 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:221 ../../mod/search.php:18 +msgid "Remove term" +msgstr "删除关键字" + +#: ../../mod/network.php:230 ../../mod/search.php:27 +msgid "Saved Searches" +msgstr "保存的搜索" + +#: ../../mod/network.php:231 ../../include/group.php:275 +msgid "add" +msgstr "添加" + +#: ../../mod/network.php:394 +msgid "Commented Order" +msgstr "评论时间顺序" + +#: ../../mod/network.php:397 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../mod/network.php:400 +msgid "Posted Order" +msgstr "贴时间顺序" + +#: ../../mod/network.php:403 +msgid "Sort by Post Date" +msgstr "" + +#: ../../mod/network.php:410 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../mod/network.php:413 +msgid "New" +msgstr "新" + +#: ../../mod/network.php:416 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:419 +msgid "Starred" +msgstr "被星" + +#: ../../mod/network.php:422 +msgid "Favourite Posts" +msgstr "" + +#: ../../mod/network.php:425 +msgid "Shared Links" +msgstr "" + +#: ../../mod/network.php:428 +msgid "Interesting Links" +msgstr "" + +#: ../../mod/network.php:496 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "警告:这个组包括%s成员从不安全网络。" + +#: ../../mod/network.php:499 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "私人通信给这组回被公开。" + +#: ../../mod/network.php:569 +msgid "Contact: " +msgstr "熟人:" + +#: ../../mod/network.php:571 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "私人通信给这个人回被公开。" + +#: ../../mod/network.php:576 +msgid "Invalid contact." +msgstr "无效熟人。" + +#: ../../mod/notes.php:44 ../../boot.php:1752 +msgid "Personal Notes" +msgstr "私人便条" + +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:770 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688 +#: ../../addon.old/facebook/facebook.php:770 +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon.old/fbpost/fbpost.php:267 +#: ../../addon.old/dav/friendica/layout.fnk.php:441 +#: ../../addon.old/dav/friendica/layout.fnk.php:488 +msgid "Save" +msgstr "保存" + +#: ../../mod/uimport.php:50 ../../mod/register.php:190 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "这个网站超过一天最多账户注册。请明天再试。" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: ../../mod/uimport.php:67 +msgid "" +"You can import an account from another Friendica server.
\r\n" +" You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n" +" This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your accont, go to \"Settings->Export your porsonal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "没有选择的接受者。" + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "消息发不了。" + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "通信受到错误。" + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "消息发了" + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:902 ../../include/conversation.php:920 +msgid "Please enter a link URL:" +msgstr "请输入环节URL:" + +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 +msgid "Send Private Message" +msgstr "发私人的通信" + +#: ../../mod/wallmessage.php:139 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 +msgid "To:" +msgstr "到:" + +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 +msgid "Subject:" +msgstr "题目:" + +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "你的消息:" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Friendica欢迎你" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "新的成员一览表" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。" + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "在你的设置页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。" + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。" + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1728 +msgid "Profile" +msgstr "简介" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "上传简历照片" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。" + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。" + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。" + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +#: ../../addon.old/facebook/facebook.php:728 +#: ../../addon.old/fbpost/fbpost.php:239 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "要是你有一个Facebook账户,批准Facebook插销。我们来(可选的)进口都你Facebook朋友们和交谈。" + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "要是这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。" + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。" + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "目录页让您找别人在这个网络或别的同盟的网站。找一个连接关注按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。" + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "组" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。" + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "我们帮助页可查阅到详情关于别的编程特点和资源。" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "项目不可用的" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "找不到项目。" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "组造成了。" + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "不能造成组。" + +#: ../../mod/group.php:47 ../../mod/group.php:137 +msgid "Group not found." +msgstr "组找不到。" + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "组名变化了。" + +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332 +msgid "Permission denied" +msgstr "权限不够" + +#: ../../mod/group.php:90 +msgid "Create a group of contacts/friends." +msgstr "造成组熟人/朋友们。" + +#: ../../mod/group.php:91 ../../mod/group.php:177 +msgid "Group Name: " +msgstr "组名:" + +#: ../../mod/group.php:110 +msgid "Group removed." +msgstr "组删除了。" + +#: ../../mod/group.php:112 +msgid "Unable to remove group." +msgstr "不能删除组。" + +#: ../../mod/group.php:176 +msgid "Group Editor" +msgstr "组编辑器" + +#: ../../mod/group.php:189 +msgid "Members" +msgstr "成员" + +#: ../../mod/group.php:221 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "点击熟人为添加或删除。" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "无限的简介标识符。" + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "简介能见度编辑器。" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "能见被" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "所有熟人(跟安全地简介使用权)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "没有熟人。" + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:625 +msgid "View Contacts" +msgstr "看熟人" + +#: ../../mod/register.php:89 ../../mod/regmod.php:52 +#, php-format +msgid "Registration details for %s" +msgstr "注册信息为%s" + +#: ../../mod/register.php:97 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "注册成功了。请咨询说明再您的收件箱。" + +#: ../../mod/register.php:101 +msgid "Failed to send email message. Here is the message that failed." +msgstr "发邮件失败了。这条试失败的消息。" + +#: ../../mod/register.php:106 +msgid "Your registration can not be processed." +msgstr "处理不了您的注册。" + +#: ../../mod/register.php:143 +#, php-format +msgid "Registration request at %s" +msgstr "注册要求再%s" + +#: ../../mod/register.php:152 +msgid "Your registration is pending approval by the site owner." +msgstr "您的注册等网页主的批准。" + +#: ../../mod/register.php:218 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。" + +#: ../../mod/register.php:219 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。" + +#: ../../mod/register.php:220 +msgid "Your OpenID (optional): " +msgstr "您的OpenID(可选的):" + +#: ../../mod/register.php:234 +msgid "Include your profile in member directory?" +msgstr "放您的简介再员目录?" + +#: ../../mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "会员身份在这个网站是光通过邀请。" + +#: ../../mod/register.php:257 +msgid "Your invitation ID: " +msgstr "您邀请ID:" + +#: ../../mod/register.php:260 ../../mod/admin.php:444 +msgid "Registration" +msgstr "注册" + +#: ../../mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "您姓名(例如「张三」):" + +#: ../../mod/register.php:269 +msgid "Your Email Address: " +msgstr "你的电子邮件地址:" + +#: ../../mod/register.php:270 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@$sitename」." + +#: ../../mod/register.php:271 +msgid "Choose a nickname: " +msgstr "选择昵称:" + +#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:920 +msgid "Register" +msgstr "注册" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "搜索人物" + +#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1444 +#: ../../include/diaspora.php:1835 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 +#: ../../addon.old/communityhome/communityhome.php:163 +msgid "photo" +msgstr "照片" + +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../view/theme/diabook/theme.php:452 +#: ../../view/theme/diabook/theme.php:461 ../../include/diaspora.php:1835 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +#: ../../addon.old/facebook/facebook.php:1598 +#: ../../addon.old/communityhome/communityhome.php:158 +#: ../../addon.old/communityhome/communityhome.php:167 +msgid "status" +msgstr "现状" + +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../view/theme/diabook/theme.php:466 ../../include/diaspora.php:1851 +#: ../../include/conversation.php:136 +#: ../../addon.old/facebook/facebook.php:1602 +#: ../../addon.old/communityhome/communityhome.php:172 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s喜欢%2$s的%3$s" + +#: ../../mod/like.php:164 ../../include/conversation.php:139 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s不喜欢%2$s的%3$s" + +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:39 +#: ../../mod/display.php:169 ../../include/items.php:3837 +msgid "Item not found." +msgstr "项目找不到。" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "没有用权。" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89 +#: ../../include/nav.php:51 ../../boot.php:1735 +msgid "Photos" +msgstr "照片" + +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "" + +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "账户批准了" + +#: ../../mod/regmod.php:98 +#, php-format +msgid "Registration revoked for %s" +msgstr "%s的登记撤销了" + +#: ../../mod/regmod.php:110 +msgid "Please login." +msgstr "清登录。" + +#: ../../mod/item.php:104 +msgid "Unable to locate original post." +msgstr "找不到当初的新闻" + +#: ../../mod/item.php:288 +msgid "Empty post discarded." +msgstr "空心的新闻丢弃了" + +#: ../../mod/item.php:420 ../../mod/wall_upload.php:135 +#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "墙照片" + +#: ../../mod/item.php:833 +msgid "System error. Post not saved." +msgstr "系统错误。x" + +#: ../../mod/item.php:858 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" + +#: ../../mod/item.php:860 +#, php-format +msgid "You may visit them online at %s" +msgstr "你可以网上拜访他在%s" + +#: ../../mod/item.php:861 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" + +#: ../../mod/item.php:863 +#, php-format +msgid "%s posted an update." +msgstr "%s贴上一个新闻。" + +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "照片上传去了,但修剪失灵。" + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "照片减少[%s]失灵。" + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。" + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "不能处理照片" + +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "图像超标最大极限尺寸 %d" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "上传文件:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 +#: ../../addon.old/dav/friendica/layout.fnk.php:152 +msgid "Upload" +msgstr "上传" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "略过这步" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "从您的照片册选择一片。" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "修剪照片" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "请调图片剪裁为最好看。" + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "编完了" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "照片成功地上传了" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "无简介" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "删除我的账户" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "这要完全删除您的账户。这一做过,就不能恢复。" + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "请输入密码为确认:" + +#: ../../mod/message.php:9 ../../include/nav.php:131 +msgid "New Message" +msgstr "新的消息" + +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "找不到熟人信息。" + +#: ../../mod/message.php:191 +msgid "Message deleted." +msgstr "消息删除了。" + +#: ../../mod/message.php:221 +msgid "Conversation removed." +msgstr "交流删除了。" + +#: ../../mod/message.php:327 +msgid "No messages." +msgstr "没有消息" + +#: ../../mod/message.php:334 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: ../../mod/message.php:337 +#, php-format +msgid "You and %s" +msgstr "" + +#: ../../mod/message.php:340 +#, php-format +msgid "%s and You" +msgstr "" + +#: ../../mod/message.php:350 ../../mod/message.php:462 +msgid "Delete conversation" +msgstr "删除交谈" + +#: ../../mod/message.php:353 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:356 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" + +#: ../../mod/message.php:391 +msgid "Message not available." +msgstr "通信不可用的" + +#: ../../mod/message.php:444 +msgid "Delete message" +msgstr "删除消息" + +#: ../../mod/message.php:464 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/message.php:468 +msgid "Send Reply" +msgstr "发回答" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "%s的朋友们" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "没有朋友展示。" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:442 +msgid "Site" +msgstr "网站" + +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 +msgid "Users" +msgstr "用户" + +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 +msgid "Plugins" +msgstr "插件" + +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 +msgid "Logs" +msgstr "记录" + +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "管理" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "用户注册等确认" + +#: ../../mod/admin.php:183 ../../mod/admin.php:669 +msgid "Normal Account" +msgstr "正常帐户" + +#: ../../mod/admin.php:184 ../../mod/admin.php:670 +msgid "Soapbox Account" +msgstr "演讲台帐户" + +#: ../../mod/admin.php:185 ../../mod/admin.php:671 +msgid "Community/Celebrity Account" +msgstr "社会/名人帐户" + +#: ../../mod/admin.php:186 ../../mod/admin.php:672 +msgid "Automatic Friend Account" +msgstr "自动朋友帐户" + +#: ../../mod/admin.php:187 +msgid "Blog Account" +msgstr "" + +#: ../../mod/admin.php:188 +msgid "Private Forum" +msgstr "" + +#: ../../mod/admin.php:207 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 +msgid "Administration" +msgstr "管理" + +#: ../../mod/admin.php:213 +msgid "Summary" +msgstr "总算" + +#: ../../mod/admin.php:215 +msgid "Registered users" +msgstr "注册的用户" + +#: ../../mod/admin.php:217 +msgid "Pending registrations" +msgstr "未决的注册" + +#: ../../mod/admin.php:218 +msgid "Version" +msgstr "版本" + +#: ../../mod/admin.php:220 +msgid "Active plugins" +msgstr "活跃的插件" + +#: ../../mod/admin.php:373 +msgid "Site settings updated." +msgstr "网站设置更新了。" + +#: ../../mod/admin.php:428 +msgid "Closed" +msgstr "关闭" + +#: ../../mod/admin.php:429 +msgid "Requires approval" +msgstr "要批准" + +#: ../../mod/admin.php:430 +msgid "Open" +msgstr "打开" + +#: ../../mod/admin.php:434 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: ../../mod/admin.php:435 +msgid "Force all links to use SSL" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: ../../mod/admin.php:445 +msgid "File upload" +msgstr "文件上传" + +#: ../../mod/admin.php:446 +msgid "Policies" +msgstr "政策" + +#: ../../mod/admin.php:447 +msgid "Advanced" +msgstr "高等" + +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 +#: ../../addon.old/statusnet/statusnet.php:567 +msgid "Site name" +msgstr "网页名字" + +#: ../../mod/admin.php:452 +msgid "Banner/Logo" +msgstr "标题/标志" + +#: ../../mod/admin.php:453 +msgid "System language" +msgstr "系统语言" + +#: ../../mod/admin.php:454 +msgid "System theme" +msgstr "系统主题" + +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "SSL link policy" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: ../../mod/admin.php:457 +msgid "Maximum image size" +msgstr "图片最大尺寸" + +#: ../../mod/admin.php:457 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Register policy" +msgstr "注册政策" + +#: ../../mod/admin.php:462 +msgid "Register text" +msgstr "注册正文" + +#: ../../mod/admin.php:462 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:463 +msgid "Accounts abandoned after x days" +msgstr "账户丢弃X天后" + +#: ../../mod/admin.php:463 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。" + +#: ../../mod/admin.php:464 +msgid "Allowed friend domains" +msgstr "允许的朋友域" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:465 +msgid "Allowed email domains" +msgstr "允许的电子邮件域" + +#: ../../mod/admin.php:465 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:466 +msgid "Block public" +msgstr "拦公开" + +#: ../../mod/admin.php:466 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:467 +msgid "Force publish" +msgstr "需要出版" + +#: ../../mod/admin.php:467 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:468 +msgid "Global directory update URL" +msgstr "综合目录更新URL" + +#: ../../mod/admin.php:468 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "" + +#: ../../mod/admin.php:469 +msgid "Allow threaded items" +msgstr "" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Block multiple registrations" +msgstr "拦一人多注册" + +#: ../../mod/admin.php:472 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: ../../mod/admin.php:473 +msgid "OpenID support" +msgstr "OpenID支持" + +#: ../../mod/admin.php:473 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:474 +msgid "Fullname check" +msgstr "全名核实" + +#: ../../mod/admin.php:474 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: ../../mod/admin.php:475 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8正则表达式" + +#: ../../mod/admin.php:475 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../mod/admin.php:476 +msgid "Show Community Page" +msgstr "表示社会页" + +#: ../../mod/admin.php:476 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "" + +#: ../../mod/admin.php:477 +msgid "Enable OStatus support" +msgstr "使OStatus支持可用" + +#: ../../mod/admin.php:477 +msgid "" +"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: ../../mod/admin.php:478 +msgid "Enable Diaspora support" +msgstr "使Diaspora支持能够" + +#: ../../mod/admin.php:478 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:479 +msgid "Only allow Friendica contacts" +msgstr "只许Friendica熟人" + +#: ../../mod/admin.php:479 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:480 +msgid "Verify SSL" +msgstr "证实" + +#: ../../mod/admin.php:480 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: ../../mod/admin.php:481 +msgid "Proxy user" +msgstr "代理用户" + +#: ../../mod/admin.php:482 +msgid "Proxy URL" +msgstr "代理URL" + +#: ../../mod/admin.php:483 +msgid "Network timeout" +msgstr "网络超时" + +#: ../../mod/admin.php:483 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:484 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:484 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:485 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:485 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:486 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:486 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:503 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:513 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:516 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:520 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:523 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:538 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:542 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:543 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: ../../mod/admin.php:544 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:545 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:570 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" + +#: ../../mod/admin.php:577 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s用户删除了" + +#: ../../mod/admin.php:616 +#, php-format +msgid "User '%s' deleted" +msgstr "用户「%s」删除了" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' unblocked" +msgstr "用户「%s」无拦了" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' blocked" +msgstr "用户「%s」拦了" + +#: ../../mod/admin.php:690 +msgid "select all" +msgstr "都选" + +#: ../../mod/admin.php:691 +msgid "User registrations waiting for confirm" +msgstr "用户注册等待确认" + +#: ../../mod/admin.php:692 +msgid "Request date" +msgstr "要求日期" + +#: ../../mod/admin.php:692 ../../mod/admin.php:702 +#: ../../include/contact_selectors.php:79 +msgid "Email" +msgstr "电子邮件" + +#: ../../mod/admin.php:693 +msgid "No registrations." +msgstr "没有注册。" + +#: ../../mod/admin.php:695 +msgid "Deny" +msgstr "否定" + +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 +msgid "Register date" +msgstr "注册日期" + +#: ../../mod/admin.php:702 +msgid "Last login" +msgstr "上次登录" + +#: ../../mod/admin.php:702 +msgid "Last item" +msgstr "上项目" + +#: ../../mod/admin.php:702 +msgid "Account" +msgstr "帐户" + +#: ../../mod/admin.php:704 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?" + +#: ../../mod/admin.php:705 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?" + +#: ../../mod/admin.php:746 +#, php-format +msgid "Plugin %s disabled." +msgstr "使插件%s不能用。" + +#: ../../mod/admin.php:750 +#, php-format +msgid "Plugin %s enabled." +msgstr "使插件%s能用。" + +#: ../../mod/admin.php:760 ../../mod/admin.php:958 +msgid "Disable" +msgstr "使不能用" + +#: ../../mod/admin.php:762 ../../mod/admin.php:960 +msgid "Enable" +msgstr "使能用" + +#: ../../mod/admin.php:784 ../../mod/admin.php:989 +msgid "Toggle" +msgstr "肘节" + +#: ../../mod/admin.php:792 ../../mod/admin.php:999 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:922 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:981 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1029 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1030 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1057 +msgid "Log settings updated." +msgstr "日志设置更新了。" + +#: ../../mod/admin.php:1113 +msgid "Clear" +msgstr "清理出" + +#: ../../mod/admin.php:1119 +msgid "Debugging" +msgstr "调试" + +#: ../../mod/admin.php:1120 +msgid "Log file" +msgstr "记录文件" + +#: ../../mod/admin.php:1120 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" + +#: ../../mod/admin.php:1121 +msgid "Log level" +msgstr "记录水平" + +#: ../../mod/admin.php:1171 +msgid "Close" +msgstr "关闭" + +#: ../../mod/admin.php:1177 +msgid "FTP Host" +msgstr "FTP主机" + +#: ../../mod/admin.php:1178 +msgid "FTP Path" +msgstr "FTP目录" + +#: ../../mod/admin.php:1179 +msgid "FTP User" +msgstr "FTP用户" + +#: ../../mod/admin.php:1180 +msgid "FTP Password" +msgstr "FTP密码" + +#: ../../mod/profile.php:21 ../../boot.php:1123 +msgid "Requested profile is not available." +msgstr "" + +#: ../../mod/profile.php:155 ../../mod/display.php:87 +msgid "Access to this profile has been restricted." +msgstr "使用权这个简介被限制了." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "提示对新成员" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0}想成为您的朋友" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0}发给您一个通信" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0}要求注册" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0}对%s的文章发表意见" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0}喜欢%s的文章" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0}不喜欢%s的文章" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0}成为%s的朋友" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0}陈列" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0}用#%s标签%s的文章" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0}提到您在文章" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: ../../mod/openid.php:93 ../../include/auth.php:110 +#: ../../include/auth.php:173 +msgid "Login failed." +msgstr "登记失败了。" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "普通朋友们" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/share.php:28 +msgid "link" +msgstr "" + +#: ../../mod/display.php:162 +msgid "Item has been removed." +msgstr "项目被删除了。" + +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "应用" + +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "没有安装的应用" + +#: ../../mod/search.php:96 ../../include/text.php:685 +#: ../../include/text.php:686 ../../include/nav.php:91 +msgid "Search" +msgstr "搜索" + +#: ../../mod/profiles.php:21 ../../mod/profiles.php:434 +#: ../../mod/profiles.php:548 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "找不到简介。" + +#: ../../mod/profiles.php:31 +msgid "Profile Name is required." +msgstr "必要简介名" + +#: ../../mod/profiles.php:171 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:175 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:179 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:183 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:187 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:190 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:194 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:198 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:202 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:206 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:210 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:214 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:221 ../../addon/dav/common/wdcal_edit.inc.php:183 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "" + +#: ../../mod/profiles.php:304 +msgid "Profile updated." +msgstr "简介更新了。" + +#: ../../mod/profiles.php:371 +msgid " and " +msgstr "" + +#: ../../mod/profiles.php:379 +msgid "public profile" +msgstr "" + +#: ../../mod/profiles.php:382 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../mod/profiles.php:383 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: ../../mod/profiles.php:386 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../mod/profiles.php:453 +msgid "Profile deleted." +msgstr "简介删除了。" + +#: ../../mod/profiles.php:471 ../../mod/profiles.php:505 +msgid "Profile-" +msgstr "简介-" + +#: ../../mod/profiles.php:490 ../../mod/profiles.php:532 +msgid "New profile created." +msgstr "创造新的简介" + +#: ../../mod/profiles.php:511 +msgid "Profile unavailable to clone." +msgstr "简介不可用为复制。" + +#: ../../mod/profiles.php:573 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?" + +#: ../../mod/profiles.php:593 +msgid "Edit Profile Details" +msgstr "剪辑简介消息" + +#: ../../mod/profiles.php:595 +msgid "View this profile" +msgstr "看这个简介" + +#: ../../mod/profiles.php:596 +msgid "Create a new profile using these settings" +msgstr "造成新的简介用这些设置" + +#: ../../mod/profiles.php:597 +msgid "Clone this profile" +msgstr "复制这个简介" + +#: ../../mod/profiles.php:598 +msgid "Delete this profile" +msgstr "删除这个简介" + +#: ../../mod/profiles.php:599 +msgid "Profile Name:" +msgstr "简介名:" + +#: ../../mod/profiles.php:600 +msgid "Your Full Name:" +msgstr "你的全名:" + +#: ../../mod/profiles.php:601 +msgid "Title/Description:" +msgstr "标题/描述:" + +#: ../../mod/profiles.php:602 +msgid "Your Gender:" +msgstr "你的性:" + +#: ../../mod/profiles.php:603 +#, php-format +msgid "Birthday (%s):" +msgstr "生日(%s):" + +#: ../../mod/profiles.php:604 +msgid "Street Address:" +msgstr "地址:" + +#: ../../mod/profiles.php:605 +msgid "Locality/City:" +msgstr "现场/城市:" + +#: ../../mod/profiles.php:606 +msgid "Postal/Zip Code:" +msgstr "邮政编码:" + +#: ../../mod/profiles.php:607 +msgid "Country:" +msgstr "国家:" + +#: ../../mod/profiles.php:608 +msgid "Region/State:" +msgstr "区域/省" + +#: ../../mod/profiles.php:609 +msgid " Marital Status:" +msgstr "婚姻状况:" + +#: ../../mod/profiles.php:610 +msgid "Who: (if applicable)" +msgstr "谁:(要是使用)" + +#: ../../mod/profiles.php:611 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "比如:limou,李某,limou@example。com" + +#: ../../mod/profiles.php:612 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:613 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "性取向" + +#: ../../mod/profiles.php:614 +msgid "Homepage URL:" +msgstr "主页URL:" + +#: ../../mod/profiles.php:615 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "" + +#: ../../mod/profiles.php:616 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "政治观念:" + +#: ../../mod/profiles.php:617 +msgid "Religious Views:" +msgstr " 宗教信仰 :" + +#: ../../mod/profiles.php:618 +msgid "Public Keywords:" +msgstr "公开关键字 :" + +#: ../../mod/profiles.php:619 +msgid "Private Keywords:" +msgstr "私人关键字" + +#: ../../mod/profiles.php:620 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "" + +#: ../../mod/profiles.php:621 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "" + +#: ../../mod/profiles.php:622 +msgid "Example: fishing photography software" +msgstr "例如:钓鱼 照片 软件" + +#: ../../mod/profiles.php:623 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(用于建议可能的朋友们,会被别人看)" + +#: ../../mod/profiles.php:624 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(用于搜索简介,没有给别人看)" + +#: ../../mod/profiles.php:625 +msgid "Tell us about yourself..." +msgstr "给我们自我介绍..." + +#: ../../mod/profiles.php:626 +msgid "Hobbies/Interests" +msgstr "爱好/兴趣" + +#: ../../mod/profiles.php:627 +msgid "Contact information and Social Networks" +msgstr "熟人信息和社会化网络" + +#: ../../mod/profiles.php:628 +msgid "Musical interests" +msgstr "音乐兴趣" + +#: ../../mod/profiles.php:629 +msgid "Books, literature" +msgstr "书,文学" + +#: ../../mod/profiles.php:630 +msgid "Television" +msgstr "电视" + +#: ../../mod/profiles.php:631 +msgid "Film/dance/culture/entertainment" +msgstr "电影/跳舞/文化/娱乐" + +#: ../../mod/profiles.php:632 +msgid "Love/romance" +msgstr "爱情/浪漫" + +#: ../../mod/profiles.php:633 +msgid "Work/employment" +msgstr "工作" + +#: ../../mod/profiles.php:634 +msgid "School/education" +msgstr "学院/教育" + +#: ../../mod/profiles.php:639 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "这是你的公开的简介。
可能被所有的因特网用的看到。" + +#: ../../mod/profiles.php:649 ../../mod/directory.php:111 +msgid "Age: " +msgstr "年纪:" + +#: ../../mod/profiles.php:688 +msgid "Edit/Manage Profiles" +msgstr "编辑/管理简介" + +#: ../../mod/profiles.php:689 ../../boot.php:1241 +msgid "Change profile photo" +msgstr "换简介照片" + +#: ../../mod/profiles.php:690 ../../boot.php:1242 +msgid "Create New Profile" +msgstr "创造新的简介" + +#: ../../mod/profiles.php:701 ../../boot.php:1252 +msgid "Profile Image" +msgstr "简介图像" + +#: ../../mod/profiles.php:703 ../../boot.php:1255 +msgid "visible to everybody" +msgstr "给打假可见的" + +#: ../../mod/profiles.php:704 ../../boot.php:1256 +msgid "Edit visibility" +msgstr "修改能见度" + +#: ../../mod/filer.php:29 ../../include/conversation.php:906 +#: ../../include/conversation.php:924 +msgid "Save to Folder:" +msgstr "" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s把%4$s标签%2$s的%3$s" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "加" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "没有项目。" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: ../../mod/babel.php:35 +msgid "bb2html: " +msgstr "" + +#: ../../mod/babel.php:39 +msgid "bb2html2bb: " +msgstr "" + +#: ../../mod/babel.php:43 +msgid "bb2md: " +msgstr "" + +#: ../../mod/babel.php:47 +msgid "bb2md2html: " +msgstr "" + +#: ../../mod/babel.php:51 +msgid "bb2dia2bb: " +msgstr "" + +#: ../../mod/babel.php:55 +msgid "bb2md2html2bb: " +msgstr "" + +#: ../../mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "" + +#: ../../mod/babel.php:70 +msgid "diaspora2bb: " +msgstr "" + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:513 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "友谊建议" + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "不理/隐藏" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:511 +msgid "Global Directory" +msgstr "综合目录" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "找在这网站" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "网站目录" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "性别:" + +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1277 +msgid "Gender:" +msgstr "性别:" + +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1280 +msgid "Status:" +msgstr "现状:" + +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1282 +msgid "Homepage:" +msgstr "主页:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "关于:" + +#: ../../mod/directory.php:180 +msgid "No entries (some entries may be hidden)." +msgstr "没有文章(有的文章会被隐藏)。" + +#: ../../mod/invite.php:35 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : 不是效的电子邮件地址." + +#: ../../mod/invite.php:59 +msgid "Please join us on Friendica" +msgstr "" + +#: ../../mod/invite.php:69 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : 送消息失败了。" + +#: ../../mod/invite.php:73 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d消息传送了。" + +#: ../../mod/invite.php:92 +msgid "You have no more invitations available" +msgstr "您没有别的邀请" + +#: ../../mod/invite.php:100 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: ../../mod/invite.php:102 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: ../../mod/invite.php:103 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "发请柬" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "输入电子邮件地址,一行一个:" + +#: ../../mod/invite.php:114 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: ../../mod/invite.php:116 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "您要输入这个邀请密码:$invite_code" + +#: ../../mod/invite.php:116 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "您一注册,请页跟我连接,用我的简介在:" + +#: ../../mod/invite.php:118 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "遥网站的回答明白不了。" + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "居然回答从遥网站:" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "确认成功完成。" + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "遥网站报案:" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "临时失败。请等一会,再试。" + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "介绍失败或被吊销。" + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "不会指定熟人照片。" + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619 +#: ../../include/conversation.php:171 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s是成为%2$s的朋友" + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "找不到「%s」的用户记录" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "看起来我们的加密钥匙失灵了。" + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "空的URL供应,或URL解不了码。" + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "熟人记录在我们的网站找不了。" + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "没有网站公开钥匙在熟人记录在URL%s。" + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。" + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "不能创作您的熟人证件在我们的系统。" + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "不能更新您的熟人简介消息在我们的系统" + +#: ../../mod/dfrn_confirm.php:750 +#, php-format +msgid "Connection accepted at %s" +msgstr "联络接受了在%s" + +#: ../../mod/dfrn_confirm.php:799 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:29 +#: ../../addon.old/fromgplus/fromgplus.php:29 +msgid "Google+ Import Settings" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:32 +#: ../../addon.old/fromgplus/fromgplus.php:32 +msgid "Enable Google+ Import" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:35 +#: ../../addon.old/fromgplus/fromgplus.php:35 +msgid "Google Account ID" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:55 +#: ../../addon.old/fromgplus/fromgplus.php:55 +msgid "Google+ Import Settings saved." +msgstr "" + +#: ../../addon/facebook/facebook.php:523 +#: ../../addon.old/facebook/facebook.php:523 +msgid "Facebook disabled" +msgstr "Facebook废" + +#: ../../addon/facebook/facebook.php:528 +#: ../../addon.old/facebook/facebook.php:528 +msgid "Updating contacts" +msgstr "正才更新熟人" + +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 +#: ../../addon.old/facebook/facebook.php:551 +#: ../../addon.old/fbpost/fbpost.php:192 +msgid "Facebook API key is missing." +msgstr "Facebook API钥匙失踪的。" + +#: ../../addon/facebook/facebook.php:558 +#: ../../addon.old/facebook/facebook.php:558 +msgid "Facebook Connect" +msgstr "Facebook联络" + +#: ../../addon/facebook/facebook.php:564 +#: ../../addon.old/facebook/facebook.php:564 +msgid "Install Facebook connector for this account." +msgstr "安装Facebook连接器为这个账户。" + +#: ../../addon/facebook/facebook.php:571 +#: ../../addon.old/facebook/facebook.php:571 +msgid "Remove Facebook connector" +msgstr "删除Facebook连接器" + +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 +#: ../../addon.old/facebook/facebook.php:576 +#: ../../addon.old/fbpost/fbpost.php:217 +msgid "" +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "复认证[这是必要的每当您Facebook密码变化了]" + +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 +#: ../../addon.old/facebook/facebook.php:583 +#: ../../addon.old/fbpost/fbpost.php:224 +msgid "Post to Facebook by default" +msgstr "默认地放在Facebook" + +#: ../../addon/facebook/facebook.php:589 +#: ../../addon.old/facebook/facebook.php:589 +msgid "" +"Facebook friend linking has been disabled on this site. The following " +"settings will have no effect." +msgstr "" + +#: ../../addon/facebook/facebook.php:593 +#: ../../addon.old/facebook/facebook.php:593 +msgid "" +"Facebook friend linking has been disabled on this site. If you disable it, " +"you will be unable to re-enable it." +msgstr "" + +#: ../../addon/facebook/facebook.php:596 +#: ../../addon.old/facebook/facebook.php:596 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "连接您所有的Facebook朋友们和交流在这个网站" + +#: ../../addon/facebook/facebook.php:598 +#: ../../addon.old/facebook/facebook.php:598 +msgid "" +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Facebook交流由您的简介墙和您朋友的溪流组成。 " + +#: ../../addon/facebook/facebook.php:599 +#: ../../addon.old/facebook/facebook.php:599 +msgid "On this website, your Facebook friend stream is only visible to you." +msgstr "在这个网站,您Facebook朋友溪流是只您可见的。" + +#: ../../addon/facebook/facebook.php:600 +#: ../../addon.old/facebook/facebook.php:600 +msgid "" +"The following settings determine the privacy of your Facebook profile wall " +"on this website." +msgstr "下面的设置决定您在这个网站Facebook简介墙的隐私。" + +#: ../../addon/facebook/facebook.php:604 +#: ../../addon.old/facebook/facebook.php:604 +msgid "" +"On this website your Facebook profile wall conversations will only be " +"visible to you" +msgstr "在这个网站您Facebook简介墙交流是只您可见的。" + +#: ../../addon/facebook/facebook.php:609 +#: ../../addon.old/facebook/facebook.php:609 +msgid "Do not import your Facebook profile wall conversations" +msgstr "别进口您Facebook简介墙交流" + +#: ../../addon/facebook/facebook.php:611 +#: ../../addon.old/facebook/facebook.php:611 +msgid "" +"If you choose to link conversations and leave both of these boxes unchecked," +" your Facebook profile wall will be merged with your profile wall on this " +"website and your privacy settings on this website will be used to determine " +"who may see the conversations." +msgstr "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。" + +#: ../../addon/facebook/facebook.php:616 +#: ../../addon.old/facebook/facebook.php:616 +msgid "Comma separated applications to ignore" +msgstr "逗号分开的应用要不理" + +#: ../../addon/facebook/facebook.php:700 +#: ../../addon.old/facebook/facebook.php:700 +msgid "Problems with Facebook Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:729 +#: ../../addon.old/facebook/facebook.php:729 +msgid "Facebook Connector Settings" +msgstr "Facebook连接器设置" + +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 +#: ../../addon.old/facebook/facebook.php:744 +#: ../../addon.old/fbpost/fbpost.php:255 +msgid "Facebook API Key" +msgstr "" + +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 +#: ../../addon.old/facebook/facebook.php:754 +#: ../../addon.old/fbpost/fbpost.php:262 +msgid "" +"Error: it appears that you have specified the App-ID and -Secret in your " +".htconfig.php file. As long as they are specified there, they cannot be set " +"using this form.

" +msgstr "" + +#: ../../addon/facebook/facebook.php:759 +#: ../../addon.old/facebook/facebook.php:759 +msgid "" +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "" + +#: ../../addon/facebook/facebook.php:761 +#: ../../addon.old/facebook/facebook.php:761 +msgid "The given API Key seems to work correctly." +msgstr "" + +#: ../../addon/facebook/facebook.php:763 +#: ../../addon.old/facebook/facebook.php:763 +msgid "" +"The correctness of the API Key could not be detected. Something strange's " +"going on." +msgstr "" + +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 +#: ../../addon.old/facebook/facebook.php:766 +#: ../../addon.old/fbpost/fbpost.php:264 +msgid "App-ID / API-Key" +msgstr "" + +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 +#: ../../addon.old/facebook/facebook.php:767 +#: ../../addon.old/fbpost/fbpost.php:265 +msgid "Application secret" +msgstr "" + +#: ../../addon/facebook/facebook.php:768 +#: ../../addon.old/facebook/facebook.php:768 +#, php-format +msgid "Polling Interval in minutes (minimum %1$s minutes)" +msgstr "" + +#: ../../addon/facebook/facebook.php:769 +#: ../../addon.old/facebook/facebook.php:769 +msgid "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "" + +#: ../../addon/facebook/facebook.php:773 +#: ../../addon.old/facebook/facebook.php:773 +msgid "Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:777 +#: ../../addon.old/facebook/facebook.php:777 +msgid "Real-Time Updates are activated." +msgstr "" + +#: ../../addon/facebook/facebook.php:778 +#: ../../addon.old/facebook/facebook.php:778 +msgid "Deactivate Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:780 +#: ../../addon.old/facebook/facebook.php:780 +msgid "Real-Time Updates not activated." +msgstr "" + +#: ../../addon/facebook/facebook.php:780 +#: ../../addon.old/facebook/facebook.php:780 +msgid "Activate Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 +#: ../../addon.old/facebook/facebook.php:799 +#: ../../addon.old/fbpost/fbpost.php:282 +#: ../../addon.old/dav/friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "" + +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 +#: ../../addon.old/facebook/facebook.php:823 +#: ../../addon.old/fbpost/fbpost.php:301 +msgid "Post to Facebook" +msgstr "放在Facebook" + +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 +#: ../../addon.old/facebook/facebook.php:921 +#: ../../addon.old/fbpost/fbpost.php:399 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." +msgstr "发送到Facebook取消由于多网络准许矛盾。" + +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 +#: ../../addon.old/facebook/facebook.php:1149 +#: ../../addon.old/fbpost/fbpost.php:610 +msgid "View on Friendica" +msgstr "" + +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 +#: ../../addon.old/facebook/facebook.php:1182 +#: ../../addon.old/fbpost/fbpost.php:643 +msgid "Facebook post failed. Queued for retry." +msgstr "Facebook发送失败了。排队着待再试。" + +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 +#: ../../addon.old/facebook/facebook.php:1222 +#: ../../addon.old/fbpost/fbpost.php:683 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "" + +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 +#: ../../addon.old/facebook/facebook.php:1223 +#: ../../addon.old/fbpost/fbpost.php:684 +msgid "Facebook connection became invalid" +msgstr "" + +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 +#: ../../addon.old/facebook/facebook.php:1224 +#: ../../addon.old/fbpost/fbpost.php:685 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:32 +#: ../../addon.old/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:56 +#: ../../addon.old/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:58 +#: ../../addon.old/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260 +msgid "Lifetime of the cache (in hours)" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 +msgid "Cache Statistics" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268 +msgid "Number of items" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270 +msgid "Size of the cache" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272 +msgid "Delete the whole cache" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "" + +#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "" + +#: ../../addon/widgets/widget_like.php:58 +#: ../../addon.old/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "%d人喜欢这个" + +#: ../../addon/widgets/widget_like.php:61 +#: ../../addon.old/widgets/widget_like.php:61 +#, php-format +msgid "%d person doesn't like this" +msgid_plural "%d people don't like this" +msgstr[0] "%d人不喜欢这个" + +#: ../../addon/widgets/widget_friendheader.php:40 +#: ../../addon.old/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "" + +#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56 +msgid "Generate new key" +msgstr "造成新钥匙" + +#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59 +msgid "Widgets key" +msgstr "小窗口钥匙" + +#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61 +msgid "Widgets available" +msgstr "可用的小窗口" + +#: ../../addon/widgets/widget_friends.php:40 +#: ../../addon.old/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +#: ../../addon.old/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +#: ../../addon.old/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +#: ../../addon.old/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +#: ../../addon.old/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +#: ../../addon.old/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +#: ../../addon.old/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +#: ../../addon.old/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +#: ../../addon.old/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +#: ../../addon.old/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +#: ../../addon.old/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +#: ../../addon.old/morepokes/morepokes.php:24 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +#: ../../addon.old/morepokes/morepokes.php:24 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +#: ../../addon.old/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +#: ../../addon.old/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +#: ../../addon.old/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +#: ../../addon.old/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +#: ../../addon.old/morepokes/morepokes.php:27 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +#: ../../addon.old/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +#: ../../addon.old/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +#: ../../addon.old/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +#: ../../addon.old/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +#: ../../addon.old/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +#: ../../addon.old/morepokes/morepokes.php:30 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +#: ../../addon.old/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +#: ../../addon.old/morepokes/morepokes.php:31 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +#: ../../addon.old/morepokes/morepokes.php:31 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +#: ../../addon.old/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +#: ../../addon.old/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +#: ../../addon.old/morepokes/morepokes.php:33 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +#: ../../addon.old/morepokes/morepokes.php:33 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +#: ../../addon.old/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +#: ../../addon.old/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +#: ../../addon.old/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +#: ../../addon.old/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +#: ../../addon.old/morepokes/morepokes.php:36 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +#: ../../addon.old/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "" + +#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "" + +#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "" + +#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62 +msgid "Username:" +msgstr "" + +#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67 +msgid "Password:" +msgstr "" + +#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "" + +#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "" + +#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "NSFW设置保持了。" + +#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - 点击为打开/关闭" + +#: ../../addon/page/page.php:62 ../../addon/page/page.php:92 +#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62 +#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60 +msgid "Forums" +msgstr "" + +#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94 +#: ../../addon.old/page/page.php:130 +#: ../../addon.old/forumlist/forumlist.php:94 +msgid "Forums:" +msgstr "" + +#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166 +msgid "Page settings updated." +msgstr "" + +#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195 +msgid "Page Settings" +msgstr "" + +#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197 +msgid "How many forums to display on sidebar without paging" +msgstr "" + +#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200 +msgid "Randomise Page/Forum list" +msgstr "" + +#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203 +msgid "Show pages/forums on profile page" +msgstr "" + +#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150 +msgid "Planets Settings" +msgstr "" + +#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:28 +#: ../../addon/communityhome/communityhome.php:34 +#: ../../addon/communityhome/twillingham/communityhome.php:28 +#: ../../addon/communityhome/twillingham/communityhome.php:34 +#: ../../include/nav.php:64 ../../boot.php:946 +#: ../../addon.old/communityhome/communityhome.php:28 +#: ../../addon.old/communityhome/communityhome.php:34 +#: ../../addon.old/communityhome/twillingham/communityhome.php:28 +#: ../../addon.old/communityhome/twillingham/communityhome.php:34 +msgid "Login" +msgstr "登录" + +#: ../../addon/communityhome/communityhome.php:29 +#: ../../addon/communityhome/twillingham/communityhome.php:29 +#: ../../addon.old/communityhome/communityhome.php:29 +#: ../../addon.old/communityhome/twillingham/communityhome.php:29 +msgid "OpenID" +msgstr "OpenID" + +#: ../../addon/communityhome/communityhome.php:38 +#: ../../addon/communityhome/twillingham/communityhome.php:38 +#: ../../addon.old/communityhome/communityhome.php:38 +#: ../../addon.old/communityhome/twillingham/communityhome.php:38 +msgid "Latest users" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +#: ../../addon.old/communityhome/communityhome.php:81 +#: ../../addon.old/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "最积极用户" + +#: ../../addon/communityhome/communityhome.php:98 +#: ../../addon.old/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:133 +#: ../../addon.old/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1442 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 +#: ../../addon.old/communityhome/communityhome.php:155 +msgid "event" +msgstr "项目" + +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 +#: ../../addon.old/dav/common/wdcal_backend.inc.php:92 +#: ../../addon.old/dav/common/wdcal_backend.inc.php:166 +#: ../../addon.old/dav/common/wdcal_backend.inc.php:178 +#: ../../addon.old/dav/common/wdcal_backend.inc.php:206 +#: ../../addon.old/dav/common/wdcal_backend.inc.php:214 +#: ../../addon.old/dav/common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:30 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:140 +#: ../../addon.old/dav/friendica/layout.fnk.php:143 +#: ../../addon.old/dav/friendica/layout.fnk.php:422 +msgid "Go back to the calendar" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:146 +#: ../../addon.old/dav/friendica/main.php:239 +msgid "Calendar" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:194 +msgid "Daily" +msgstr "每日" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:197 +msgid "Weekly" +msgstr "每周" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:200 +msgid "Monthly" +msgstr "每月" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:214 +msgid "days" +msgstr "天" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:215 +msgid "weeks" +msgstr "星期" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:216 +msgid "months" +msgstr "月" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:217 +msgid "years" +msgstr "年" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:222 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:260 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:231 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:254 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:270 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:293 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:305 +msgid "Sunday" +msgstr "星期天" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:235 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:274 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:308 +msgid "Monday" +msgstr "星期一" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:238 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:277 +msgid "Tuesday" +msgstr "星期二" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:241 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:280 +msgid "Wednesday" +msgstr "星期三" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:244 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:283 +msgid "Thursday" +msgstr "星期四" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:247 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:286 +msgid "Friday" +msgstr "星期五" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:250 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:289 +msgid "Saturday" +msgstr "星期六" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:350 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:372 +#: ../../addon.old/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +#: ../../addon.old/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +#: ../../addon.old/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "" + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +#: ../../addon.old/dav/friendica/layout.fnk.php:99 +#: ../../addon.old/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:131 +#: ../../addon.old/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:134 +#: ../../addon.old/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:138 +#: ../../addon.old/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:147 +#: ../../addon.old/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:150 +#: ../../addon.old/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:151 +#: ../../addon.old/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +#: ../../addon.old/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +#: ../../addon.old/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +#: ../../addon.old/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +#: ../../addon.old/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +#: ../../addon.old/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +#: ../../addon.old/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +#: ../../addon.old/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +#: ../../addon.old/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:393 +#: ../../addon.old/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:417 +#: ../../addon.old/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:424 +#: ../../addon.old/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +#: ../../addon.old/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +#: ../../addon.old/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +#: ../../addon.old/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:487 +#: ../../addon.old/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:496 +#: ../../addon.old/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +#: ../../addon.old/dav/friendica/layout.fnk.php:500 +#: ../../addon.old/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +#: ../../addon.old/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +#: ../../addon.old/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +#: ../../addon.old/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "" + +#: ../../addon/dav/friendica/main.php:202 +#: ../../addon.old/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "" + +#: ../../addon/dav/friendica/main.php:242 +#: ../../addon.old/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "" + +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:774 +#: ../../addon.old/dav/friendica/main.php:279 +#: ../../addon.old/dav/friendica/main.php:280 +msgid "noreply" +msgstr "noreply" + +#: ../../addon/dav/friendica/main.php:282 +#: ../../addon.old/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "" + +#: ../../addon/dav/friendica/main.php:309 +#: ../../addon.old/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "" + +#: ../../addon/dav/friendica/main.php:310 +#: ../../addon.old/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "" + +#: ../../addon/dav/friendica/main.php:316 +#: ../../addon.old/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "" + +#: ../../addon/dav/friendica/main.php:317 +#: ../../addon.old/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "" + +#: ../../addon/dav/friendica/main.php:333 +#: ../../addon.old/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "" + +#: ../../addon/dav/friendica/main.php:336 +#: ../../addon.old/dav/friendica/main.php:336 +msgid "Database status" +msgstr "" + +#: ../../addon/dav/friendica/main.php:339 +#: ../../addon.old/dav/friendica/main.php:339 +msgid "Installed" +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +#: ../../addon.old/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +#: ../../addon.old/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +#: ../../addon.old/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "" + +#: ../../addon/dav/friendica/main.php:346 +#: ../../addon.old/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "" + +#: ../../addon/dav/friendica/main.php:346 +#: ../../addon.old/dav/friendica/main.php:346 +msgid "Install" +msgstr "" + +#: ../../addon/dav/friendica/main.php:350 +#: ../../addon.old/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "" + +#: ../../addon/dav/friendica/main.php:350 +#: ../../addon.old/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "" + +#: ../../addon/dav/friendica/main.php:355 +#: ../../addon.old/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "" + +#: ../../addon/dav/friendica/main.php:356 +#: ../../addon.old/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "" + +#: ../../addon/dav/friendica/main.php:357 +#: ../../addon.old/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:84 +#: ../../addon.old/uhremotestorage/uhremotestorage.php:84 +#, php-format +msgid "" +"Allow to use your friendica id (%s) to connecto to external unhosted-enabled" +" storage (like ownCloud). See RemoteStorage" +" WebFinger" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "" + +#: ../../addon/membersince/membersince.php:18 +#: ../../addon.old/membersince/membersince.php:18 +msgid "Member since:" +msgstr "" + +#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "三维井字棋" + +#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "三维井字棋" + +#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58 +msgid "New game" +msgstr "新游戏" + +#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59 +msgid "New game with handicap" +msgstr "新游戏不利条件 " + +#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "三维井字棋跟传统的一样,除了完同时在多水平。" + +#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。" + +#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。" + +#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182 +msgid "You go first..." +msgstr "您先下..." + +#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "这次我先下..." + +#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193 +msgid "You won!" +msgstr "您赢了!" + +#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 +#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224 +msgid "\"Cat\" game!" +msgstr "「猫子」游戏!" + +#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222 +msgid "I won!" +msgstr "我赢了!" + +#: ../../addon/randplace/randplace.php:169 +#: ../../addon.old/randplace/randplace.php:169 +msgid "Randplace Settings" +msgstr "随意下设置" + +#: ../../addon/randplace/randplace.php:171 +#: ../../addon.old/randplace/randplace.php:171 +msgid "Enable Randplace Plugin" +msgstr "使随意下插件能用" + +#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:44 +msgid "Remote Permissions Settings" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:45 +msgid "" +"Allow recipients of your private posts to see the other recipients of the " +"posts" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:57 +msgid "Remote Permissions settings updated." +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:177 +msgid "Visible to" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:177 +msgid "may only be a partial list" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:196 +msgid "Global" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:196 +msgid "The posts of every user on this server show the post recipients" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:197 +msgid "Individual" +msgstr "" + +#: ../../addon/remote_permissions/remote_permissions.php:197 +msgid "Each user chooses whether his/her posts show the post recipients" +msgstr "" + +#: ../../addon/startpage/startpage.php:83 +#: ../../addon.old/startpage/startpage.php:83 +msgid "Startpage Settings" +msgstr "" + +#: ../../addon/startpage/startpage.php:85 +#: ../../addon.old/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "" + +#: ../../addon/startpage/startpage.php:88 +#: ../../addon.old/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "" + +#: ../../addon/geonames/geonames.php:143 +#: ../../addon.old/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "" + +#: ../../addon/geonames/geonames.php:179 +#: ../../addon.old/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "" + +#: ../../addon/geonames/geonames.php:181 +#: ../../addon.old/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "" + +#: ../../addon/public_server/public_server.php:126 +#: ../../addon/testdrive/testdrive.php:94 +#: ../../addon.old/public_server/public_server.php:126 +#: ../../addon.old/testdrive/testdrive.php:94 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: ../../addon/public_server/public_server.php:127 +#: ../../addon.old/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "" + +#: ../../addon/public_server/public_server.php:128 +#: ../../addon.old/public_server/public_server.php:128 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:43 +#: ../../addon.old/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "上传文件" + +#: ../../addon/js_upload/js_upload.php:44 +#: ../../addon.old/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +msgstr "在这儿放文件为上传" + +#: ../../addon/js_upload/js_upload.php:46 +#: ../../addon.old/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "失败" + +#: ../../addon/js_upload/js_upload.php:297 +#: ../../addon.old/js_upload/js_upload.php:297 +msgid "No files were uploaded." +msgstr "没有文件上传。" + +#: ../../addon/js_upload/js_upload.php:303 +#: ../../addon.old/js_upload/js_upload.php:303 +msgid "Uploaded file is empty" +msgstr "上传的文件空的" + +#: ../../addon/js_upload/js_upload.php:326 +#: ../../addon.old/js_upload/js_upload.php:326 +msgid "File has an invalid extension, it should be one of " +msgstr "文件扩展名无效的,应该是这些一个:" + +#: ../../addon/js_upload/js_upload.php:337 +#: ../../addon.old/js_upload/js_upload.php:337 +msgid "Upload was cancelled, or server error encountered" +msgstr "上传注销了,或相遇服务器错误" + +#: ../../addon/forumlist/forumlist.php:63 +#: ../../addon.old/forumlist/forumlist.php:63 +msgid "show/hide" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:77 +#: ../../addon.old/forumlist/forumlist.php:77 +msgid "No forum subscriptions" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:131 +#: ../../addon.old/forumlist/forumlist.php:131 +msgid "Forumlist settings updated." +msgstr "" + +#: ../../addon/forumlist/forumlist.php:159 +#: ../../addon.old/forumlist/forumlist.php:159 +msgid "Forumlist Settings" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:161 +#: ../../addon.old/forumlist/forumlist.php:161 +msgid "Randomise forum list" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:164 +#: ../../addon.old/forumlist/forumlist.php:164 +msgid "Show forums on profile page" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:167 +#: ../../addon.old/forumlist/forumlist.php:167 +msgid "Show forums on network page" +msgstr "" + +#: ../../addon/impressum/impressum.php:37 +#: ../../addon.old/impressum/impressum.php:37 +msgid "Impressum" +msgstr "Impressum(法定的出版信息)" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 +#: ../../addon.old/impressum/impressum.php:50 +#: ../../addon.old/impressum/impressum.php:52 +#: ../../addon.old/impressum/impressum.php:84 +msgid "Site Owner" +msgstr "网站主" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 +#: ../../addon.old/impressum/impressum.php:50 +#: ../../addon.old/impressum/impressum.php:88 +msgid "Email Address" +msgstr "电子邮件地址" + +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 +#: ../../addon.old/impressum/impressum.php:55 +#: ../../addon.old/impressum/impressum.php:86 +msgid "Postal Address" +msgstr "邮政邮件地址" + +#: ../../addon/impressum/impressum.php:61 +#: ../../addon.old/impressum/impressum.php:61 +msgid "" +"The impressum addon needs to be configured!
Please add at least the " +"owner variable to your config file. For other variables please " +"refer to the README file of the addon." +msgstr "Impressum插件必须被设置!
请加至少owner变量在您的设置文件。关于别的变量请指插件的README文件。" + +#: ../../addon/impressum/impressum.php:84 +#: ../../addon.old/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "" + +#: ../../addon/impressum/impressum.php:85 +#: ../../addon.old/impressum/impressum.php:85 +msgid "Site Owners Profile" +msgstr "网站主的简介" + +#: ../../addon/impressum/impressum.php:85 +#: ../../addon.old/impressum/impressum.php:85 +msgid "Profile address of the operator." +msgstr "" + +#: ../../addon/impressum/impressum.php:86 +#: ../../addon.old/impressum/impressum.php:86 +msgid "How to contact the operator via snail mail. You can use BBCode here." +msgstr "" + +#: ../../addon/impressum/impressum.php:87 +#: ../../addon.old/impressum/impressum.php:87 +msgid "Notes" +msgstr "便条" + +#: ../../addon/impressum/impressum.php:87 +#: ../../addon.old/impressum/impressum.php:87 +msgid "" +"Additional notes that are displayed beneath the contact information. You can" +" use BBCode here." +msgstr "" + +#: ../../addon/impressum/impressum.php:88 +#: ../../addon.old/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "" + +#: ../../addon/impressum/impressum.php:89 +#: ../../addon.old/impressum/impressum.php:89 +msgid "Footer note" +msgstr "" + +#: ../../addon/impressum/impressum.php:89 +#: ../../addon.old/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "" + +#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "报案程序错误" + +#: ../../addon/notimeline/notimeline.php:32 +#: ../../addon.old/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "" + +#: ../../addon/notimeline/notimeline.php:56 +#: ../../addon.old/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "" + +#: ../../addon/notimeline/notimeline.php:58 +#: ../../addon.old/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "" + +#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "" + +#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "" + +#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "" + +#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "" + +#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "" + +#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162 +msgid "Block Author" +msgstr "" + +#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:51 +#: ../../addon.old/qcomment/qcomment.php:51 +msgid ":-)" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:51 +#: ../../addon.old/qcomment/qcomment.php:51 +msgid ":-(" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:51 +#: ../../addon.old/qcomment/qcomment.php:51 +msgid "lol" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:54 +#: ../../addon.old/qcomment/qcomment.php:54 +msgid "Quick Comment Settings" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:56 +#: ../../addon.old/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "" + +#: ../../addon/qcomment/qcomment.php:57 +#: ../../addon.old/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:75 +#: ../../addon.old/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +#: ../../addon.old/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +#: ../../addon.old/openstreetmap/openstreetmap.php:71 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +#: ../../addon.old/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +#: ../../addon.old/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "" + +#: ../../addon/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +#: ../../addon.old/group_text/group_text.php:46 +#: ../../addon.old/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "" + +#: ../../addon/group_text/group_text.php:76 +#: ../../addon.old/group_text/group_text.php:76 +msgid "Group Text" +msgstr "" + +#: ../../addon/group_text/group_text.php:78 +#: ../../addon.old/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:14 +#: ../../addon.old/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:73 +#: ../../addon/gravatar/gravatar.php:71 +#: ../../addon.old/libravatar/libravatar.php:73 +#: ../../addon.old/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:74 +#: ../../addon/gravatar/gravatar.php:72 +#: ../../addon.old/libravatar/libravatar.php:74 +#: ../../addon.old/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:75 +#: ../../addon/gravatar/gravatar.php:73 +#: ../../addon.old/libravatar/libravatar.php:75 +#: ../../addon.old/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:76 +#: ../../addon/gravatar/gravatar.php:74 +#: ../../addon.old/libravatar/libravatar.php:76 +#: ../../addon.old/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:77 +#: ../../addon/gravatar/gravatar.php:75 +#: ../../addon.old/libravatar/libravatar.php:77 +#: ../../addon.old/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:83 +#: ../../addon.old/libravatar/libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:84 +#: ../../addon.old/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon/gravatar/gravatar.php:89 +#: ../../addon.old/libravatar/libravatar.php:93 +#: ../../addon.old/gravatar/gravatar.php:89 +msgid "Information" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon.old/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon/gravatar/gravatar.php:96 +#: ../../addon.old/libravatar/libravatar.php:100 +#: ../../addon.old/gravatar/gravatar.php:96 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon.old/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:112 +#: ../../addon.old/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "" + +#: ../../addon/libertree/libertree.php:36 +#: ../../addon.old/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "" + +#: ../../addon/libertree/libertree.php:67 +#: ../../addon.old/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "" + +#: ../../addon/libertree/libertree.php:69 +#: ../../addon.old/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "" + +#: ../../addon/libertree/libertree.php:74 +#: ../../addon.old/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "" + +#: ../../addon/libertree/libertree.php:79 +#: ../../addon.old/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon/libertree/libertree.php:84 +#: ../../addon.old/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon/altpager/altpager.php:46 +#: ../../addon.old/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "" + +#: ../../addon/altpager/altpager.php:79 +#: ../../addon.old/altpager/altpager.php:79 +msgid "Alternate Pagination Setting" +msgstr "" + +#: ../../addon/altpager/altpager.php:81 +#: ../../addon.old/altpager/altpager.php:81 +msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" +msgstr "" + +#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37 +msgid "" +"The MathJax addon renders mathematical formulae written using the LaTeX " +"syntax surrounded by the usual $$ or an eqnarray block in the postings of " +"your wall,network tab and private mail." +msgstr "" + +#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "" + +#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74 +msgid "MathJax Base URL" +msgstr "" + +#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74 +msgid "" +"The URL for the javascript file that should be included to use MathJax. Can " +"be either the MathJax CDN or another installation of MathJax." +msgstr "" + +#: ../../addon/editplain/editplain.php:76 +#: ../../addon.old/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "" + +#: ../../addon/editplain/editplain.php:78 +#: ../../addon.old/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:89 +#: ../../addon.old/gravatar/gravatar.php:89 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" + +#: ../../addon/gravatar/gravatar.php:96 +#: ../../addon.old/gravatar/gravatar.php:96 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:97 +#: ../../addon.old/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:97 +#: ../../addon.old/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:111 +#: ../../addon.old/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:95 +#: ../../addon.old/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:96 +#: ../../addon.old/testdrive/testdrive.php:96 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." +msgstr "" + +#: ../../addon/pageheader/pageheader.php:50 +#: ../../addon.old/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:68 +#: ../../addon.old/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "" + +#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:266 +#: ../../addon.old/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:268 +#: ../../addon.old/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:271 +#: ../../addon.old/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:274 +#: ../../addon.old/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:277 +#: ../../addon.old/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:281 +#: ../../addon.old/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:285 +#: ../../addon.old/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:290 +#: ../../addon.old/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:293 +#: ../../addon.old/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:296 +#: ../../addon.old/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:299 +#: ../../addon.old/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:302 +#: ../../addon.old/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:308 +#: ../../addon.old/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "" + +#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:134 +#: ../../addon.old/statusnet/statusnet.php:134 +msgid "Post to StatusNet" +msgstr "发送到StatusNet" + +#: ../../addon/statusnet/statusnet.php:176 +#: ../../addon.old/statusnet/statusnet.php:176 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "请联系您的网站行政人员。
提供的API URL无效。" + +#: ../../addon/statusnet/statusnet.php:204 +#: ../../addon.old/statusnet/statusnet.php:204 +msgid "We could not contact the StatusNet API with the Path you entered." +msgstr "我们不能联系StatusNet API在您输入的路径。" + +#: ../../addon/statusnet/statusnet.php:232 +#: ../../addon.old/statusnet/statusnet.php:232 +msgid "StatusNet settings updated." +msgstr "StatusNet设置更新了。" + +#: ../../addon/statusnet/statusnet.php:257 +#: ../../addon.old/statusnet/statusnet.php:257 +msgid "StatusNet Posting Settings" +msgstr "StatusNet发送设置" + +#: ../../addon/statusnet/statusnet.php:271 +#: ../../addon.old/statusnet/statusnet.php:271 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "综合可用的StatusNet OAuthKeys" + +#: ../../addon/statusnet/statusnet.php:272 +#: ../../addon.old/statusnet/statusnet.php:272 +msgid "" +"There are preconfigured OAuth key pairs for some StatusNet servers " +"available. If you are useing one of them, please use these credentials. If " +"not feel free to connect to any other StatusNet instance (see below)." +msgstr "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。" + +#: ../../addon/statusnet/statusnet.php:280 +#: ../../addon.old/statusnet/statusnet.php:280 +msgid "Provide your own OAuth Credentials" +msgstr "提供您自己的OAuth证件" + +#: ../../addon/statusnet/statusnet.php:281 +#: ../../addon.old/statusnet/statusnet.php:281 +msgid "" +"No consumer key pair for StatusNet found. Register your Friendica Account as" +" an desktop client on your StatusNet account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Friendica installation at your favorited StatusNet installation." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:283 +#: ../../addon.old/statusnet/statusnet.php:283 +msgid "OAuth Consumer Key" +msgstr "Oauth消费者钥匙" + +#: ../../addon/statusnet/statusnet.php:286 +#: ../../addon.old/statusnet/statusnet.php:286 +msgid "OAuth Consumer Secret" +msgstr "Oauth消费者密码" + +#: ../../addon/statusnet/statusnet.php:289 +#: ../../addon.old/statusnet/statusnet.php:289 +msgid "Base API Path (remember the trailing /)" +msgstr "基础API地址(注意最后的/)" + +#: ../../addon/statusnet/statusnet.php:310 +#: ../../addon.old/statusnet/statusnet.php:310 +msgid "" +"To connect to your StatusNet account click the button below to get a " +"security code from StatusNet which you have to copy into the input box below" +" and submit the form. Only your public posts will be posted" +" to StatusNet." +msgstr "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。" + +#: ../../addon/statusnet/statusnet.php:311 +#: ../../addon.old/statusnet/statusnet.php:311 +msgid "Log in with StatusNet" +msgstr "用StatusNet登记" + +#: ../../addon/statusnet/statusnet.php:313 +#: ../../addon.old/statusnet/statusnet.php:313 +msgid "Copy the security code from StatusNet here" +msgstr "复制安全密码从StatusNet这儿" + +#: ../../addon/statusnet/statusnet.php:319 +#: ../../addon.old/statusnet/statusnet.php:319 +msgid "Cancel Connection Process" +msgstr "注销连接过程 " + +#: ../../addon/statusnet/statusnet.php:321 +#: ../../addon.old/statusnet/statusnet.php:321 +msgid "Current StatusNet API is" +msgstr "现在StatusNet API是" + +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon.old/statusnet/statusnet.php:322 +msgid "Cancel StatusNet Connection" +msgstr "注销StatusNet连接" + +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 +#: ../../addon.old/statusnet/statusnet.php:333 +#: ../../addon.old/twitter/twitter.php:189 +msgid "Currently connected to: " +msgstr "现在连接到:" + +#: ../../addon/statusnet/statusnet.php:334 +#: ../../addon.old/statusnet/statusnet.php:334 +msgid "" +"If enabled all your public postings can be posted to the " +"associated StatusNet account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "如果使可用的都您公开的文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。" + +#: ../../addon/statusnet/statusnet.php:336 +#: ../../addon.old/statusnet/statusnet.php:336 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to StatusNet will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:339 +#: ../../addon.old/statusnet/statusnet.php:339 +msgid "Allow posting to StatusNet" +msgstr "许放在StatusNet" + +#: ../../addon/statusnet/statusnet.php:342 +#: ../../addon.old/statusnet/statusnet.php:342 +msgid "Send public postings to StatusNet by default" +msgstr "默认发送公开文章在StatusNet" + +#: ../../addon/statusnet/statusnet.php:345 +#: ../../addon.old/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 +#: ../../addon.old/statusnet/statusnet.php:350 +#: ../../addon.old/twitter/twitter.php:206 +msgid "Clear OAuth configuration" +msgstr "清理出OAuth设置" + +#: ../../addon/statusnet/statusnet.php:568 +#: ../../addon.old/statusnet/statusnet.php:568 +msgid "API URL" +msgstr "API URL" + +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "" + +#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36 +msgid "Post to Tumblr" +msgstr "发送到Tumblr" + +#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" +msgstr "Tumblr发送设置" + +#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" +msgstr "使Tumblr发送插件能够" + +#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Tumblr登记名" + +#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Tumblr密码" + +#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" +msgstr "默认地给Tumblr发送" + +#: ../../addon/numfriends/numfriends.php:46 +#: ../../addon.old/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "" + +#: ../../addon/numfriends/numfriends.php:77 +#: ../../addon.old/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "" + +#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84 +#: ../../addon.old/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "" + +#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "" + +#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "" + +#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81 +msgid "" +"Allows threading of email comment notifications on Gmail and anonymising the" +" subject line." +msgstr "" + +#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "" + +#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "" + +#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "发送到Wordpress" + +#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76 +msgid "WordPress Post Settings" +msgstr "Wordpress发送设置" + +#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78 +msgid "Enable WordPress Post Plugin" +msgstr "使Wordpress发送插件可用" + +#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83 +msgid "WordPress username" +msgstr "Wordpress用户名" + +#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88 +msgid "WordPress password" +msgstr "Wordpress密码" + +#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93 +msgid "WordPress API URL" +msgstr "WordPress API URL" + +#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98 +msgid "Post to WordPress by default" +msgstr "默认地发送到Wordpress" + +#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "" + +#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172 +#: ../../addon/posterous/posterous.php:189 +#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201 +#: ../../addon.old/blogger/blogger.php:172 +#: ../../addon.old/posterous/posterous.php:189 +msgid "Post from Friendica" +msgstr "文章从Friendica" + +#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "" + +#: ../../addon/showmore/showmore.php:38 +#: ../../addon.old/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "" + +#: ../../addon/showmore/showmore.php:41 +#: ../../addon.old/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "" + +#: ../../addon/showmore/showmore.php:44 +#: ../../addon.old/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "" + +#: ../../addon/showmore/showmore.php:65 +#: ../../addon.old/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "" + +#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "这个网站用Piwik分析工具追踪 。" + +#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "如果您不想您访问这样记录您可以用一个cookie防Piwik追踪未来的访问(选择性退出)。" + +#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "Piwik基础URL" + +#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" + +#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91 +msgid "Site ID" +msgstr "网站ID" + +#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr " 显示选择性退出cookie按钮?" + +#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73 +msgid "Post to Twitter" +msgstr "发送到在Twitter" + +#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122 +msgid "Twitter settings updated." +msgstr "Twitter设置更新了。" + +#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146 +msgid "Twitter Posting Settings" +msgstr "Twitter发送设置" + +#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "找不到Twitter的消费钥匙双。请联系您的网页行政人员。" + +#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172 +msgid "" +"At this Friendica instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "" + +#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173 +msgid "Log in with Twitter" +msgstr "用Twitter登记" + +#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175 +msgid "Copy the PIN from Twitter here" +msgstr "复制Twitter密码这儿" + +#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190 +msgid "" +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for" +" every posting separately in the posting options when writing the entry." +msgstr "如果使可用的都您公开的文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。" + +#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195 +msgid "Allow posting to Twitter" +msgstr "允许发送到Twitter" + +#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198 +msgid "Send public postings to Twitter by default" +msgstr "默认地发送公开文章到Twitter" + +#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:396 ../../addon.old/twitter/twitter.php:396 +msgid "Consumer key" +msgstr "钥匙(Consumer key)" + +#: ../../addon/twitter/twitter.php:397 ../../addon.old/twitter/twitter.php:397 +msgid "Consumer secret" +msgstr "密码(Consumer secret)" + +#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44 +msgid "IRC Settings" +msgstr "" + +#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "" + +#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "" + +#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "" + +#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "" + +#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96 +msgid "Popular Channels" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + +#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "" + +#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "" + +#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "" + +#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "" + +#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "" + +#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "" + +#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "" + +#: ../../addon/posterous/posterous.php:37 +#: ../../addon.old/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "发送往Posterous" + +#: ../../addon/posterous/posterous.php:70 +#: ../../addon.old/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "Posterous发送设置" + +#: ../../addon/posterous/posterous.php:72 +#: ../../addon.old/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "使Posterous发送插件可用的" + +#: ../../addon/posterous/posterous.php:77 +#: ../../addon.old/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "Posterous登记名" + +#: ../../addon/posterous/posterous.php:82 +#: ../../addon.old/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "Posterous密码" + +#: ../../addon/posterous/posterous.php:87 +#: ../../addon.old/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "" + +#: ../../addon/posterous/posterous.php:92 +#: ../../addon.old/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "" + +#: ../../addon/posterous/posterous.php:97 +#: ../../addon.old/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "默认地发送往Posterous" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:154 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:155 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "" + +#: ../../view/theme/diabook/theme.php:86 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "你的消息和交谈" + +#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "你的简介页" + +#: ../../view/theme/diabook/theme.php:88 +msgid "Your contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:89 ../../include/nav.php:51 +msgid "Your photos" +msgstr "你的照片" + +#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:52 +msgid "Your events" +msgstr "你的项目" + +#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "私人的便条" + +#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "你私人的照片" + +#: ../../view/theme/diabook/theme.php:93 +#: ../../view/theme/diabook/config.php:163 +msgid "Community Pages" +msgstr "" + +#: ../../view/theme/diabook/theme.php:377 +#: ../../view/theme/diabook/theme.php:591 +#: ../../view/theme/diabook/config.php:165 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/theme.php:398 +#: ../../view/theme/diabook/theme.php:596 +#: ../../view/theme/diabook/config.php:170 +msgid "Last users" +msgstr "上次用户" + +#: ../../view/theme/diabook/theme.php:427 +#: ../../view/theme/diabook/theme.php:598 +#: ../../view/theme/diabook/config.php:172 +msgid "Last likes" +msgstr "上次喜欢" + +#: ../../view/theme/diabook/theme.php:472 +#: ../../view/theme/diabook/theme.php:597 +#: ../../view/theme/diabook/config.php:171 +msgid "Last photos" +msgstr "上次照片" + +#: ../../view/theme/diabook/theme.php:509 +#: ../../view/theme/diabook/theme.php:594 +#: ../../view/theme/diabook/config.php:168 +msgid "Find Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:510 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:512 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "相似兴趣" + +#: ../../view/theme/diabook/theme.php:514 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "邀请朋友们" + +#: ../../view/theme/diabook/theme.php:531 +#: ../../view/theme/diabook/theme.php:590 +#: ../../view/theme/diabook/config.php:164 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:536 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/config.php:161 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:538 +#: ../../view/theme/diabook/config.php:162 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:551 +#: ../../view/theme/diabook/theme.php:592 +#: ../../view/theme/diabook/config.php:166 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/theme.php:558 +#: ../../view/theme/diabook/theme.php:593 +#: ../../view/theme/diabook/config.php:167 +msgid "Connect Services" +msgstr "" + +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:595 +msgid "Last Tweets" +msgstr "" + +#: ../../view/theme/diabook/theme.php:568 +#: ../../view/theme/diabook/config.php:159 +msgid "Set twitter search term" +msgstr "" + +#: ../../view/theme/diabook/theme.php:587 +#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "别著" + +#: ../../view/theme/diabook/theme.php:587 +#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "著" + +#: ../../view/theme/diabook/theme.php:588 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:157 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:158 +msgid "Set color scheme" +msgstr "" + +#: ../../view/theme/diabook/config.php:160 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/diabook/config.php:169 +msgid "Last tweets" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "生日:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "年纪:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "标签:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "宗教:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "爱好/兴趣" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "熟人消息和社会化网络" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "音乐兴趣:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "书,文学" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "电视:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "电影/跳舞/文化/娱乐:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "爱情/浪漫" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "工作" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "学院/教育" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "未知的 |无分类" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "立即拦" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "可疑,发垃圾者,自市场开发者" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "我认识,但没有意见" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "行,大概无恶意的" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "可信的,有我的信任" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "时常" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "每小时" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "每日两次" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "男的" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "女的" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "现在男的" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "现在女的" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "主要男的" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "主要女的" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "跨性別" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "阴阳人" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "”转基因“人" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "两性体" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "中性的" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "不明确的" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "别的" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "未决" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "男人" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "女人" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "男同性恋的" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "女同性恋的" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "无偏爱" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "双性恋的" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "自性的" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "有节制的" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "原始的" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "变态" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "恋物对象" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "多多" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "无性" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "单身" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "寂寞" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "单身的" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "不可获得的" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "约会" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "外遇" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "性交因成瘾者" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 +msgid "Friends" +msgstr "朋友" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "朋友/益" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "休闲" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "已订婚的" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "结婚" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "伴侣" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "同居" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "幸福" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "交换性伴侣的" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "被背叛" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "分手" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "不稳" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "离婚" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "寡妇" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "不确定" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "无所谓" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "问我" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 +msgid "Starts:" +msgstr "开始:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 +msgid "Finishes:" +msgstr "结束:" + +#: ../../include/delivery.php:457 ../../include/notifier.php:767 +msgid "(no subject)" +msgstr "沒有题目" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "" + +#: ../../include/text.php:243 +msgid "prev" +msgstr "上个" + +#: ../../include/text.php:245 +msgid "first" +msgstr "首先" + +#: ../../include/text.php:274 +msgid "last" +msgstr "最后" + +#: ../../include/text.php:277 +msgid "next" +msgstr "下个" + +#: ../../include/text.php:295 +msgid "newer" +msgstr "" + +#: ../../include/text.php:299 +msgid "older" +msgstr "" + +#: ../../include/text.php:604 +msgid "No contacts" +msgstr "没有熟人" + +#: ../../include/text.php:613 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d熟人" + +#: ../../include/text.php:726 +msgid "poke" +msgstr "" + +#: ../../include/text.php:726 ../../include/conversation.php:210 +msgid "poked" +msgstr "" + +#: ../../include/text.php:727 +msgid "ping" +msgstr "" + +#: ../../include/text.php:727 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:728 +msgid "prod" +msgstr "" + +#: ../../include/text.php:728 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:729 +msgid "slap" +msgstr "" + +#: ../../include/text.php:729 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:730 +msgid "finger" +msgstr "" + +#: ../../include/text.php:730 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:731 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:731 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:743 +msgid "happy" +msgstr "" + +#: ../../include/text.php:744 +msgid "sad" +msgstr "" + +#: ../../include/text.php:745 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:746 +msgid "tired" +msgstr "" + +#: ../../include/text.php:747 +msgid "perky" +msgstr "" + +#: ../../include/text.php:748 +msgid "angry" +msgstr "" + +#: ../../include/text.php:749 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:750 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:751 +msgid "interested" +msgstr "" + +#: ../../include/text.php:752 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:753 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:754 +msgid "alive" +msgstr "" + +#: ../../include/text.php:755 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:756 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:757 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:758 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:759 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:760 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:761 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:762 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:926 +msgid "January" +msgstr "一月" + +#: ../../include/text.php:926 +msgid "February" +msgstr "二月" + +#: ../../include/text.php:926 +msgid "March" +msgstr "三月" + +#: ../../include/text.php:926 +msgid "April" +msgstr "四月" + +#: ../../include/text.php:926 +msgid "May" +msgstr "五月" + +#: ../../include/text.php:926 +msgid "June" +msgstr "六月" + +#: ../../include/text.php:926 +msgid "July" +msgstr "七月" + +#: ../../include/text.php:926 +msgid "August" +msgstr "八月" + +#: ../../include/text.php:926 +msgid "September" +msgstr "九月" + +#: ../../include/text.php:926 +msgid "October" +msgstr "十月" + +#: ../../include/text.php:926 +msgid "November" +msgstr "十一月" + +#: ../../include/text.php:926 +msgid "December" +msgstr "十二月" + +#: ../../include/text.php:1012 +msgid "bytes" +msgstr "字节" + +#: ../../include/text.php:1039 ../../include/text.php:1051 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1224 ../../include/user.php:236 +msgid "default" +msgstr "默认" + +#: ../../include/text.php:1236 +msgid "Select an alternate language" +msgstr "选择别的语言" + +#: ../../include/text.php:1446 +msgid "activity" +msgstr "" + +#: ../../include/text.php:1449 +msgid "post" +msgstr "" + +#: ../../include/text.php:1604 +msgid "Item filed" +msgstr "" + +#: ../../include/diaspora.php:702 +msgid "Sharing notification from Diaspora network" +msgstr "分享通知从Diaspora网络" + +#: ../../include/diaspora.php:2222 +msgid "Attachments:" +msgstr "附件:" + +#: ../../include/network.php:849 +msgid "view full size" +msgstr "看全尺寸" + +#: ../../include/oembed.php:137 +msgid "Embedded content" +msgstr "嵌入内容" + +#: ../../include/oembed.php:146 +msgid "Embedding disabled" +msgstr "嵌入不能用" + +#: ../../include/uimport.php:61 +msgid "Error decoding account file" +msgstr "" + +#: ../../include/uimport.php:67 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:72 +msgid "Error! I can't import this file: DB schema version is not compatible." +msgstr "" + +#: ../../include/uimport.php:81 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:85 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: ../../include/uimport.php:104 +msgid "User creation error" +msgstr "" + +#: ../../include/uimport.php:122 +msgid "User profile creation error" +msgstr "" + +#: ../../include/uimport.php:167 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" + +#: ../../include/uimport.php:245 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "一个删除的组用这名被复兴。现有的项目权利可能还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。" + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "每人" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "编辑" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "编辑组" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "创造新组" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "" + +#: ../../include/nav.php:46 ../../boot.php:945 +msgid "Logout" +msgstr "注销" + +#: ../../include/nav.php:46 +msgid "End this session" +msgstr "结束这段时间" + +#: ../../include/nav.php:49 ../../boot.php:1721 +msgid "Status" +msgstr "现状" + +#: ../../include/nav.php:64 +msgid "Sign in" +msgstr "登记" + +#: ../../include/nav.php:77 +msgid "Home Page" +msgstr "主页" + +#: ../../include/nav.php:81 +msgid "Create an account" +msgstr "注册" + +#: ../../include/nav.php:86 +msgid "Help and documentation" +msgstr "帮助证件" + +#: ../../include/nav.php:89 +msgid "Apps" +msgstr "应用程序" + +#: ../../include/nav.php:89 +msgid "Addon applications, utilities, games" +msgstr "可加的应用,设施,游戏" + +#: ../../include/nav.php:91 +msgid "Search site content" +msgstr "搜索网站内容" + +#: ../../include/nav.php:101 +msgid "Conversations on this site" +msgstr "这个网站的交谈" + +#: ../../include/nav.php:103 +msgid "Directory" +msgstr "名录" + +#: ../../include/nav.php:103 +msgid "People directory" +msgstr "人物名录" + +#: ../../include/nav.php:113 +msgid "Conversations from your friends" +msgstr "从你朋友们的交谈" + +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "友谊邀请" + +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "看所有的通知" + +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "记号各系统通知看过的" + +#: ../../include/nav.php:128 +msgid "Private mail" +msgstr "私人的邮件" + +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "收件箱" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "发件箱" + +#: ../../include/nav.php:134 +msgid "Manage" +msgstr "管理" + +#: ../../include/nav.php:134 +msgid "Manage other pages" +msgstr "管理别的页" + +#: ../../include/nav.php:138 ../../boot.php:1235 +msgid "Profiles" +msgstr "简介" + +#: ../../include/nav.php:138 ../../boot.php:1235 +msgid "Manage/edit profiles" +msgstr "管理/修改简介" + +#: ../../include/nav.php:139 +msgid "Manage/edit friends and contacts" +msgstr "管理/编朋友们和熟人们" + +#: ../../include/nav.php:146 +msgid "Site setup and configuration" +msgstr "网站开办和配置" + +#: ../../include/nav.php:170 +msgid "Nothing new here" +msgstr "这里没有什么新的" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "增添新的熟人" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "输入地址或网位置" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "比如:li@example.com, http://example.com/li" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d邀请可用的" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "找人物" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "输入名字或兴趣" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "连接/关注" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "比如:李某,打鱼" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "网络" + +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "所有网络" + +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "" + +#: ../../include/auth.php:36 +msgid "Logged out." +msgstr "注销了" + +#: ../../include/auth.php:126 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../include/auth.php:126 +msgid "The error message was:" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "形形色色" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "年" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "月" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "日" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "从未" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "一秒以内" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "星期" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "小时" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "小时" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "分钟" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "分钟" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "秒" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "秒" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s以前" + +#: ../../include/datetime.php:472 ../../include/items.php:1689 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: ../../include/datetime.php:473 ../../include/items.php:1690 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: ../../include/onepoll.php:414 +msgid "From: " +msgstr "从:" + +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 +msgid "Image/photo" +msgstr "图像/照片" + +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 +msgid "$1 wrote:" +msgstr "$1写:" + +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "" + +#: ../../include/dba.php:41 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "找不到DNS信息为数据库服务器「%s」" + +#: ../../include/message.php:15 ../../include/message.php:171 +msgid "[no subject]" +msgstr "[无题目]" + +#: ../../include/acl_selectors.php:286 +msgid "Visible to everybody" +msgstr "任何人可见的" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Friendica 通知" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "谢谢," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s管理员" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "一条私人的消息" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "清去%s为了看或回答你私人的消息" + +#: ../../include/enotify.php:89 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: ../../include/enotify.php:104 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:114 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:115 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s对你有兴趣的项目/ 交谈发表意见" + +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "清去%s为了看或回答交谈" + +#: ../../include/enotify.php:125 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:127 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: ../../include/enotify.php:140 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:141 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: ../../include/enotify.php:184 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:185 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: ../../include/enotify.php:189 ../../include/enotify.php:207 +#, php-format +msgid "You may visit their profile at %s" +msgstr "你能看他的简介在%s" + +#: ../../include/enotify.php:191 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "请批准或拒绝介绍在%s" + +#: ../../include/enotify.php:198 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:199 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:200 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:205 +msgid "Name:" +msgstr "名字:" + +#: ../../include/enotify.php:206 +msgid "Photo:" +msgstr "照片:" + +#: ../../include/enotify.php:209 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "请批准或拒绝建议在%s" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "连接URL失踪的。" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "这网站没配置允许跟别的网络交流." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "没有兼容协议或者摘要找到了." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "输入的简介地址没有够消息。" + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "找不到作者或名。" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "这个地址没有符合什么游览器URL。" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "输入的简介地址属在这个网站使不可用的网络。" + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "有限的简介。这人不会接受直达/私人通信从您。" + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "不能取回熟人消息。" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "关注" + +#: ../../include/items.php:3357 +msgid "A new person is sharing with you at " +msgstr "一位新人给你分享在" + +#: ../../include/items.php:3357 +msgid "You have a new follower at " +msgstr "你有新的关注者在" + +#: ../../include/items.php:4038 +msgid "Archives" +msgstr "" + +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "邀请必要的。" + +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "不能证实邀请。" + +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "无效的OpenID url" + +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "请输入必要的信息。" + +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "请用短一点名。" + +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "名字太短。" + +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "这看上去不是您的全姓名。" + +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "这网站允许的域名中没有您的" + +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "无效的邮件地址。" + +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "不能用这个邮件地址。" + +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "您的昵称只能包括\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。" + +#: ../../include/user.php:127 ../../include/user.php:225 +msgid "Nickname is already registered. Please choose another." +msgstr "昵称已经报到。请选择新的。" + +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "要紧错误:产生安全钥匙失败了。" + +#: ../../include/user.php:211 +msgid "An error occurred during registration. Please try again." +msgstr "报到出了问题。请再试。" + +#: ../../include/user.php:246 +msgid "An error occurred creating your default profile. Please try again." +msgstr "造成默认简介出了问题。请再试。" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "欢迎" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "请上传一张简介照片" + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "欢迎归来" + +#: ../../include/security.php:357 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "结束关注了" + +#: ../../include/Contact.php:225 ../../include/conversation.php:795 +msgid "Poke" +msgstr "" + +#: ../../include/Contact.php:226 ../../include/conversation.php:789 +msgid "View Status" +msgstr "" + +#: ../../include/Contact.php:227 ../../include/conversation.php:790 +msgid "View Profile" +msgstr "" + +#: ../../include/Contact.php:228 ../../include/conversation.php:791 +msgid "View Photos" +msgstr "" + +#: ../../include/Contact.php:229 ../../include/Contact.php:242 +#: ../../include/conversation.php:792 +msgid "Network Posts" +msgstr "" + +#: ../../include/Contact.php:230 ../../include/Contact.php:242 +#: ../../include/conversation.php:793 +msgid "Edit Contact" +msgstr "" + +#: ../../include/Contact.php:231 ../../include/Contact.php:242 +#: ../../include/conversation.php:794 +msgid "Send PM" +msgstr "法私人的新闻" + +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "" + +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: ../../include/conversation.php:599 ../../object/Item.php:220 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:600 ../../object/Item.php:221 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:685 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:689 +msgid "Delete Selected Items" +msgstr "删除选的项目" + +#: ../../include/conversation.php:788 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:857 +#, php-format +msgid "%s likes this." +msgstr "%s喜欢这个." + +#: ../../include/conversation.php:857 +#, php-format +msgid "%s doesn't like this." +msgstr "%s没有喜欢这个." + +#: ../../include/conversation.php:861 +#, php-format +msgid "%2$d people like this." +msgstr "%2$d人喜欢这个。" + +#: ../../include/conversation.php:863 +#, php-format +msgid "%2$d people don't like this." +msgstr "%2$d人不喜欢这个。" + +#: ../../include/conversation.php:869 +msgid "and" +msgstr "和" + +#: ../../include/conversation.php:875 +#, php-format +msgid ", and %d other people" +msgstr ",和%d别人" + +#: ../../include/conversation.php:877 +#, php-format +msgid "%s like this." +msgstr "%s喜欢这个" + +#: ../../include/conversation.php:877 +#, php-format +msgid "%s don't like this." +msgstr "%s不喜欢这个" + +#: ../../include/conversation.php:901 ../../include/conversation.php:919 +msgid "Visible to everybody" +msgstr "大家可见的" + +#: ../../include/conversation.php:903 ../../include/conversation.php:921 +msgid "Please enter a video link/URL:" +msgstr "请输入视频连接/URL:" + +#: ../../include/conversation.php:904 ../../include/conversation.php:922 +msgid "Please enter an audio link/URL:" +msgstr "请输入音响连接/URL:" + +#: ../../include/conversation.php:905 ../../include/conversation.php:923 +msgid "Tag term:" +msgstr "标签:" + +#: ../../include/conversation.php:907 ../../include/conversation.php:925 +msgid "Where are you right now?" +msgstr "你在哪里?" + +#: ../../include/conversation.php:908 +msgid "Delete item(s)?" +msgstr "" + +#: ../../include/conversation.php:987 +msgid "permissions" +msgstr "" + +#: ../../include/plugin.php:389 ../../include/plugin.php:391 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:397 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:402 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../boot.php:604 +msgid "Delete this item?" +msgstr "删除这个项目?" + +#: ../../boot.php:607 +msgid "show fewer" +msgstr "显示更小" + +#: ../../boot.php:816 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:818 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:919 +msgid "Create a New Account" +msgstr "创造新的账户" + +#: ../../boot.php:948 +msgid "Nickname or Email address: " +msgstr "绰号或电子邮件地址: " + +#: ../../boot.php:949 +msgid "Password: " +msgstr "密码: " + +#: ../../boot.php:950 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:953 +msgid "Or login using OpenID: " +msgstr "" + +#: ../../boot.php:959 +msgid "Forgot your password?" +msgstr "忘记你的密码吗?" + +#: ../../boot.php:1084 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1161 +msgid "Edit profile" +msgstr "修改简介" + +#: ../../boot.php:1227 +msgid "Message" +msgstr "" + +#: ../../boot.php:1349 ../../boot.php:1435 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../boot.php:1350 ../../boot.php:1436 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1395 ../../boot.php:1476 +msgid "[today]" +msgstr "[今天]" + +#: ../../boot.php:1407 +msgid "Birthday Reminders" +msgstr "提醒生日" + +#: ../../boot.php:1408 +msgid "Birthdays this week:" +msgstr "这周的生日:" + +#: ../../boot.php:1469 +msgid "[No description]" +msgstr "[无描述]" + +#: ../../boot.php:1487 +msgid "Event Reminders" +msgstr "事件提醒" + +#: ../../boot.php:1488 +msgid "Events this week:" +msgstr "这周的事件:" + +#: ../../boot.php:1724 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../boot.php:1731 +msgid "Profile Details" +msgstr "" + +#: ../../boot.php:1748 +msgid "Events and Calendar" +msgstr "" + +#: ../../boot.php:1755 +msgid "Only You Can See This" +msgstr "" + +#: ../../index.php:398 +msgid "toggle mobile" +msgstr "" + +#: ../../addon.old/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "" + +#: ../../addon.old/bg/bg.php:82 +msgid "Bg Settings" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:35 +msgid "Post to Drupal" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:72 +msgid "Drupal Post Settings" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:74 +msgid "Enable Drupal Post Plugin" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:79 +msgid "Drupal username" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:84 +msgid "Drupal password" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:89 +msgid "Post Type - article,page,or blog" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" +msgstr "" + +#: ../../addon.old/drpost/drpost.php:104 +msgid "Post to Drupal by default" +msgstr "" + +#: ../../addon.old/oembed.old/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "OEmbed设置更新了" + +#: ../../addon.old/oembed.old/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "用OEmbed为YouTube视频" + +#: ../../addon.old/oembed.old/oembed.php:71 +msgid "URL to embed:" +msgstr "URL要嵌入:" diff --git a/view/zh-cn/passchanged_eml.tpl b/view/zh-cn/passchanged_eml.tpl new file mode 100644 index 000000000..1c6e7655b --- /dev/null +++ b/view/zh-cn/passchanged_eml.tpl @@ -0,0 +1,20 @@ + +尊敬的$[username]。 + 您的随您要求密码变化了。请保持这 +信息为您的备案(或立即变化您的密码成 +什么容易记住)。 + + +您的登记信息是: + +网站位置: $[siteurl] +登记名: $[email] +密码: $[new_password] + +您会变化这个密码在您的账户设置页登记后。 + + +谨上, + $[sitename]行政人员 + + \ No newline at end of file diff --git a/view/zh-cn/register_open_eml.tpl b/view/zh-cn/register_open_eml.tpl new file mode 100644 index 000000000..9eb43b33b --- /dev/null +++ b/view/zh-cn/register_open_eml.tpl @@ -0,0 +1,34 @@ + +尊敬的$[username], + 谢谢注册在$[sitename]。您的账户造成了。 +登记信息是: + + +网页位置: $[siteurl] +用户名: $[email] +密码: $[password] + +您会变化您的密码在您的账户「设置」页 +登记后。 + +请抽几片刻评论别的账户设置在这个页。 + +您也可能想添加一些基础信息给您的默认简介 +(在「简介」页)为让别人容易地搜索。 + +我们建议您指定您全名,添加简介照片, +添加一些简介关键字(很有用找朋友们)和 +也许您的国家,如果您不想更具体 +的。 + +我们完全尊敬您隐私权利,这些项目没有必要的。 +您新注册,人们熟,他们会帮您 +找新和有意思的朋友们。 + + +谢谢您,$[sitename]欢迎您。 + +谨上 + $[sitename]行政人员 + + \ No newline at end of file diff --git a/view/zh-cn/register_verify_eml.tpl b/view/zh-cn/register_verify_eml.tpl new file mode 100644 index 000000000..eead002f5 --- /dev/null +++ b/view/zh-cn/register_verify_eml.tpl @@ -0,0 +1,25 @@ + +受到新的用户注册要求在$[sitename],要 +您的批准。 + + +登记信息是: + +全名: $[username] +网站位置: $[siteurl] +登记名: $[email] + + +为批准这个要求请点击这个按钮: + + +$[siteurl]/regmod/allow/$[hash] + + +为否定这个要求和删除账户,请点击这个按钮: + + +$[siteurl]/regmod/deny/$[hash] + + +谢谢您。 diff --git a/view/zh-cn/request_notify_eml.tpl b/view/zh-cn/request_notify_eml.tpl new file mode 100644 index 000000000..9dd5527a3 --- /dev/null +++ b/view/zh-cn/request_notify_eml.tpl @@ -0,0 +1,17 @@ + +尊敬的$[myname], + +您刚才受到了一个连接要求在$[sitename] + +从「$[requestor]」。 + +您会看他的简介在[$url]。 + +请登记在您的网站为看他们全介绍 +和批准或不理/注销要求。 + +$[siteurl] + +谨上, + + $[sitename]行政人员 \ No newline at end of file diff --git a/view/zh-cn/strings.php b/view/zh-cn/strings.php new file mode 100644 index 000000000..cd163bb57 --- /dev/null +++ b/view/zh-cn/strings.php @@ -0,0 +1,2027 @@ +strings["Post successful."] = "评论发表了。"; +$a->strings["[Embedded content - reload page to view]"] = "[嵌入内容-重新加载页为看]"; +$a->strings["Contact settings applied."] = "熟人设置应用了。"; +$a->strings["Contact update failed."] = "熟人更新失败。"; +$a->strings["Permission denied."] = "权限不够。"; +$a->strings["Contact not found."] = "没找到熟人。"; +$a->strings["Repair Contact Settings"] = "维修熟人设置"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "注意:这是很高等的,你输入错的信息你和熟人的沟通会弄失灵了。"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "请立即用后退按钮如果您不确定怎么用这页"; +$a->strings["Return to contact editor"] = ""; +$a->strings["Name"] = "名字"; +$a->strings["Account Nickname"] = "帐户昵称"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称"; +$a->strings["Account URL"] = "帐户URL"; +$a->strings["Friend Request URL"] = "朋友请求URL"; +$a->strings["Friend Confirm URL"] = "朋友确认URL"; +$a->strings["Notification Endpoint URL"] = "通知端URL"; +$a->strings["Poll/Feed URL"] = "喂URL"; +$a->strings["New photo from this URL"] = "新照片从这个URL"; +$a->strings["Submit"] = "提交"; +$a->strings["Help:"] = "帮助:"; +$a->strings["Help"] = "帮助"; +$a->strings["Not Found"] = "未发现"; +$a->strings["Page not found."] = "页发现。"; +$a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d"; +$a->strings["File upload failed."] = "文件上传失败。"; +$a->strings["Friend suggestion sent."] = "朋友建议发送了。"; +$a->strings["Suggest Friends"] = "建议朋友们"; +$a->strings["Suggest a friend for %s"] = "建议朋友给%s"; +$a->strings["Event title and start time are required."] = ""; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "编项目"; +$a->strings["link to source"] = "链接到来源"; +$a->strings["Events"] = "事件"; +$a->strings["Create New Event"] = "造成新的项目"; +$a->strings["Previous"] = "上"; +$a->strings["Next"] = "下"; +$a->strings["hour:minute"] = "小时:分钟"; +$a->strings["Event details"] = "项目内容"; +$a->strings["Format is %s %s. Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "事件开始:"; +$a->strings["Required"] = ""; +$a->strings["Finish date/time is not known or not relevant"] = "结束日/时未知或无关"; +$a->strings["Event Finishes:"] = "事件结束:"; +$a->strings["Adjust for viewer timezone"] = "调为观众的时间"; +$a->strings["Description:"] = "描述:"; +$a->strings["Location:"] = "位置:"; +$a->strings["Title:"] = ""; +$a->strings["Share this event"] = "分享这个项目"; +$a->strings["Cancel"] = "退消"; +$a->strings["Tag removed"] = "标签去除了"; +$a->strings["Remove Item Tag"] = "去除项目标签"; +$a->strings["Select a tag to remove: "] = "选择标签去除"; +$a->strings["Remove"] = "移走"; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Authorize application connection"] = "授权应用连接"; +$a->strings["Return to your app and insert this Securty Code:"] = "回归您的应用和输入这个安全密码:"; +$a->strings["Please login to continue."] = "请登记为继续。"; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章"; +$a->strings["Yes"] = "是"; +$a->strings["No"] = "否"; +$a->strings["Photo Albums"] = "相册"; +$a->strings["Contact Photos"] = "熟人照片"; +$a->strings["Upload New Photos"] = "上传新照片"; +$a->strings["everybody"] = "每人"; +$a->strings["Contact information unavailable"] = "熟人信息不可用"; +$a->strings["Profile Photos"] = "简介照片"; +$a->strings["Album not found."] = "取回不了相册."; +$a->strings["Delete Album"] = "删除相册"; +$a->strings["Delete Photo"] = "删除照片"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = ""; +$a->strings["Image exceeds size limit of "] = "图片超出最大尺寸"; +$a->strings["Image file is empty."] = "图片文件空的。"; +$a->strings["Unable to process image."] = "处理不了图像."; +$a->strings["Image upload failed."] = "图像上载失败了."; +$a->strings["Public access denied."] = "公众看拒绝"; +$a->strings["No photos selected"] = "没有照片挑选了"; +$a->strings["Access to this item is restricted."] = "这个项目使用权限的。"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = ""; +$a->strings["Upload Photos"] = "上传照片"; +$a->strings["New album name: "] = "新册名:"; +$a->strings["or existing album name: "] = "或现有册名"; +$a->strings["Do not show a status post for this upload"] = "别显示现状报到关于这个上传"; +$a->strings["Permissions"] = "权利"; +$a->strings["Edit Album"] = "编照片册"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = "看照片"; +$a->strings["Permission denied. Access to this item may be restricted."] = "无权利。用这个项目可能受限制。"; +$a->strings["Photo not available"] = "照片不可获得的 "; +$a->strings["View photo"] = "看照片"; +$a->strings["Edit photo"] = "编辑照片"; +$a->strings["Use as profile photo"] = "用为资料图"; +$a->strings["Private Message"] = "私人的新闻"; +$a->strings["View Full Size"] = "看全尺寸"; +$a->strings["Tags: "] = "标签:"; +$a->strings["[Remove any tag]"] = "[删除任何标签]"; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["New album name"] = "新册名"; +$a->strings["Caption"] = "字幕"; +$a->strings["Add a Tag"] = "加标签"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"; +$a->strings["I like this (toggle)"] = "我喜欢这(交替)"; +$a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)"; +$a->strings["Share"] = "分享"; +$a->strings["Please wait"] = "请等一下"; +$a->strings["This is you"] = "这是你"; +$a->strings["Comment"] = "评论"; +$a->strings["Preview"] = "预演"; +$a->strings["Delete"] = "删除"; +$a->strings["View Album"] = "看照片册"; +$a->strings["Recent Photos"] = "最近的照片"; +$a->strings["Not available."] = "不可用的"; +$a->strings["Community"] = "社会"; +$a->strings["No results."] = "没有结果"; +$a->strings["This is Friendica, version"] = "这是Friendica,版本"; +$a->strings["running at web location"] = "运作再网址"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "请看Friendica.com发现多关于Friendica工程。"; +$a->strings["Bug reports and issues: please visit"] = "问题报案:请去"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com"; +$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["No installed plugins/addons/apps"] = "没有安装的插件/应用"; +$a->strings["Item not found"] = "项目没找到"; +$a->strings["Edit post"] = "编辑文章"; +$a->strings["Post to Email"] = "电邮发布"; +$a->strings["Edit"] = "编辑"; +$a->strings["Upload photo"] = "上传照片"; +$a->strings["upload photo"] = "上传照片"; +$a->strings["Attach file"] = "附上文件"; +$a->strings["attach file"] = "附上文件"; +$a->strings["Insert web link"] = "插入网页环节"; +$a->strings["web link"] = "网页环节"; +$a->strings["Insert video link"] = "插入视频环节"; +$a->strings["video link"] = "视频环节"; +$a->strings["Insert audio link"] = "插入录音环节"; +$a->strings["audio link"] = "录音环节"; +$a->strings["Set your location"] = "设定您的位置"; +$a->strings["set location"] = ""; +$a->strings["Clear browser location"] = "清空浏览器位置"; +$a->strings["clear location"] = ""; +$a->strings["Permission settings"] = "权设置"; +$a->strings["CC: email addresses"] = "抄送: 电子邮件地址"; +$a->strings["Public post"] = "公开的消息"; +$a->strings["Set title"] = "指定标题"; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Example: bob@example.com, mary@example.com"] = "比如: li@example.com, wang@example.com"; +$a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。"; +$a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包括简介信息。"; +$a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。"; +$a->strings["Warning: profile location has no profile photo."] = "警告:简介位置没有简介图。"; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d需要的参数没找到在输入的位置。", +); +$a->strings["Introduction complete."] = "介绍完成的。"; +$a->strings["Unrecoverable protocol error."] = "不能恢复的协议错误"; +$a->strings["Profile unavailable."] = "简介无效"; +$a->strings["%s has received too many connection requests today."] = "%s今天已经受到了太多联络要求"; +$a->strings["Spam protection measures have been invoked."] = "垃圾保护措施被用了。"; +$a->strings["Friends are advised to please try again in 24 hours."] = "朋友们被建议请24小时后再试。"; +$a->strings["Invalid locator"] = "无效找到物"; +$a->strings["Invalid email address."] = ""; +$a->strings["This account has not been configured for email. Request failed."] = ""; +$a->strings["Unable to resolve your name at the provided location."] = "不可疏解您的名字再输入的位置。"; +$a->strings["You have already introduced yourself here."] = "您已经自我介绍这儿。"; +$a->strings["Apparently you are already friends with %s."] = "看上去您已经是%s的朋友。"; +$a->strings["Invalid profile URL."] = "无效的简介URL。"; +$a->strings["Disallowed profile URL."] = "不允许的简介地址."; +$a->strings["Failed to update contact record."] = "更新熟人记录失败了。"; +$a->strings["Your introduction has been sent."] = "您的介绍发布了。"; +$a->strings["Please login to confirm introduction."] = "请登记为确认介绍。"; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "错误的用户登记者。请用这个用户。"; +$a->strings["Hide this contact"] = ""; +$a->strings["Welcome home %s."] = "欢迎%s。"; +$a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。"; +$a->strings["Confirm"] = "确认"; +$a->strings["[Name Withheld]"] = "[名字拒给]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = ""; +$a->strings["Connect as an email follower (Coming soon)"] = ""; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["Friend/Connection Request"] = "朋友/联络要求。"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "请回答下述的:"; +$a->strings["Does %s know you?"] = "%s是否认识你?"; +$a->strings["Add a personal note:"] = "添加个人的便条"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/联合社会化网"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; +$a->strings["Your Identity Address:"] = "您的同一个人地址:"; +$a->strings["Submit Request"] = "提交要求"; +$a->strings["Account settings"] = "帐户配置"; +$a->strings["Display settings"] = ""; +$a->strings["Connector settings"] = "插销设置"; +$a->strings["Plugin settings"] = "插件设置"; +$a->strings["Connected apps"] = ""; +$a->strings["Export personal data"] = "出口私人信息"; +$a->strings["Remove account"] = ""; +$a->strings["Settings"] = "配置"; +$a->strings["Export account"] = ""; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; +$a->strings["Export all"] = ""; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["Friendica Social Communications Server - Setup"] = "Friendica社会交通服务器-安装"; +$a->strings["Could not connect to database."] = "解不了数据库。"; +$a->strings["Could not create table."] = "造成不了表格。"; +$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。"; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」"; +$a->strings["System check"] = "系统检测"; +$a->strings["Check again"] = "再检测"; +$a->strings["Database connection"] = "数据库接通"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。"; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。"; +$a->strings["Database Server Name"] = "数据库服务器名"; +$a->strings["Database Login Name"] = "数据库登录名"; +$a->strings["Database Login Password"] = "数据库登录密码"; +$a->strings["Database Name"] = "数据库名字"; +$a->strings["Site administrator email address"] = "网站行政人员邮件地址"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板"; +$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区"; +$a->strings["Site settings"] = "网站设置"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; +$a->strings["PHP executable path"] = "PHP可执行路径"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = "命令行PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "您系统的命令行PHP没有能够「register_argc_argv」。"; +$a->strings["This is required for message delivery to work."] = "这必要为通信发布成功。"; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。"; +$a->strings["Generate encryption keys"] = "产生加密钥匙"; +$a->strings["libCurl PHP module"] = "libCurl PHP模块"; +$a->strings["GD graphics PHP module"] = "GD显示PHP模块"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP模块"; +$a->strings["mysqli PHP module"] = "mysqli PHP模块"; +$a->strings["mb_string PHP module"] = "mb_string PHP模块"; +$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"; +$a->strings["Error: libCURL PHP module required but not installed."] = "错误:libCurl PHP模块是必要的可却不安装的。"; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"; +$a->strings["Error: openssl PHP module required but not installed."] = "错误:openssl PHP模块是必要的可却不安装的。"; +$a->strings["Error: mysqli PHP module required but not installed."] = "错误:mysqli PHP模块是必要的可却不安装的。"; +$a->strings["Error: mb_string PHP module required but not installed."] = "错误:mbstring PHP模块必要可没安装的。"; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "网页安装者要能造成叫「.htconfig.php」在网服务器主文件夹可却不能。"; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ".htconfig.php是可写的"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "数据库设置文件「.htconfig.php」不能被写。请把包括的正文造成设置文件在网服务器子目录。"; +$a->strings["Errors encountered creating database tables."] = "造成数据库列表相遇错误。"; +$a->strings["

What next

"] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:您要[手工地]准备安排的任务给喂器。"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "时间装换"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = "UTC时间: %s"; +$a->strings["Current timezone: %s"] = "现在时区: %s"; +$a->strings["Converted localtime: %s"] = "装换的当地时间:%s"; +$a->strings["Please select your timezone:"] = "请选择你的时区:"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Profile Match"] = "简介符合"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "没有符合的关键字。请在您的默认简介加关键字。"; +$a->strings["is interested in:"] = "感兴趣对:"; +$a->strings["Connect"] = "连接"; +$a->strings["No matches"] = "没有结果"; +$a->strings["Remote privacy information not available."] = "摇隐私信息无效"; +$a->strings["Visible to:"] = "可见给:"; +$a->strings["No such group"] = "没有这个组"; +$a->strings["Group is empty"] = "组没有成员"; +$a->strings["Group: "] = "组:"; +$a->strings["Select"] = "选择"; +$a->strings["View %s's profile @ %s"] = "看%s的简介@ %s"; +$a->strings["%s from %s"] = "%s从%s"; +$a->strings["View in context"] = "看在上下文"; +$a->strings["%d comment"] = array( + 0 => "%d评论", +); +$a->strings["comment"] = array( + 0 => "", +); +$a->strings["show more"] = "看多"; +$a->strings["like"] = "喜欢"; +$a->strings["dislike"] = "讨厌"; +$a->strings["Share this"] = "分享这个"; +$a->strings["share"] = "分享"; +$a->strings["Bold"] = ""; +$a->strings["Italic"] = ""; +$a->strings["Underline"] = ""; +$a->strings["Quote"] = ""; +$a->strings["Code"] = ""; +$a->strings["Image"] = ""; +$a->strings["Link"] = ""; +$a->strings["Video"] = ""; +$a->strings["add star"] = "加星"; +$a->strings["remove star"] = "消星"; +$a->strings["toggle star status"] = "转变星现状"; +$a->strings["starred"] = "被贴星"; +$a->strings["add tag"] = "加标签"; +$a->strings["save to folder"] = ""; +$a->strings["to"] = "至"; +$a->strings["Wall-to-Wall"] = "从墙到墙"; +$a->strings["via Wall-To-Wall:"] = "通过从墙到墙"; +$a->strings["Welcome to %s"] = "%s欢迎你"; +$a->strings["Invalid request identifier."] = "无效要求身份号。"; +$a->strings["Discard"] = "丢弃"; +$a->strings["Ignore"] = "忽视"; +$a->strings["System"] = "系统"; +$a->strings["Network"] = "网络"; +$a->strings["Personal"] = "私人"; +$a->strings["Home"] = "主页"; +$a->strings["Introductions"] = "介绍"; +$a->strings["Messages"] = "消息"; +$a->strings["Show Ignored Requests"] = "显示不理的要求"; +$a->strings["Hide Ignored Requests"] = "隐藏不理的要求"; +$a->strings["Notification type: "] = "通知种类:"; +$a->strings["Friend Suggestion"] = "朋友建议"; +$a->strings["suggested by %s"] = "由%s建议的"; +$a->strings["Hide this contact from others"] = "隐藏这个熟人给别人"; +$a->strings["Post a new friend activity"] = ""; +$a->strings["if applicable"] = ""; +$a->strings["Approve"] = "批准"; +$a->strings["Claims to be known to you: "] = "声称被您认识:"; +$a->strings["yes"] = "是"; +$a->strings["no"] = "否"; +$a->strings["Approve as: "] = "批准作为"; +$a->strings["Friend"] = "朋友"; +$a->strings["Sharer"] = "分享者"; +$a->strings["Fan/Admirer"] = "迷/赞赏者"; +$a->strings["Friend/Connect Request"] = "友谊/联络要求"; +$a->strings["New Follower"] = "新关注者:"; +$a->strings["No introductions."] = "没有介绍。"; +$a->strings["Notifications"] = "通知"; +$a->strings["%s liked %s's post"] = "%s喜欢了%s的消息"; +$a->strings["%s disliked %s's post"] = "%s不喜欢了%s的消息"; +$a->strings["%s is now friends with %s"] = "%s成为%s的朋友"; +$a->strings["%s created a new post"] = "%s造成新文章"; +$a->strings["%s commented on %s's post"] = "%s便条%s的文章"; +$a->strings["No more network notifications."] = "没有别的网络通信。"; +$a->strings["Network Notifications"] = ""; +$a->strings["No more system notifications."] = ""; +$a->strings["System Notifications"] = ""; +$a->strings["No more personal notifications."] = "没有别的私人通信。"; +$a->strings["Personal Notifications"] = ""; +$a->strings["No more home notifications."] = "没有别的家通信。"; +$a->strings["Home Notifications"] = ""; +$a->strings["Could not access contact record."] = "用不了熟人记录。"; +$a->strings["Could not locate selected profile."] = "找不到选择的简介。"; +$a->strings["Contact updated."] = "熟人更新了。"; +$a->strings["Contact has been blocked"] = "熟人拦了"; +$a->strings["Contact has been unblocked"] = "熟人否拦了"; +$a->strings["Contact has been ignored"] = "熟人不理了"; +$a->strings["Contact has been unignored"] = "熟人否不理了"; +$a->strings["Contact has been archived"] = ""; +$a->strings["Contact has been unarchived"] = ""; +$a->strings["Contact has been removed."] = "熟人删除了。"; +$a->strings["You are mutual friends with %s"] = "您和%s是共同朋友们"; +$a->strings["You are sharing with %s"] = "您分享给%s"; +$a->strings["%s is sharing with you"] = "%s给您分享"; +$a->strings["Private communications are not available for this contact."] = "没有私人的沟通跟这个熟人"; +$a->strings["Never"] = "从未"; +$a->strings["(Update was successful)"] = "(更新成功)"; +$a->strings["(Update was not successful)"] = "(更新不成功)"; +$a->strings["Suggest friends"] = "建议朋友们"; +$a->strings["Network type: %s"] = "网络种类: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d共同熟人", +); +$a->strings["View all contacts"] = "看所有的熟人"; +$a->strings["Unblock"] = "不拦"; +$a->strings["Block"] = "拦"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Unignore"] = "停不理"; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Unarchive"] = ""; +$a->strings["Archive"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Repair"] = "维修"; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Contact Editor"] = "熟人编器"; +$a->strings["Profile Visibility"] = "简历可见量"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "请选择简介您想给%s显示他安全地看您的简介的时候。"; +$a->strings["Contact Information / Notes"] = "熟人信息/便条"; +$a->strings["Edit contact notes"] = "编辑熟人便条"; +$a->strings["Visit %s's profile [%s]"] = "看%s的简介[%s]"; +$a->strings["Block/Unblock contact"] = "拦/否拦熟人"; +$a->strings["Ignore contact"] = "忽视熟人"; +$a->strings["Repair URL settings"] = "维修URL设置"; +$a->strings["View conversations"] = "看交流"; +$a->strings["Delete contact"] = "删除熟人"; +$a->strings["Last update:"] = "上个更新:"; +$a->strings["Update public posts"] = "更新公开文章"; +$a->strings["Update now"] = "现在更新"; +$a->strings["Currently blocked"] = "现在拦的"; +$a->strings["Currently ignored"] = "现在不理的"; +$a->strings["Currently archived"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = "回答/喜欢关您公开文章还可见的"; +$a->strings["Suggestions"] = ""; +$a->strings["Suggest potential friends"] = ""; +$a->strings["All Contacts"] = "所有的熟人"; +$a->strings["Show all contacts"] = ""; +$a->strings["Unblocked"] = ""; +$a->strings["Only show unblocked contacts"] = ""; +$a->strings["Blocked"] = ""; +$a->strings["Only show blocked contacts"] = ""; +$a->strings["Ignored"] = ""; +$a->strings["Only show ignored contacts"] = ""; +$a->strings["Archived"] = ""; +$a->strings["Only show archived contacts"] = ""; +$a->strings["Hidden"] = ""; +$a->strings["Only show hidden contacts"] = ""; +$a->strings["Mutual Friendship"] = "共同友谊"; +$a->strings["is a fan of yours"] = "是您迷"; +$a->strings["you are a fan of"] = "你喜欢"; +$a->strings["Edit contact"] = "编熟人"; +$a->strings["Contacts"] = "熟人"; +$a->strings["Search your contacts"] = "搜索您的熟人"; +$a->strings["Finding: "] = "找着:"; +$a->strings["Find"] = "搜索"; +$a->strings["No valid account found."] = "找不到效的账户。"; +$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。"; +$a->strings["Password reset requested at %s"] = "重设密码要求被发布%s"; +$a->strings["Administrator"] = "管理员"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "要求确认不了。(您可能已经提交它。)重设密码失败了。"; +$a->strings["Password Reset"] = "复位密码"; +$a->strings["Your password has been reset as requested."] = "您的密码被重设如要求的。"; +$a->strings["Your new password is"] = "你的新的密码是"; +$a->strings["Save or copy your new password - and then"] = "保存或复制新密码-之后"; +$a->strings["click here to login"] = "在这儿点击"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "您的密码能被变化从设置页成功登记后。"; +$a->strings["Forgot your Password?"] = "忘记你的密码吗?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"; +$a->strings["Nickname or Email: "] = "昵称或邮件地址:"; +$a->strings["Reset"] = "复位"; +$a->strings["Missing some important data!"] = "有的重要信息失踪的!"; +$a->strings["Update"] = "更新"; +$a->strings["Failed to connect with email account using the settings provided."] = "不能连接电子邮件账户用输入的设置。"; +$a->strings["Email settings updated."] = "电子邮件设置更新了"; +$a->strings["Passwords do not match. Password unchanged."] = "密码们不相配。密码没未改变的。"; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。"; +$a->strings["Password changed."] = "密码变化了。"; +$a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。"; +$a->strings[" Please use a shorter name."] = "请用短一点个名。"; +$a->strings[" Name too short."] = "名字太短。"; +$a->strings[" Not valid email."] = " 电子邮件地址无效."; +$a->strings[" Cannot change to that email."] = "不能变化到这个邮件地址。"; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "设置跟新了"; +$a->strings["Add application"] = "加入应用"; +$a->strings["Consumer Key"] = "钥匙(Consumer Key)"; +$a->strings["Consumer Secret"] = "密码(Consumer Secret)"; +$a->strings["Redirect"] = "重定向"; +$a->strings["Icon url"] = "图符URL"; +$a->strings["You can't edit this application."] = "您不能编辑这个应用。"; +$a->strings["Connected Apps"] = "连接着应用"; +$a->strings["Client key starts with"] = "客户钥匙头字是"; +$a->strings["No name"] = "无名"; +$a->strings["Remove authorization"] = "撤消权能"; +$a->strings["No Plugin settings configured"] = "没插件设置配置了"; +$a->strings["Plugin Settings"] = "插件设置"; +$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s"; +$a->strings["enabled"] = "能够做的"; +$a->strings["disabled"] = "使不能用"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权"; +$a->strings["Connector Settings"] = "连接器设置"; +$a->strings["Email/Mailbox Setup"] = "邮件收件箱设置"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"; +$a->strings["Last successful email check:"] = "上个成功收件箱检查:"; +$a->strings["IMAP server name:"] = "IMAP服务器名字:"; +$a->strings["IMAP port:"] = "IMAP服务器端口:"; +$a->strings["Security:"] = "安全:"; +$a->strings["None"] = "没有"; +$a->strings["Email login name:"] = "邮件登记名:"; +$a->strings["Email password:"] = "邮件密码:"; +$a->strings["Reply-to address:"] = "回答地址:"; +$a->strings["Send public posts to all email contacts:"] = "发公开的文章给所有的邮件熟人:"; +$a->strings["Action after import:"] = ""; +$a->strings["Mark as seen"] = ""; +$a->strings["Move to folder"] = ""; +$a->strings["Move to folder:"] = ""; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = "显示主题:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Update browser every xx seconds"] = "更新游览器每XX秒"; +$a->strings["Minimum of 10 seconds, no maximum"] = "最小10秒,没有上限"; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "这个帐户是正常私人简介"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "自动批准所有联络/友谊要求当只看的迷"; +$a->strings["Community Forum/Celebrity Account"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "自动批准所有联络/友谊要求当看写的迷"; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "自动批准所有联络/友谊要求当朋友"; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(可选的)许这个OpenID这个账户登记。"; +$a->strings["Publish your default profile in your local site directory?"] = "出版您默认简介在您当地的网站目录?"; +$a->strings["Publish your default profile in the global social directory?"] = "出版您默认简介在综合社会目录?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "藏起来 发现您的熟人/朋友单不让这个简介看着看?\n "; +$a->strings["Hide your profile details from unknown viewers?"] = "使简介信息给陌生的看着看不了?"; +$a->strings["Allow friends to post to your profile page?"] = "允许朋友们贴文章在您的简介页?"; +$a->strings["Allow friends to tag your posts?"] = "允许朋友们标签您的文章?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "允许我们建议您潜力朋友给新成员?"; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "简介是没出版"; +$a->strings["or"] = "或者"; +$a->strings["Your Identity Address is"] = "您的同一个人地址是"; +$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "如果空的,文章不会过期。过期的文章被删除"; +$a->strings["Advanced expiration settings"] = "先进的过期设置"; +$a->strings["Advanced Expiration"] = "先进的过期"; +$a->strings["Expire posts:"] = "把文章过期:"; +$a->strings["Expire personal notes:"] = "把私人便条过期:"; +$a->strings["Expire starred posts:"] = "把星的文章过期:"; +$a->strings["Expire photos:"] = "把照片过期:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "帐户设置"; +$a->strings["Password Settings"] = "密码设置"; +$a->strings["New Password:"] = "新密码:"; +$a->strings["Confirm:"] = "确认:"; +$a->strings["Leave password fields blank unless changing"] = "非变化留空密码栏"; +$a->strings["Basic Settings"] = "基础设置"; +$a->strings["Full Name:"] = "全名:"; +$a->strings["Email Address:"] = "电子邮件地址:"; +$a->strings["Your Timezone:"] = "您的时区:"; +$a->strings["Default Post Location:"] = "默认文章位置:"; +$a->strings["Use Browser Location:"] = "用游览器位置:"; +$a->strings["Security and Privacy Settings"] = "安全和隐私设置"; +$a->strings["Maximum Friend Requests/Day:"] = "最多友谊要求个天:"; +$a->strings["(to prevent spam abuse)"] = "(为防止垃圾邮件滥用)"; +$a->strings["Default Post Permissions"] = "默认文章准许"; +$a->strings["(click to open/close)"] = "(点击为打开/关闭)"; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "消息设置"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = ""; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "发一个消息要是:"; +$a->strings["You receive an introduction"] = "你受到一个介绍"; +$a->strings["Your introductions are confirmed"] = "你的介绍确认了"; +$a->strings["Someone writes on your profile wall"] = "某人写在你的简历墙"; +$a->strings["Someone writes a followup comment"] = "某人写一个后续的评论"; +$a->strings["You receive a private message"] = "你受到一个私消息"; +$a->strings["You receive a friend suggestion"] = "你受到一个朋友建议"; +$a->strings["You are tagged in a post"] = "你被在新闻标签"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Manage Identities and/or Pages"] = "管理身份或页"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "选择同一个人管理:"; +$a->strings["Search Results For:"] = ""; +$a->strings["Remove term"] = "删除关键字"; +$a->strings["Saved Searches"] = "保存的搜索"; +$a->strings["add"] = "添加"; +$a->strings["Commented Order"] = "评论时间顺序"; +$a->strings["Sort by Comment Date"] = ""; +$a->strings["Posted Order"] = "贴时间顺序"; +$a->strings["Sort by Post Date"] = ""; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = "新"; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Starred"] = "被星"; +$a->strings["Favourite Posts"] = ""; +$a->strings["Shared Links"] = ""; +$a->strings["Interesting Links"] = ""; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "警告:这个组包括%s成员从不安全网络。", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "私人通信给这组回被公开。"; +$a->strings["Contact: "] = "熟人:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。"; +$a->strings["Invalid contact."] = "无效熟人。"; +$a->strings["Personal Notes"] = "私人便条"; +$a->strings["Save"] = "保存"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "这个网站超过一天最多账户注册。请明天再试。"; +$a->strings["Import"] = ""; +$a->strings["Move account"] = ""; +$a->strings["You can import an account from another Friendica server.
\r\n You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = ""; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["No recipient selected."] = "没有选择的接受者。"; +$a->strings["Unable to check your home location."] = ""; +$a->strings["Message could not be sent."] = "消息发不了。"; +$a->strings["Message collection failure."] = "通信受到错误。"; +$a->strings["Message sent."] = "消息发了"; +$a->strings["No recipient."] = ""; +$a->strings["Please enter a link URL:"] = "请输入环节URL:"; +$a->strings["Send Private Message"] = "发私人的通信"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "到:"; +$a->strings["Subject:"] = "题目:"; +$a->strings["Your message:"] = "你的消息:"; +$a->strings["Welcome to Friendica"] = "Friendica欢迎你"; +$a->strings["New Member Checklist"] = "新的成员一览表"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。"; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = ""; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "在你的设置页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。"; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"; +$a->strings["Profile"] = "简介"; +$a->strings["Upload Profile Photo"] = "上传简历照片"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"; +$a->strings["Edit Your Profile"] = ""; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。"; +$a->strings["Profile Keywords"] = ""; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。"; +$a->strings["Connecting"] = ""; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "要是你有一个Facebook账户,批准Facebook插销。我们来(可选的)进口都你Facebook朋友们和交谈。"; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "要是这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。"; +$a->strings["Importing Emails"] = ""; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。"; +$a->strings["Go to Your Contacts Page"] = ""; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。"; +$a->strings["Go to Your Site's Directory"] = ""; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "目录页让您找别人在这个网络或别的同盟的网站。找一个连接关注按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。"; +$a->strings["Finding New People"] = ""; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; +$a->strings["Groups"] = "组"; +$a->strings["Group Your Contacts"] = ""; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。"; +$a->strings["Why Aren't My Posts Public?"] = ""; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "我们帮助页可查阅到详情关于别的编程特点和资源。"; +$a->strings["Item not available."] = "项目不可用的"; +$a->strings["Item was not found."] = "找不到项目。"; +$a->strings["Group created."] = "组造成了。"; +$a->strings["Could not create group."] = "不能造成组。"; +$a->strings["Group not found."] = "组找不到。"; +$a->strings["Group name changed."] = "组名变化了。"; +$a->strings["Permission denied"] = "权限不够"; +$a->strings["Create a group of contacts/friends."] = "造成组熟人/朋友们。"; +$a->strings["Group Name: "] = "组名:"; +$a->strings["Group removed."] = "组删除了。"; +$a->strings["Unable to remove group."] = "不能删除组。"; +$a->strings["Group Editor"] = "组编辑器"; +$a->strings["Members"] = "成员"; +$a->strings["Click on a contact to add or remove."] = "点击熟人为添加或删除。"; +$a->strings["Invalid profile identifier."] = "无限的简介标识符。"; +$a->strings["Profile Visibility Editor"] = "简介能见度编辑器。"; +$a->strings["Visible To"] = "能见被"; +$a->strings["All Contacts (with secure profile access)"] = "所有熟人(跟安全地简介使用权)"; +$a->strings["No contacts."] = "没有熟人。"; +$a->strings["View Contacts"] = "看熟人"; +$a->strings["Registration details for %s"] = "注册信息为%s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。"; +$a->strings["Failed to send email message. Here is the message that failed."] = "发邮件失败了。这条试失败的消息。"; +$a->strings["Your registration can not be processed."] = "处理不了您的注册。"; +$a->strings["Registration request at %s"] = "注册要求再%s"; +$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。"; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。"; +$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):"; +$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?"; +$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。"; +$a->strings["Your invitation ID: "] = "您邀请ID:"; +$a->strings["Registration"] = "注册"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "您姓名(例如「张三」):"; +$a->strings["Your Email Address: "] = "你的电子邮件地址:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@\$sitename」."; +$a->strings["Choose a nickname: "] = "选择昵称:"; +$a->strings["Register"] = "注册"; +$a->strings["People Search"] = "搜索人物"; +$a->strings["photo"] = "照片"; +$a->strings["status"] = "现状"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s不喜欢%2\$s的%3\$s"; +$a->strings["Item not found."] = "项目找不到。"; +$a->strings["Access denied."] = "没有用权。"; +$a->strings["Photos"] = "照片"; +$a->strings["Files"] = ""; +$a->strings["Account approved."] = "账户批准了"; +$a->strings["Registration revoked for %s"] = "%s的登记撤销了"; +$a->strings["Please login."] = "清登录。"; +$a->strings["Unable to locate original post."] = "找不到当初的新闻"; +$a->strings["Empty post discarded."] = "空心的新闻丢弃了"; +$a->strings["Wall Photos"] = "墙照片"; +$a->strings["System error. Post not saved."] = "系统错误。x"; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"; +$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。"; +$a->strings["%s posted an update."] = "%s贴上一个新闻。"; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Image uploaded but image cropping failed."] = "照片上传去了,但修剪失灵。"; +$a->strings["Image size reduction [%s] failed."] = "照片减少[%s]失灵。"; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。"; +$a->strings["Unable to process image"] = "不能处理照片"; +$a->strings["Image exceeds size limit of %d"] = "图像超标最大极限尺寸 %d"; +$a->strings["Upload File:"] = "上传文件:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "上传"; +$a->strings["skip this step"] = "略过这步"; +$a->strings["select a photo from your photo albums"] = "从您的照片册选择一片。"; +$a->strings["Crop Image"] = "修剪照片"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "请调图片剪裁为最好看。"; +$a->strings["Done Editing"] = "编完了"; +$a->strings["Image uploaded successfully."] = "照片成功地上传了"; +$a->strings["No profile"] = "无简介"; +$a->strings["Remove My Account"] = "删除我的账户"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。"; +$a->strings["Please enter your password for verification:"] = "请输入密码为确认:"; +$a->strings["New Message"] = "新的消息"; +$a->strings["Unable to locate contact information."] = "找不到熟人信息。"; +$a->strings["Message deleted."] = "消息删除了。"; +$a->strings["Conversation removed."] = "交流删除了。"; +$a->strings["No messages."] = "没有消息"; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["Delete conversation"] = "删除交谈"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "", +); +$a->strings["Message not available."] = "通信不可用的"; +$a->strings["Delete message"] = "删除消息"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "发回答"; +$a->strings["Friends of %s"] = "%s的朋友们"; +$a->strings["No friends to display."] = "没有朋友展示。"; +$a->strings["Theme settings updated."] = ""; +$a->strings["Site"] = "网站"; +$a->strings["Users"] = "用户"; +$a->strings["Plugins"] = "插件"; +$a->strings["Themes"] = ""; +$a->strings["DB updates"] = ""; +$a->strings["Logs"] = "记录"; +$a->strings["Admin"] = "管理"; +$a->strings["Plugin Features"] = ""; +$a->strings["User registrations waiting for confirmation"] = "用户注册等确认"; +$a->strings["Normal Account"] = "正常帐户"; +$a->strings["Soapbox Account"] = "演讲台帐户"; +$a->strings["Community/Celebrity Account"] = "社会/名人帐户"; +$a->strings["Automatic Friend Account"] = "自动朋友帐户"; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Message queues"] = ""; +$a->strings["Administration"] = "管理"; +$a->strings["Summary"] = "总算"; +$a->strings["Registered users"] = "注册的用户"; +$a->strings["Pending registrations"] = "未决的注册"; +$a->strings["Version"] = "版本"; +$a->strings["Active plugins"] = "活跃的插件"; +$a->strings["Site settings updated."] = "网站设置更新了。"; +$a->strings["Closed"] = "关闭"; +$a->strings["Requires approval"] = "要批准"; +$a->strings["Open"] = "打开"; +$a->strings["No SSL policy, links will track page SSL state"] = ""; +$a->strings["Force all links to use SSL"] = ""; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; +$a->strings["File upload"] = "文件上传"; +$a->strings["Policies"] = "政策"; +$a->strings["Advanced"] = "高等"; +$a->strings["Site name"] = "网页名字"; +$a->strings["Banner/Logo"] = "标题/标志"; +$a->strings["System language"] = "系统语言"; +$a->strings["System theme"] = "系统主题"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = ""; +$a->strings["Determines whether generated links should be forced to use SSL"] = ""; +$a->strings["Maximum image size"] = "图片最大尺寸"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = "注册政策"; +$a->strings["Register text"] = "注册正文"; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = "账户丢弃X天后"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"; +$a->strings["Allowed friend domains"] = "允许的朋友域"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = "允许的电子邮件域"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Block public"] = "拦公开"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = "需要出版"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory update URL"] = "综合目录更新URL"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Block multiple registrations"] = "拦一人多注册"; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = "OpenID支持"; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = "全名核实"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["UTF-8 Regular expressions"] = "UTF-8正则表达式"; +$a->strings["Use PHP UTF8 regular expressions"] = ""; +$a->strings["Show Community Page"] = "表示社会页"; +$a->strings["Display a Community page showing all recent public postings on this site."] = ""; +$a->strings["Enable OStatus support"] = "使OStatus支持可用"; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["Enable Diaspora support"] = "使Diaspora支持能够"; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = "只许Friendica熟人"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = "证实"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = "代理用户"; +$a->strings["Proxy URL"] = "代理URL"; +$a->strings["Network timeout"] = "网络超时"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Executing %s failed. Check system logs."] = ""; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["Update function %s could not be found."] = ""; +$a->strings["No failed updates."] = ""; +$a->strings["Failed Updates"] = ""; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "%s用户删除了", +); +$a->strings["User '%s' deleted"] = "用户「%s」删除了"; +$a->strings["User '%s' unblocked"] = "用户「%s」无拦了"; +$a->strings["User '%s' blocked"] = "用户「%s」拦了"; +$a->strings["select all"] = "都选"; +$a->strings["User registrations waiting for confirm"] = "用户注册等待确认"; +$a->strings["Request date"] = "要求日期"; +$a->strings["Email"] = "电子邮件"; +$a->strings["No registrations."] = "没有注册。"; +$a->strings["Deny"] = "否定"; +$a->strings["Site admin"] = ""; +$a->strings["Register date"] = "注册日期"; +$a->strings["Last login"] = "上次登录"; +$a->strings["Last item"] = "上项目"; +$a->strings["Account"] = "帐户"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"; +$a->strings["Plugin %s disabled."] = "使插件%s不能用。"; +$a->strings["Plugin %s enabled."] = "使插件%s能用。"; +$a->strings["Disable"] = "使不能用"; +$a->strings["Enable"] = "使能用"; +$a->strings["Toggle"] = "肘节"; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["No themes found."] = ""; +$a->strings["Screenshot"] = ""; +$a->strings["[Experimental]"] = ""; +$a->strings["[Unsupported]"] = ""; +$a->strings["Log settings updated."] = "日志设置更新了。"; +$a->strings["Clear"] = "清理出"; +$a->strings["Debugging"] = "调试"; +$a->strings["Log file"] = "记录文件"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "必要被网页服务器可写的。相对Friendica主文件夹。"; +$a->strings["Log level"] = "记录水平"; +$a->strings["Close"] = "关闭"; +$a->strings["FTP Host"] = "FTP主机"; +$a->strings["FTP Path"] = "FTP目录"; +$a->strings["FTP User"] = "FTP用户"; +$a->strings["FTP Password"] = "FTP密码"; +$a->strings["Requested profile is not available."] = ""; +$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了."; +$a->strings["Tips for New Members"] = "提示对新成员"; +$a->strings["{0} wants to be your friend"] = "{0}想成为您的朋友"; +$a->strings["{0} sent you a message"] = "{0}发给您一个通信"; +$a->strings["{0} requested registration"] = "{0}要求注册"; +$a->strings["{0} commented %s's post"] = "{0}对%s的文章发表意见"; +$a->strings["{0} liked %s's post"] = "{0}喜欢%s的文章"; +$a->strings["{0} disliked %s's post"] = "{0}不喜欢%s的文章"; +$a->strings["{0} is now friends with %s"] = "{0}成为%s的朋友"; +$a->strings["{0} posted"] = "{0}陈列"; +$a->strings["{0} tagged %s's post with #%s"] = "{0}用#%s标签%s的文章"; +$a->strings["{0} mentioned you in a post"] = "{0}提到您在文章"; +$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["OpenID protocol error. No ID returned."] = ""; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; +$a->strings["Login failed."] = "登记失败了。"; +$a->strings["Contact added"] = ""; +$a->strings["Common Friends"] = "普通朋友们"; +$a->strings["No contacts in common."] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["link"] = ""; +$a->strings["Item has been removed."] = "项目被删除了。"; +$a->strings["Applications"] = "应用"; +$a->strings["No installed applications."] = "没有安装的应用"; +$a->strings["Search"] = "搜索"; +$a->strings["Profile not found."] = "找不到简介。"; +$a->strings["Profile Name is required."] = "必要简介名"; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Likes"] = ""; +$a->strings["Dislikes"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = "简介更新了。"; +$a->strings[" and "] = ""; +$a->strings["public profile"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Profile deleted."] = "简介删除了。"; +$a->strings["Profile-"] = "简介-"; +$a->strings["New profile created."] = "创造新的简介"; +$a->strings["Profile unavailable to clone."] = "简介不可用为复制。"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?"; +$a->strings["Edit Profile Details"] = "剪辑简介消息"; +$a->strings["View this profile"] = "看这个简介"; +$a->strings["Create a new profile using these settings"] = "造成新的简介用这些设置"; +$a->strings["Clone this profile"] = "复制这个简介"; +$a->strings["Delete this profile"] = "删除这个简介"; +$a->strings["Profile Name:"] = "简介名:"; +$a->strings["Your Full Name:"] = "你的全名:"; +$a->strings["Title/Description:"] = "标题/描述:"; +$a->strings["Your Gender:"] = "你的性:"; +$a->strings["Birthday (%s):"] = "生日(%s):"; +$a->strings["Street Address:"] = "地址:"; +$a->strings["Locality/City:"] = "现场/城市:"; +$a->strings["Postal/Zip Code:"] = "邮政编码:"; +$a->strings["Country:"] = "国家:"; +$a->strings["Region/State:"] = "区域/省"; +$a->strings[" Marital Status:"] = "婚姻状况:"; +$a->strings["Who: (if applicable)"] = "谁:(要是使用)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "比如:limou,李某,limou@example。com"; +$a->strings["Since [date]:"] = ""; +$a->strings["Sexual Preference:"] = "性取向"; +$a->strings["Homepage URL:"] = "主页URL:"; +$a->strings["Hometown:"] = ""; +$a->strings["Political Views:"] = "政治观念:"; +$a->strings["Religious Views:"] = " 宗教信仰 :"; +$a->strings["Public Keywords:"] = "公开关键字 :"; +$a->strings["Private Keywords:"] = "私人关键字"; +$a->strings["Likes:"] = ""; +$a->strings["Dislikes:"] = ""; +$a->strings["Example: fishing photography software"] = "例如:钓鱼 照片 软件"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)"; +$a->strings["Tell us about yourself..."] = "给我们自我介绍..."; +$a->strings["Hobbies/Interests"] = "爱好/兴趣"; +$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络"; +$a->strings["Musical interests"] = "音乐兴趣"; +$a->strings["Books, literature"] = "书,文学"; +$a->strings["Television"] = "电视"; +$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐"; +$a->strings["Love/romance"] = "爱情/浪漫"; +$a->strings["Work/employment"] = "工作"; +$a->strings["School/education"] = "学院/教育"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "这是你的公开的简介。
可能被所有的因特网用的看到。"; +$a->strings["Age: "] = "年纪:"; +$a->strings["Edit/Manage Profiles"] = "编辑/管理简介"; +$a->strings["Change profile photo"] = "换简介照片"; +$a->strings["Create New Profile"] = "创造新的简介"; +$a->strings["Profile Image"] = "简介图像"; +$a->strings["visible to everybody"] = "给打假可见的"; +$a->strings["Edit visibility"] = "修改能见度"; +$a->strings["Save to Folder:"] = ""; +$a->strings["- select -"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s把%4\$s标签%2\$s的%3\$s"; +$a->strings["No potential page delegates located."] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "加"; +$a->strings["No entries."] = "没有项目。"; +$a->strings["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html: "] = ""; +$a->strings["bb2html2bb: "] = ""; +$a->strings["bb2md: "] = ""; +$a->strings["bb2md2html: "] = ""; +$a->strings["bb2dia2bb: "] = ""; +$a->strings["bb2md2html2bb: "] = ""; +$a->strings["Source input (Diaspora format): "] = ""; +$a->strings["diaspora2bb: "] = ""; +$a->strings["Friend Suggestions"] = "友谊建议"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Ignore/Hide"] = "不理/隐藏"; +$a->strings["Global Directory"] = "综合目录"; +$a->strings["Find on this site"] = "找在这网站"; +$a->strings["Site Directory"] = "网站目录"; +$a->strings["Gender: "] = "性别:"; +$a->strings["Gender:"] = "性别:"; +$a->strings["Status:"] = "现状:"; +$a->strings["Homepage:"] = "主页:"; +$a->strings["About:"] = "关于:"; +$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。"; +$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址."; +$a->strings["Please join us on Friendica"] = ""; +$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。"; +$a->strings["%d message sent."] = array( + 0 => "%d消息传送了。", +); +$a->strings["You have no more invitations available"] = "您没有别的邀请"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Send invitations"] = "发请柬"; +$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。"; +$a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:"; +$a->strings["Confirmation completed successfully."] = "确认成功完成。"; +$a->strings["Remote site reported: "] = "遥网站报案:"; +$a->strings["Temporary failure. Please wait and try again."] = "临时失败。请等一会,再试。"; +$a->strings["Introduction failed or was revoked."] = "介绍失败或被吊销。"; +$a->strings["Unable to set contact photo."] = "不会指定熟人照片。"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友"; +$a->strings["No user record found for '%s' "] = "找不到「%s」的用户记录"; +$a->strings["Our site encryption key is apparently messed up."] = "看起来我们的加密钥匙失灵了。"; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空的URL供应,或URL解不了码。"; +$a->strings["Contact record was not found for you on our site."] = "熟人记录在我们的网站找不了。"; +$a->strings["Site public key not available in contact record for URL %s."] = "没有网站公开钥匙在熟人记录在URL%s。"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "身份证明由您的系统是在我们的重做。你再试应该运行。"; +$a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。"; +$a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统"; +$a->strings["Connection accepted at %s"] = "联络接受了在%s"; +$a->strings["%1\$s has joined %2\$s"] = ""; +$a->strings["Google+ Import Settings"] = ""; +$a->strings["Enable Google+ Import"] = ""; +$a->strings["Google Account ID"] = ""; +$a->strings["Google+ Import Settings saved."] = ""; +$a->strings["Facebook disabled"] = "Facebook废"; +$a->strings["Updating contacts"] = "正才更新熟人"; +$a->strings["Facebook API key is missing."] = "Facebook API钥匙失踪的。"; +$a->strings["Facebook Connect"] = "Facebook联络"; +$a->strings["Install Facebook connector for this account."] = "安装Facebook连接器为这个账户。"; +$a->strings["Remove Facebook connector"] = "删除Facebook连接器"; +$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "复认证[这是必要的每当您Facebook密码变化了]"; +$a->strings["Post to Facebook by default"] = "默认地放在Facebook"; +$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = ""; +$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = ""; +$a->strings["Link all your Facebook friends and conversations on this website"] = "连接您所有的Facebook朋友们和交流在这个网站"; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Facebook交流由您的简介墙和您朋友的溪流组成。 "; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "在这个网站,您Facebook朋友溪流是只您可见的。"; +$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "下面的设置决定您在这个网站Facebook简介墙的隐私。"; +$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "在这个网站您Facebook简介墙交流是只您可见的。"; +$a->strings["Do not import your Facebook profile wall conversations"] = "别进口您Facebook简介墙交流"; +$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。"; +$a->strings["Comma separated applications to ignore"] = "逗号分开的应用要不理"; +$a->strings["Problems with Facebook Real-Time Updates"] = ""; +$a->strings["Facebook Connector Settings"] = "Facebook连接器设置"; +$a->strings["Facebook API Key"] = ""; +$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

"] = ""; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = ""; +$a->strings["The given API Key seems to work correctly."] = ""; +$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = ""; +$a->strings["App-ID / API-Key"] = ""; +$a->strings["Application secret"] = ""; +$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = ""; +$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = ""; +$a->strings["Real-Time Updates"] = ""; +$a->strings["Real-Time Updates are activated."] = ""; +$a->strings["Deactivate Real-Time Updates"] = ""; +$a->strings["Real-Time Updates not activated."] = ""; +$a->strings["Activate Real-Time Updates"] = ""; +$a->strings["The new values have been saved."] = ""; +$a->strings["Post to Facebook"] = "放在Facebook"; +$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "发送到Facebook取消由于多网络准许矛盾。"; +$a->strings["View on Friendica"] = ""; +$a->strings["Facebook post failed. Queued for retry."] = "Facebook发送失败了。排队着待再试。"; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = ""; +$a->strings["Facebook connection became invalid"] = ""; +$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = ""; +$a->strings["StatusNet AutoFollow settings updated."] = ""; +$a->strings["StatusNet AutoFollow Settings"] = ""; +$a->strings["Automatically follow any StatusNet followers/mentioners"] = ""; +$a->strings["Lifetime of the cache (in hours)"] = ""; +$a->strings["Cache Statistics"] = ""; +$a->strings["Number of items"] = ""; +$a->strings["Size of the cache"] = ""; +$a->strings["Delete the whole cache"] = ""; +$a->strings["Facebook Post disabled"] = ""; +$a->strings["Facebook Post"] = ""; +$a->strings["Install Facebook Post connector for this account."] = ""; +$a->strings["Remove Facebook Post connector"] = ""; +$a->strings["Facebook Post Settings"] = ""; +$a->strings["%d person likes this"] = array( + 0 => "%d人喜欢这个", +); +$a->strings["%d person doesn't like this"] = array( + 0 => "%d人不喜欢这个", +); +$a->strings["Get added to this list!"] = ""; +$a->strings["Generate new key"] = "造成新钥匙"; +$a->strings["Widgets key"] = "小窗口钥匙"; +$a->strings["Widgets available"] = "可用的小窗口"; +$a->strings["Connect on Friendica!"] = ""; +$a->strings["bitchslap"] = ""; +$a->strings["bitchslapped"] = ""; +$a->strings["shag"] = ""; +$a->strings["shagged"] = ""; +$a->strings["do something obscenely biological to"] = ""; +$a->strings["did something obscenely biological to"] = ""; +$a->strings["point out the poke feature to"] = ""; +$a->strings["pointed out the poke feature to"] = ""; +$a->strings["declare undying love for"] = ""; +$a->strings["declared undying love for"] = ""; +$a->strings["patent"] = ""; +$a->strings["patented"] = ""; +$a->strings["stroke beard"] = ""; +$a->strings["stroked their beard at"] = ""; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["hug"] = ""; +$a->strings["hugged"] = ""; +$a->strings["kiss"] = ""; +$a->strings["kissed"] = ""; +$a->strings["raise eyebrows at"] = ""; +$a->strings["raised their eyebrows at"] = ""; +$a->strings["insult"] = ""; +$a->strings["insulted"] = ""; +$a->strings["praise"] = ""; +$a->strings["praised"] = ""; +$a->strings["be dubious of"] = ""; +$a->strings["was dubious of"] = ""; +$a->strings["eat"] = ""; +$a->strings["ate"] = ""; +$a->strings["giggle and fawn at"] = ""; +$a->strings["giggled and fawned at"] = ""; +$a->strings["doubt"] = ""; +$a->strings["doubted"] = ""; +$a->strings["glare"] = ""; +$a->strings["glared at"] = ""; +$a->strings["YourLS Settings"] = ""; +$a->strings["URL: http://"] = ""; +$a->strings["Username:"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Use SSL "] = ""; +$a->strings["yourls Settings saved."] = ""; +$a->strings["Post to LiveJournal"] = ""; +$a->strings["LiveJournal Post Settings"] = ""; +$a->strings["Enable LiveJournal Post Plugin"] = ""; +$a->strings["LiveJournal username"] = ""; +$a->strings["LiveJournal password"] = ""; +$a->strings["Post to LiveJournal by default"] = ""; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = ""; +$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; +$a->strings["Enable Content filter"] = ""; +$a->strings["Comma separated list of keywords to hide"] = ""; +$a->strings["Use /expression/ to provide regular expressions"] = ""; +$a->strings["NSFW Settings saved."] = "NSFW设置保持了。"; +$a->strings["%s - Click to open/close"] = "%s - 点击为打开/关闭"; +$a->strings["Forums"] = ""; +$a->strings["Forums:"] = ""; +$a->strings["Page settings updated."] = ""; +$a->strings["Page Settings"] = ""; +$a->strings["How many forums to display on sidebar without paging"] = ""; +$a->strings["Randomise Page/Forum list"] = ""; +$a->strings["Show pages/forums on profile page"] = ""; +$a->strings["Planets Settings"] = ""; +$a->strings["Enable Planets Plugin"] = ""; +$a->strings["Login"] = "登录"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Latest users"] = ""; +$a->strings["Most active users"] = "最积极用户"; +$a->strings["Latest photos"] = ""; +$a->strings["Latest likes"] = ""; +$a->strings["event"] = "项目"; +$a->strings["No access"] = ""; +$a->strings["Could not open component for editing"] = ""; +$a->strings["Go back to the calendar"] = ""; +$a->strings["Event data"] = ""; +$a->strings["Calendar"] = ""; +$a->strings["Special color"] = ""; +$a->strings["Subject"] = ""; +$a->strings["Starts"] = ""; +$a->strings["Ends"] = ""; +$a->strings["Description"] = ""; +$a->strings["Recurrence"] = ""; +$a->strings["Frequency"] = ""; +$a->strings["Daily"] = "每日"; +$a->strings["Weekly"] = "每周"; +$a->strings["Monthly"] = "每月"; +$a->strings["Yearly"] = ""; +$a->strings["days"] = "天"; +$a->strings["weeks"] = "星期"; +$a->strings["months"] = "月"; +$a->strings["years"] = "年"; +$a->strings["Interval"] = ""; +$a->strings["All %select% %time%"] = ""; +$a->strings["Days"] = ""; +$a->strings["Sunday"] = "星期天"; +$a->strings["Monday"] = "星期一"; +$a->strings["Tuesday"] = "星期二"; +$a->strings["Wednesday"] = "星期三"; +$a->strings["Thursday"] = "星期四"; +$a->strings["Friday"] = "星期五"; +$a->strings["Saturday"] = "星期六"; +$a->strings["First day of week:"] = ""; +$a->strings["Day of month"] = ""; +$a->strings["#num#th of each month"] = ""; +$a->strings["#num#th-last of each month"] = ""; +$a->strings["#num#th #wkday# of each month"] = ""; +$a->strings["#num#th-last #wkday# of each month"] = ""; +$a->strings["Month"] = ""; +$a->strings["#num#th of the given month"] = ""; +$a->strings["#num#th-last of the given month"] = ""; +$a->strings["#num#th #wkday# of the given month"] = ""; +$a->strings["#num#th-last #wkday# of the given month"] = ""; +$a->strings["Repeat until"] = ""; +$a->strings["Infinite"] = ""; +$a->strings["Until the following date"] = ""; +$a->strings["Number of times"] = ""; +$a->strings["Exceptions"] = ""; +$a->strings["none"] = ""; +$a->strings["Notification"] = ""; +$a->strings["Notify by"] = ""; +$a->strings["E-Mail"] = ""; +$a->strings["On Friendica / Display"] = ""; +$a->strings["Time"] = ""; +$a->strings["Hours"] = ""; +$a->strings["Minutes"] = ""; +$a->strings["Seconds"] = ""; +$a->strings["Weeks"] = ""; +$a->strings["before the"] = ""; +$a->strings["start of the event"] = ""; +$a->strings["end of the event"] = ""; +$a->strings["Add a notification"] = ""; +$a->strings["The event #name# will start at #date"] = ""; +$a->strings["#name# is about to begin."] = ""; +$a->strings["Saved"] = ""; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = ""; +$a->strings["German Time Format (dd.mm.YYYY)"] = ""; +$a->strings["Private Events"] = ""; +$a->strings["Private Addressbooks"] = ""; +$a->strings["Friendica-Native events"] = ""; +$a->strings["Friendica-Contacts"] = ""; +$a->strings["Your Friendica-Contacts"] = ""; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = ""; +$a->strings["Something went wrong when trying to import the file. Sorry."] = ""; +$a->strings["The ICS-File has been imported."] = ""; +$a->strings["No file was uploaded."] = ""; +$a->strings["Import a ICS-file"] = ""; +$a->strings["ICS-File"] = ""; +$a->strings["Overwrite all #num# existing events"] = ""; +$a->strings["New event"] = ""; +$a->strings["Today"] = ""; +$a->strings["Day"] = ""; +$a->strings["Week"] = ""; +$a->strings["Reload"] = ""; +$a->strings["Date"] = ""; +$a->strings["Error"] = ""; +$a->strings["The calendar has been updated."] = ""; +$a->strings["The new calendar has been created."] = ""; +$a->strings["The calendar has been deleted."] = ""; +$a->strings["Calendar Settings"] = ""; +$a->strings["Date format"] = ""; +$a->strings["Time zone"] = ""; +$a->strings["Calendars"] = ""; +$a->strings["Create a new calendar"] = ""; +$a->strings["Limitations"] = ""; +$a->strings["Warning"] = ""; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = ""; +$a->strings["Synchronizing this calendar with the iPhone"] = ""; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = ""; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = ""; +$a->strings["Extended calendar with CalDAV-support"] = ""; +$a->strings["noreply"] = "noreply"; +$a->strings["Notification: "] = ""; +$a->strings["The database tables have been installed."] = ""; +$a->strings["An error occurred during the installation."] = ""; +$a->strings["The database tables have been updated."] = ""; +$a->strings["An error occurred during the update."] = ""; +$a->strings["No system-wide settings yet."] = ""; +$a->strings["Database status"] = ""; +$a->strings["Installed"] = ""; +$a->strings["Upgrade needed"] = ""; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; +$a->strings["Upgrade"] = ""; +$a->strings["Not installed"] = ""; +$a->strings["Install"] = ""; +$a->strings["Unknown"] = ""; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; +$a->strings["Troubleshooting"] = ""; +$a->strings["Manual creation of the database tables:"] = ""; +$a->strings["Show SQL-statements"] = ""; +$a->strings["Private Calendar"] = ""; +$a->strings["Friendica Events: Mine"] = ""; +$a->strings["Friendica Events: Contacts"] = ""; +$a->strings["Private Addresses"] = ""; +$a->strings["Friendica Contacts"] = ""; +$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = ""; +$a->strings["Template URL (with {category})"] = ""; +$a->strings["OAuth end-point"] = ""; +$a->strings["Api"] = ""; +$a->strings["Member since:"] = ""; +$a->strings["Three Dimensional Tic-Tac-Toe"] = "三维井字棋"; +$a->strings["3D Tic-Tac-Toe"] = "三维井字棋"; +$a->strings["New game"] = "新游戏"; +$a->strings["New game with handicap"] = "新游戏不利条件 "; +$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "三维井字棋跟传统的一样,除了完同时在多水平。"; +$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。"; +$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。"; +$a->strings["You go first..."] = "您先下..."; +$a->strings["I'm going first this time..."] = "这次我先下..."; +$a->strings["You won!"] = "您赢了!"; +$a->strings["\"Cat\" game!"] = "「猫子」游戏!"; +$a->strings["I won!"] = "我赢了!"; +$a->strings["Randplace Settings"] = "随意下设置"; +$a->strings["Enable Randplace Plugin"] = "使随意下插件能用"; +$a->strings["Post to Dreamwidth"] = ""; +$a->strings["Dreamwidth Post Settings"] = ""; +$a->strings["Enable dreamwidth Post Plugin"] = ""; +$a->strings["dreamwidth username"] = ""; +$a->strings["dreamwidth password"] = ""; +$a->strings["Post to dreamwidth by default"] = ""; +$a->strings["Remote Permissions Settings"] = ""; +$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = ""; +$a->strings["Remote Permissions settings updated."] = ""; +$a->strings["Visible to"] = ""; +$a->strings["may only be a partial list"] = ""; +$a->strings["Global"] = ""; +$a->strings["The posts of every user on this server show the post recipients"] = ""; +$a->strings["Individual"] = ""; +$a->strings["Each user chooses whether his/her posts show the post recipients"] = ""; +$a->strings["Startpage Settings"] = ""; +$a->strings["Home page to load after login - leave blank for profile wall"] = ""; +$a->strings["Examples: "network" or "notifications/system""] = ""; +$a->strings["Geonames settings updated."] = ""; +$a->strings["Geonames Settings"] = ""; +$a->strings["Enable Geonames Plugin"] = ""; +$a->strings["Your account on %s will expire in a few days."] = ""; +$a->strings["Your Friendica account is about to expire."] = ""; +$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = ""; +$a->strings["Upload a file"] = "上传文件"; +$a->strings["Drop files here to upload"] = "在这儿放文件为上传"; +$a->strings["Failed"] = "失败"; +$a->strings["No files were uploaded."] = "没有文件上传。"; +$a->strings["Uploaded file is empty"] = "上传的文件空的"; +$a->strings["File has an invalid extension, it should be one of "] = "文件扩展名无效的,应该是这些一个:"; +$a->strings["Upload was cancelled, or server error encountered"] = "上传注销了,或相遇服务器错误"; +$a->strings["show/hide"] = ""; +$a->strings["No forum subscriptions"] = ""; +$a->strings["Forumlist settings updated."] = ""; +$a->strings["Forumlist Settings"] = ""; +$a->strings["Randomise forum list"] = ""; +$a->strings["Show forums on profile page"] = ""; +$a->strings["Show forums on network page"] = ""; +$a->strings["Impressum"] = "Impressum(法定的出版信息)"; +$a->strings["Site Owner"] = "网站主"; +$a->strings["Email Address"] = "电子邮件地址"; +$a->strings["Postal Address"] = "邮政邮件地址"; +$a->strings["The impressum addon needs to be configured!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Impressum插件必须被设置!
请加至少owner变量在您的设置文件。关于别的变量请指插件的README文件。"; +$a->strings["The page operators name."] = ""; +$a->strings["Site Owners Profile"] = "网站主的简介"; +$a->strings["Profile address of the operator."] = ""; +$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = ""; +$a->strings["Notes"] = "便条"; +$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = ""; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = ""; +$a->strings["Footer note"] = ""; +$a->strings["Text for the footer. You can use BBCode here."] = ""; +$a->strings["Report Bug"] = "报案程序错误"; +$a->strings["No Timeline settings updated."] = ""; +$a->strings["No Timeline Settings"] = ""; +$a->strings["Disable Archive selector on profile wall"] = ""; +$a->strings["\"Blockem\" Settings"] = ""; +$a->strings["Comma separated profile URLS to block"] = ""; +$a->strings["BLOCKEM Settings saved."] = ""; +$a->strings["Blocked %s - Click to open/close"] = ""; +$a->strings["Unblock Author"] = ""; +$a->strings["Block Author"] = ""; +$a->strings["blockem settings updated"] = ""; +$a->strings[":-)"] = ""; +$a->strings[":-("] = ""; +$a->strings["lol"] = ""; +$a->strings["Quick Comment Settings"] = ""; +$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = ""; +$a->strings["Enter quick comments, one per line"] = ""; +$a->strings["Quick Comment settings saved."] = ""; +$a->strings["Tile Server URL"] = ""; +$a->strings["A list of public tile servers"] = ""; +$a->strings["Default zoom"] = ""; +$a->strings["The default zoom level. (1:world, 18:highest)"] = ""; +$a->strings["Editplain settings updated."] = ""; +$a->strings["Group Text"] = ""; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; +$a->strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = ""; +$a->strings["generic profile image"] = ""; +$a->strings["random geometric pattern"] = ""; +$a->strings["monster face"] = ""; +$a->strings["computer generated face"] = ""; +$a->strings["retro arcade style face"] = ""; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = ""; +$a->strings["This addon is not functional on your server."] = ""; +$a->strings["Information"] = ""; +$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +$a->strings["Default avatar image"] = ""; +$a->strings["Select default avatar image if none was found. See README"] = ""; +$a->strings["Libravatar settings updated."] = ""; +$a->strings["Post to libertree"] = ""; +$a->strings["libertree Post Settings"] = ""; +$a->strings["Enable Libertree Post Plugin"] = ""; +$a->strings["Libertree API token"] = ""; +$a->strings["Libertree site URL"] = ""; +$a->strings["Post to Libertree by default"] = ""; +$a->strings["Altpager settings updated."] = ""; +$a->strings["Alternate Pagination Setting"] = ""; +$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = ""; +$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = ""; +$a->strings["Use the MathJax renderer"] = ""; +$a->strings["MathJax Base URL"] = ""; +$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = ""; +$a->strings["Editplain Settings"] = ""; +$a->strings["Disable richtext status editor"] = ""; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = ""; +$a->strings["Rating of images"] = ""; +$a->strings["Select the appropriate avatar rating for your site. See README"] = ""; +$a->strings["Gravatar settings updated."] = ""; +$a->strings["Your Friendica test account is about to expire."] = ""; +$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = ""; +$a->strings["\"pageheader\" Settings"] = ""; +$a->strings["pageheader Settings saved."] = ""; +$a->strings["Post to Insanejournal"] = ""; +$a->strings["InsaneJournal Post Settings"] = ""; +$a->strings["Enable InsaneJournal Post Plugin"] = ""; +$a->strings["InsaneJournal username"] = ""; +$a->strings["InsaneJournal password"] = ""; +$a->strings["Post to InsaneJournal by default"] = ""; +$a->strings["Jappix Mini addon settings"] = ""; +$a->strings["Activate addon"] = ""; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = ""; +$a->strings["Jabber username"] = ""; +$a->strings["Jabber server"] = ""; +$a->strings["Jabber BOSH host"] = ""; +$a->strings["Jabber password"] = ""; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; +$a->strings["Friendica password"] = ""; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; +$a->strings["Subscribe to Friendica contacts automatically"] = ""; +$a->strings["Purge internal list of jabber addresses of contacts"] = ""; +$a->strings["Add contact"] = ""; +$a->strings["View Source"] = ""; +$a->strings["Post to StatusNet"] = "发送到StatusNet"; +$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "请联系您的网站行政人员。
提供的API URL无效。"; +$a->strings["We could not contact the StatusNet API with the Path you entered."] = "我们不能联系StatusNet API在您输入的路径。"; +$a->strings["StatusNet settings updated."] = "StatusNet设置更新了。"; +$a->strings["StatusNet Posting Settings"] = "StatusNet发送设置"; +$a->strings["Globally Available StatusNet OAuthKeys"] = "综合可用的StatusNet OAuthKeys"; +$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。"; +$a->strings["Provide your own OAuth Credentials"] = "提供您自己的OAuth证件"; +$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = ""; +$a->strings["OAuth Consumer Key"] = "Oauth消费者钥匙"; +$a->strings["OAuth Consumer Secret"] = "Oauth消费者密码"; +$a->strings["Base API Path (remember the trailing /)"] = "基础API地址(注意最后的/)"; +$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet."] = "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。"; +$a->strings["Log in with StatusNet"] = "用StatusNet登记"; +$a->strings["Copy the security code from StatusNet here"] = "复制安全密码从StatusNet这儿"; +$a->strings["Cancel Connection Process"] = "注销连接过程 "; +$a->strings["Current StatusNet API is"] = "现在StatusNet API是"; +$a->strings["Cancel StatusNet Connection"] = "注销StatusNet连接"; +$a->strings["Currently connected to: "] = "现在连接到:"; +$a->strings["If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "如果使可用的都您公开的文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +$a->strings["Allow posting to StatusNet"] = "许放在StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "默认发送公开文章在StatusNet"; +$a->strings["Send linked #-tags and @-names to StatusNet"] = ""; +$a->strings["Clear OAuth configuration"] = "清理出OAuth设置"; +$a->strings["API URL"] = "API URL"; +$a->strings["Infinite Improbability Drive"] = ""; +$a->strings["Post to Tumblr"] = "发送到Tumblr"; +$a->strings["Tumblr Post Settings"] = "Tumblr发送设置"; +$a->strings["Enable Tumblr Post Plugin"] = "使Tumblr发送插件能够"; +$a->strings["Tumblr login"] = "Tumblr登记名"; +$a->strings["Tumblr password"] = "Tumblr密码"; +$a->strings["Post to Tumblr by default"] = "默认地给Tumblr发送"; +$a->strings["Numfriends settings updated."] = ""; +$a->strings["Numfriends Settings"] = ""; +$a->strings["How many contacts to display on profile sidebar"] = ""; +$a->strings["Gnot settings updated."] = ""; +$a->strings["Gnot Settings"] = ""; +$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = ""; +$a->strings["Enable this plugin/addon?"] = ""; +$a->strings["[Friendica:Notify] Comment to conversation #%d"] = ""; +$a->strings["Post to Wordpress"] = "发送到Wordpress"; +$a->strings["WordPress Post Settings"] = "Wordpress发送设置"; +$a->strings["Enable WordPress Post Plugin"] = "使Wordpress发送插件可用"; +$a->strings["WordPress username"] = "Wordpress用户名"; +$a->strings["WordPress password"] = "Wordpress密码"; +$a->strings["WordPress API URL"] = "WordPress API URL"; +$a->strings["Post to WordPress by default"] = "默认地发送到Wordpress"; +$a->strings["Provide a backlink to the Friendica post"] = ""; +$a->strings["Post from Friendica"] = "文章从Friendica"; +$a->strings["Read the original post and comment stream on Friendica"] = ""; +$a->strings["\"Show more\" Settings"] = ""; +$a->strings["Enable Show More"] = ""; +$a->strings["Cutting posts after how much characters"] = ""; +$a->strings["Show More Settings saved."] = ""; +$a->strings["This website is tracked using the Piwik analytics tool."] = "这个网站用Piwik分析工具追踪 。"; +$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "如果您不想您访问这样记录您可以用一个cookie防Piwik追踪未来的访问(选择性退出)。"; +$a->strings["Piwik Base URL"] = "Piwik基础URL"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; +$a->strings["Site ID"] = "网站ID"; +$a->strings["Show opt-out cookie link?"] = " 显示选择性退出cookie按钮?"; +$a->strings["Asynchronous tracking"] = ""; +$a->strings["Post to Twitter"] = "发送到在Twitter"; +$a->strings["Twitter settings updated."] = "Twitter设置更新了。"; +$a->strings["Twitter Posting Settings"] = "Twitter发送设置"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "找不到Twitter的消费钥匙双。请联系您的网页行政人员。"; +$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = ""; +$a->strings["Log in with Twitter"] = "用Twitter登记"; +$a->strings["Copy the PIN from Twitter here"] = "复制Twitter密码这儿"; +$a->strings["If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "如果使可用的都您公开的文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +$a->strings["Allow posting to Twitter"] = "允许发送到Twitter"; +$a->strings["Send public postings to Twitter by default"] = "默认地发送公开文章到Twitter"; +$a->strings["Send linked #-tags and @-names to Twitter"] = ""; +$a->strings["Consumer key"] = "钥匙(Consumer key)"; +$a->strings["Consumer secret"] = "密码(Consumer secret)"; +$a->strings["IRC Settings"] = ""; +$a->strings["Channel(s) to auto connect (comma separated)"] = ""; +$a->strings["Popular Channels (comma separated)"] = ""; +$a->strings["IRC settings saved."] = ""; +$a->strings["IRC Chatroom"] = ""; +$a->strings["Popular Channels"] = ""; +$a->strings["Fromapp settings updated."] = ""; +$a->strings["FromApp Settings"] = ""; +$a->strings["The application name you would like to show your posts originating from."] = ""; +$a->strings["Use this application name even if another application was used."] = ""; +$a->strings["Post to blogger"] = ""; +$a->strings["Blogger Post Settings"] = ""; +$a->strings["Enable Blogger Post Plugin"] = ""; +$a->strings["Blogger username"] = ""; +$a->strings["Blogger password"] = ""; +$a->strings["Blogger API URL"] = ""; +$a->strings["Post to Blogger by default"] = ""; +$a->strings["Post to Posterous"] = "发送往Posterous"; +$a->strings["Posterous Post Settings"] = "Posterous发送设置"; +$a->strings["Enable Posterous Post Plugin"] = "使Posterous发送插件可用的"; +$a->strings["Posterous login"] = "Posterous登记名"; +$a->strings["Posterous password"] = "Posterous密码"; +$a->strings["Posterous site ID"] = ""; +$a->strings["Posterous API token"] = ""; +$a->strings["Post to Posterous by default"] = "默认地发送往Posterous"; +$a->strings["Theme settings"] = ""; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set font-size for posts and comments"] = ""; +$a->strings["Set theme width"] = ""; +$a->strings["Color scheme"] = ""; +$a->strings["Your posts and conversations"] = "你的消息和交谈"; +$a->strings["Your profile page"] = "你的简介页"; +$a->strings["Your contacts"] = ""; +$a->strings["Your photos"] = "你的照片"; +$a->strings["Your events"] = "你的项目"; +$a->strings["Personal notes"] = "私人的便条"; +$a->strings["Your personal photos"] = "你私人的照片"; +$a->strings["Community Pages"] = ""; +$a->strings["Community Profiles"] = ""; +$a->strings["Last users"] = "上次用户"; +$a->strings["Last likes"] = "上次喜欢"; +$a->strings["Last photos"] = "上次照片"; +$a->strings["Find Friends"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Similar Interests"] = "相似兴趣"; +$a->strings["Invite Friends"] = "邀请朋友们"; +$a->strings["Earth Layers"] = ""; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = ""; +$a->strings["Last Tweets"] = ""; +$a->strings["Set twitter search term"] = ""; +$a->strings["don't show"] = "别著"; +$a->strings["show"] = "著"; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Set line-height for posts and comments"] = ""; +$a->strings["Set resolution for middle column"] = ""; +$a->strings["Set color scheme"] = ""; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Last tweets"] = ""; +$a->strings["Alignment"] = ""; +$a->strings["Left"] = ""; +$a->strings["Center"] = ""; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["Set colour scheme"] = ""; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "生日:"; +$a->strings["Age:"] = "年纪:"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Tags:"] = "标签:"; +$a->strings["Religion:"] = "宗教:"; +$a->strings["Hobbies/Interests:"] = "爱好/兴趣"; +$a->strings["Contact information and Social Networks:"] = "熟人消息和社会化网络"; +$a->strings["Musical interests:"] = "音乐兴趣:"; +$a->strings["Books, literature:"] = "书,文学"; +$a->strings["Television:"] = "电视:"; +$a->strings["Film/dance/culture/entertainment:"] = "电影/跳舞/文化/娱乐:"; +$a->strings["Love/Romance:"] = "爱情/浪漫"; +$a->strings["Work/employment:"] = "工作"; +$a->strings["School/education:"] = "学院/教育"; +$a->strings["Unknown | Not categorised"] = "未知的 |无分类"; +$a->strings["Block immediately"] = "立即拦"; +$a->strings["Shady, spammer, self-marketer"] = "可疑,发垃圾者,自市场开发者"; +$a->strings["Known to me, but no opinion"] = "我认识,但没有意见"; +$a->strings["OK, probably harmless"] = "行,大概无恶意的"; +$a->strings["Reputable, has my trust"] = "可信的,有我的信任"; +$a->strings["Frequently"] = "时常"; +$a->strings["Hourly"] = "每小时"; +$a->strings["Twice daily"] = "每日两次"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Male"] = "男的"; +$a->strings["Female"] = "女的"; +$a->strings["Currently Male"] = "现在男的"; +$a->strings["Currently Female"] = "现在女的"; +$a->strings["Mostly Male"] = "主要男的"; +$a->strings["Mostly Female"] = "主要女的"; +$a->strings["Transgender"] = "跨性別"; +$a->strings["Intersex"] = "阴阳人"; +$a->strings["Transsexual"] = "”转基因“人"; +$a->strings["Hermaphrodite"] = "两性体"; +$a->strings["Neuter"] = "中性的"; +$a->strings["Non-specific"] = "不明确的"; +$a->strings["Other"] = "别的"; +$a->strings["Undecided"] = "未决"; +$a->strings["Males"] = "男人"; +$a->strings["Females"] = "女人"; +$a->strings["Gay"] = "男同性恋的"; +$a->strings["Lesbian"] = "女同性恋的"; +$a->strings["No Preference"] = "无偏爱"; +$a->strings["Bisexual"] = "双性恋的"; +$a->strings["Autosexual"] = "自性的"; +$a->strings["Abstinent"] = "有节制的"; +$a->strings["Virgin"] = "原始的"; +$a->strings["Deviant"] = "变态"; +$a->strings["Fetish"] = "恋物对象"; +$a->strings["Oodles"] = "多多"; +$a->strings["Nonsexual"] = "无性"; +$a->strings["Single"] = "单身"; +$a->strings["Lonely"] = "寂寞"; +$a->strings["Available"] = "单身的"; +$a->strings["Unavailable"] = "不可获得的"; +$a->strings["Has crush"] = ""; +$a->strings["Infatuated"] = ""; +$a->strings["Dating"] = "约会"; +$a->strings["Unfaithful"] = "外遇"; +$a->strings["Sex Addict"] = "性交因成瘾者"; +$a->strings["Friends"] = "朋友"; +$a->strings["Friends/Benefits"] = "朋友/益"; +$a->strings["Casual"] = "休闲"; +$a->strings["Engaged"] = "已订婚的"; +$a->strings["Married"] = "结婚"; +$a->strings["Imaginarily married"] = ""; +$a->strings["Partners"] = "伴侣"; +$a->strings["Cohabiting"] = "同居"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "幸福"; +$a->strings["Not looking"] = ""; +$a->strings["Swinger"] = "交换性伴侣的"; +$a->strings["Betrayed"] = "被背叛"; +$a->strings["Separated"] = "分手"; +$a->strings["Unstable"] = "不稳"; +$a->strings["Divorced"] = "离婚"; +$a->strings["Imaginarily divorced"] = ""; +$a->strings["Widowed"] = "寡妇"; +$a->strings["Uncertain"] = "不确定"; +$a->strings["It's complicated"] = ""; +$a->strings["Don't care"] = "无所谓"; +$a->strings["Ask me"] = "问我"; +$a->strings["Starts:"] = "开始:"; +$a->strings["Finishes:"] = "结束:"; +$a->strings["(no subject)"] = "沒有题目"; +$a->strings[" on Last.fm"] = ""; +$a->strings["prev"] = "上个"; +$a->strings["first"] = "首先"; +$a->strings["last"] = "最后"; +$a->strings["next"] = "下个"; +$a->strings["newer"] = ""; +$a->strings["older"] = ""; +$a->strings["No contacts"] = "没有熟人"; +$a->strings["%d Contact"] = array( + 0 => "%d熟人", +); +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; +$a->strings["January"] = "一月"; +$a->strings["February"] = "二月"; +$a->strings["March"] = "三月"; +$a->strings["April"] = "四月"; +$a->strings["May"] = "五月"; +$a->strings["June"] = "六月"; +$a->strings["July"] = "七月"; +$a->strings["August"] = "八月"; +$a->strings["September"] = "九月"; +$a->strings["October"] = "十月"; +$a->strings["November"] = "十一月"; +$a->strings["December"] = "十二月"; +$a->strings["bytes"] = "字节"; +$a->strings["Click to open/close"] = ""; +$a->strings["default"] = "默认"; +$a->strings["Select an alternate language"] = "选择别的语言"; +$a->strings["activity"] = ""; +$a->strings["post"] = ""; +$a->strings["Item filed"] = ""; +$a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络"; +$a->strings["Attachments:"] = "附件:"; +$a->strings["view full size"] = "看全尺寸"; +$a->strings["Embedded content"] = "嵌入内容"; +$a->strings["Embedding disabled"] = "嵌入不能用"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! I can't import this file: DB schema version is not compatible."] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "一个删除的组用这名被复兴。现有的项目权利可能还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。"; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "每人"; +$a->strings["edit"] = "编辑"; +$a->strings["Edit group"] = "编辑组"; +$a->strings["Create a new group"] = "创造新组"; +$a->strings["Contacts not in any group"] = ""; +$a->strings["Logout"] = "注销"; +$a->strings["End this session"] = "结束这段时间"; +$a->strings["Status"] = "现状"; +$a->strings["Sign in"] = "登记"; +$a->strings["Home Page"] = "主页"; +$a->strings["Create an account"] = "注册"; +$a->strings["Help and documentation"] = "帮助证件"; +$a->strings["Apps"] = "应用程序"; +$a->strings["Addon applications, utilities, games"] = "可加的应用,设施,游戏"; +$a->strings["Search site content"] = "搜索网站内容"; +$a->strings["Conversations on this site"] = "这个网站的交谈"; +$a->strings["Directory"] = "名录"; +$a->strings["People directory"] = "人物名录"; +$a->strings["Conversations from your friends"] = "从你朋友们的交谈"; +$a->strings["Friend Requests"] = "友谊邀请"; +$a->strings["See all notifications"] = "看所有的通知"; +$a->strings["Mark all system notifications seen"] = "记号各系统通知看过的"; +$a->strings["Private mail"] = "私人的邮件"; +$a->strings["Inbox"] = "收件箱"; +$a->strings["Outbox"] = "发件箱"; +$a->strings["Manage"] = "管理"; +$a->strings["Manage other pages"] = "管理别的页"; +$a->strings["Profiles"] = "简介"; +$a->strings["Manage/edit profiles"] = "管理/修改简介"; +$a->strings["Manage/edit friends and contacts"] = "管理/编朋友们和熟人们"; +$a->strings["Site setup and configuration"] = "网站开办和配置"; +$a->strings["Nothing new here"] = "这里没有什么新的"; +$a->strings["Add New Contact"] = "增添新的熟人"; +$a->strings["Enter address or web location"] = "输入地址或网位置"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; +$a->strings["%d invitation available"] = array( + 0 => "%d邀请可用的", +); +$a->strings["Find People"] = "找人物"; +$a->strings["Enter name or interest"] = "输入名字或兴趣"; +$a->strings["Connect/Follow"] = "连接/关注"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼"; +$a->strings["Random Profile"] = ""; +$a->strings["Networks"] = "网络"; +$a->strings["All Networks"] = "所有网络"; +$a->strings["Saved Folders"] = ""; +$a->strings["Everything"] = ""; +$a->strings["Categories"] = ""; +$a->strings["Logged out."] = "注销了"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = ""; +$a->strings["Miscellaneous"] = "形形色色"; +$a->strings["year"] = "年"; +$a->strings["month"] = "月"; +$a->strings["day"] = "日"; +$a->strings["never"] = "从未"; +$a->strings["less than a second ago"] = "一秒以内"; +$a->strings["week"] = "星期"; +$a->strings["hour"] = "小时"; +$a->strings["hours"] = "小时"; +$a->strings["minute"] = "分钟"; +$a->strings["minutes"] = "分钟"; +$a->strings["second"] = "秒"; +$a->strings["seconds"] = "秒"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前"; +$a->strings["%s's birthday"] = ""; +$a->strings["Happy Birthday %s"] = ""; +$a->strings["From: "] = "从:"; +$a->strings["Image/photo"] = "图像/照片"; +$a->strings["$1 wrote:"] = "$1写:"; +$a->strings["Encrypted content"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」"; +$a->strings["[no subject]"] = "[无题目]"; +$a->strings["Visible to everybody"] = "任何人可见的"; +$a->strings["Friendica Notification"] = "Friendica 通知"; +$a->strings["Thank You,"] = "谢谢,"; +$a->strings["%s Administrator"] = "%s管理员"; +$a->strings["%s "] = ""; +$a->strings["[Friendica:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = ""; +$a->strings["a private message"] = "一条私人的消息"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "清去%s为了看或回答你私人的消息"; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%s commented on an item/conversation you have been following."] = "%s对你有兴趣的项目/ 交谈发表意见"; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "清去%s为了看或回答交谈"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; +$a->strings["[Friendica:Notify] %s tagged you"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "你能看他的简介在%s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "请批准或拒绝介绍在%s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "名字:"; +$a->strings["Photo:"] = "照片:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "请批准或拒绝建议在%s"; +$a->strings["Connect URL missing."] = "连接URL失踪的。"; +$a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了."; +$a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。"; +$a->strings["An author or name was not found."] = "找不到作者或名。"; +$a->strings["No browser URL could be matched to this address."] = "这个地址没有符合什么游览器URL。"; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。"; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。"; +$a->strings["Unable to retrieve contact information."] = "不能取回熟人消息。"; +$a->strings["following"] = "关注"; +$a->strings["A new person is sharing with you at "] = "一位新人给你分享在"; +$a->strings["You have a new follower at "] = "你有新的关注者在"; +$a->strings["Archives"] = ""; +$a->strings["An invitation is required."] = "邀请必要的。"; +$a->strings["Invitation could not be verified."] = "不能证实邀请。"; +$a->strings["Invalid OpenID url"] = "无效的OpenID url"; +$a->strings["Please enter the required information."] = "请输入必要的信息。"; +$a->strings["Please use a shorter name."] = "请用短一点名。"; +$a->strings["Name too short."] = "名字太短。"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "这看上去不是您的全姓名。"; +$a->strings["Your email domain is not among those allowed on this site."] = "这网站允许的域名中没有您的"; +$a->strings["Not a valid email address."] = "无效的邮件地址。"; +$a->strings["Cannot use that email."] = "不能用这个邮件地址。"; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "您的昵称只能包括\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"; +$a->strings["Nickname is already registered. Please choose another."] = "昵称已经报到。请选择新的。"; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "要紧错误:产生安全钥匙失败了。"; +$a->strings["An error occurred during registration. Please try again."] = "报到出了问题。请再试。"; +$a->strings["An error occurred creating your default profile. Please try again."] = "造成默认简介出了问题。请再试。"; +$a->strings["Welcome "] = "欢迎"; +$a->strings["Please upload a profile photo."] = "请上传一张简介照片"; +$a->strings["Welcome back "] = "欢迎归来"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["stopped following"] = "结束关注了"; +$a->strings["Poke"] = ""; +$a->strings["View Status"] = ""; +$a->strings["View Profile"] = ""; +$a->strings["View Photos"] = ""; +$a->strings["Network Posts"] = ""; +$a->strings["Edit Contact"] = ""; +$a->strings["Send PM"] = "法私人的新闻"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["remove"] = ""; +$a->strings["Delete Selected Items"] = "删除选的项目"; +$a->strings["Follow Thread"] = ""; +$a->strings["%s likes this."] = "%s喜欢这个."; +$a->strings["%s doesn't like this."] = "%s没有喜欢这个."; +$a->strings["%2\$d people like this."] = "%2\$d人喜欢这个。"; +$a->strings["%2\$d people don't like this."] = "%2\$d人不喜欢这个。"; +$a->strings["and"] = "和"; +$a->strings[", and %d other people"] = ",和%d别人"; +$a->strings["%s like this."] = "%s喜欢这个"; +$a->strings["%s don't like this."] = "%s不喜欢这个"; +$a->strings["Visible to everybody"] = "大家可见的"; +$a->strings["Please enter a video link/URL:"] = "请输入视频连接/URL:"; +$a->strings["Please enter an audio link/URL:"] = "请输入音响连接/URL:"; +$a->strings["Tag term:"] = "标签:"; +$a->strings["Where are you right now?"] = "你在哪里?"; +$a->strings["Delete item(s)?"] = ""; +$a->strings["permissions"] = ""; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Delete this item?"] = "删除这个项目?"; +$a->strings["show fewer"] = "显示更小"; +$a->strings["Update %s failed. See error logs."] = ""; +$a->strings["Update Error at %s"] = ""; +$a->strings["Create a New Account"] = "创造新的账户"; +$a->strings["Nickname or Email address: "] = "绰号或电子邮件地址: "; +$a->strings["Password: "] = "密码: "; +$a->strings["Remember me"] = ""; +$a->strings["Or login using OpenID: "] = ""; +$a->strings["Forgot your password?"] = "忘记你的密码吗?"; +$a->strings["Requested account is not available."] = ""; +$a->strings["Edit profile"] = "修改简介"; +$a->strings["Message"] = ""; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[今天]"; +$a->strings["Birthday Reminders"] = "提醒生日"; +$a->strings["Birthdays this week:"] = "这周的生日:"; +$a->strings["[No description]"] = "[无描述]"; +$a->strings["Event Reminders"] = "事件提醒"; +$a->strings["Events this week:"] = "这周的事件:"; +$a->strings["Status Messages and Posts"] = ""; +$a->strings["Profile Details"] = ""; +$a->strings["Events and Calendar"] = ""; +$a->strings["Only You Can See This"] = ""; +$a->strings["toggle mobile"] = ""; +$a->strings["Bg settings updated."] = ""; +$a->strings["Bg Settings"] = ""; +$a->strings["Post to Drupal"] = ""; +$a->strings["Drupal Post Settings"] = ""; +$a->strings["Enable Drupal Post Plugin"] = ""; +$a->strings["Drupal username"] = ""; +$a->strings["Drupal password"] = ""; +$a->strings["Post Type - article,page,or blog"] = ""; +$a->strings["Drupal site URL"] = ""; +$a->strings["Drupal site uses clean URLS"] = ""; +$a->strings["Post to Drupal by default"] = ""; +$a->strings["OEmbed settings updated"] = "OEmbed设置更新了"; +$a->strings["Use OEmbed for YouTube videos"] = "用OEmbed为YouTube视频"; +$a->strings["URL to embed:"] = "URL要嵌入:"; diff --git a/view/zh-cn/update_fail_eml.tpl b/view/zh-cn/update_fail_eml.tpl new file mode 100644 index 000000000..f68a3dece --- /dev/null +++ b/view/zh-cn/update_fail_eml.tpl @@ -0,0 +1,11 @@ +Hey, +I'm $sitename. +The friendica developers released update $update recently, +but when I tried to install it, something went terribly wrong. +This needs to be fixed soon and I can't do it alone. Please contact a +friendica developer if you can not help me on your own. My database might be invalid. + +The error message is '$error'. + +I'm sorry, +your friendica server at $siteurl \ No newline at end of file From 589f3603ae9c67f773e4f3ec5f582f9fcfbe224f Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 18 Nov 2012 21:27:02 +0000 Subject: [PATCH 26/30] Diabook - grep replace missed this --- view/theme/diabook/diabook-blue/style.css | 108 +++++++++++----------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/view/theme/diabook/diabook-blue/style.css b/view/theme/diabook/diabook-blue/style.css index 993eb38d5..54303be41 100644 --- a/view/theme/diabook/diabook-blue/style.css +++ b/view/theme/diabook/diabook-blue/style.css @@ -3,84 +3,84 @@ /* Why are these paths so long? They should probably become ../icons/ in the next revision */ .icon.bb-url{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-url.png");} .icon.quote{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/quote.png");} .icon.bold{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/bold.png");} .icon.underline{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/underline.png");} .icon.italic{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/italic.png");} .icon.bb-image{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-image.png");} .icon.bb-video{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-video.png");} .icon.contacts { - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts.png");} .icon.notifications { - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notifications.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/notifications.png");} .icon.notify { - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/notify.png");} .icon.messages { - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/messages.png");} .icon.community { - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/community.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/community.png");} -.icon.drop { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/drop.png");} -.icon.drophide { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/drop.png");} -.icon.dislike { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/dislike.png");} -.icon.like { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/like.png");} -.icon.pencil { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil.png");} -.icon.recycle { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/recycle.png");} -.icon.remote-link { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/remote.png");} -.icon.tagged { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/tagged.png");} -.icon.file-as { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/file_as.png");} -.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unstarred.png");} -.star-item.icon.starred { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/starred.png");} -.icon.link { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/link.png");} -.icon.lock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/lock.png");} -.icon.unlock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unlock.png");} -.icon.language { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/language.png");} -.camera { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");} -.attach { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png");} -.video2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); } -.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");} -.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");} -.audio { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");} -.weblink { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");} -.globe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png");} -.unglobe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png");} -.edit {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png");} +.icon.drop { background-image: url("../../../view/theme/diabook/diabook-blue/icons/drop.png");} +.icon.drophide { background-image: url("../../../view/theme/diabook/diabook-blue/icons/drop.png");} +.icon.dislike { background-image: url("../../../view/theme/diabook/diabook-blue/icons/dislike.png");} +.icon.like { background-image: url("../../../view/theme/diabook/diabook-blue/icons/like.png");} +.icon.pencil { background-image: url("../../../view/theme/diabook/diabook-blue/icons/pencil.png");} +.icon.recycle { background-image: url("../../../view/theme/diabook/diabook-blue/icons/recycle.png");} +.icon.remote-link { background-image: url("../../../view/theme/diabook/diabook-blue/icons/remote.png");} +.icon.tagged { background-image: url("../../../view/theme/diabook/diabook-blue/icons/tagged.png");} +.icon.file-as { background-image: url("../../../view/theme/diabook/diabook-blue/icons/file_as.png");} +.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unstarred.png");} +.star-item.icon.starred { background-image: url("../../../view/theme/diabook/diabook-blue/icons/starred.png");} +.icon.link { background-image: url("../../../view/theme/diabook/diabook-blue/icons/link.png");} +.icon.lock { background-image: url("../../../view/theme/diabook/diabook-blue/icons/lock.png");} +.icon.unlock { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unlock.png");} +.icon.language { background-image: url("../../../view/theme/diabook/diabook-blue/icons/language.png");} +.camera { background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png");} +.attach { background-image: url("../../../view/theme/diabook/diabook-blue/icons/attach.png");} +.video2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png"); } +.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");} +.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");} +.audio { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");} +.weblink { background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png");} +.globe { background-image: url("../../../view/theme/diabook/diabook-blue/icons/globe.png");} +.unglobe { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unglobe.png");} +.edit {background-image: url("../../../view/theme/diabook/diabook-blue/icons/pencil2.png");} .icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");} .icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");} .icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");} -.icon.on { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;} -.icon.off { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;} -.icon.prev { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/prev.png"); background-repeat: no-repeat;} -.icon.next { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/next.png"); background-repeat: no-repeat;} -icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");} -.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");} +.icon.on { background-image: url("../../../view/theme/diabook/diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;} +.icon.off { background-image: url("../../../view/theme/diabook/diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;} +.icon.prev { background-image: url("../../../view/theme/diabook/diabook-blue/icons/prev.png"); background-repeat: no-repeat;} +.icon.next { background-image: url("../../../view/theme/diabook/diabook-blue/icons/next.png"); background-repeat: no-repeat;} +icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png");} +.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png");} av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/messages.png");} .on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");} -nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");} + background-image: url("../../../view/theme/diabook/diabook-blue/icons/notify.png");} +nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts.png");} .menu-profile-icon.home{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/home.png") no-repeat;} .menu-profile-icon.photos{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/mess_side.png") no-repeat;} .menu-profile-icon.events{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/events.png") no-repeat;} .menu-profile-icon.notes{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/notes.png") no-repeat;} .menu-profile-icon.foren{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/pubgroups.png") no-repeat;} .menu-profile-icon.com_side{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/com_side.png") no-repeat;} .menu-profile-icon.pscontacts{ - background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat;} + background: url("../../../view/theme/diabook/diabook-blue/icons/pscontacts.png") no-repeat;} @@ -236,7 +236,7 @@ transition: all 0.2s ease-in-out; color: #055580; .widget .tool.selected { - background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center;} + background: url("../../../view/theme/diabook/diabook-blue/icons/selected.png") no-repeat left center;} #birthday-wrapper a { color: #055580; From 96633cb0e56148c2aa62b8210ff1709247face39 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 18 Nov 2012 22:06:02 +0000 Subject: [PATCH 27/30] Diabook - kill thousands more lines. Two more to go then we can start on the bugs... --- .../diabook/diabook-green/style-profile.css | 2511 +-------------- view/theme/diabook/diabook-green/style.css | 2756 +---------------- 2 files changed, 194 insertions(+), 5073 deletions(-) diff --git a/view/theme/diabook/diabook-green/style-profile.css b/view/theme/diabook/diabook-green/style-profile.css index 2e2e11383..7a9d0d57b 100644 --- a/view/theme/diabook/diabook-green/style-profile.css +++ b/view/theme/diabook/diabook-green/style-profile.css @@ -1,99 +1,10 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../../diabook/style-profile.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ - -.icon.contacts { - background-image: url("../diabook-green/icons/contacts.png");} -.icon.notifications { - background-image: url("../diabook-green/icons/notifications.png");} -.icon.notify { - background-image: url("../diabook-green/icons/notify.png");} -.icon.messages { - background-image: url("../diabook-green/icons/messages.png");} -.icon.community { - background-image: url("../diabook-green/icons/community.png");} - + .icon.contacts {background-image: url("../diabook-green/icons/contacts.png");} +.icon.notifications {background-image: url("../diabook-green/icons/notifications.png");} +.icon.notify {background-image: url("../diabook-green/icons/notify.png");} +.icon.messages {background-image: url("../diabook-green/icons/messages.png");} +.icon.community {background-image: url("../diabook-green/icons/community.png");} .icon.drop { background-image: url("../diabook-green/icons/drop.png");} .icon.drophide { background-image: url("../diabook-green/icons/drop.png");} .icon.dislike { background-image: url("../diabook-green/icons/dislike.png");} @@ -109,558 +20,105 @@ .icon.lock { background-image: url("../diabook-green/icons/lock.png");} .icon.unlock { background-image: url("../diabook-green/icons/unlock.png");} .icon.language { background-image: url("../diabook-green/icons/language.png");} - - -.camera { background-image: url("../diabook-green/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-green/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-green/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-green/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-green/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-green/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-green/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-green/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-green/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-green/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-green/icons/camera.png");} +.attach { background-image: url("../diabook-green/icons/attach.png");} +.video2 { background-image: url("../diabook-green/icons/video.png");} +.video { background-image: url("../diabook-green/icons/video.png");} +.audio2 { background-image: url("../diabook-green/icons/audio.png");} +.audio { background-image: url("../diabook-green/icons/audio.png");} +.weblink { background-image: url("../diabook-green/icons/weblink.png");} +.globe { background-image: url("../diabook-green/icons/globe.png");} +.unglobe { background-image: url("../diabook-green/icons/unglobe.png");} +.edit {background-image: url("../diabook-green/icons/pencil2.png");} .icon.on { background-image: url("../diabook-green/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-green/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ +.attachtype {background-image: url('../../../../images/content-types.png');} +.icon.border.camera{background-image: url("../diabook-green/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-green/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} +a {color: #333333;} -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } -.icon.drop, .icon.drophide { - float: left; -} +#sidebar-group-list .tool:hover {background: #EEE;} -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../diabook-green/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-green/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - border-top: 1px solid #BDCDD4; - - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #2c9936; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover { - background: #EEE; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ + background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; - background: #5CD65C; - background-color: #5CD65C; - z-index: 100; --webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; + background: #5cd65c; + background-color: #5cd65c; } + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { - color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + color: #ffffff; + font-weight: bolder;} + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #5CD65C; + background: #5cd65c; color: #1f1f1f; - z-index: 99; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { - color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} + color: #1f1f1f;} + nav #banner a, nav #banner a:active, nav #banner a:visited, nav #banner a:link, nav #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -671,82 +129,10 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -/*color*/ -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; -} nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ background-image: url("../diabook-green/icons/messages.png"); @@ -759,7 +145,7 @@ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selecte nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ background-image: url("../diabook-green/icons/contacts.png"); } - + nav #nav-apps-link.selected { background-color: #fff; moz-border-radius: 5px 5px 0 0; @@ -767,169 +153,11 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #F5FCF5; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #B8EDB8; /*bdcdd4;*/ + background-color: #b8edb8; color: #000; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - padding-top: 3px; - padding-bottom: 3px; - padding-left: 16px; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #B8EDB8; - } -.menu-profile-list-item{ - padding-left: 5px; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ .menu-profile-list.home{ background: url("../diabook-green/icons/home.png") no-repeat; } @@ -949,172 +177,10 @@ ul.menu-popup .empty { background: url("../diabook-green/icons/com_side.png") no-repeat; } -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} - -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 48px; - height: 48px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} + } + #side-bar-photos-albums li{ list-style-type: disc; } @@ -1123,782 +189,57 @@ list-style-type: disc; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #3465A4; + color: #3465a4; } + .widget .tool.selected { background: url("../diabook-green/icons/selected.png") no-repeat left center; } -/* widget: search */ + span.sbox_l { background: white url('../diabook-green/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - } span.sbox_r { background: white url('../diabook-green/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; } span.sbox input { background: white url('../diabook-green/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 611px; - padding: 0px 0px 0px 12px; } -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} - -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } #birthday-wrapper a { color: #3465A4; } -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - /*padding-right: 10px;*/ - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} right_aside a{color: #3465A4;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} + .close_box { background-image: url("../diabook-green/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; } .close_box:hover { background-image: url("../diabook-green/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} + + .tread-wrapper a{ color: #2c9936; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} -.wall-item-container { - display: table; - width: 580px; -} - - -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} - -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} - -.wall-item-container .wall-item-content { - - max-width: 420px; - word-wrap: break-word; - - -} - -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} .button.creation2 { - background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; - cursor: pointer; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} + background-color: #2c9936;} + #acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; + background: #ffffff url("../../../../images/search_18.png") no-repeat right center; } + #acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} + background-image: url("../../../../images/show_all_off.png");} + #acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} + background-image: url("../../../../images/show_all_on.png");} + .acl-button-show { background-image: url("../../../../images/show_off.png"); } @@ -1906,657 +247,37 @@ transition: all 0.2s ease-in-out; background-image: url("../../../../images/hide_off.png"); } .acl-button-show.selected { - color: #000000; - background-color: #9ade00; background-image: url("../../../../images/show_on.png"); } .acl-button-hide.selected { - color: #000000; - background-color: #ff4141; background-image: url("../../../../images/hide_on.png"); } -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + ul.tabs li .active { - background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} + background-color: #2c9936;} + .field .onoff a { - display: block; - border: 1px solid #666666; background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; } -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} .oauthapp img.noicon { background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ + } + .photo { box-shadow: 2px 2px 5px 0px #000000; -margin: 0px; -border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; -} +margin: 0px;} -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 48px; - height: 48px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} .event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} + content: url('../../../../images/calendar.png');} -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { color: #3465A4; } -.today { - font-weight: bold; - color: #FF0000; -} -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2567,37 +288,3 @@ list-style-type: disc; .photo-top-album-link{ color: #3465A4; } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - diff --git a/view/theme/diabook/diabook-green/style.css b/view/theme/diabook/diabook-green/style.css index e1993764e..09393df82 100644 --- a/view/theme/diabook/diabook-green/style.css +++ b/view/theme/diabook/diabook-green/style.css @@ -1,119 +1,22 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../diabook/style.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; - list-style: none; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +/* Why are these paths so long? They should probably become ../icons/ in the next revision */ .icon.bb-url{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-url.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-url.png");} .icon.quote{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/quote.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-green/icons/quote.png");} .icon.bold{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/bold.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-green/icons/bold.png");} .icon.underline{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/underline.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-green/icons/underline.png");} .icon.italic{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/italic.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-green/icons/italic.png");} .icon.bb-image{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-image.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-image.png");} .icon.bb-video{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-video.png"); - float: right; - margin-top: 2px;} - -.icon.contacts { + background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-video.png");} + .icon.contacts { background-image: url("../../../view/theme/diabook/diabook-green/icons/contacts.png");} .icon.notifications { background-image: url("../../../view/theme/diabook/diabook-green/icons/notifications.png");} @@ -139,668 +42,99 @@ .icon.lock { background-image: url("../../../view/theme/diabook/diabook-green/icons/lock.png");} .icon.unlock { background-image: url("../../../view/theme/diabook/diabook-green/icons/unlock.png");} .icon.language { background-image: url("../../../view/theme/diabook/diabook-green/icons/language.png");} - - -.camera { background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../../../view/theme/diabook/diabook-green/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../../../view/theme/diabook/diabook-green/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../../../view/theme/diabook/diabook-green/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../../../view/theme/diabook/diabook-green/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} -.icon.block {background-image: url("../diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat;} -.icon.block.dim {background-image: url("../diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;} -.icon.ad_drop { background-image: url("../diabook/icons/drop.png"); - display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;} - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png");} +.attach { background-image: url("../../../view/theme/diabook/diabook-green/icons/attach.png");} +.video2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png"); } +.video { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png");} +.audio2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");} +.audio { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");} +.weblink { background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png");} +.globe { background-image: url("../../../view/theme/diabook/diabook-green/icons/globe.png");} +.unglobe { background-image: url("../../../view/theme/diabook/diabook-green/icons/unglobe.png");} +.edit {background-image: url("../../../view/theme/diabook/diabook-green/icons/pencil2.png");} +.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");} .icon.on { background-image: url("../../../view/theme/diabook/diabook-green/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../../../view/theme/diabook/diabook-green/icons/toogle_off.png"); background-repeat: no-repeat;} .icon.prev { background-image: url("../../../view/theme/diabook/diabook-green/icons/prev.png"); background-repeat: no-repeat;} .icon.next { background-image: url("../../../view/theme/diabook/diabook-green/icons/next.png"); background-repeat: no-repeat;} -/*.tagged { background-position: -130px -60px;}*/ +icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png");} +.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png");} +av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ + background-image: url("../../../view/theme/diabook/diabook-green/icons/messages.png");} +.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ + background-image: url("../../../view/theme/diabook/diabook-green/icons/notify.png");} +nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-green/icons/contacts.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 684px; - border-bottom: 1px solid #BDCDD4; - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -#jappix_mini { -right: 45px !important; -} +.menu-profile-icon.home{ + background: url("../../../view/theme/diabook/diabook-green/icons/home.png") no-repeat;} +.menu-profile-icon.photos{ + background: url("../../../view/theme/diabook/diabook-green/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{ + background: url("../../../view/theme/diabook/diabook-green/icons/events.png") no-repeat;} +.menu-profile-icon.notes{ + background: url("../../../view/theme/diabook/diabook-green/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{ + background: url("../../../view/theme/diabook/diabook-green/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{ + background: url("../../../view/theme/diabook/diabook-green/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{ + background: url("../../../view/theme/diabook/diabook-green/icons/pscontacts.png") no-repeat;} -h4 { - font-size: 1.1em; -} -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} -.wall-item-name-link { -/* float: left;*/ -} +a {color: #333333;} -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} +/*bug? This is probably supposed to be green, but we'll keep the original for now and fix later if it is wrong. */ + +#fileas-sidebar .tool:hover {background: #aliceBlue;} -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -/*color*/ -.fakelink { - color: #2c9936; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -.intro-end { - border-bottom: 1px solid black; - clear: both; - margin-bottom: 25px; - padding-bottom: 25px; - width: 75%; - } -.intro-form-end { - clear: both; - } -.intro-fullname { - padding-bottom: 5px; - padding-top: 5px; - } -.intro-wrapper-end { - clear: both; - padding-bottom: 5px; - } -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, -#fileas-sidebar .tool:hover { - background: aliceBlue; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -/*color*/ -.tool a { - color: #2c9936; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ } -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/*color*/ /* header */ header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; - background: #5CD65C; - background-color: #5CD65C; - z-index: 100; --webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: banner; - width: 82%; - margin-left: 25%; + background: #5cd65c; + background-color: #5cd65c; + border-bottom: 1px; + border-bottom-color: black; + border-bottom-style: inset; } + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; } + header #banner #logo-text { - font-size: 20px!important;position: relative!important;top: -4px!important; + font-size: 20px!important;position: relative!important;top: -4px!important; } -/*color*/ + /* messages */ #message-new { background: #2c9936; border: 1px solid #333; - width: 150px; } -#message-new a { - color: #ffffff; - text-align: center; - display: block; - font-weight: bold; - padding: 1em 0px; - text-decoration: none; -} -.mail-list-wrapper { - background-color: #f6f7f8; - margin-bottom: 5px; - width: 100%; - height: auto; - overflow: hidden; -} -.mail-list-wrapper span { - display: block; - float: left; - width: 20%; - overflow: hidden; -} -.mail-list-wrapper .mail-subject { - width: 30%; - padding: 4px 0px 0px 4px; -} -.mail-list-wrapper .mail-subject a { - display: block; -} -.mail-list-wrapper .mail-subject.unseen a { - font-weight: bold; -} -.mail-list-wrapper .mail-date { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-from { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-count { - padding: 4px 4px 0px 4px; - text-align: right; -} -.mail-list-wrapper .mail-delete { - float: right; -} -#mail-display-subject { - background-color: #f6f7f8; - color: #2d2d2d; - margin-bottom: 10px; - width: 100%; - height: auto; - overflow: hidden; -} -#mail-display-subject span { - float: left; - overflow: hidden; - padding: 4px 0px 0px 10px; -} -#mail-display-subject .mail-delete { - float: right; - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -#mail-display-subject:hover .mail-delete { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -/*color*/ + /* nav */ -nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #5CD65C; - color: #1f1f1f; - z-index: 99; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - +nav { background: #5cd65c; + color: #ffffff; + border-bottom: 1px; + border-bottom-color: black; + border-bottom-style: inset; } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -810,95 +144,16 @@ nav .nav-menu-icon:hover { -webkit-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } -/*color*/ -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} + nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; +background-color: #fff; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } + nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; +font-size: 14px; } -nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/messages.png"); - } - -/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/notify.png"); - } - -nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../../../view/theme/diabook/diabook-green/icons/contacts.png"); - } - nav #nav-apps-link.selected { background-color: #fff; moz-border-radius: 5px 5px 0 0; @@ -906,288 +161,18 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } -/*color*/ ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #F5FCF5; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} -/*color*/ + background: #f5fcf5;} + ul.menu-popup a:hover { - background-color: #B8EDB8; /*bdcdd4;*/ + background-color: #b8edb8; color: #000; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 425px !important; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } - /*color*/ .menu-profile-list:hover{ - background: #B8EDB8; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../../../view/theme/diabook/diabook-green/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../../../view/theme/diabook/diabook-green/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../../../view/theme/diabook/diabook-green/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../../../view/theme/diabook/diabook-green/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../../../view/theme/diabook/diabook-green/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../../../view/theme/diabook/diabook-green/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../../../view/theme/diabook/diabook-green/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 180px; - padding: 0px 10px 0px 20px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ + background: #b8edb8; } -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 173px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 173px; - } -aside #side-peoplefind-url { - width: 173px; - } -#contact-block { - overflow: auto; - height: auto; -} -/*color*/ + aside #likes a, a:visited, a:link { color: #2c9936; text-decoration: none; @@ -1198,49 +183,16 @@ aside #likes a:hover{ text-decoration: underline; } -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -#login-submit-wrapper{ - margin-bottom: 12px; - } -aside #login-submit-button{ - margin-left: 0px!important; - } -aside #login-extra-links{ - padding-top: 0px!important; - } + .group_selected { - background: url("../diabook/icons/selected.png") no-repeat left center; + background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; float: left; height: 22px; width: 22px; } .group_unselected { - background: url("../diabook/icons/unselected.png") no-repeat left center; + background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center; float: left; height: 22px; width: 22px; @@ -1277,284 +229,24 @@ transition: all 0.2s ease-in-out; float: right; height: 10px; } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} + #side-bar-photos-albums ul li{ margin-left: 30px; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #3465A4; -} -.widget .tool.selected { - background: url("../../../view/theme/diabook/diabook-green/icons/selected.png") no-repeat left center; -} -/* widget: search */ -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 800px; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 775px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} + color: #3465a4; -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } +.widget .tool.selected { + background: url("../../../view/theme/diabook/diabook-green/icons/selected.png") no-repeat left center;} #birthday-wrapper a { - color: #3465A4; + color: #3465a4; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 775px; - padding-top: 10px; -} -/*color*/ + .tread-wrapper a{ color: #2c9936; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 780px; -} -.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} -.wall-item-photo-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-photo-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-photo-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-photo-container .wall-item-content { - - max-width: 720px; - word-wrap: break-word; - - margin-bottom: 14px; -} -.wall-item-photo-container .wall-item-content img { - max-width: 700px; -} -.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-name { - font-weight: bold; -} -.wall-item-photo-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-photo-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-photo-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-tools a { - float: right; -} -.wall-item-photo-container .wall-item-actions-tools input { - float: right; -} -.wall-item-photo-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 40px; - width: 650px; - border-bottom: 1px solid #D2D2D2; -} -.wall-item-photo-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-photo-container { - display: table; - width: 780px; -} -.my-comment-photo { - width: 48px; - margin-left: 40px; - margin-right: 32px; - } -.comment-edit-preview { - width: 500px; - margin-top: 10px; -} -.comment-edit-text-empty { - width: 500px; - border: 1px solid #D2D2D2; - height: 3.2em; - color: #2d2d2d; -} -.comment-edit-text-full { - font-size: 12.5px; - height: 3.3em; - - border: 1px solid #D2D2D2; - width: 500px; -} -.comment-edit-photo { - margin: 10px 0 0; - display: table-cell; -} - .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { display: table-row; @@ -1654,7 +346,7 @@ body .pageheader{ .wall-item-container .wall-item-actions-tools { float: right; width: 80px; - display: table-cell;done + display: table-cell; } .wall-item-container .wall-item-actions-tools a { float: right; @@ -1669,1264 +361,40 @@ body .pageheader{ width: 700px; border-bottom: 1px solid hsl(198, 21%, 79%); } -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} + .comment-edit-preview { width: 500px; margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; } -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 785px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 783px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title, #profile-jot-form #jot-category { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 785px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 785px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 785px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} -/*color*/ .button.creation2 { background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; cursor: pointer; } -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -/*color*/ + + +/*ACL*/ + ul.tabs li .active { background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -//settings tabs -ul.rs_tabs { - list-style-type: none; - font-size: 11px; -} -ul.rs_tabs li { - float: left; - margin-bottom: 30px; - clear: both; -} -/*color*/ + box-shadow: 2px 2px 2px #CFCFCF;} + ul.rs_tabs li .selected { - background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - font-size: 13px; -} -.rs_tabs { - list-style-type: none; - font-size: 11px; - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.rs_tab.button { - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: bolder; - padding: 3px; - color: #333333; - text-decoration: none; - } -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -.suggest-select { -width: 500px; -height: 350px; - } -.message-to-select { - width: 400px; - height: 150px; - } -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} + background-color: #2c9936;} -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } +/*Photo */ -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { -position: relative; -width: 400px; -padding: 20px; -padding-top: 10px; -margin: 0 0px; -margin-bottom: 10px; -background-color: white; --webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); --moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -} -.vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-description { -margin-left: 10px; -margin-right: 10px; -font-size: 1.1em; -font-weight: bolder; -} -.vevent .event-start, .vevent .event-end { - -margin-right: 20px; -margin-bottom: 2px; -margin-top: 2px; -font-size: 0.9em; -text-align: left; -} -.event-start .dtstart, .event-end .dtend { -float: right; -} - - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url("../diabook/icons/events2.png") !important; - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { - color: #3465A4; - } -.today { - font-weight: bold; - color: #FF0000; + color: #3465a4; } -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 10px; - } -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -section .directory-item dl { - height: auto; - overflow: auto; -} -section .directory-item dt { - float: left; - margin-left: 0px; - text-align: right; - color: #999; -} -section .directory-item dd { - float: left; - margin-left: 5px; -} -.directory-profile-wrapper { - float: left; - max-height: 178px; - overflow: hidden; - width: 635px; -} -.directory-copy-wrapper { - float: left; - overflow: hidden; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 800px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} - -section .directory-photo-wrapper { - float: left; - height: 200px; - width: 165px; -} -.contact-name { - font-weight: bold; - font-size: 18px; - margin-bottom: -3px; - text-align: left; -} -.contact-details { - color: #999999; -} -.page-type { - font-size: 10px; - font-style: italic; -} -.directory-detailscolumn-wrapper { - float: left; - width: 305px; - margin-right: 10px; -} -.directory-profile-wrapper dl { - margin-top: 3px; - margin-bottom: 3px; -} -.directory-profile-title { - font-weight: bold; - margin-bottom: 3px; - font-size: 14px; -} -#side-bar-photos-albums{ - margin-top: 15px; -} -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2935,39 +403,5 @@ section .directory-photo-wrapper { background-color: #EEE; } .photo-top-album-link{ - color: #3465A4; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - + color: #3465a4; +} \ No newline at end of file From a7982caf7123e7353ef32deb0fbb93e594e686f2 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 18 Nov 2012 22:06:53 +0000 Subject: [PATCH 28/30] Diabook - should probably add *all* the files... --- .../diabook/diabook-green/style-network.css | 2631 +---------------- 1 file changed, 119 insertions(+), 2512 deletions(-) diff --git a/view/theme/diabook/diabook-green/style-network.css b/view/theme/diabook/diabook-green/style-network.css index 6fffec942..712982539 100644 --- a/view/theme/diabook/diabook-green/style-network.css +++ b/view/theme/diabook/diabook-green/style-network.css @@ -1,88 +1,6 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ - -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +@import url('../../diabook/style-network.css'); +/* There seem to be a stupid number of icons. Can we do this better? Are they all actually used? */ .icon.contacts { background-image: url("../diabook-green/icons/contacts.png");} .icon.notifications { @@ -93,7 +11,6 @@ background-image: url("../diabook-green/icons/messages.png");} .icon.community { background-image: url("../diabook-green/icons/community.png");} - .icon.drop { background-image: url("../diabook-green/icons/drop.png");} .icon.drophide { background-image: url("../diabook-green/icons/drop.png");} .icon.dislike { background-image: url("../diabook-green/icons/dislike.png");} @@ -109,657 +26,124 @@ .icon.lock { background-image: url("../diabook-green/icons/lock.png");} .icon.unlock { background-image: url("../diabook-green/icons/unlock.png");} .icon.language { background-image: url("../diabook-green/icons/language.png");} - - -.camera { background-image: url("../diabook-green/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-green/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-green/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-green/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-green/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-green/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-green/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-green/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-green/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-green/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-green/icons/camera.png");} +.attach { background-image: url("../diabook-green/icons/attach.png");} +.video2 { background-image: url("../diabook-green/icons/video.png");} +.video { background-image: url("../diabook-green/icons/video.png");} +.audio2 { background-image: url("../diabook-green/icons/audio.png");} +.audio { background-image: url("../diabook-green/icons/audio.png");} +.weblink { background-image: url("../diabook-green/icons/weblink.png");} +.globe { background-image: url("../diabook-green/icons/globe.png");} +.unglobe { background-image: url("../diabook-green/icons/unglobe.png");} +.edit {background-image: url("../diabook-green/icons/pencil2.png");} .icon.on { background-image: url("../diabook-green/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-green/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ - -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - +.attachtype {background-image: url('../../../../images/content-types.png');} .icon.border.camera{ - background-image: url("../diabook-green/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-green/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } + background-image: url("../diabook-green/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-green/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} +.hide-comments-outer {background-color: #fff;} -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 1px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - background-color: #fff; - padding: 8px; -} +a {color: #333333;} -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #2c9936; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} #saved-search-ul .tool:hover, #nets-sidebar .tool:hover, #sidebar-group-list .tool:hover , #fileas-sidebar .tool:hover { background: aliceBlue; } -.tool .label { - float: left; -} -.tool .action { - float: right; -} + .tool a { color: #2c9936; } -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ -header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; - background: #5CD65C; - background-color: #5CD65C; - z-index: 100; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); +nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { +color: #fff; } -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; + +/* popup notifications */ +div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + + +header { + background: #5cd65c; + background-color: #5cd65c; } + +header #site-location {display: none;} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { - color: black; - text-decoration: none; - outline: none; - vertical-align: middle; + color: #fff; font-weight: bolder; - margin-left: 3px; } -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #5CD65C; + background: #5cd65c; color: #000; - z-index: 99; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -} -nav a, -nav a:active, -nav a:visited, -nav a:link, -nav a:hover { - /*color: #1f1f1f;*/ - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -nav .nav-menu-icon:hover { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} - -/*color*/ -nav .nav-menu-icon.selected { - background-color: #fff; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} -nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; + nav .nav-notify { border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; -} + +nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;} nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-green/icons/messages.png"); - } + background-image: url("../diabook-green/icons/messages.png");} /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-green/icons/notify.png"); - } + background-image: url("../diabook-green/icons/notify.png");} nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-green/icons/contacts.png"); - } + background-image: url("../diabook-green/icons/contacts.png");} nav #nav-apps-link.selected { background-color: #fff; @@ -768,1327 +152,66 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #F5FCF5; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #B8EDB8; /*bdcdd4;*/ + background-color: #b8edb8; color: #000; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} +.menu-profile-list:hover{background: #b8edb8;} -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} +.menu-profile-icon.home{background: url("../diabook-green/icons/home.png") no-repeat;} +.menu-profile-icon.photos{background: url("../diabook-green/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{background: url("../diabook-green/icons/events.png") no-repeat;} +.menu-profile-icon.notes{background: url("../diabook-green/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{background: url("../diabook-green/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{background: url("../diabook-green/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{background: url("../diabook-green/icons/pscontacts.png") no-repeat;} -/*profile_side*/ -#profile_side { - margin-bottom: 30px; - -} -#profile_side a{ - color: #333; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #B8EDB8; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../diabook-green/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../diabook-green/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../diabook-green/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../diabook-green/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../diabook-green/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../diabook-green/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../diabook-green/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} +aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; --moz-border-bottom-colors: #dbdbdb; - -moz-border-top-colors: #999; - -moz-border-left-colors: #999; - -moz-border-right-colors: #dbdbdb; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums ul li a{ - color: #3465A4; -} -.widget .tool.selected { - background: url("../diabook-green/icons/selected.png") no-repeat left center; -} -/* widget: search */ -span.sbox_l { - background: white url('../diabook-green/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - -} +#side-bar-photos-albums li{list-style-type: disc;} +#side-bar-photos-albums ul li{margin-left: 30px; + padding-left: 0px;} +#side-bar-photos-albums ul li a{color: #3465a4;} -span.sbox_r { - background: white url('../diabook-green/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; -} -span.sbox input { - background: white url('../diabook-green/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: auto; - padding: 0px 0px 0px 12px; -} +.widget .tool.selected {background: url("../diabook-green/icons/selected.png") no-repeat left center;} +span.sbox_l {background: white url('../diabook-green/icons/srch_l.gif') no-repeat top left;} +span.sbox_r {background: white url('../diabook-green/icons/srch_r.gif') no-repeat top left;} +span.sbox input {background: white url('../diabook-green/icons/srch_bg.gif') repeat-x top left;} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} +right_aside a{color: #3465a4;} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } -#birthday-wrapper a { - color: #3465A4; - } - -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} -right_aside a{color: #3465A4;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} .close_box { background-image: url("../diabook-green/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; - } -.close_box:hover { - background-image: url("../diabook-green/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; - } + cursor: pointer;} +.close_box:hover {background-image: url("../diabook-green/icons/close_box.png");} -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} -.tread-wrapper a{ - color: #2c9936; -} +.tread-wrapper a{color: #2c9936;} -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} +.wall-item-comment-wrapper {background-color: #fff; + width: 500px;} -.wall-item-container { - display: table; - width: 580px; -} +.button.creation2 {background-color: #2c9936;} +#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;} -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} +#acl-showall {background-image: url("../../../../images/show_all_off.png");} -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} +#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");} -.wall-item-container .wall-item-content { +.acl-button-show {background-image: url("../../../../images/show_off.png");} +.acl-button-hide {background-image: url("../../../../images/hide_off.png");} +.acl-button-show.selected {background-image: url("../../../../images/show_on.png");} +.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");} - max-width: 420px; - word-wrap: break-word; +ul.tabs li .active {background-color: #2c9936;} +.field .onoff a {background-image: url("../../../../images/onoff.jpg");} -} +.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");} -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} - -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; - background-color: #fff; - width: 500px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} -.button.creation2 { - background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -ul.tabs li .active { - background-color: #2c9936; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; @@ -2096,498 +219,17 @@ border-radius: 10px; height: 145px !important; width: 145px !important; } + .lframe { float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} -/* page footer */ -footer { - height: 100px; - display: table-row; -} +.event-description:before {content: url('../../../../images/calendar.png');} -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ +.calendar.eventcal a {color: #3465a4;} -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.calendar.eventcal a { - color: #3465A4; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2595,40 +237,5 @@ list-style-type: disc; padding-left: 3px; background-color: #EEE; } -.photo-top-album-link{ - color: #3465A4; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} +.photo-top-album-link{color: #3465a4;} From f644cbb30bdf00d9a25e2b966a38422a3bc45e7b Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 18 Nov 2012 22:52:44 +0000 Subject: [PATCH 29/30] Diabook pink --- .../diabook/diabook-pink/style-network.css | 2635 +--------------- .../diabook/diabook-pink/style-profile.css | 2515 +-------------- view/theme/diabook/diabook-pink/style.css | 2763 +---------------- 3 files changed, 321 insertions(+), 7592 deletions(-) diff --git a/view/theme/diabook/diabook-pink/style-network.css b/view/theme/diabook/diabook-pink/style-network.css index 3c236c0e4..dc100a888 100644 --- a/view/theme/diabook/diabook-pink/style-network.css +++ b/view/theme/diabook/diabook-pink/style-network.css @@ -1,88 +1,6 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ - -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +@import url('../../diabook/style-network.css'); +/* There seem to be a stupid number of icons. Can we do this better? Are they all actually used? */ .icon.contacts { background-image: url("../diabook-pink/icons/contacts.png");} .icon.notifications { @@ -93,7 +11,6 @@ background-image: url("../diabook-pink/icons/messages.png");} .icon.community { background-image: url("../diabook-pink/icons/community.png");} - .icon.drop { background-image: url("../diabook-pink/icons/drop.png");} .icon.drophide { background-image: url("../diabook-pink/icons/drop.png");} .icon.dislike { background-image: url("../diabook-pink/icons/dislike.png");} @@ -109,657 +26,124 @@ .icon.lock { background-image: url("../diabook-pink/icons/lock.png");} .icon.unlock { background-image: url("../diabook-pink/icons/unlock.png");} .icon.language { background-image: url("../diabook-pink/icons/language.png");} - - -.camera { background-image: url("../diabook-pink/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-pink/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-pink/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-pink/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-pink/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-pink/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-pink/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-pink/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-pink/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-pink/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-pink/icons/camera.png");} +.attach { background-image: url("../diabook-pink/icons/attach.png");} +.video2 { background-image: url("../diabook-pink/icons/video.png");} +.video { background-image: url("../diabook-pink/icons/video.png");} +.audio2 { background-image: url("../diabook-pink/icons/audio.png");} +.audio { background-image: url("../diabook-pink/icons/audio.png");} +.weblink { background-image: url("../diabook-pink/icons/weblink.png");} +.globe { background-image: url("../diabook-pink/icons/globe.png");} +.unglobe { background-image: url("../diabook-pink/icons/unglobe.png");} +.edit {background-image: url("../diabook-pink/icons/pencil2.png");} .icon.on { background-image: url("../diabook-pink/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-pink/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ - -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - +.attachtype {background-image: url('../../../../images/content-types.png');} .icon.border.camera{ - background-image: url("../diabook-pink/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-pink/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } + background-image: url("../diabook-pink/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-pink/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} +.hide-comments-outer {background-color: #fff;} -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 1px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - background-color: #fff; - padding: 8px; -} +a {color: #333333;} -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #D02B55; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} #saved-search-ul .tool:hover, #nets-sidebar .tool:hover, #sidebar-group-list .tool:hover , #fileas-sidebar .tool:hover { background: aliceBlue; } -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: #D02B55; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ -header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; - background: #FFC1CA; - background-color: #FFC1CA; - z-index: 100; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); +.tool a { + color: #d02b55; } -header #site-location { - display: none; + +nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { +color: #fff; } -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; + +/* popup notifications */ +div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + + +header { + background: #ffc1ca; + background-color: #ffc1ca; } + +header #site-location {display: none;} + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: black; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; - margin-left: 3px; } -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #FFC1CA; + background: #ffc1ca; color: #000; - z-index: 99; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -} -nav a, -nav a:active, -nav a:visited, -nav a:link, -nav a:hover { - /*color: #1f1f1f;*/ - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -nav .nav-menu-icon:hover { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} - -/*color*/ -nav .nav-menu-icon.selected { - background-color: #FFE9EC; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} -nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; + nav .nav-notify { border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; -} + +nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;} nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-pink/icons/messages.png"); - } + background-image: url("../diabook-pink/icons/messages.png");} /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-pink/icons/notify.png"); - } + background-image: url("../diabook-pink/icons/notify.png");} nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-pink/icons/contacts.png"); - } + background-image: url("../diabook-pink/icons/contacts.png");} nav #nav-apps-link.selected { background-color: #fff; @@ -768,1327 +152,66 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #FFE9EC; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #D02B55; /*bdcdd4;*/ - color: #fff; -} -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ - -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; + background-color: #d02b55; + color: #000; } -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} +.menu-profile-list:hover{background: #d02b55;} -/*profile_side*/ -#profile_side { - margin-bottom: 30px; - -} -#profile_side a{ - color: #333; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #FFF4F6; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../diabook-pink/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../diabook-pink/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../diabook-pink/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../diabook-pink/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../diabook-pink/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../diabook-pink/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../diabook-pink/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} +.menu-profile-icon.home{background: url("../diabook-pink/icons/home.png") no-repeat;} +.menu-profile-icon.photos{background: url("../diabook-pink/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{background: url("../diabook-pink/icons/events.png") no-repeat;} +.menu-profile-icon.notes{background: url("../diabook-pink/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{background: url("../diabook-pink/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{background: url("../diabook-pink/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{background: url("../diabook-pink/icons/pscontacts.png") no-repeat;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; --moz-border-bottom-colors: #dbdbdb; - -moz-border-top-colors: #999; - -moz-border-left-colors: #999; - -moz-border-right-colors: #dbdbdb; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums ul li a{ - color: #3465A4; -} -.widget .tool.selected { - background: url("../diabook-pink/icons/selected.png") no-repeat left center; -} -/* widget: search */ -span.sbox_l { - background: white url('../diabook-pink/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - -} +aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;} -span.sbox_r { - background: white url('../diabook-pink/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; -} +#side-bar-photos-albums li{list-style-type: disc;} +#side-bar-photos-albums ul li{margin-left: 30px; + padding-left: 0px;} +#side-bar-photos-albums ul li a{color: #3465a4;} -span.sbox input { - background: white url('../diabook-pink/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: auto; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} +.widget .tool.selected {background: url("../diabook-pink/icons/selected.png") no-repeat left center;} +span.sbox_l {background: white url('../diabook-pink/icons/srch_l.gif') no-repeat top left;} +span.sbox_r {background: white url('../diabook-pink/icons/srch_r.gif') no-repeat top left;} +span.sbox input {background: white url('../diabook-pink/icons/srch_bg.gif') repeat-x top left;} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } -#birthday-wrapper a { - color: #3465A4; - } +right_aside a{color: #3465a4;} -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} -right_aside a{color: #3465A4;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} .close_box { background-image: url("../diabook-pink/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; - } -.close_box:hover { - background-image: url("../diabook-pink/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; - } + cursor: pointer;} +.close_box:hover {background-image: url("../diabook-pink/icons/close_box.png");} -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} -.tread-wrapper a{ - color: #D02B55; -} +.tread-wrapper a{color: #d02b55;} -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} +.wall-item-comment-wrapper {background-color: #fff; + width: 500px;} -.wall-item-container { - display: table; - width: 580px; -} +.button.creation2 {background-color: #d02b55;} +#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;} -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} +#acl-showall {background-image: url("../../../../images/show_all_off.png");} -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} +#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");} -.wall-item-container .wall-item-content { +.acl-button-show {background-image: url("../../../../images/show_off.png");} +.acl-button-hide {background-image: url("../../../../images/hide_off.png");} +.acl-button-show.selected {background-image: url("../../../../images/show_on.png");} +.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");} - max-width: 420px; - word-wrap: break-word; +ul.tabs li .active {background-color: #d02b55;} +.field .onoff a {background-image: url("../../../../images/onoff.jpg");} -} +.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");} -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} - -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; - background-color: #fff; - width: 500px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} -.button.creation2 { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -ul.tabs li .active { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; @@ -2096,498 +219,17 @@ border-radius: 10px; height: 145px !important; width: 145px !important; } + .lframe { float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} -/* page footer */ -footer { - height: 100px; - display: table-row; -} +.event-description:before {content: url('../../../../images/calendar.png');} -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ +.calendar.eventcal a {color: #3465a4;} -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.calendar.eventcal a { - color: #3465A4; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2595,40 +237,5 @@ list-style-type: disc; padding-left: 3px; background-color: #EEE; } -.photo-top-album-link{ - color: #3465A4; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} +.photo-top-album-link{color: #3465a4;} diff --git a/view/theme/diabook/diabook-pink/style-profile.css b/view/theme/diabook/diabook-pink/style-profile.css index cf5fd270c..d230f1d68 100644 --- a/view/theme/diabook/diabook-pink/style-profile.css +++ b/view/theme/diabook/diabook-pink/style-profile.css @@ -1,99 +1,10 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../../diabook/style-profile.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ - -.icon.contacts { - background-image: url("../diabook-pink/icons/contacts.png");} -.icon.notifications { - background-image: url("../diabook-pink/icons/notifications.png");} -.icon.notify { - background-image: url("../diabook-pink/icons/notify.png");} -.icon.messages { - background-image: url("../diabook-pink/icons/messages.png");} -.icon.community { - background-image: url("../diabook-pink/icons/community.png");} - + .icon.contacts {background-image: url("../diabook-pink/icons/contacts.png");} +.icon.notifications {background-image: url("../diabook-pink/icons/notifications.png");} +.icon.notify {background-image: url("../diabook-pink/icons/notify.png");} +.icon.messages {background-image: url("../diabook-pink/icons/messages.png");} +.icon.community {background-image: url("../diabook-pink/icons/community.png");} .icon.drop { background-image: url("../diabook-pink/icons/drop.png");} .icon.drophide { background-image: url("../diabook-pink/icons/drop.png");} .icon.dislike { background-image: url("../diabook-pink/icons/dislike.png");} @@ -109,558 +20,105 @@ .icon.lock { background-image: url("../diabook-pink/icons/lock.png");} .icon.unlock { background-image: url("../diabook-pink/icons/unlock.png");} .icon.language { background-image: url("../diabook-pink/icons/language.png");} - - -.camera { background-image: url("../diabook-pink/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-pink/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-pink/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-pink/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-pink/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-pink/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-pink/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-pink/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-pink/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-pink/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-pink/icons/camera.png");} +.attach { background-image: url("../diabook-pink/icons/attach.png");} +.video2 { background-image: url("../diabook-pink/icons/video.png");} +.video { background-image: url("../diabook-pink/icons/video.png");} +.audio2 { background-image: url("../diabook-pink/icons/audio.png");} +.audio { background-image: url("../diabook-pink/icons/audio.png");} +.weblink { background-image: url("../diabook-pink/icons/weblink.png");} +.globe { background-image: url("../diabook-pink/icons/globe.png");} +.unglobe { background-image: url("../diabook-pink/icons/unglobe.png");} +.edit {background-image: url("../diabook-pink/icons/pencil2.png");} .icon.on { background-image: url("../diabook-pink/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-pink/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ +.attachtype {background-image: url('../../../../images/content-types.png');} +.icon.border.camera{background-image: url("../diabook-pink/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-pink/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} +a {color: #333333;} -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } -.icon.drop, .icon.drophide { - float: left; -} +#sidebar-group-list .tool:hover {background: #EEE;} -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../diabook-pink/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-pink/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - border-top: 1px solid #BDCDD4; - - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #D02B55; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover { - background: #EEE; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ + background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; - background: #FFC1CA; - background-color: #FFC1CA; - z-index: 100; --webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; + background: #ffc1ca; + background-color: #ffc1ca; } + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { - color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; -} -/* nav */ + color: #ffffff; + font-weight: bolder;} + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #FFC1CA; + background: #ffc1ca; color: #1f1f1f; - z-index: 99; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { - color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} + color: #1f1f1f;} + nav #banner a, nav #banner a:active, nav #banner a:visited, nav #banner a:link, nav #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -671,82 +129,10 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -/*color*/ -nav .nav-menu-icon.selected { - background-color: #FFE9EC; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; -} nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ background-image: url("../diabook-pink/icons/messages.png"); @@ -759,7 +145,7 @@ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selecte nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ background-image: url("../diabook-pink/icons/contacts.png"); } - + nav #nav-apps-link.selected { background-color: #fff; moz-border-radius: 5px 5px 0 0; @@ -767,169 +153,11 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #D02B55; /*bdcdd4;*/ - color: #fff; -} -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ - -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; + background-color: #d02b55; + color: #000; } -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - padding-top: 3px; - padding-bottom: 3px; - padding-left: 16px; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #FFF4F6; - } -.menu-profile-list-item{ - padding-left: 5px; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ .menu-profile-list.home{ background: url("../diabook-pink/icons/home.png") no-repeat; } @@ -949,172 +177,10 @@ ul.menu-popup .empty { background: url("../diabook-pink/icons/com_side.png") no-repeat; } -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} - -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 48px; - height: 48px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} + } + #side-bar-photos-albums li{ list-style-type: disc; } @@ -1123,782 +189,57 @@ list-style-type: disc; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #3465A4; + color: #3465a4; } + .widget .tool.selected { background: url("../diabook-pink/icons/selected.png") no-repeat left center; } -/* widget: search */ + span.sbox_l { background: white url('../diabook-pink/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - } span.sbox_r { background: white url('../diabook-pink/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; } span.sbox input { background: white url('../diabook-pink/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 611px; - padding: 0px 0px 0px 12px; } -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} - -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } #birthday-wrapper a { color: #3465A4; } -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - /*padding-right: 10px;*/ - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} right_aside a{color: #3465A4;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} + .close_box { background-image: url("../diabook-pink/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; } .close_box:hover { background-image: url("../diabook-pink/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} + + .tread-wrapper a{ - color: #D02B55; -} - -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 580px; + color: #d02b55; } -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} - -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} - -.wall-item-container .wall-item-content { - - max-width: 420px; - word-wrap: break-word; - - -} - -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} .button.creation2 { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; - cursor: pointer; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} + background-color: #d02b55;} + #acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; + background: #ffffff url("../../../../images/search_18.png") no-repeat right center; } + #acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} + background-image: url("../../../../images/show_all_off.png");} + #acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} + background-image: url("../../../../images/show_all_on.png");} + .acl-button-show { background-image: url("../../../../images/show_off.png"); } @@ -1906,657 +247,37 @@ transition: all 0.2s ease-in-out; background-image: url("../../../../images/hide_off.png"); } .acl-button-show.selected { - color: #000000; - background-color: #9ade00; background-image: url("../../../../images/show_on.png"); } .acl-button-hide.selected { - color: #000000; - background-color: #ff4141; background-image: url("../../../../images/hide_on.png"); } -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + ul.tabs li .active { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} + background-color: #d02b55;} + .field .onoff a { - display: block; - border: 1px solid #666666; background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; } -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} .oauthapp img.noicon { background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ + } + .photo { box-shadow: 2px 2px 5px 0px #000000; -margin: 0px; -border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; -} +margin: 0px;} -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 48px; - height: 48px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} .event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} + content: url('../../../../images/calendar.png');} -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { color: #3465A4; } -.today { - font-weight: bold; - color: #FF0000; -} -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2567,37 +288,3 @@ list-style-type: disc; .photo-top-album-link{ color: #3465A4; } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - diff --git a/view/theme/diabook/diabook-pink/style.css b/view/theme/diabook/diabook-pink/style.css index e9bcd53d0..c958c6028 100644 --- a/view/theme/diabook/diabook-pink/style.css +++ b/view/theme/diabook/diabook-pink/style.css @@ -1,119 +1,22 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../diabook/style.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; - list-style: none; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +/* Why are these paths so long? They should probably become ../icons/ in the next revision */ .icon.bb-url{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-url.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-url.png");} .icon.quote{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/quote.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-pink/icons/quote.png");} .icon.bold{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/bold.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-pink/icons/bold.png");} .icon.underline{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/underline.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-pink/icons/underline.png");} .icon.italic{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/italic.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-pink/icons/italic.png");} .icon.bb-image{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-image.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-image.png");} .icon.bb-video{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-video.png"); - float: right; - margin-top: 2px;} - -.icon.contacts { + background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-video.png");} + .icon.contacts { background-image: url("../../../view/theme/diabook/diabook-pink/icons/contacts.png");} .icon.notifications { background-image: url("../../../view/theme/diabook/diabook-pink/icons/notifications.png");} @@ -139,668 +42,99 @@ .icon.lock { background-image: url("../../../view/theme/diabook/diabook-pink/icons/lock.png");} .icon.unlock { background-image: url("../../../view/theme/diabook/diabook-pink/icons/unlock.png");} .icon.language { background-image: url("../../../view/theme/diabook/diabook-pink/icons/language.png");} - - -.camera { background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../../../view/theme/diabook/diabook-pink/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../../../view/theme/diabook/diabook-pink/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../../../view/theme/diabook/diabook-pink/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../../../view/theme/diabook/diabook-pink/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} -.icon.block {background-image: url("../diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat;} -.icon.block.dim {background-image: url("../diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;} -.icon.ad_drop { background-image: url("../diabook/icons/drop.png"); - display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;} - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png");} +.attach { background-image: url("../../../view/theme/diabook/diabook-pink/icons/attach.png");} +.video2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png"); } +.video { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png");} +.audio2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");} +.audio { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");} +.weblink { background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png");} +.globe { background-image: url("../../../view/theme/diabook/diabook-pink/icons/globe.png");} +.unglobe { background-image: url("../../../view/theme/diabook/diabook-pink/icons/unglobe.png");} +.edit {background-image: url("../../../view/theme/diabook/diabook-pink/icons/pencil2.png");} +.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");} .icon.on { background-image: url("../../../view/theme/diabook/diabook-pink/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../../../view/theme/diabook/diabook-pink/icons/toogle_off.png"); background-repeat: no-repeat;} .icon.prev { background-image: url("../../../view/theme/diabook/diabook-pink/icons/prev.png"); background-repeat: no-repeat;} .icon.next { background-image: url("../../../view/theme/diabook/diabook-pink/icons/next.png"); background-repeat: no-repeat;} -/*.tagged { background-position: -130px -60px;}*/ +icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png");} +.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png");} +av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ + background-image: url("../../../view/theme/diabook/diabook-pink/icons/messages.png");} +.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ + background-image: url("../../../view/theme/diabook/diabook-pink/icons/notify.png");} +nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-pink/icons/contacts.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 684px; - border-bottom: 1px solid #BDCDD4; - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -#jappix_mini { -right: 45px !important; -} +.menu-profile-icon.home{ + background: url("../../../view/theme/diabook/diabook-pink/icons/home.png") no-repeat;} +.menu-profile-icon.photos{ + background: url("../../../view/theme/diabook/diabook-pink/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{ + background: url("../../../view/theme/diabook/diabook-pink/icons/events.png") no-repeat;} +.menu-profile-icon.notes{ + background: url("../../../view/theme/diabook/diabook-pink/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{ + background: url("../../../view/theme/diabook/diabook-pink/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{ + background: url("../../../view/theme/diabook/diabook-pink/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{ + background: url("../../../view/theme/diabook/diabook-pink/icons/pscontacts.png") no-repeat;} -h4 { - font-size: 1.1em; -} -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} -.wall-item-name-link { -/* float: left;*/ -} +a {color: #333333;} -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} +/*bug? This is probably supposed to be green, but we'll keep the original for now and fix later if it is wrong. */ + +#fileas-sidebar .tool:hover {background: #aliceBlue;} -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -/*color*/ -.fakelink { - color: #D02B55; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -.intro-end { - border-bottom: 1px solid black; - clear: both; - margin-bottom: 25px; - padding-bottom: 25px; - width: 75%; - } -.intro-form-end { - clear: both; - } -.intro-fullname { - padding-bottom: 5px; - padding-top: 5px; - } -.intro-wrapper-end { - clear: both; - padding-bottom: 5px; - } -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, -#fileas-sidebar .tool:hover { - background: aliceBlue; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -/*color*/ -.tool a { - color: #D02B55; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ } -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/*color*/ /* header */ header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; - background: #FFC1CA; - background-color: #FFC1CA; - z-index: 100; --webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: banner; - width: 82%; - margin-left: 25%; + background: #ffc1ca; + background-color: #ffc1ca; + border-bottom: 1px; + border-bottom-color: black; + border-bottom-style: inset; } + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; - margin-left: 3px; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; } + header #banner #logo-text { - font-size: 20px!important;position: relative!important;top: -4px!important; + font-size: 20px!important;position: relative!important;top: -4px!important; } + /* messages */ -/*color*/ #message-new { - background: #D02B55; + background: #d02b55; border: 1px solid #333; - width: 150px; } -#message-new a { - color: #ffffff; - text-align: center; - display: block; - font-weight: bold; - padding: 1em 0px; - text-decoration: none; -} -.mail-list-wrapper { - background-color: #f6f7f8; - margin-bottom: 5px; - width: 100%; - height: auto; - overflow: hidden; -} -.mail-list-wrapper span { - display: block; - float: left; - width: 20%; - overflow: hidden; -} -.mail-list-wrapper .mail-subject { - width: 30%; - padding: 4px 0px 0px 4px; -} -.mail-list-wrapper .mail-subject a { - display: block; -} -.mail-list-wrapper .mail-subject.unseen a { - font-weight: bold; -} -.mail-list-wrapper .mail-date { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-from { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-count { - padding: 4px 4px 0px 4px; - text-align: right; -} -.mail-list-wrapper .mail-delete { - float: right; -} -#mail-display-subject { - background-color: #f6f7f8; - color: #2d2d2d; - margin-bottom: 10px; - width: 100%; - height: auto; - overflow: hidden; -} -#mail-display-subject span { - float: left; - overflow: hidden; - padding: 4px 0px 0px 10px; -} -#mail-display-subject .mail-delete { - float: right; - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -#mail-display-subject:hover .mail-delete { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -/*color*/ + /* nav */ -nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #FFC1CA; +nav { background: #ffc1ca; color: #1f1f1f; - z-index: 99; - -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7); - + border-bottom: 1px; + border-bottom-color: black; + border-bottom-style: inset; } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -810,95 +144,16 @@ nav .nav-menu-icon:hover { -webkit-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } -/*color*/ -nav .nav-menu-icon.selected { - background-color: #FFE9EC; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} + nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; +background-color: #fff; border: 1px solid black; } -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } + nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 14px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; +font-size: 14px; } -nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/messages.png"); - } - -/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/notify.png"); - } - -nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../../../view/theme/diabook/diabook-pink/icons/contacts.png"); - } - nav #nav-apps-link.selected { background-color: #fff; moz-border-radius: 5px 5px 0 0; @@ -906,290 +161,20 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } -/*color*/ ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #FFE9EC; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} -/*color*/ + background: #ffe9ec;} + ul.menu-popup a:hover { - background-color: #D02B55; /*bdcdd4;*/ + background-color: #d02b55; color: #fff; } -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 425px !important; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; -} - -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } - /*color*/ .menu-profile-list:hover{ - background: #FFF4F6; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../../../view/theme/diabook/diabook-pink/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../../../view/theme/diabook/diabook-pink/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../../../view/theme/diabook/diabook-pink/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../../../view/theme/diabook/diabook-pink/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../../../view/theme/diabook/diabook-pink/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../../../view/theme/diabook/diabook-pink/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../../../view/theme/diabook/diabook-pink/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 180px; - padding: 0px 10px 0px 20px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ + background: #fff4f6; } -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 173px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 173px; - } -aside #side-peoplefind-url { - width: 173px; - } -#contact-block { - overflow: auto; - height: auto; -} -/*color*/ + aside #likes a, a:visited, a:link { - color: #D02B55; + color: #d02b55; text-decoration: none; cursor: pointer; @@ -1198,49 +183,16 @@ aside #likes a:hover{ text-decoration: underline; } -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -#login-submit-wrapper{ - margin-bottom: 12px; - } -aside #login-submit-button{ - margin-left: 0px!important; - } -aside #login-extra-links{ - padding-top: 0px!important; - } + .group_selected { - background: url("../diabook/icons/selected.png") no-repeat left center; + background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; float: left; height: 22px; width: 22px; } .group_unselected { - background: url("../diabook/icons/unselected.png") no-repeat left center; + background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center; float: left; height: 22px; width: 22px; @@ -1277,284 +229,25 @@ transition: all 0.2s ease-in-out; float: right; height: 10px; } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} + #side-bar-photos-albums ul li{ margin-left: 30px; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #3465A4; + color: #3465a4; } -.widget .tool.selected { - background: url("../../../view/theme/diabook/diabook-pink/icons/selected.png") no-repeat left center; -} -/* widget: search */ -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 800px; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 775px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } +.widget .tool.selected { + background: url("../../../view/theme/diabook/diabook-pink/icons/selected.png") no-repeat left center;} #birthday-wrapper a { - color: #3465A4; + color: #3465a4; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 775px; - padding-top: 10px; -} -/*color*/ + .tread-wrapper a{ - color: #D02B55; + color: #d02b55; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 780px; -} -.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} -.wall-item-photo-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-photo-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-photo-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-photo-container .wall-item-content { - - max-width: 720px; - word-wrap: break-word; - - margin-bottom: 14px; -} -.wall-item-photo-container .wall-item-content img { - max-width: 700px; -} -.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-name { - font-weight: bold; -} -.wall-item-photo-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-photo-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-photo-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-tools a { - float: right; -} -.wall-item-photo-container .wall-item-actions-tools input { - float: right; -} -.wall-item-photo-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 40px; - width: 650px; - border-bottom: 1px solid #D2D2D2; -} -.wall-item-photo-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-photo-container { - display: table; - width: 780px; -} -.my-comment-photo { - width: 48px; - margin-left: 40px; - margin-right: 32px; - } -.comment-edit-preview { - width: 500px; - margin-top: 10px; -} -.comment-edit-text-empty { - width: 500px; - border: 1px solid #D2D2D2; - height: 3.2em; - color: #2d2d2d; -} -.comment-edit-text-full { - font-size: 12.5px; - height: 3.3em; - - border: 1px solid #D2D2D2; - width: 500px; -} -.comment-edit-photo { - margin: 10px 0 0; - display: table-cell; -} - .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { display: table-row; @@ -1654,7 +347,7 @@ body .pageheader{ .wall-item-container .wall-item-actions-tools { float: right; width: 80px; - display: table-cell;done + display: table-cell; } .wall-item-container .wall-item-actions-tools a { float: right; @@ -1669,1264 +362,40 @@ body .pageheader{ width: 700px; border-bottom: 1px solid hsl(198, 21%, 79%); } -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} + .comment-edit-preview { width: 500px; margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; } -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 785px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 783px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title, #profile-jot-form #jot-category { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 785px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 785px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 785px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} -/*color*/ .button.creation2 { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; + background-color: #d02b55; cursor: pointer; } -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -/*color*/ + + +/*ACL*/ + ul.tabs li .active { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -//settings tabs -ul.rs_tabs { - list-style-type: none; - font-size: 11px; -} -ul.rs_tabs li { - float: left; - margin-bottom: 30px; - clear: both; -} -/*color*/ + background-color: #d02b55; + box-shadow: 2px 2px 2px #CFCFCF;} + ul.rs_tabs li .selected { - background-color: #D02B55; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - font-size: 13px; -} -.rs_tabs { - list-style-type: none; - font-size: 11px; - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.rs_tab.button { - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: bolder; - padding: 3px; - color: #333333; - text-decoration: none; - } -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -.suggest-select { -width: 500px; -height: 350px; - } -.message-to-select { - width: 400px; - height: 150px; - } -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} + background-color: #d02b55;} -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } +/*Photo */ -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { -position: relative; -width: 400px; -padding: 20px; -padding-top: 10px; -margin: 0 0px; -margin-bottom: 10px; -background-color: white; --webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); --moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -} -.vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-description { -margin-left: 10px; -margin-right: 10px; -font-size: 1.1em; -font-weight: bolder; -} -.vevent .event-start, .vevent .event-end { - -margin-right: 20px; -margin-bottom: 2px; -margin-top: 2px; -font-size: 0.9em; -text-align: left; -} -.event-start .dtstart, .event-end .dtend { -float: right; -} - - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url("../diabook/icons/events2.png") !important; - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { - color: #3465A4; - } -.today { - font-weight: bold; - color: #FF0000; + color: #3465a4; } -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 10px; - } -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -section .directory-item dl { - height: auto; - overflow: auto; -} -section .directory-item dt { - float: left; - margin-left: 0px; - text-align: right; - color: #999; -} -section .directory-item dd { - float: left; - margin-left: 5px; -} -.directory-profile-wrapper { - float: left; - max-height: 178px; - overflow: hidden; - width: 635px; -} -.directory-copy-wrapper { - float: left; - overflow: hidden; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 800px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} - -section .directory-photo-wrapper { - float: left; - height: 200px; - width: 165px; -} -.contact-name { - font-weight: bold; - font-size: 18px; - margin-bottom: -3px; - text-align: left; -} -.contact-details { - color: #999999; -} -.page-type { - font-size: 10px; - font-style: italic; -} -.directory-detailscolumn-wrapper { - float: left; - width: 305px; - margin-right: 10px; -} -.directory-profile-wrapper dl { - margin-top: 3px; - margin-bottom: 3px; -} -.directory-profile-title { - font-weight: bold; - margin-bottom: 3px; - font-size: 14px; -} -#side-bar-photos-albums{ - margin-top: 15px; -} -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2935,39 +404,5 @@ section .directory-photo-wrapper { background-color: #EEE; } .photo-top-album-link{ - color: #3465A4; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - + color: #3465a4; +} \ No newline at end of file From 1a5d4f91cd63fed5c2d9955f50eb0ffb3b71df3c Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 18 Nov 2012 23:30:48 +0000 Subject: [PATCH 30/30] Diabook red. All that's left to do now is...all sorts of other things. --- .../diabook/diabook-red/style-network.css | 2642 +--------------- .../diabook/diabook-red/style-profile.css | 2526 +-------------- view/theme/diabook/diabook-red/style.css | 2745 +---------------- 3 files changed, 302 insertions(+), 7611 deletions(-) diff --git a/view/theme/diabook/diabook-red/style-network.css b/view/theme/diabook/diabook-red/style-network.css index 80d379dea..1f004842b 100644 --- a/view/theme/diabook/diabook-red/style-network.css +++ b/view/theme/diabook/diabook-red/style-network.css @@ -1,88 +1,6 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ - -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ +@import url('../../diabook/style-network.css'); +/* There seem to be a stupid number of icons. Can we do this better? Are they all actually used? */ .icon.contacts { background-image: url("../diabook-red/icons/contacts.png");} .icon.notifications { @@ -93,7 +11,6 @@ background-image: url("../diabook-red/icons/messages.png");} .icon.community { background-image: url("../diabook-red/icons/community.png");} - .icon.drop { background-image: url("../diabook-red/icons/drop.png");} .icon.drophide { background-image: url("../diabook-red/icons/drop.png");} .icon.dislike { background-image: url("../diabook-red/icons/dislike.png");} @@ -109,585 +26,109 @@ .icon.lock { background-image: url("../diabook-red/icons/lock.png");} .icon.unlock { background-image: url("../diabook-red/icons/unlock.png");} .icon.language { background-image: url("../diabook-red/icons/language.png");} - - -.camera { background-image: url("../diabook-red/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-red/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-red/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-red/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-red/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-red/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-red/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-red/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-red/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-red/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-red/icons/camera.png");} +.attach { background-image: url("../diabook-red/icons/attach.png");} +.video2 { background-image: url("../diabook-red/icons/video.png");} +.video { background-image: url("../diabook-red/icons/video.png");} +.audio2 { background-image: url("../diabook-red/icons/audio.png");} +.audio { background-image: url("../diabook-red/icons/audio.png");} +.weblink { background-image: url("../diabook-red/icons/weblink.png");} +.globe { background-image: url("../diabook-red/icons/globe.png");} +.unglobe { background-image: url("../diabook-red/icons/unglobe.png");} +.edit {background-image: url("../diabook-red/icons/pencil2.png");} .icon.on { background-image: url("../diabook-red/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-red/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ - -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - +.attachtype {background-image: url('../../../../images/content-types.png');} .icon.border.camera{ - background-image: url("../diabook-red/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-red/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } + background-image: url("../diabook-red/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-red/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} +.hide-comments-outer {background-color: #fff;} -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 1px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - background-color: #fff; - padding: 8px; -} +a {color: #333333;} -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #333 - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} #saved-search-ul .tool:hover, #nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, +#sidebar-group-list .tool:hover , #fileas-sidebar .tool:hover { - background: #FFE499; -} -.tool .label { - float: left; -} -.tool .action { - float: right; + background: aliceBlue; } + .tool a { - color: ##3F8FBA; + color: #333333; } -.tool a:hover { - text-decoration: none; + +nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { +color: #fff; } + /* popup notifications */ -div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ +div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #fff4d6 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #ff500f; background-color: #ff500f; - z-index: 100; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; - background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ad3b0a', endColorstr='#ff4f0f'); +} + +header #site-location {display: none;} -background-image: -webkit-gradient( - linear, - left bottom, - left top, - color-stop(0, rgb(173,59,10)), - color-stop(0.65, rgb(255,79,15)) -); -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; -} header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: black; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; - } -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; - margin-left: 3px; -} -/* nav */ + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; background: #ff500f; color: #000; - z-index: 99; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; - background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); - -background-image: -webkit-gradient( - linear, - left bottom, - left top, - color-stop(0, rgb(173,59,10)), - color-stop(0.65, rgb(255,79,15)) -); -} -nav a, -nav a:active, -nav a:visited, -nav a:link, -nav a:hover { - /*color: #1f1f1f;*/ - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -698,92 +139,20 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff4d6; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} -nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; -} -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 15px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; + nav .nav-notify { + border: 1px solid black; } +nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;} + nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-red/icons/messages2.png"); - } + background-image: url("../diabook-red/icons/messages.png");} /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-red/icons/notify2.png"); - } + background-image: url("../diabook-red/icons/notify.png");} nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-red/icons/contacts2.png"); - } + background-image: url("../diabook-red/icons/contacts.png");} nav #nav-apps-link.selected { background-color: #fff4d6; @@ -792,1323 +161,66 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff4d6; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #ffe499; /*bdcdd4;*/ - color: #000; -} -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ - -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; + background-color: #ffe499; + color: #fff; } -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} +.menu-profile-list:hover{background: #ffe499;} -/*profile_side*/ -#profile_side { - margin-bottom: 30px; - -} -#profile_side a{ - color: #333; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #FFE499; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../diabook-red/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../diabook-red/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../diabook-red/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../diabook-red/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../diabook-red/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../diabook-red/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../diabook-red/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; --moz-border-bottom-colors: #dbdbdb; - -moz-border-top-colors: #999; - -moz-border-left-colors: #999; - -moz-border-right-colors: #dbdbdb; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums ul li a{ - color: #1872A2; -} -.widget .tool.selected { - background: url("../diabook-red/icons/selected.png") no-repeat left center; -} -/* widget: search */ -span.sbox_l { - background: white url('../diabook-red/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - -} +.menu-profile-icon.home{background: url("../diabook-red/icons/home.png") no-repeat;} +.menu-profile-icon.photos{background: url("../diabook-red/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{background: url("../diabook-red/icons/events.png") no-repeat;} +.menu-profile-icon.notes{background: url("../diabook-red/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{background: url("../diabook-red/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{background: url("../diabook-red/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{background: url("../diabook-red/icons/pscontacts.png") no-repeat;} -span.sbox_r { - background: white url('../diabook-red/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; -} +aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;} -span.sbox input { - background: white url('../diabook-red/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: auto; - padding: 0px 0px 0px 12px; -} +#side-bar-photos-albums li{list-style-type: disc;} +#side-bar-photos-albums ul li{margin-left: 30px; + padding-left: 0px;} +#side-bar-photos-albums ul li a{color: #ff500f;} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } +.widget .tool.selected {background: url("../diabook-red/icons/selected.png") no-repeat left center;} +span.sbox_l {background: white url('../diabook-red/icons/srch_l.gif') no-repeat top left;} +span.sbox_r {background: white url('../diabook-red/icons/srch_r.gif') no-repeat top left;} +span.sbox input {background: white url('../diabook-red/icons/srch_bg.gif') repeat-x top left;} -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} right_aside a{color: red;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} + .close_box { background-image: url("../diabook-red/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; - } -.close_box:hover { - background-image: url("../diabook-red/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; - } - -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} -.tread-wrapper a{ - color: red; -} + cursor: pointer;} -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} +.close_box:hover {background-image: url("../diabook-red/icons/close_box.png");} -.wall-item-container { - display: table; - width: 580px; -} +.tread-wrapper a{color: red;} +.wall-item-comment-wrapper {background-color: #fff; + width: 500px;} -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} +.button.creation2 {background-color: #ff500f;} -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} +#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;} -.wall-item-container .wall-item-content { +#acl-showall {background-image: url("../../../../images/show_all_off.png");} - max-width: 420px; - word-wrap: break-word; +#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");} +.acl-button-show {background-image: url("../../../../images/show_off.png");} +.acl-button-hide {background-image: url("../../../../images/hide_off.png");} +.acl-button-show.selected {background-image: url("../../../../images/show_on.png");} +.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");} -} +ul.tabs li .active {background-color: #535353;} -.wall-item-container .wall-item-content img { - max-width: 400px; +.field .onoff a {background-image: url("../../../../images/onoff.jpg");} -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ +.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");} -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} - -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; - background-color: #fff; - width: 500px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - cursor: pointer; - font-weight: bolder; -} -.button.creation2 { - background-color: #FF500F; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -} -/*input[type="submit"] { - background-color: #FF500F; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - cursor: pointer; - font-weight: bolder; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} -ul.tabs li .active { - background-color: #535353; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} - -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; @@ -2116,498 +228,17 @@ border-radius: 10px; height: 145px !important; width: 145px !important; } + .lframe { float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} -/* page footer */ -footer { - height: 100px; - display: table-row; -} +.event-description:before {content: url('../../../../images/calendar.png');} -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ +.calendar.eventcal a {color: #1872a2;} -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} -.calendar.eventcal a { - color: #1872A2; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } - -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2615,40 +246,5 @@ list-style-type: disc; padding-left: 3px; background-color: #EEE; } -.photo-top-album-link{ - color: #1872A2; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} +.photo-top-album-link{color: #1872a2;} diff --git a/view/theme/diabook/diabook-red/style-profile.css b/view/theme/diabook/diabook-red/style-profile.css index be9581c2f..58f299a4e 100644 --- a/view/theme/diabook/diabook-red/style-profile.css +++ b/view/theme/diabook/diabook-red/style-profile.css @@ -1,99 +1,10 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../../diabook/style-profile.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ - -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ - -.icon.contacts { - background-image: url("../diabook-red/icons/contacts.png");} -.icon.notifications { - background-image: url("../diabook-red/icons/notifications.png");} -.icon.notify { - background-image: url("../diabook-red/icons/notify.png");} -.icon.messages { - background-image: url("../diabook-red/icons/messages.png");} -.icon.community { - background-image: url("../diabook-red/icons/community.png");} - + .icon.contacts {background-image: url("../diabook-red/icons/contacts.png");} +.icon.notifications {background-image: url("../diabook-red/icons/notifications.png");} +.icon.notify {background-image: url("../diabook-red/icons/notify.png");} +.icon.messages {background-image: url("../diabook-red/icons/messages.png");} +.icon.community {background-image: url("../diabook-red/icons/community.png");} .icon.drop { background-image: url("../diabook-red/icons/drop.png");} .icon.drophide { background-image: url("../diabook-red/icons/drop.png");} .icon.dislike { background-image: url("../diabook-red/icons/dislike.png");} @@ -109,567 +20,105 @@ .icon.lock { background-image: url("../diabook-red/icons/lock.png");} .icon.unlock { background-image: url("../diabook-red/icons/unlock.png");} .icon.language { background-image: url("../diabook-red/icons/language.png");} - - -.camera { background-image: url("../diabook-red/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../diabook-red/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../diabook-red/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../diabook-red/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../diabook-red/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../diabook-red/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../diabook-red/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../diabook-red/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../diabook-red/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../diabook-red/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../diabook-red/icons/camera.png");} +.attach { background-image: url("../diabook-red/icons/attach.png");} +.video2 { background-image: url("../diabook-red/icons/video.png");} +.video { background-image: url("../diabook-red/icons/video.png");} +.audio2 { background-image: url("../diabook-red/icons/audio.png");} +.audio { background-image: url("../diabook-red/icons/audio.png");} +.weblink { background-image: url("../diabook-red/icons/weblink.png");} +.globe { background-image: url("../diabook-red/icons/globe.png");} +.unglobe { background-image: url("../diabook-red/icons/unglobe.png");} +.edit {background-image: url("../diabook-red/icons/pencil2.png");} .icon.on { background-image: url("../diabook-red/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../diabook-red/icons/toogle_off.png"); background-repeat: no-repeat;} .prev { background-position: -90px -60px;} .next { background-position: -110px -60px;} -/*.tagged { background-position: -130px -60px;}*/ +.attachtype {background-image: url('../../../../images/content-types.png');} +.icon.border.camera{background-image: url("../diabook-red/icons/camera.png");} +.icon.border.link{background-image: url("../diabook-red/icons/weblink.png");} +.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");} +.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");} +.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");} +.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");} +.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");} +.icon.s10.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");} +.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");} +.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");} +.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");} +.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");} +.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");} +.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");} +.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");} +.icon.s16.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");} +.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");} +.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");} +.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");} +.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");} +.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");} +.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");} +.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");} +.icon.s22.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");} +.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");} +.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");} +.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");} +.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");} +.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");} +.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");} +.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");} +.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");} +.icon.s48.star {background-image: url("../../../../images/star_dummy.png");} +.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");} +.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");} +.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");} +.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../../images/content-types.png'); -} +a {color: #333333;} -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } -.icon.drop, .icon.drophide { - float: left; -} +#sidebar-group-list .tool:hover {background: #EEE;} -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../diabook-red/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../diabook-red/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 484px; - border-bottom: 1px solid #BDCDD4; - border-top: 1px solid #BDCDD4; - - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -h4 { - font-size: 1.1em; -} - -a { - color: #333333; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} - -.wall-item-name-link { -/* float: left;*/ -} - -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} - -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: #333; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover { - background: #EEE; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ div.jGrowl div.notice { - background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -/* header */ + background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;} +div.jGrowl div.info {background: #fff4d6 url("../../../../images/icons/48/info.png") no-repeat 5px center;} + header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #ff500f; background-color: #ff500f; - z-index: 100; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; - background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: left; - width: 82%%; - margin-left: 25%; } + header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; - font-weight: bolder; -} -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} -header #banner #logo-text { - font-size: 20px; - position: absolute; - top: 10%; - margin-left: 3px; -} -/* nav */ + font-weight: bolder;} + nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; background: #ff500f; color: #1f1f1f; - z-index: 99; - border-bottom: 1px; - border-bottom-color: black; - border-bottom-style: inset; - background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { - color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} + color: #1f1f1f;} + nav #banner a, nav #banner a:active, nav #banner a:visited, nav #banner a:link, nav #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -680,93 +129,23 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff4d6; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; -} -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 15px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; + border: 1px solid black; } nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../diabook-red/icons/messages2.png"); + background-image: url("../diabook-red/icons/messages.png"); } /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../diabook-red/icons/notify2.png"); + background-image: url("../diabook-red/icons/notify.png"); } nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../diabook-red/icons/contacts2.png"); + background-image: url("../diabook-red/icons/contacts.png"); } - + nav #nav-apps-link.selected { background-color: #fff4d6; moz-border-radius: 5px 5px 0 0; @@ -774,169 +153,11 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - -ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff4d6; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} ul.menu-popup a:hover { - background-color: #ffe499; /*bdcdd4;*/ - color: #000; -} -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 400px; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ - -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; + background-color: #ffe499; + color: #fff; } -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - padding-top: 3px; - padding-bottom: 3px; - padding-left: 16px; - min-height: 16px; - list-style: none; - } -.menu-profile-list:hover{ - background: #EEE; - } -.menu-profile-list-item{ - padding-left: 5px; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ .menu-profile-list.home{ background: url("../diabook-red/icons/home.png") no-repeat; } @@ -956,172 +177,10 @@ ul.menu-popup .empty { background: url("../diabook-red/icons/com_side.png") no-repeat; } -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 160px; - padding: 0px 10px 0px 10px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ -} - -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 150px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 150px; - } -aside #side-peoplefind-url { - width: 150px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 48px; - height: 48px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} + } + #side-bar-photos-albums li{ list-style-type: disc; } @@ -1130,780 +189,53 @@ list-style-type: disc; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #1872A2; + color: #1872a2; } + .widget .tool.selected { background: url("../diabook-red/icons/selected.png") no-repeat left center; } -/* widget: search */ + span.sbox_l { background: white url('../diabook-red/icons/srch_l.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-left: 10px; - margin-top: 5px; - } span.sbox_r { background: white url('../diabook-red/icons/srch_r.gif') no-repeat top left; - float: left; - width: 19px; height: 19px; - margin-top: 5px; } span.sbox input { background: white url('../diabook-red/icons/srch_bg.gif') repeat-x top left; - float: left; - margin-top: 5px; - border: 0; - height: 13px; width: 100px; - padding: 3px; - font: 11px/13px arial; - color: #000; -} -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 611px; - padding: 0px 0px 0px 12px; } -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 575px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} - -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } - -right_aside { - display: table-cell; - vertical-align: top; - width: 170px; - /*padding-right: 10px;*/ - /*border-left: 1px solid #D2D2D2;*/ - - /* background: #F1F1F1; */ -} right_aside a{color: red;} -right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; -margin-top:30px;} -right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; } -right_aside .directory-photo { margin: 0px; } -right_aside .directory-photo-img { max-width: 45px; max-height: 45px; } -right_aside #likes { margin: 0px; padding: 0px; list-style: none; } -right_aside .items-wrapper{ overflow: auto; width: 100%; } -right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; } -#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;} -#page-sidebar-right_aside ul {margin-top: 0px;} -#page-sidebar-right_aside .label {max-width: 128px;} -right_aside .icon {width: 10px; height: 10px;} + .close_box { background-image: url("../diabook-red/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 0.1; } .close_box:hover { background-image: url("../diabook-red/icons/close_box.png"); - float: right; - cursor: pointer; - opacity: 1; --webkit-transition: all 0.2s ease-in-out; --moz-transition: all 0.2s ease-in-out; --o-transition: all 0.2s ease-in-out; --ms-transition: all 0.2s ease-in-out; -transition: all 0.2s ease-in-out; } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 575px; - padding-top: 10px; -} + + .tread-wrapper a{ color: red; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} -.wall-item-container { - display: table; - width: 580px; -} - - -.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} - -.wall-item-bottom { - font-size: 13px; -} -.wall-item-container .wall-item-bottom { -/* opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container:hover .wall-item-bottom { -/* opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; */ -} -.wall-item-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-location { - - clear: both; - overflow: hidden; - - margin-bottom: 5px; -} - -.wall-item-container .wall-item-content { - - max-width: 420px; - word-wrap: break-word; - - -} - -.wall-item-container .wall-item-content img { - max-width: 400px; - -} -.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-container .wall-item-name { - font-weight: bold; -} -.wall-item-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-actions-social a { - float: left; -} -.wall-item-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-container .wall-item-actions-tools a { - float: right; -} -.wall-item-container .wall-item-actions-tools input { - float: right; -} -.wall-item-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 80px; - width: 500px; - border-bottom: 1px solid hsl(198, 21%, 79%); -} -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} -.comment-edit-preview { - width: 500px; - margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; -} - -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 585px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 583px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 585px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 585px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 585px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; - -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} .button.creation2 { - background-color: #FF500F; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; - cursor: pointer; -} -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} + background-color: #ff500f;} + #acl-search { - float: right; - background: #ffffff url("../../../../images/search_18.png") no-repeat right center; - padding-right: 20px; + background: #ffffff url("../../../../images/search_18.png") no-repeat right center; } + #acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} + background-image: url("../../../../images/show_all_off.png");} + #acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} + background-image: url("../../../../images/show_all_on.png");} + .acl-button-show { background-image: url("../../../../images/show_off.png"); } @@ -1911,657 +243,37 @@ transition: all 0.2s ease-in-out; background-image: url("../../../../images/hide_off.png"); } .acl-button-show.selected { - color: #000000; - background-color: #9ade00; background-image: url("../../../../images/show_on.png"); } .acl-button-hide.selected { - color: #000000; - background-color: #ff4141; background-image: url("../../../../images/hide_on.png"); } -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + ul.tabs li .active { - background-color: #535353; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} + background-color: #535353;} + .field .onoff a { - display: block; - border: 1px solid #666666; background-image: url("../../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; } -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } - -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} .oauthapp img.noicon { background-image: url("../../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ + } + .photo { box-shadow: 2px 2px 5px 0px #000000; -margin: 0px; -border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; -} +margin: 0px;} -.contact-photo-menu-button { - position: relative; - background-image: url("../../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 48px; - height: 48px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { - -} -.vevent .event-description, .vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-start { - margin-left: 10px; - margin-right: 10px; -} - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} +.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");} .event-description:before { - content: url('../../../../images/calendar.png'); - margin-right: 15px; -} + content: url('../../../../images/calendar.png');} -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { - color: #1872A2; - } -.today { - font-weight: bold; - color: #FF0000; -} - -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; + color: #ffe499; } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 5px; - margin-top: 30px; - } -.comment-edit-text-empty { - margin: 10px 0 0; - width: 85%; -} -.comment-edit-photo { - margin: 10px 0 0; -} -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} -.contact-name { - text-align: left; - font-weight: bold; - font-size: 12px; -} -.contact-details { - color: #999999; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} -#side-bar-photos-albums ul li{ - margin-left: 30px; - padding-left: 0px; - } -#side-bar-photos-albums{ - margin-top: 15px; - } -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2570,39 +282,5 @@ list-style-type: disc; background-color: #EEE; } .photo-top-album-link{ - color: #1872A2; + color: #1872a2; } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - diff --git a/view/theme/diabook/diabook-red/style.css b/view/theme/diabook/diabook-red/style.css index 72592168b..d7f4745b8 100644 --- a/view/theme/diabook/diabook-red/style.css +++ b/view/theme/diabook/diabook-red/style.css @@ -1,118 +1,22 @@ -/** - * Fabio Comuni - * Additional Changes: Michael Vogel - **/ +@import url('../diabook/style.css'); -/* ========= */ -/* = Admin = */ -/* ========= */ +/* Why are these paths so long? They should probably become ../icons/ in the next revision */ -#adminpage { -/* width: 80%;*/ -} - -#pending-update { - float:right; - color: #ffffff; - font-weight: bold; - background-color: #FF0000; - padding: 0em 0.3em; -} - -.admin.linklist { - border: 0px; padding: 0px; - list-style: none; -} - -.admin.link { - list-style-position: inside; - font-size: 1em; - padding: 5px; - width: 100px; - margin: 5px; -} - -#adminpage dl { - clear: left; - margin-bottom: 2px; - padding-bottom: 2px; - border-bottom: 1px solid black; -} - -#adminpage dt { - width: 200px; - float: left; - font-weight: bold; -} - -#adminpage dd { - margin-left: 200px; -} -#adminpage h3 { - border-bottom: 1px solid #898989; - margin-bottom: 5px; - margin-top: 10px; -} - -#adminpage .submit { - clear:left; -} - -#adminpage #pluginslist { - margin: 0px; padding: 0px; -} - -#adminpage .plugin { - list-style: none; - display: block; - /* border: 1px solid #888888; */ - padding: 1em; - margin-bottom: 5px; - clear: left; -} - -#adminpage .toggleplugin { - float:left; - margin-right: 1em; -} - -#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;} -#adminpage table th { text-align: left;} -#adminpage td .icon { float: left;} -#adminpage table#users img { width: 16px; height: 16px; } -#adminpage table tr:hover { background-color: #eeeeee; } -#adminpage .selectall { text-align: right; } -/* icons */ .icon.bb-url{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-url.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-url.png");} .icon.quote{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/quote.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-red/icons/quote.png");} .icon.bold{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/bold.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-red/icons/bold.png");} .icon.underline{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/underline.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-red/icons/underline.png");} .icon.italic{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/italic.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-red/icons/italic.png");} .icon.bb-image{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-image.png"); - float: right; - margin-top: 2px;} + background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-image.png");} .icon.bb-video{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-video.png"); - float: right; - margin-top: 2px;} - -.icon.contacts { + background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-video.png");} + .icon.contacts { background-image: url("../../../view/theme/diabook/diabook-red/icons/contacts.png");} .icon.notifications { background-image: url("../../../view/theme/diabook/diabook-red/icons/notifications.png");} @@ -138,688 +42,96 @@ .icon.lock { background-image: url("../../../view/theme/diabook/diabook-red/icons/lock.png");} .icon.unlock { background-image: url("../../../view/theme/diabook/diabook-red/icons/unlock.png");} .icon.language { background-image: url("../../../view/theme/diabook/diabook-red/icons/language.png");} - - -.camera { background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.attach { background-image: url("../../../view/theme/diabook/diabook-red/icons/attach.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.video { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png"); - display: block; width: 100%; height: 140px; background-repeat: no-repeat; - } -.audio2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.audio { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.weblink { background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.globe { background-image: url("../../../view/theme/diabook/diabook-red/icons/globe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.unglobe { background-image: url("../../../view/theme/diabook/diabook-red/icons/unglobe.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } -.edit {background-image: url("../../../view/theme/diabook/diabook-red/icons/pencil2.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat;} -.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat;} -.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png"); - display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;} -.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png"); - display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;} - - - -.article { background-position: -50px 0px;} -/*.audio { background-position: -70px 0px;}*/ -/*.drop { background-position: -110px 0px;}*/ -/*.drophide { background-position: -130px 0px;}*/ -/*.edit { background-position: -150px 0px;}*/ -/*.camera { background-position: -170px 0px;}*/ -/*.dislike { background-position: -190px 0px;}*/ -/*.like { background-position: -210px 0px;}*/ -/*.link { background-position: -230px 0px;}*/ - -/*.globe { background-position: -50px -20px;}*/ -/*.noglobe { background-position: -70px -20px;}*/ -.no { background-position: -90px -20px;} -.pause { background-position: -110px -20px;} -.play { background-position: -130px -20px;} -/*.pencil { background-position: -150px -20px;}*/ -.small-pencil { background-position: -170px -20px;} -/*.recycle { background-position: -190px -20px;}*/ -/*.remote-link { background-position: -210px -20px;}*/ -.share { background-position: -230px -20px;} - -.tools { background-position: -50px -40px;} -/*.lock { background-position: -70px -40px;}*/ - -/*.video { background-position: -110px -40px;}*/ -.youtube { background-position: -130px -40px;} - -/*.attach { background-position: -190px -40px;}*/ -/*.language { background-position: -210px -40px;}*/ - - +.camera { background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png");} +.attach { background-image: url("../../../view/theme/diabook/diabook-red/icons/attach.png");} +.video2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png"); } +.video { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png");} +.audio2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");} +.audio { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");} +.weblink { background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png");} +.globe { background-image: url("../../../view/theme/diabook/diabook-red/icons/globe.png");} +.unglobe { background-image: url("../../../view/theme/diabook/diabook-red/icons/unglobe.png");} +.edit {background-image: url("../../../view/theme/diabook/diabook-red/icons/pencil2.png");} +.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");} +.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");} .icon.on { background-image: url("../../../view/theme/diabook/diabook-red/icons/toogle_on.png"); background-repeat: no-repeat;} .icon.off { background-image: url("../../../view/theme/diabook/diabook-red/icons/toogle_off.png"); background-repeat: no-repeat;} .icon.prev { background-image: url("../../../view/theme/diabook/diabook-red/icons/prev.png"); background-repeat: no-repeat;} .icon.next { background-image: url("../../../view/theme/diabook/diabook-red/icons/next.png"); background-repeat: no-repeat;} -/*.tagged { background-position: -130px -60px;}*/ +icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png");} +.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png");} +av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ + background-image: url("../../../view/theme/diabook/diabook-red/icons/messages.png");} +.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ + background-image: url("../../../view/theme/diabook/diabook-red/icons/notify.png");} +nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-red/icons/contacts.png");} -.attachtype { - display: block; width: 20px; height: 23px; - background-image: url('../../../images/content-types.png'); -} - -.type-video { background-position: 0px 0px; } -.type-image { background-position: -20px 0px; } -.type-audio { background-position: -40px 0px; } -.type-text { background-position: -60px 0px; } -.type-unkn { background-position: -80px 0px; } - -.icon.drop, .icon.drophide { - float: left; -} - -.icon { - display: block; - width: 20px; - height: 20px; - /*background-image: url('icons.png');*/ -} - -.icon { - background-color: transparent ; - background-repeat: no-repeat; - /* background-position: left center; */ - display: block; - overflow: hidden; - text-indent: -9999px; - padding: 1px; -} - -.icon.border.camera{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - } - -.icon.border.link{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png"); - display: block; width: 28px; height: 28px; background-repeat: no-repeat; - margin-left: 10px; - } - -.icon.text { - text-indent: 0px; -} -.icon.s10 { - min-width: 10px; - height: 10px; -} -.icon.s10.notify { - background-image: url("../../../images/icons/10/notify_off.png"); -} -.icon.s10.gear { - background-image: url("../../../images/icons/10/gear.png"); -} -.icon.s10.add { - background-image: url("../../../images/icons/10/add.png"); -} -.icon.s10.delete { - background-image: url("../../../images/icons/10/delete.png"); -} -.icon.s10.edit { - background-image: url("../../../images/icons/10/edit.png"); -} -.icon.s10.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s10.menu { - background-image: url("../../../images/icons/10/menu.png"); -} -.icon.s10.link { - background-image: url("../../../images/icons/10/link.png"); -} -.icon.s10.lock { - background-image: url("../../../images/icons/10/lock.png"); -} -.icon.s10.unlock { - background-image: url("../../../images/icons/10/unlock.png"); -} -.icon.s10.text { - padding: 2px 0px 0px 15px; - font-size: 10px; -} -.icon.s16 { - min-width: 16px; - height: 16px; -} -.icon.s16.notify { - background-image: url("../../../images/icons/16/notify_off.png"); -} -.icon.s16.gear { - background-image: url("../../../images/icons/16/gear.png"); -} -.icon.s16.add { - background-image: url("../../../images/icons/16/add.png"); -} -.icon.s16.delete { - background-image: url("../../../images/icons/16/delete.png"); -} -/*.icon.s16.edit { - background-image: url("../../../images/icons/16/edit.png"); -}*/ -.icon.s16.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s16.menu { - background-image: url("../../../images/icons/16/menu.png"); -} -/*.icon.s16.link { - background-image: url("../../../images/icons/16/link.png"); -}*/ -.icon.s16.lock { - background-image: url("../../../images/icons/16/lock.png"); -} -.icon.s16.unlock { - background-image: url("../../../images/icons/16/unlock.png"); -} -.icon.s16.text { - padding: 4px 0px 0px 20px; - font-size: 10px; -} -.icon.s22 { - min-width: 22px; - height: 22px; -} -.icon.s22.notify { - background-image: url("../../../images/icons/22/notify_off.png"); -} -.icon.s22.gear { - background-image: url("../../../images/icons/22/gear.png"); -} -.icon.s22.add { - background-image: url("../../../images/icons/22/add.png"); -} -.icon.s22.delete { - background-image: url("../../../images/icons/22/delete.png"); -} -.icon.s22.edit { - background-image: url("../../../images/icons/22/edit.png"); -} -.icon.s22.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s22.menu { - background-image: url("../../../images/icons/22/menu.png"); -} -.icon.s22.link { - background-image: url("../../../images/icons/22/link.png"); -} -.icon.s22.lock { - background-image: url("../../../images/icons/22/lock.png"); -} -.icon.s22.unlock { - background-image: url("../../../images/icons/22/unlock.png"); -} -.icon.s22.text { - padding: 10px 0px 0px 25px; - width: 200px; -} -.icon.s48 { - width: 48px; - height: 48px; -} -.icon.s48.notify { - background-image: url("../../../images/icons/48/notify_off.png"); -} -.icon.s48.gear { - background-image: url("../../../images/icons/48/gear.png"); -} -.icon.s48.add { - background-image: url("../../../images/icons/48/add.png"); -} -.icon.s48.delete { - background-image: url("../../../images/icons/48/delete.png"); -} -.icon.s48.edit { - background-image: url("../../../images/icons/48/edit.png"); -} -.icon.s48.star { - background-image: url("../../../images/star_dummy.png"); -} -.icon.s48.menu { - background-image: url("../../../images/icons/48/menu.png"); -} -.icon.s48.link { - background-image: url("../../../images/icons/48/link.png"); -} -.icon.s48.lock { - background-image: url("../../../images/icons/48/lock.png"); -} -.icon.s48.unlock { - background-image: url("../../../images/icons/48/unlock.png"); -} - -#contact-edit-links ul { - list-style: none; - list-style-type: none; -} - -.hide-comments-outer { - margin-left: 80px; - margin-bottom: 5px; - width: 684px; - border-bottom: 1px solid #BDCDD4; - padding: 8px; -} - -/* global */ -body { - font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12.5px; - background-color: #ffffff; - color: #2d2d2d; - margin: 50px auto auto; - display: table; -} - -#jappix_mini { -right: 45px !important; -} +.menu-profile-icon.home{ + background: url("../../../view/theme/diabook/diabook-red/icons/home.png") no-repeat;} +.menu-profile-icon.photos{ + background: url("../../../view/theme/diabook/diabook-red/icons/mess_side.png") no-repeat;} +.menu-profile-icon.events{ + background: url("../../../view/theme/diabook/diabook-red/icons/events.png") no-repeat;} +.menu-profile-icon.notes{ + background: url("../../../view/theme/diabook/diabook-red/icons/notes.png") no-repeat;} +.menu-profile-icon.foren{ + background: url("../../../view/theme/diabook/diabook-red/icons/pubgroups.png") no-repeat;} +.menu-profile-icon.com_side{ + background: url("../../../view/theme/diabook/diabook-red/icons/com_side.png") no-repeat;} +.menu-profile-icon.pscontacts{ + background: url("../../../view/theme/diabook/diabook-red/icons/pscontacts.png") no-repeat;} -h4 { - font-size: 1.1em; -} -a { - color: red; - /* color: #3e3e8c; */ - text-decoration: none; -} -a:hover { - /* color: blue; */ - text-decoration: underline -} -.wall-item-name-link { -/* float: left;*/ -} +a {color: #333333;} -.wall-item-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} +#fileas-sidebar .tool:hover {background: #ffe499;} -.left { - float: left; -} -.right { - float: right; -} -.hidden { - display: none; -} -.clear { - clear: both; -} -.fakelink { - color: red; - /* color: #3e3e8c; */ - text-decoration: none; - cursor: pointer; -} -.fakelink:hover { - /* color: blue; */ - /*color: #005c94; */ - text-decoration: underline; -} -.intro-end { - border-bottom: 1px solid black; - clear: both; - margin-bottom: 25px; - padding-bottom: 25px; - width: 75%; - } -.intro-form-end { - clear: both; - } -.intro-fullname { - padding-bottom: 5px; - padding-top: 5px; - } -.intro-wrapper-end { - clear: both; - padding-bottom: 5px; - } -code { - font-family: Courier, monospace; - white-space: pre; - display: block; - overflow: auto; - border: 1px solid #444; - background: #EEE; - color: #444; - padding: 10px; - margin-top: 20px; -} -#panel { - position: absolute; - width: 12em; - background: #ffffff; - color: #2d2d2d; - margin: 0px; - padding: 1em; - list-style: none; - border: 3px solid #364e59; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -/* tool */ -.tool { - height: auto; - overflow: auto; - padding: 3px; -} -#saved-search-ul .tool:hover, -#nets-sidebar .tool:hover, -#sidebar-group-list .tool:hover, -#fileas-sidebar .tool:hover { - background: #FFE499; -} -.tool .label { - float: left; -} -.tool .action { - float: right; -} -.tool a { - color: ##3F8FBA; -} -.tool a:hover { - text-decoration: none; -} -/* popup notifications */ -div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ } -div.jGrowl div.notice { - background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} -div.jGrowl div.info { - background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center; - color: #ffffff; - padding-left: 58px; -} /* header */ header { - position: fixed; - left: 0%; - right: 80%; - top: 0px; - margin: 0px; - padding: 0px; - width: 22%; - height: 32px; background: #ff500f; background-color: #ff500f; - z-index: 100; border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; - background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); +} -background-image: -webkit-gradient( - linear, - left bottom, - left top, - color-stop(0, rgb(173,59,10)), - color-stop(0.65, rgb(255,79,15)) -); -} -header #site-location { - display: none; -} -header #banner { - overflow: hidden; - text-align: banner; - width: 82%; - margin-left: 25%; -} header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; - vertical-align: middle; font-weight: bolder; } -header #banner #logo-img { - height: 25px; - margin-top: 3px; -} + header #banner #logo-text { - font-size: 20px!important;position: relative!important;top: -4px!important; + font-size: 20px!important;position: relative!important;top: -4px!important; } + /* messages */ #message-new { - background: ; - border: 1px solid #333; - width: 150px; -} -#message-new a { - color: #ffffff; - text-align: center; - display: block; - font-weight: bold; - padding: 1em 0px; - text-decoration: none; - background-color: red; -} -.mail-list-wrapper { - background-color: #f6f7f8; - margin-bottom: 5px; - width: 100%; - height: auto; - overflow: hidden; -} -.mail-list-wrapper span { - display: block; - float: left; - width: 20%; - overflow: hidden; -} -.mail-list-wrapper .mail-subject { - width: 30%; - padding: 4px 0px 0px 4px; -} -.mail-list-wrapper .mail-subject a { - display: block; -} -.mail-list-wrapper .mail-subject.unseen a { - font-weight: bold; -} -.mail-list-wrapper .mail-date { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-from { - padding: 4px 4px 0px 4px; -} -.mail-list-wrapper .mail-count { - padding: 4px 4px 0px 4px; - text-align: right; -} -.mail-list-wrapper .mail-delete { - float: right; -} -#mail-display-subject { - background-color: #f6f7f8; - color: #2d2d2d; - margin-bottom: 10px; - width: 100%; - height: auto; - overflow: hidden; -} -#mail-display-subject span { - float: left; - overflow: hidden; - padding: 4px 0px 0px 10px; -} -#mail-display-subject .mail-delete { - float: right; - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -#mail-display-subject:hover .mail-delete { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; + border: 1px solid #333; } + /* nav */ -nav { - width: 80%; - height: 32px; - position: fixed; - left: 22%; - top: 0px; - padding: 0px; - background: #ff500f; +nav { background: #ff500f; color: #1f1f1f; - z-index: 99; - border-bottom: 1px; + border-bottom: 1px; border-bottom-color: black; border-bottom-style: inset; - background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); -background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%); - -background-image: -webkit-gradient( - linear, - left bottom, - left top, - color-stop(0, rgb(173,59,10)), - color-stop(0.65, rgb(255,79,15)) -); } + nav a, nav a:active, nav a:visited, nav a:link, nav a:hover { color: #1f1f1f; - text-decoration: none; - outline: none; -} -nav #banner { - overflow: hidden; - /*text-align: center;*/ - width: 100%; -} -nav #banner a, -nav #banner a:active, -nav #banner a:visited, -nav #banner a:link, -nav #banner a:hover { - color: #ffffff; - text-decoration: none; - outline: none; - vertical-align: bottom; -} -nav #banner #logo-img { - height: 22px; - margin-top: 5px; -} -nav #banner #logo-text { - font-size: 22px; -} -nav #navbar{ - } -nav ul { - margin: 0px; - padding: 0px 20px; -} -nav ul li { - list-style: none; - margin: 0px; - /* padding: 1px 1px 3px 1px; */ - float: left; -} -nav ul li .menu-popup { - left: 0px; - right: auto; } -nav #logo-img { - height: 25px; - margin-top: 4px; - margin-left: 30px; -} - -nav #logo-text { - font-size: 22px; - margin-top: 3px; - margin-right: 15px; -} -nav .nav-menu-search { - position: relative; - - margin: 4px 17px; - margin-right: 0px; - height: 17px; - width: 180px; - -} - -nav #search-box #search-text { - background-image: url('icons/lupe.png'); - background-repeat:no-repeat; - padding-left:20px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; - } - - -nav .nav-menu-icon { - position: relative; - height: 22px; - padding: 5px; - margin: 0px 5px; - -moz-border-radius: 5px 5px 0 0; - -webkit-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} nav .nav-menu-icon:hover { position: relative; height: 22px; @@ -830,93 +142,15 @@ nav .nav-menu-icon:hover { border-radius: 5px 5px 0 0; } -nav .nav-menu-icon.selected { - background-color: #fff4d6; -} -nav .nav-menu-icon img { - width: 22px; - height: 22px; -} -nav .nav-menu-icon .nav-notify { - top: 3px; -} -nav .nav-menu { - position: relative; - height: 16px; - padding: 5px; - margin: 3px 15px 0px; - font-size: 13px; - /*border-bottom: 3px solid #364A84;*/ -} -nav .nav-menu.selected { - /*border-bottom: 3px solid #9eabb0;*/ -} nav .nav-notify { - display: none; - position: absolute; - background-color: #fff; - /* background-color: #19aeff; */ - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - font-size: 10px; - font-weight: 900; - padding: 1px 4px; - top: 0px; - right: -6px; - min-width: 10px; - text-align: center; -} -nav .nav-notify.show { - display: block; -} -nav #nav-help-link, -nav #nav-search-link, -nav #nav-directory-link, -nav #nav-apps-link, -nav #nav-site-linkmenu, -nav #nav-home-link, -nav #nav-user-linkmenu -{ - float: right; -} -nav #nav-user-linkmenu{ - margin-right: 0px; - } -nav #nav-home-link, #nav-directory-link, #nav-apps-link{ - margin-left: 0px; - margin-right: 0px; - font-weight: bold; - margin: 3px 5px; - font-size: 15px; - } -nav #nav-directory-link{ - margin-right: 0px; - } -nav #nav-home-link{ - margin-left: 0px; - } -nav #nav-help-link .menu-popup, -nav #nav-search-link .menu-popup, -nav #nav-directory-link .menu-popup, -nav #nav-apps-link .menu-popup, -nav #nav-site-linkmenu .menu-popup { - right: 0px; - left: auto; +background-color: #fff; + border: 1px solid black; +} + +nav #nav-home-link, #nav-directory-link, #nav-apps-link{ +font-size: 14px; } -nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/messages2.png"); - } - -/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/notify2.png"); - } - -nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{ - background-image: url("../../../view/theme/diabook/diabook-red/icons/contacts2.png"); - } - nav #nav-apps-link.selected { background-color: #fff4d6; moz-border-radius: 5px 5px 0 0; @@ -924,320 +158,18 @@ nav #nav-apps-link.selected { border-radius: 5px 5px 0 0; } -#nav-notifications-mark-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -#nav-notifications-see-all { - /* padding: 1px 1px 2px 26px; */ - /* border-bottom: 1px solid #364E59; */ - /* margin: 0px 0px 2px 0px; - padding: 5px 10px; */ -} - -.notify-seen { - background: none repeat scroll 0 0 #DDDDDD; - } - ul.menu-popup { - position: absolute; - display: none; - width: 11em; - background: #fff4d6; - color: #2d2d2d; - margin: 0px; - padding: 0px; - list-style: none; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #2d2d2d; - padding: 5px 10px; - text-decoration: none; -} + background: #fff4d6;} + ul.menu-popup a:hover { background-color: #ffe499; /*bdcdd4;*/ - color: #000; -} -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -/* autocomplete popup */ -.acpopup { - max-height: 150px; - background-color: #ffffff; - color: #2d2d2d; - border: 1px solid #MenuBorder; - overflow: auto; - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -.acpopupitem { - color: #2d2d2d; - padding: 4px; - clear: left; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} -.acpopupitem.selected { - background-color: #bdcdd4; -} -#nav-notifications-menu { - width: 425px !important; - max-height: 550px; - overflow: auto; -} -/* #nav-notifications-menu a { - display: inline; - padding: 5px 0px; - margin: 0px 0px 2px 0px; -} -#nav-notifications-menu li:hover { - background-color: #bdcdd4; -}*/ - -#nav-notifications-menu img { - float: left; - margin-right: 5px; -} -#nav-notifications-menu .contactname { - font-weight: bold; -} -#nav-notifications-menu .notif-when { - font-size: 10px; - color: #9eabb0; - display: block; + color: #fff; } -.notif-image { - width: 32px; - height: 32px; - padding: 7px 7px 0px 0px; -} - -/*profile_side*/ -#profile_side { - margin-bottom: 30px; -} -#ps-usericon{ - height: 25px - } -#ps-username{ - font-size: 1.17em; - font-weight: bold; - vertical-align: top; - position: absolute; - padding-top: 4px; - padding-left: 5px; - word-wrap: break-word; - width: 130px; - } -#ps-username:hover{ - text-decoration: none; - } -.menu-profile-side{ - list-style: none; - padding-left: 0px; - min-height: 0px; - } -.menu-profile-list{ - height: auto; - overflow: auto; - min-height: 16px; - list-style: none; - } .menu-profile-list:hover{ - background: #FFE499; - } -.menu-profile-list-item{ - padding-left: 5px; - vertical-align: middle; - } -.menu-profile-list-item:hover{ - text-decoration: none; - } -/*http://prothemedesign.com/circular-icons/*/ -.menu-profile-icon.home{ - background: url("../../../view/theme/diabook/diabook-red/icons/home.png") no-repeat; - float: left; - height: 22px; - width: 22px; - } -.menu-profile-icon.photos{ - background: url("../../../view/theme/diabook/diabook-red/icons/mess_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.events{ - background: url("../../../view/theme/diabook/diabook-red/icons/events.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.notes{ - background: url("../../../view/theme/diabook/diabook-red/icons/notes.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.foren{ - background: url("../../../view/theme/diabook/diabook-red/icons/pubgroups.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.com_side{ - background: url("../../../view/theme/diabook/diabook-red/icons/com_side.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -.menu-profile-icon.pscontacts{ - background: url("../../../view/theme/diabook/diabook-red/icons/pscontacts.png") no-repeat; - float: left; - height: 22px; - width: 22px;} -/* aside */ -aside { - display: table-cell; - vertical-align: top; - width: 180px; - padding: 0px 10px 0px 20px; - border-right: 1px solid #D2D2D2; - float: left; - /* background: #F1F1F1; */ + background: #ffe499; } -aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} -aside .vcard .title { - margin-bottom: 5px; -} -aside .vcard dl { - height: auto; - overflow: auto; -} -aside .vcard dt { - float: left; - margin-left: 0px; - /*width: 35%;*/ - text-align: right; - color: #999999; -} -aside .vcard dd { - float: left; - margin-left: 5px; - /*width: 60%;*/ -} -aside #profile-extra-links ul { - padding: 0px; - margin: 0px; -} -aside #profile-extra-links li { - padding: 0px; - margin: 0px; - list-style: none; -} -aside #dfrn-request-link { - display: block; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - color: #ffffff; - background: #005c94 url('../../../images/connect-bg.png') no-repeat left center; - font-weight: bold; - text-transform: uppercase; - padding: 4px 2px 2px 35px; -} -aside #dfrn-request-link:hover { - text-decoration: none; - background-color: #36c; - /* background-color: #19aeff; */ -} -aside #profiles-menu { - width: 20em; -} -aside #search-text { - width: 173px; - height: 17px; - padding-left: 10px; - border-top-left-radius: 15px; -border-top-right-radius: 15px; -border-bottom-right-radius: 15px; -border-bottom-left-radius: 15px; -} -aside #side-follow-url { - width: 173px; - } -aside #side-peoplefind-url { - width: 173px; - } -#contact-block { - overflow: auto; - height: auto; -} -#contact-block .contact-block-h4 { - float: left; - margin: 5px 0px; -} -#contact-block .allcontact-link { - float: right; - margin: 5px 0px; -} -#contact-block .contact-block-content { - clear: both; - overflow: auto; - height: auto; -} -#contact-block .contact-block-link { - float: left; - margin: 0px 2px 2px 0px; -} -#contact-block .contact-block-link img { - widht: 55px; - height: 55px; -} -#lost-password-link { - float: left; - margin-right: 20px; - } -#login-submit-wrapper{ - margin-bottom: 12px; - } -aside #login-submit-button{ - margin-left: 0px!important; - } -aside #login-extra-links{ - padding-top: 0px!important; - } .group_selected { background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; float: left; @@ -1282,281 +214,21 @@ transition: all 0.2s ease-in-out; float: right; height: 10px; } -/* widget */ -.widget { - margin-bottom: 2em; - /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} - .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ -/* font-size: 12px; */ -} -.widget h3 { - padding: 0px; - margin: 2px; -} -.widget .action { - opacity: 0.1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget input.action { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget:hover .title .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget .tool:hover .action.ticked { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.widget ul { - padding: 0px; -} -.widget ul li { - padding-left: 16px; - min-height: 16px; - list-style: none; -} -#side-bar-photos-albums li{ -list-style-type: disc; -} + #side-bar-photos-albums ul li{ margin-left: 30px; padding-left: 0px; } #side-bar-photos-albums ul li a{ - color: #1872A2; + color: #055580; } .widget .tool.selected { - background: url("../../../view/theme/diabook/diabook-red/icons/selected.png") no-repeat left center; -} -/* widget: search */ -#add-search-popup { - width: 200px; - top: 18px; -} -/* section */ -section { - display: table-cell; - vertical-align: top; - width: 800px; - padding: 0px 0px 0px 12px; -} -body .pageheader{ - text-align: center; - font-size: 20px; - margin-bottom: 20px; - margin-top: 0px; - max-width: 775px; - } -.qcomment{ - max-width: 122px; - } -#id_username { - width: 173px; - } -#id_password { - width: 173px; - } -#id_openid_url { - width: 173px; - } -#contact-edit-end { - } -.pager { - padding: 10px; - text-align: center; - font-size: 1.0em; - clear: both; - display: block; -} + background: url("../../../view/theme/diabook/diabook-red/icons/selected.png") no-repeat left center;} -.tabs { - - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.tab.button { - margin-left: 5px; - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: normal; - padding: 3px; - color: #333333; - } - -#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{ - margin-bottom: 10px; - } -/* wall item */ -.tread-wrapper { - border-bottom: 1px solid #D2D2D2; - position: relative; - padding: 5px; - margin-bottom: 0px; - width: 775px; - padding-top: 10px; -} .tread-wrapper a{ color: red; } -.wall-item-decor { - position: absolute; - left: 790px; - top: -10px; - width: 16px; -} - -.wall-item-container { - display: table; - width: 780px; -} -.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom { - display: table-row; -} -.wall-item-photo-container .wall-item-info { - display: table-cell; - vertical-align: top; - text-align: left; - width: 80px; -} -.wall-item-photo-container .wall-item-location { - padding-right: 40px; - display: table-cell; -} -.wall-item-photo-container .wall-item-ago { - word-wrap: break-word; - width: 50px; - margin-left: 10px; - color: #999; -} -.wall-item-photo-container .wall-item-content { - - max-width: 720px; - word-wrap: break-word; - - margin-bottom: 14px; -} -.wall-item-photo-container .wall-item-content img { - max-width: 700px; -} -.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions { - display: table-cell; - vertical-align: middle; -} -.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon { - opacity: 0.5; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover { - opacity: 1; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.wall-item-photo-container .wall-item-name { - font-weight: bold; -} -.wall-item-photo-container .wall-item-actions-author { - width: 100%; - margin-bottom: 0.3em; -} -.wall-item-photo-container .wall-item-actions-social { - float: left; - margin-bottom: 1px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-social a { - margin-right: 1em; -} -.wall-item-photo-container .wall-item-actions-tools { - float: right; - width: 80px; - display: table-cell; -} -.wall-item-photo-container .wall-item-actions-tools a { - float: right; -} -.wall-item-photo-container .wall-item-actions-tools input { - float: right; -} -.wall-item-photo-container.comment { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 40px; - width: 650px; - border-bottom: 1px solid #D2D2D2; -} -.wall-item-photo-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-photo-container { - display: table; - width: 780px; -} -.my-comment-photo { - width: 48px; - margin-left: 40px; - margin-right: 32px; - } -.comment-edit-preview { - width: 500px; - margin-top: 10px; -} -.comment-edit-text-empty { - width: 500px; - border: 1px solid #D2D2D2; - height: 3.2em; - color: #2d2d2d; -} -.comment-edit-text-full { - font-size: 12.5px; - height: 3.3em; - - border: 1px solid #D2D2D2; - width: 500px; -} -.comment-edit-photo { - margin: 10px 0 0; - display: table-cell; -} - - .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { display: table-row; } @@ -1670,1261 +342,40 @@ body .pageheader{ width: 700px; border-bottom: 1px solid hsl(198, 21%, 79%); } -.wall-item-container.comment .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ -} -.wall-item-container.comment { - top: 15px !important; - left: 15px !important; -} -.wall-item-container.comment .wall-item-links { - padding-left: 12px; -} -.wall-item-comment-wrapper { - margin: 1px 5px 5px 80px; -} -.wall-item-comment-wrapper .comment-edit-photo { - display: none; -} -.wall-item-comment-wrapper textarea { - height: 2.0em; - width: 100%; - font-size: 10px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - font-size: 14px; -} -.wall-item-comment-wrapper .comment-edit-text-full { - font-size: 14px; - height: 4em; - color: #2d2d2d; - border: 1px solid #2d2d2d; -} + .comment-edit-preview { width: 500px; margin-top: 10px; - background-color: #fff797; -} -.comment-edit-preview .contact-photo { - width: 32px; - height: 32px; - margin-left: 16px; - /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - -} -.comment-edit-preview { - top: 15px !important; - left: 15px !important; -} -.comment-edit-preview .wall-item-links { - padding-left: 12px; -} -.comment-edit-preview .wall-item-container { - width: 700px; -} -.comment-edit-preview .tread-wrapper { - width: 700px; - padding: 0; - margin: 10px 0; } -.shiny { - /* border-right: 10px solid #fce94f; */ - border-right: 1px solid #A7C7F7; - padding-right: 12px; -} - -#jot-preview-content{ - margin-top: 30px;} - -#jot-preview-content .tread-wrapper { - background-color: #fff797; -} - -.wall-item-tags { - padding-top: 1px; - padding-bottom: 2px; -} -.tag { - /*background: url("../../../images/tag_b.png") repeat-x center left;*/ - color: #999; - padding-left: 3px; - font-size: 12px; -} -.tag a { - padding-right: 5px; - /*background: url("../../../images/tag.png") no-repeat center right;*/ - color: #999; -} -.wwto { - position: absolute !important; - width: 25px; - height: 25px; - background: #FFFFFF; - border: 2px solid #364e59; - height: 25px; - width: 25px; - overflow: hidden; - padding: 1px; - position: absolute !important; - top: 40px; - left: 30px; - -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); -} -.wwto .contact-photo { - width: auto; - height: 25px; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; - width: 80px; -} - -.contact-photo-wrapper.wwto { - width: 25px; -} - -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} - -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper { - left: 0px; - top: 63px; -} -.contact-photo { - width: 48px; - height: 48px; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-name { - /* text-align: center; */ - /*font-weight: bold;*/ - font-size: 12px; -} -.contact-details { - color: #999999; -} -/* editor */ -.jothidden { - display: none; -} -#jot { - width: 785px; - margin: 0px 2em 20px 0px; -} -#profile-jot-form #profile-jot-text { - height: 2.0em; - width: 99%; - font-size: 15px; - color: #999999; - border: 1px solid #DDD; - padding: 0.3em; - margin-bottom: 10px; -} -.grey -{ - display: inline; - float: right; - } -#jot #jot-tools { - margin: 0px; - padding: 0px; - height: 40px; - overflow: none; - width: 783px; - background-color: #fff; - border-bottom: 2px solid #9eabb0; -} - -#jot #jot-tools li { - list-style: none; - float: left; - width: 80px; - height: 40px; - border-bottom: 2px solid #9eabb0; -} -#jot #jot-tools li a { - display: block; - color: #cccccc; - width: 100%; - height: 40px; - text-align: center; - line-height: 40px; - overflow: hidden; -} -#jot #jot-tools li:hover { - background-color: #364e59; - border-bottom: 2px solid #bdcdd4; -} -#jot #jot-tools li.perms { - float: right; - width: 40px; -} -#jot #jot-tools li.perms a.unlock { - width: 30px; - border-left: 10px solid #cccccc; - background-color: #cccccc; - background-position: left center; -} -#jot #jot-tools li.perms a.lock { - width: 30px; - border-left: 10px solid #666666; - background-color: #666666; -} -#jot #jot-tools li.submit { - float: right; - background-color: #cccccc; - border-bottom: 2px solid #cccccc; - border-right: 1px solid #666666; - border-left: 1px solid #666666; -} -#jot #jot-tools li.submit input { - border: 0px; - margin: 0px; - padding: 0px; - background-color: #cccccc; - color: #666666; - width: 80px; - height: 40px; - line-height: 40px; -} -#jot #jot-tools li.submit input:hover { - background-color: #bdcdd4; - color: #666666; -} -#jot #jot-tools li.loading { - float: right; - background-color: #ffffff; - width: 20px; - vertical-align: center; - text-align: center; - border-top: 2px solid #9eabb0; - height: 38px; -} -#jot #jot-tools li.loading img { - margin-top: 10px; -} -#profile-jot-form #jot-title, #profile-jot-form #jot-category { - - border-radius: 5px 5px 5px 5px; - font-weight: bold; - height: 20px; - margin: 0 0 5px; - width: 60%; - border: 1px solid #d2d2d2; -} -#profile-jot-form #jot-title:-webkit-input-placeholder { - font-weight: normal; -} -#profile-jot-form #jot-title:-moz-placeholder { - font-weight: normal; -} -#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{ - width: 785px; - height: 100px; - } -#jot #jot-title:hover { - border: 1px solid #999999; -} -#jot #jot-title:focus { - border: 1px solid #999999; -} -#jot #character-counter { - width: 80px; - float: right; - text-align: right; - height: 20px; - line-height: 20px; - padding-right: 20px; -} -#jot-perms-icon, -#profile-location, -#profile-nolocation, -#profile-youtube, -#profile-video, -#profile-audio, -#profile-link, -#profile-title, -#wall-image-upload, -#wall-file-upload, -#wall-image-upload-div, -#wall-file-upload-div, -.hover, .focus { - cursor: pointer; - margin-top: 2px; -} -#profile-jot-wrapper{ - margin: 0 2em 20px 0; - width: 785px; - } - -#profile-jot-submit-wrapper { - margin-bottom: 50px; - width: 785px; -} - -#profile-jot-submit { - float: right; - margin-top: 2px; - font-size: 14px; -} -#profile-upload-wrapper { - float: left; - margin-top: 2px; - margin-left: 10px; - -} -#profile-attach-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-rotator { - float: left; - margin-left: 30px; - margin-top: 2px; -} -#profile-link-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-youtube-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-video-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-audio-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-location-wrapper { - float: left; - margin-left: 15px; - margin-top: 2px; -} -#profile-jot-perms { - float: left; - margin-left: 45px; - margin-top: 2px; -} -#jot-preview-link { - float: right; - margin-left: 10px; - margin-top: 2px; - font-size: 9px; - font-weight: bolder; - cursor: pointer; -} -#profile-jot-perms{ - float: right; - margin-left: 10px; - margin-top: 2px; - } -/** buttons **/ -.button.creation1 { - background-color: #fff; - border: 1px solid #777777; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - font-weight: bolder; - cursor: pointer; -} .button.creation2 { - background-color: #FF500F; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 1px 1px #CFCFCF; - margin-left: 5px; - font-weight: bolder; + background-color: #ff500f; cursor: pointer; } -/*input[type="submit"] { - border: 0px; - background-color: @ButtonBackgroundColor; - color: @ButtonColor; - padding: 0px 10px; - .rounded(5px); - height: 18px; -}*/ -/** acl **/ -#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper { - display: block!important; -} -#acl-wrapper { - width: 690px; - float: left; -} -#acl-search { - float: right; - background: #ffffff url("../../../images/search_18.png") no-repeat right center; - padding-right: 20px; -} -#acl-showall { - float: left; - display: block; - width: auto; - height: 18px; - background-color: #cccccc; - background-image: url("../../../images/show_all_off.png"); - background-position: 7px 7px; - background-repeat: no-repeat; - padding: 7px 5px 0px 30px; - color: #999999; - -moz-border-radius: 5px 5px 5px 5px; - -webkit-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; -} -#acl-showall.selected { - color: #000000; - background-color: #ff9900; - background-image: url("../../../images/show_all_on.png"); -} -#acl-list { - height: 210px; - border: 1px solid #cccccc; - clear: both; - margin-top: 30px; - overflow: auto; -} -.acl-list-item { - display: block; - width: 150px; - height: 30px; - border: 1px solid #cccccc; - margin: 5px; - float: left; -} -.acl-list-item img { - width: 22px; - height: 22px; - float: left; - margin: 4px; -} -.acl-list-item p { - height: 12px; - font-size: 10px; - margin: 0px; - padding: 2px 0px 1px; - overflow: hidden; -} -.acl-list-item a { - font-size: 8px; - display: block; - width: 40px; - height: 10px; - float: left; - color: #999999; - background-color: #cccccc; - background-position: 3px 3px; - background-repeat: no-repeat; - margin-right: 5px; - -webkit-border-radius: 2px ; - -moz-border-radius: 2px; - border-radius: 2px; - padding-left: 15px; -} -#acl-wrapper a:hover { - text-decoration: none; - color: #000000; -} -.acl-button-show { - background-image: url("../../../images/show_off.png"); -} -.acl-button-hide { - background-image: url("../../../images/hide_off.png"); -} -.acl-button-show.selected { - color: #000000; - background-color: #9ade00; - background-image: url("../../../images/show_on.png"); -} -.acl-button-hide.selected { - color: #000000; - background-color: #ff4141; - background-image: url("../../../images/hide_on.png"); -} -.acl-list-item.groupshow { - border-color: #9ade00; -} -.acl-list-item.grouphide { - border-color: #ff4141; -} -/** /acl **/ -/** tab buttons 14618a**/ -ul.tabs { - list-style-type: none; - padding-bottom: 10px; - font-size: 13px; -} -ul.tabs li { - float: left; - margin-left: 5px; -} + + +/*ACL*/ + ul.tabs li .active { background-color: #535353; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - margin-left: 5px; -} -//settings tabs -ul.rs_tabs { - list-style-type: none; - font-size: 11px; -} -ul.rs_tabs li { - float: left; - margin-bottom: 30px; - clear: both; -} + box-shadow: 2px 2px 2px #CFCFCF;} + ul.rs_tabs li .selected { - background-color: #535353; - border: 1px solid #777777; - color: white; - border-radius: 3px 3px 3px 3px; - box-shadow: 2px 2px 2px #CFCFCF; - font-size: 13px; -} -.rs_tabs { - list-style-type: none; - font-size: 11px; - background-position: 0 -20px; - background-repeat: repeat-x; - height: 27px; - padding: 0; - } -.rs_tab.button { - /*background: none repeat scroll 0 0 #F8F8F8;*/ - border: 1px solid #CCCCCC; - border-radius: 3px 3px 3px 3px; - font-weight: bolder; - padding: 3px; - color: #333333; - text-decoration: none; - } -/** - * Form fields - */ -.field { - margin-bottom: 10px; - padding-bottom: 10px; - overflow: auto; - width: 100%; -} -.field label { - float: left; - width: 200px; -} -.field input, .field textarea { - width: 400px; -} -.field textarea { - height: 100px; -} -.field .field_help { - display: block; - margin-left: 200px; - color: #666666; -} -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} -.field .hidden { - display: none!important; -} -.field.radio .field_help { - margin-left: 0px; -} -.suggest-select { -width: 500px; -height: 350px; - } -.message-to-select { - width: 400px; - height: 150px; - } -#directory-search-form{ - margin-bottom: 50px; - } -#profile-edit-links-end { - clear: both; - margin-bottom: 15px; -} + background-color: #535353;} -#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; } +/*Photo */ -#profile-edit-links li { - float: left; - list-style: none; - margin-left: 10px; -} - -.profile-edit-side-div { - display: none; -} - -#register-form label, -#profile-edit-form label { - width: 300px; float: left; -} - -.required { - display: inline; - color: #B20202; -} - -/* oauth */ -.oauthapp { - height: auto; - overflow: auto; - border-bottom: 2px solid #cccccc; - padding-bottom: 1em; - margin-bottom: 1em; -} -.oauthapp img { - float: left; - width: 48px; - height: 48px; - margin: 10px; -} -.oauthapp img.noicon { - background-image: url("../../../images/icons/48/plugin.png"); - background-position: center center; - background-repeat: no-repeat; -} -.oauthapp a { - float: left; -} -/* contacts */ -.contact-entry-wrapper { - width: 120px; - height: 120px; - float: left; -} -/* photo */ .photo { box-shadow: 2px 2px 5px 0px #000000; margin: 0px; border-radius: 10px; -height: 145px !important; -width: 145px !important; -} -.lframe { - float: left; - /*margin: 0px 10px 10px 0px;*/ -} -/* profile match wrapper */ -.profile-match-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 20px; -} -.profile-match-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.profile-match-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.profile-match-wrapper { - left: 0px; - top: 63px; } -.contact-photo-menu-button { - position: relative; - background-image: url("../../../images/icons/16/menu.png"); - background-position: top left; - background-repeat: no-repeat; - margin: 0px 0px -16px 0px; - padding: 0px; - width: 16px; - height: 16px; - top: -16px; left:0px; - overflow: hidden; - text-indent: 40px; - display: none; - -} -.contact-photo-menu { - width: 11em; - border: 3px solid #364e59; - color: #2d2d2d; - background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; - display: none; - z-index: 10000; -} -.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } -.contact-photo-menu li a { - display: block; - padding: 5px 10px; - color: #2d2d2d; - text-decoration: none; -} -.contact-photo-menu li a:hover { - background-color: #bdcdd4; -} - -/* page footer */ -footer { - height: 100px; - display: table-row; -} - -blockquote { - border-left: 1px solid #D2D2D2; - padding-left: 9px; - margin: 0 0 0 .8ex; - color: #777; -} -.oembed { - - font-weight: bold; -} -.aprofile dt{ -box-shadow: 1px 1px 5px 0; - color: #666666; - margin: 15px 0 5px; - padding-left: 5px; - } -/* ================== */ -/* = Contacts Block = */ -/* ================== */ - -.contact-block-img { - width: 55px; - height: 55px; - padding-right: 3px; -} -.contact-block-div { - float: left; -} - -.contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } - -#group-edit-wrapper { - margin-bottom: 10px; -} - -#group-members-end { - clear: both; -} -#group-edit-desc { - margin-top: 15px; -} - -/* -#group-separator, -#prof-separator { display: none;} -*/ -#prof-members-end{ - clear: both; - } - -#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { - margin-bottom: 10px; - margin-top: 20px; -} - -#prvmail-submit { - float: right; - margin-top: 10px; -} - -#prvmail-subject -{ -background: none repeat scroll 0 0 #FFFFFF; -border: 1px solid #CCCCCC; -border-radius: 5px 5px 5px 5px; -font-weight: bold; -height: 20px; -margin: 0 0 5px; -vertical-align: middle; -} -#prvmail-form{ - width: 597px; - } - -#prvmail-upload-wrapper, -#prvmail-link-wrapper, -#prvmail-rotator-wrapper { - float: left; - margin-top: 10px; - margin-right: 10px; - width: 24px; -} - -#prvmail-end { - clear: both; -} - -.mail-list-sender, -.mail-list-detail { - float: left; -} -.mail-list-detail { - margin-left: 20px; -} - -.mail-list-subject { - font-size: 1.1em; - margin-top: 10px; -} -a.mail-list-link { - display: block; - font-size: 1.3em; - padding: 4px 0; -} - -/* -*a.mail-list-link:hover { -* background-color: #15607B; -* color: #F5F6FB; -*} -*/ - -.mail-list-outside-wrapper-end { - clear: both; -} - -.mail-list-outside-wrapper { - margin-top: 30px; -} - -.mail-list-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} - -.mail-list-delete-icon { - border: none; -} - -.mail-conv-sender, -.mail-conv-detail { - float: left; -} -.mail-conv-detail { - margin-left: 20px; - width: 500px; -} - -.mail-conv-subject { - font-size: 1.4em; - margin: 10px 0; -} - -.mail-conv-outside-wrapper-end { - clear: both; -} - -.mail-conv-outside-wrapper { - margin-top: 30px; -} - -.mail-conv-delete-wrapper { - float: right; - margin-right: 30px; - margin-top: 15px; -} -.mail-conv-break { - clear: both; -} - -.mail-conv-delete-icon { - border: none; -} - -/* ========== */ -/* = Events = */ -/* ========== */ -.eventcal { - float: left; - font-size: 20px; -} - -.vevent { -position: relative; -width: 400px; -padding: 20px; -padding-top: 10px; -margin: 0 0px; -margin-bottom: 10px; -background-color: white; --webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); --moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); -} -.vevent .event-location { - margin-left: 10px; - margin-right: 10px; -} -.vevent .event-description { -margin-left: 10px; -margin-right: 10px; -font-size: 1.1em; -font-weight: bolder; -} -.vevent .event-start, .vevent .event-end { - -margin-right: 20px; -margin-bottom: 2px; -margin-top: 2px; -font-size: 0.9em; -text-align: left; -} -.event-start .dtstart, .event-end .dtend { -float: right; -} - - -#new-event-link { - margin-bottom: 10px; -} - -.edit-event-link, .plink-event-link { - float: left; - margin-top: 4px; - margin-right: 4px; - margin-bottom: 15px; -} - -.event-description:before { - content: url("../../../view/theme/diabook/icons/events2.png") !important; - margin-right: 15px; -} - -.event-start, .event-end { - margin-left: 10px; - width: 330px; - clear: both; -} - -.event-start .dtstart, .event-end .dtend { - float: right; -} - -.event-list-date { - margin-bottom: 10px; -} - -.prevcal, .nextcal { - float: left; - margin-left: 32px; - margin-right: 32px; - margin-top: 64px; -} -.event-calendar-end { - clear: both; -} - - -.calendar { - font-family: Courier, monospace; -} .calendar.eventcal a { - color: #1872A2; - } -.today { - font-weight: bold; - color: #FF0000; + color: #1872a2; } -.settings-block { - border: 1px solid #AAA; - margin: 10px; - padding: 10px; -} - -.app-title { - margin: 10px; -} - -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; -} - -#identity-manage-choose { - margin-bottom: 15px; -} - -#identity-submit { - margin-top: 20px; -} - -#photo-prev-link, #photo-next-link { - padding: 10px; - float: left; -} -.lightbox{ - float: left; - } -#photo-photo { - float: left; -} -#photo-like-div .wall-item-like-buttons { - float: left; - margin-right: 10px; - } -.wall-item-like-buttons .icon.like { -float: left; -} - -#photo-photo-end { - clear: both; -} - -.tabs .comment-wwedit-wrapper { - display: block; - margin-top: 30px; - margin-left: 50px; - } - -.profile-match-photo { - float: left; - text-align: center; - width: 120px; -} - -.profile-match-name { - float: left; - text-align: center; - width: 120px; - overflow: hidden; -} - -.profile-match-break, -.profile-match-end { - clear: both; -} - -.profile-match-connect { - text-align: center; - font-weight: bold; -} - -.profile-match-wrapper { - float: left; - padding: 10px; - width: 120px; - height: 120px; - scroll: auto; -} -#profile-match-wrapper-end { - clear: both; -} - -/* ============= */ -/* = Directory = */ -/* ============= */ -section .directory-item dl { - height: auto; - overflow: auto; -} -section .directory-item dt { - float: left; - margin-left: 0px; - text-align: right; - color: #999; -} -section .directory-item dd { - float: left; - margin-left: 5px; -} -.directory-profile-wrapper { - float: left; - max-height: 178px; - overflow: hidden; - width: 635px; -} -.directory-copy-wrapper { - float: left; - overflow: hidden; -} -/* contacts menu */ -.contact-photo-wrapper { - position: relative; -} -.contact-photo { - width: 48px; - height: 48px; - overflow: hidden; - display: block; -} -.contact-photo img { - width: 48px; - height: 48px; -} -.contact-photo-menu-button { - display: none; - /* position: absolute; */ - /* position: absolute; */ - left: 0px; - top: -16px; -} -.contact-wrapper { - float: left; - width: 90px; - height: 90px; - margin-bottom: 15px; -} -.contact-wrapper .contact-photo { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo img { - width: 80px; - height: 80px; -} -.contact-wrapper .contact-photo-menu-button { - left: 0px; - top: 63px; -} -.directory-item { - float: left; - width: 800px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} - -section .directory-photo-wrapper { - float: left; - height: 200px; - width: 165px; -} -.contact-name { - font-weight: bold; - font-size: 18px; - margin-bottom: -3px; - text-align: left; -} -.contact-details { - color: #999999; -} -.page-type { - font-size: 10px; - font-style: italic; -} -.directory-detailscolumn-wrapper { - float: left; - width: 305px; - margin-right: 10px; -} -.directory-profile-wrapper dl { - margin-top: 3px; - margin-bottom: 3px; -} -.directory-profile-title { - font-weight: bold; - margin-bottom: 3px; - font-size: 14px; -} -#side-bar-photos-albums{ - margin-top: 15px; -} -.photo-top-photo, .photo-album-photo { - -webkit-border-radius: 5px 5px 0 0; - -moz-border-radius: 5px 5px 0 0; - border-radius: 5px 5px 0 0; -} -.photo-album-image-wrapper, .photo-top-image-wrapper { - float: left; - -moz-box-shadow: 0 0 5px #888; - -webkit-box-shadow: 0 0 5px #888; - box-shadow: 0 0 5px #888; - background-color: #000; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - padding-bottom: 20px; - position: relative; - margin: 0 10px 10px 0; - width: 200px; height: 140px; - overflow: hidden; -} .photo-top-album-name { width: 100%; position: absolute; @@ -2933,39 +384,5 @@ section .directory-photo-wrapper { background-color: #EEE; } .photo-top-album-link{ - color: #1872A2; - } -.photo-top-album-img{ - - } -/*.photo-top-image-wrapper { - position: relative; - float: left; - margin-top: 15px; - margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - position: absolute; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; - background-color: rgb(255, 255, 255); -}*/ -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - -#photos-upload-newalbum-div { - float: left; - width: 175px; -} - + color: #1872a2; +} \ No newline at end of file