diff --git a/boot.php b/boot.php
index 8b25dff46..b8a61c796 100644
--- a/boot.php
+++ b/boot.php
@@ -9,7 +9,7 @@ require_once('include/nav.php');
require_once('include/cache.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '2.3.1322' );
+define ( 'FRIENDICA_VERSION', '2.3.1324' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1138 );
diff --git a/htconfig.php b/htconfig.php
index 63a40c809..872572654 100644
--- a/htconfig.php
+++ b/htconfig.php
@@ -69,7 +69,7 @@ $a->config['system']['rino_encrypt'] = true;
// allowed themes (change this from admin panel after installation)
-$a->config['system']['allowed_themes'] = 'dispy,quattro,testbubble,vier,darkbubble,darkzero,duepuntozero,greenzero,purplezero,quattro-green,slackr,diabook,diabook-blue';
+$a->config['system']['allowed_themes'] = 'dispy,quattro,vier,darkzero,duepuntozero,greenzero,purplezero,slackr,diabook';
// default system theme
diff --git a/include/conversation.php b/include/conversation.php
index 1b869b91e..521b4623b 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -553,6 +553,14 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
'$myphoto' => $a->contact['thumb'],
'$comment' => t('Comment'),
'$submit' => t('Submit'),
+ '$edbold' => t('Bold'),
+ '$editalic' => t('Italic'),
+ '$eduline' => t('Underline'),
+ '$edquote' => t('Quote'),
+ '$edcode' => t('Code'),
+ '$edimg' => t('Image'),
+ '$edurl' => t('Link'),
+ '$edvideo' => t('Video'),
'$preview' => t('Preview'),
'$ww' => (($mode === 'network') ? $commentww : '')
));
diff --git a/mod/message.php b/mod/message.php
index 260f4bb14..dbca45930 100644
--- a/mod/message.php
+++ b/mod/message.php
@@ -313,6 +313,29 @@ function message_content(&$a) {
$from_url = $a->get_baseurl(true) . '/redir/' . $message['contact-id'];
$sparkle = ' sparkle';
}
+
+
+ $Text = $message['body'];
+ $saved_image = '';
+ $img_start = strpos($Text,'[img]data:');
+ $img_end = strpos($Text,'[/img]');
+
+ if($img_start !== false && $img_end !== false && $img_end > $img_start) {
+ $start_fragment = substr($Text,0,$img_start);
+ $img_start += strlen('[img]');
+ $saved_image = substr($Text,$img_start,$img_end - $img_start);
+ $end_fragment = substr($Text,$img_end + strlen('[/img]'));
+ $Text = $start_fragment . '[!#saved_image#!]' . $end_fragment;
+ $search = '/\[url\=(.*?)\]\[!#saved_image#!\]\[\/url\]' . '/is';
+ $replace = '[url=' . z_path() . '/redir/' . $message['contact-id']
+ . '?f=1&url=' . '$1' . '][!#saved_image#!][/url]' ;
+
+ $Text = preg_replace($search,$replace,$Text);
+
+ if(strlen($saved_image))
+ $message['body'] = str_replace('[!#saved_image#!]', '[img]' . $saved_image . '[/img]',$Text);
+ }
+
$mails[] = array(
'id' => $message['id'],
'from_name' => template_escape($message['from-name']),
diff --git a/mod/settings.php b/mod/settings.php
index 8c8b3062d..3072d3d65 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -75,6 +75,11 @@ EOT;
'label' => t('Export personal data'),
'url' => $a->get_baseurl(true) . '/uexport',
'selected' => ''
+ ),
+ array(
+ 'label' => t('Remove account'),
+ 'url' => $a->get_baseurl(true) . '/removeme',
+ 'selected' => ''
)
);
diff --git a/tests/autoname_test.php b/tests/autoname_test.php
index c83e4a471..702e05bef 100644
--- a/tests/autoname_test.php
+++ b/tests/autoname_test.php
@@ -67,7 +67,10 @@ class AutonameTest extends PHPUnit_Framework_TestCase {
$autoname2=autoname(1);
$this->assertEquals(1, count($autoname2));
-
- $this->assertFalse($autoname1==$autoname2);
+
+ // The following test is problematic, with only 26 possibilities
+ // generating the same thing twice happens often aka
+ // birthday paradox
+// $this->assertFalse($autoname1==$autoname2);
}
}
\ No newline at end of file
diff --git a/util/messages.po b/util/messages.po
index 651eafbcd..4eba4b75b 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2.3.1322\n"
+"Project-Id-Version: 2.3.1324\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-24 10:00-0700\n"
+"POT-Creation-Date: 2012-04-26 10:00-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -218,7 +218,7 @@ msgid "link to source"
msgstr ""
#: ../../mod/events.php:296 ../../view/theme/diabook/theme.php:250
-#: ../../include/nav.php:52 ../../boot.php:1471
+#: ../../include/nav.php:52 ../../boot.php:1481
msgid "Events"
msgstr ""
@@ -531,7 +531,7 @@ msgstr ""
#: ../../mod/photos.php:1214 ../../mod/editpost.php:104
#: ../../mod/wallmessage.php:145 ../../mod/message.php:188
-#: ../../mod/message.php:357 ../../include/conversation.php:361
+#: ../../mod/message.php:380 ../../include/conversation.php:361
#: ../../include/conversation.php:698 ../../include/conversation.php:975
msgid "Please wait"
msgstr ""
@@ -629,7 +629,7 @@ msgid "Edit"
msgstr ""
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
-#: ../../mod/message.php:186 ../../mod/message.php:355
+#: ../../mod/message.php:186 ../../mod/message.php:378
#: ../../include/conversation.php:957
msgid "Upload photo"
msgstr ""
@@ -639,7 +639,7 @@ msgid "Attach file"
msgstr ""
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
-#: ../../mod/message.php:187 ../../mod/message.php:356
+#: ../../mod/message.php:187 ../../mod/message.php:379
#: ../../include/conversation.php:961
msgid "Insert web link"
msgstr ""
@@ -2249,7 +2249,7 @@ msgstr ""
msgid "Invalid contact."
msgstr ""
-#: ../../mod/notes.php:44 ../../boot.php:1476
+#: ../../mod/notes.php:44 ../../boot.php:1486
msgid "Personal Notes"
msgstr ""
@@ -2306,17 +2306,17 @@ msgid ""
msgstr ""
#: ../../mod/wallmessage.php:133 ../../mod/message.php:178
-#: ../../mod/message.php:347
+#: ../../mod/message.php:370
msgid "To:"
msgstr ""
#: ../../mod/wallmessage.php:134 ../../mod/message.php:179
-#: ../../mod/message.php:348
+#: ../../mod/message.php:371
msgid "Subject:"
msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:183
-#: ../../mod/message.php:351 ../../mod/invite.php:113
+#: ../../mod/message.php:374 ../../mod/invite.php:113
msgid "Your message:"
msgstr ""
@@ -2500,7 +2500,7 @@ msgstr ""
#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:247
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
-#: ../../include/nav.php:50 ../../boot.php:1458
+#: ../../include/nav.php:50 ../../boot.php:1468
msgid "Profile"
msgstr ""
@@ -2715,7 +2715,7 @@ msgid "Access denied."
msgstr ""
#: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:249
-#: ../../include/nav.php:51 ../../boot.php:1463
+#: ../../include/nav.php:51 ../../boot.php:1473
msgid "Photos"
msgstr ""
@@ -2890,7 +2890,7 @@ msgstr ""
msgid "%s and You"
msgstr ""
-#: ../../mod/message.php:242 ../../mod/message.php:340
+#: ../../mod/message.php:242 ../../mod/message.php:363
msgid "Delete conversation"
msgstr ""
@@ -2909,17 +2909,17 @@ msgstr[1] ""
msgid "Message not available."
msgstr ""
-#: ../../mod/message.php:324
+#: ../../mod/message.php:347
msgid "Delete message"
msgstr ""
-#: ../../mod/message.php:342
+#: ../../mod/message.php:365
msgid ""
"No secure communications available. You may be able to "
"respond from the sender's profile page."
msgstr ""
-#: ../../mod/message.php:346
+#: ../../mod/message.php:369
msgid "Send Reply"
msgstr ""
@@ -6064,7 +6064,7 @@ msgstr ""
msgid "End this session"
msgstr ""
-#: ../../include/nav.php:49 ../../boot.php:1453
+#: ../../include/nav.php:49 ../../boot.php:1463
msgid "Status"
msgstr ""
@@ -6827,34 +6827,34 @@ msgstr ""
msgid "Message"
msgstr ""
-#: ../../boot.php:1151 ../../boot.php:1223
+#: ../../boot.php:1151 ../../boot.php:1227
msgid "g A l F d"
msgstr ""
-#: ../../boot.php:1152 ../../boot.php:1224
+#: ../../boot.php:1152 ../../boot.php:1228
msgid "F d"
msgstr ""
-#: ../../boot.php:1177
-msgid "Birthday Reminders"
-msgstr ""
-
-#: ../../boot.php:1178
-msgid "Birthdays this week:"
-msgstr ""
-
-#: ../../boot.php:1201 ../../boot.php:1266
+#: ../../boot.php:1197 ../../boot.php:1268
msgid "[today]"
msgstr ""
-#: ../../boot.php:1247
+#: ../../boot.php:1209
+msgid "Birthday Reminders"
+msgstr ""
+
+#: ../../boot.php:1210
+msgid "Birthdays this week:"
+msgstr ""
+
+#: ../../boot.php:1261
+msgid "[No description]"
+msgstr ""
+
+#: ../../boot.php:1279
msgid "Event Reminders"
msgstr ""
-#: ../../boot.php:1248
+#: ../../boot.php:1280
msgid "Events this week:"
msgstr ""
-
-#: ../../boot.php:1260
-msgid "[No description]"
-msgstr ""
diff --git a/view/birthdays_reminder.tpl b/view/birthdays_reminder.tpl
index c0422c1d7..a00e5c7f8 100644
--- a/view/birthdays_reminder.tpl
+++ b/view/birthdays_reminder.tpl
@@ -1,9 +1,9 @@
{{ if $count }}
-$event_reminders ($count)
+$event_reminders ($count)
$event_title
{{ for $events as $event }}
-
+
{{ endfor }}
{{ endif }}
diff --git a/view/eo/messages.po b/view/eo/messages.po
index 421f92788..a09c949a6 100644
--- a/view/eo/messages.po
+++ b/view/eo/messages.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-04-22 10:00-0700\n"
-"PO-Revision-Date: 2012-04-23 19:27+0000\n"
+"POT-Creation-Date: 2012-04-23 10:00-0700\n"
+"PO-Revision-Date: 2012-04-25 06:35+0000\n"
"Last-Translator: Martin Schmitt \n"
"Language-Team: Esperanto (http://www.transifex.net/projects/p/friendica/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -52,7 +52,7 @@ msgstr "Ĝisdatigo de kontakto malsukcesis."
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
#: ../../mod/profile_photo.php:163 ../../mod/message.php:38
#: ../../mod/message.php:90 ../../mod/allfriends.php:9
-#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138
#: ../../mod/profiles.php:7 ../../mod/profiles.php:329
#: ../../mod/delegate.php:6 ../../mod/suggest.php:28 ../../mod/invite.php:13
@@ -292,7 +292,7 @@ msgid "Share this event"
msgstr "Kunhavigi la okazon"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533
+#: ../../mod/dfrn_request.php:800 ../../mod/settings.php:533
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Nuligi"
@@ -336,7 +336,7 @@ msgid ""
" and/or create new posts for you?"
msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
+#: ../../mod/api.php:105 ../../mod/dfrn_request.php:788
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
@@ -347,7 +347,7 @@ msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn
msgid "Yes"
msgstr "Jes"
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
+#: ../../mod/api.php:106 ../../mod/dfrn_request.php:789
#: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873
@@ -447,17 +447,17 @@ msgid "Image file is empty."
msgstr "Bilddosiero estas malplena."
#: ../../mod/photos.php:653 ../../mod/profile_photo.php:124
-#: ../../mod/wall_upload.php:69
+#: ../../mod/wall_upload.php:83
msgid "Unable to process image."
msgstr "Ne eblas procedi la bildon."
#: ../../mod/photos.php:673 ../../mod/profile_photo.php:257
-#: ../../mod/wall_upload.php:88
+#: ../../mod/wall_upload.php:102
msgid "Image upload failed."
msgstr "Alŝuto de bildo malsukcesis."
#: ../../mod/photos.php:759 ../../mod/community.php:16
-#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17
+#: ../../mod/dfrn_request.php:719 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
msgid "Public access denied."
msgstr "Publika atingo ne permesita."
@@ -733,19 +733,19 @@ msgstr "Ekzemple: bob@example.com, mary@example.com"
msgid "This introduction has already been accepted."
msgstr "Tia prezento jam estas akceptita"
-#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427
+#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:475
msgid "Profile location is not valid or does not contain profile information."
msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn."
-#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432
+#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:480
msgid "Warning: profile location has no identifiable owner name."
msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon."
-#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434
+#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:482
msgid "Warning: profile location has no profile photo."
msgstr "Averto: La adreso de la profilo ne enhavas bildon."
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:485
#, 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"
@@ -789,128 +789,128 @@ msgstr "Nevalida repoŝtadreso."
msgid "This account has not been configured for email. Request failed."
msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis."
-#: ../../mod/dfrn_request.php:372
+#: ../../mod/dfrn_request.php:420
msgid "Unable to resolve your name at the provided location."
msgstr "Via nomo ne troveblas al la donita adreso."
-#: ../../mod/dfrn_request.php:385
+#: ../../mod/dfrn_request.php:433
msgid "You have already introduced yourself here."
msgstr "Vi vin jam prezentis tie."
-#: ../../mod/dfrn_request.php:389
+#: ../../mod/dfrn_request.php:437
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s."
-#: ../../mod/dfrn_request.php:410
+#: ../../mod/dfrn_request.php:458
msgid "Invalid profile URL."
msgstr "Nevalida adreso de profilo."
-#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20
+#: ../../mod/dfrn_request.php:464 ../../mod/follow.php:20
msgid "Disallowed profile URL."
msgstr "Malpermesita adreso de profilo."
-#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102
+#: ../../mod/dfrn_request.php:533 ../../mod/contacts.php:102
msgid "Failed to update contact record."
msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis."
-#: ../../mod/dfrn_request.php:506
+#: ../../mod/dfrn_request.php:554
msgid "Your introduction has been sent."
msgstr "Via prezento estas sendita."
-#: ../../mod/dfrn_request.php:559
+#: ../../mod/dfrn_request.php:607
msgid "Please login to confirm introduction."
msgstr "Bonvolu ensaluti por jesigi la prezenton."
-#: ../../mod/dfrn_request.php:573
+#: ../../mod/dfrn_request.php:621
msgid ""
"Incorrect identity currently logged in. Please login to "
"this profile."
msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon."
-#: ../../mod/dfrn_request.php:585
+#: ../../mod/dfrn_request.php:633
#, php-format
msgid "Welcome home %s."
msgstr "Bonvenon hejme, %s."
-#: ../../mod/dfrn_request.php:586
+#: ../../mod/dfrn_request.php:634
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s."
-#: ../../mod/dfrn_request.php:587
+#: ../../mod/dfrn_request.php:635
msgid "Confirm"
msgstr "Konfirmi."
-#: ../../mod/dfrn_request.php:628 ../../include/items.php:2691
+#: ../../mod/dfrn_request.php:676 ../../include/items.php:2691
msgid "[Name Withheld]"
msgstr "[Kaŝita nomo]"
-#: ../../mod/dfrn_request.php:715
+#: ../../mod/dfrn_request.php:763
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: "
-#: ../../mod/dfrn_request.php:731
+#: ../../mod/dfrn_request.php:779
msgid "Connect as an email follower (Coming soon)"
msgstr "Konektu kiel retpoŝta sekvanto (Baldaŭ venos)"
-#: ../../mod/dfrn_request.php:733
+#: ../../mod/dfrn_request.php:781
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 "Se vi ne estas membro de la libra interkona reto, sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ ."
-#: ../../mod/dfrn_request.php:736
+#: ../../mod/dfrn_request.php:784
msgid "Friend/Connection Request"
msgstr "Prezento / Konektpeto"
-#: ../../mod/dfrn_request.php:737
+#: ../../mod/dfrn_request.php:785
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
-#: ../../mod/dfrn_request.php:738
+#: ../../mod/dfrn_request.php:786
msgid "Please answer the following:"
msgstr "Bonvolu respondi:"
-#: ../../mod/dfrn_request.php:739
+#: ../../mod/dfrn_request.php:787
#, php-format
msgid "Does %s know you?"
msgstr "Ĉu %s konas vin?"
-#: ../../mod/dfrn_request.php:742
+#: ../../mod/dfrn_request.php:790
msgid "Add a personal note:"
msgstr "Aldoni personan noton:"
-#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76
+#: ../../mod/dfrn_request.php:792 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
-#: ../../mod/dfrn_request.php:745
+#: ../../mod/dfrn_request.php:793
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federaciaj interkonaj retejoj"
-#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
+#: ../../mod/dfrn_request.php:794 ../../mod/settings.php:629
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
-#: ../../mod/dfrn_request.php:747
+#: ../../mod/dfrn_request.php:795
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo."
-#: ../../mod/dfrn_request.php:748
+#: ../../mod/dfrn_request.php:796
msgid "Your Identity Address:"
msgstr "Via identeca adreso:"
-#: ../../mod/dfrn_request.php:751
+#: ../../mod/dfrn_request.php:799
msgid "Submit Request"
msgstr "Sendi peton"
@@ -1680,7 +1680,7 @@ msgstr "Pasvorta riparado petita je %s"
#: ../../mod/register.php:388 ../../mod/register.php:442
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
#: ../../addon/facebook/facebook.php:650
-#: ../../addon/facebook/facebook.php:1136
+#: ../../addon/facebook/facebook.php:1139
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2700
msgid "Administrator"
msgstr "Administranto"
@@ -2315,7 +2315,9 @@ msgid "Personal Notes"
msgstr "Personaj Notoj"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
-#: ../../addon/facebook/facebook.php:715 ../../include/text.php:652
+#: ../../addon/facebook/facebook.php:717
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:147
+#: ../../include/text.php:652
msgid "Save"
msgstr "Konservi"
@@ -2747,7 +2749,7 @@ msgid "People Search"
msgstr "Serĉi Membrojn"
#: ../../mod/like.php:127 ../../mod/tagger.php:70
-#: ../../addon/facebook/facebook.php:1655
+#: ../../addon/facebook/facebook.php:1533
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/diabook-green/theme.php:83
@@ -2770,7 +2772,7 @@ msgstr "Serĉi Membrojn"
msgid "status"
msgstr "staton"
-#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1659
+#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1537
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/diabook-green/theme.php:97
#: ../../view/theme/diabook/diabook-red/theme.php:96
@@ -2836,8 +2838,8 @@ msgstr "Ne eblas trovi originalan afiŝon."
msgid "Empty post discarded."
msgstr "Forviŝis malplenan afiŝon."
-#: ../../mod/item.php:372 ../../mod/wall_upload.php:85
-#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101
+#: ../../mod/item.php:372 ../../mod/wall_upload.php:99
+#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Muraj Bildoj"
@@ -2889,7 +2891,7 @@ msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la
msgid "Unable to process image"
msgstr "Ne eblas procezi bildon."
-#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:60
+#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:74
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildo estas pli granda ol la limito %d"
@@ -3515,48 +3517,48 @@ msgstr "Atingo al ĉi tio profilo estas limitigita"
msgid "Tips for New Members"
msgstr "Konsilo por novaj membroj"
-#: ../../mod/ping.php:175
+#: ../../mod/ping.php:177
msgid "{0} wants to be your friend"
msgstr "{0} volas amikiĝi kun vi"
-#: ../../mod/ping.php:180
+#: ../../mod/ping.php:182
msgid "{0} sent you a message"
msgstr "{0} sendis mesaĝon al vi"
-#: ../../mod/ping.php:185
+#: ../../mod/ping.php:187
msgid "{0} requested registration"
msgstr "{0} petis registradon"
-#: ../../mod/ping.php:191
+#: ../../mod/ping.php:193
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} komentis pri la afiŝo de %s"
-#: ../../mod/ping.php:196
+#: ../../mod/ping.php:198
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} satis la afiŝon de %s"
-#: ../../mod/ping.php:201
+#: ../../mod/ping.php:203
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} malŝatis la afiŝon de %s"
-#: ../../mod/ping.php:206
+#: ../../mod/ping.php:208
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} amikiĝis kun %s"
-#: ../../mod/ping.php:211
+#: ../../mod/ping.php:213
msgid "{0} posted"
msgstr "{0} afiŝis"
-#: ../../mod/ping.php:216
+#: ../../mod/ping.php:218
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} markis la afiŝon de %s kun #%s"
-#: ../../mod/ping.php:222
+#: ../../mod/ping.php:224
msgid "{0} mentioned you in a post"
msgstr "{0} menciis vin en afiŝo"
@@ -4268,93 +4270,99 @@ msgstr "Agordoj por la Facebook konektilo"
msgid "Facebook API Key"
msgstr "Facebook API ŝlosilo"
-#: ../../addon/facebook/facebook.php:700
+#: ../../addon/facebook/facebook.php:701
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 "Eraro: Ŝajnas kvazaŭ vi agordis la App-ID kaj la sekreton en via .htconfig.php dosiero. Kiam ili estas agordita tie, vi ne povas agordi ĝin tra tiu ĉi formo. "
-#: ../../addon/facebook/facebook.php:705
+#: ../../addon/facebook/facebook.php:706
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr "Eraro: La API ŝlosilo aspektas malĝusta (ne eblas ricevi la programa atingoĵetono)."
-#: ../../addon/facebook/facebook.php:707
+#: ../../addon/facebook/facebook.php:708
msgid "The given API Key seems to work correctly."
msgstr "La API ŝlosilo ŝajne ĝuste funkcias."
-#: ../../addon/facebook/facebook.php:709
+#: ../../addon/facebook/facebook.php:710
msgid ""
"The correctness of the API Key could not be detected. Somthing strange's "
"going on."
msgstr "Ne povis kontroli la ĝustecon de la API ŝlosilo. Ia stranga afero okazas. "
-#: ../../addon/facebook/facebook.php:712
+#: ../../addon/facebook/facebook.php:713
msgid "App-ID / API-Key"
msgstr "Programo ID / API Ŝlosilo"
-#: ../../addon/facebook/facebook.php:713
+#: ../../addon/facebook/facebook.php:714
msgid "Application secret"
msgstr "Programo sekreto"
-#: ../../addon/facebook/facebook.php:714
+#: ../../addon/facebook/facebook.php:715
#, php-format
msgid "Polling Interval (min. %1$s minutes)"
msgstr "Intervalo por la enketilo (poller intervalo, minimume %1$s mintuoj) "
-#: ../../addon/facebook/facebook.php:718
+#: ../../addon/facebook/facebook.php:716
+msgid ""
+"Synchronize comments (no comments on Facebook are missed, at the cost of "
+"increased system load)"
+msgstr "Sinkronigi komentojn (vi ricevas ĉiujn komentojn de Facebook, sed la ŝargo de la sistemo iom kreskas)"
+
+#: ../../addon/facebook/facebook.php:720
msgid "Real-Time Updates"
msgstr "Realtempaj Ĝisdatigoj"
-#: ../../addon/facebook/facebook.php:722
+#: ../../addon/facebook/facebook.php:724
msgid "Real-Time Updates are activated."
msgstr "Realtempaj Ĝisdatigoj estas ŝaltita"
-#: ../../addon/facebook/facebook.php:723
+#: ../../addon/facebook/facebook.php:725
msgid "Deactivate Real-Time Updates"
msgstr "Malŝalti Realtempaj Ĝisdatigoj"
-#: ../../addon/facebook/facebook.php:725
+#: ../../addon/facebook/facebook.php:727
msgid "Real-Time Updates not activated."
msgstr "Realtempaj Ĝisdatigoj estas malŝaltita"
-#: ../../addon/facebook/facebook.php:725
+#: ../../addon/facebook/facebook.php:727
msgid "Activate Real-Time Updates"
msgstr "Ŝalti Realtempaj Ĝisdatigoj"
-#: ../../addon/facebook/facebook.php:743
+#: ../../addon/facebook/facebook.php:746
msgid "The new values have been saved."
msgstr "Konservis novajn valorojn."
-#: ../../addon/facebook/facebook.php:767
+#: ../../addon/facebook/facebook.php:770
msgid "Post to Facebook"
msgstr "Afiŝi al Facebook"
-#: ../../addon/facebook/facebook.php:865
+#: ../../addon/facebook/facebook.php:868
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Afiŝado al Facebook nuligita ĉar okazis konflikto en la multretpermesoj."
-#: ../../addon/facebook/facebook.php:1085
+#: ../../addon/facebook/facebook.php:1088
msgid "View on Friendica"
msgstr "Vidi ĉe Friendica"
-#: ../../addon/facebook/facebook.php:1118
+#: ../../addon/facebook/facebook.php:1121
msgid "Facebook post failed. Queued for retry."
msgstr "Malsukcesis afiŝi ĉe Facebook. Enigita en vico."
-#: ../../addon/facebook/facebook.php:1158
+#: ../../addon/facebook/facebook.php:1161
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi."
-#: ../../addon/facebook/facebook.php:1159
+#: ../../addon/facebook/facebook.php:1162
msgid "Facebook connection became invalid"
msgstr "Facebook konekto iĝis nevalida."
-#: ../../addon/facebook/facebook.php:1160
+#: ../../addon/facebook/facebook.php:1163
#, php-format
msgid ""
"Hi %1$s,\n"
@@ -4362,6 +4370,26 @@ msgid ""
"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 "Saluton %1$s,\n\nla kontekto inter viaj kontoj ĉe %2$s kaj Facebook malvalidiĝis. Tio kutime okazas post kiam via ŝangas vian pasvorton ĉe Facebook. Por reaktivigi la konekto, vi bezonas %3$sreaŭtentiĝi la Facebook konektilon%4$s."
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:144
+msgid "Lifetime of the cache (in hours)"
+msgstr "Vivodaŭro de kaŝmemoro (horoj)"
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:149
+msgid "Cache Statistics"
+msgstr "Statistikoj pri kaŝmemoro"
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:152
+msgid "Number of items"
+msgstr "Kvanto da eroj"
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:154
+msgid "Size of the cache"
+msgstr "Grando de la kaŝmemoro"
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:156
+msgid "Delete the whole cache"
+msgstr "Forviŝi la kaŝmemoron"
+
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
@@ -6541,7 +6569,7 @@ msgstr "De: "
msgid "$1 wrote:"
msgstr "$1 skribis:"
-#: ../../include/bbcode.php:238 ../../include/bbcode.php:304
+#: ../../include/bbcode.php:238 ../../include/bbcode.php:307
msgid "Image/photo"
msgstr "Bildo"
diff --git a/view/eo/strings.php b/view/eo/strings.php
index ed473ec07..78d6b05ce 100644
--- a/view/eo/strings.php
+++ b/view/eo/strings.php
@@ -948,6 +948,7 @@ $a->strings["The correctness of the API Key could not be detected. Somthing stra
$a->strings["App-ID / API-Key"] = "Programo ID / API Ŝlosilo";
$a->strings["Application secret"] = "Programo sekreto";
$a->strings["Polling Interval (min. %1\$s minutes)"] = "Intervalo por la enketilo (poller intervalo, minimume %1\$s mintuoj) ";
+$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sinkronigi komentojn (vi ricevas ĉiujn komentojn de Facebook, sed la ŝargo de la sistemo iom kreskas)";
$a->strings["Real-Time Updates"] = "Realtempaj Ĝisdatigoj";
$a->strings["Real-Time Updates are activated."] = "Realtempaj Ĝisdatigoj estas ŝaltita";
$a->strings["Deactivate Real-Time Updates"] = "Malŝalti Realtempaj Ĝisdatigoj";
@@ -961,6 +962,11 @@ $a->strings["Facebook post failed. Queued for retry."] = "Malsukcesis afiŝi ĉe
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi.";
$a->strings["Facebook connection became invalid"] = "Facebook konekto iĝis nevalida.";
$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."] = "Saluton %1\$s,\n\nla kontekto inter viaj kontoj ĉe %2\$s kaj Facebook malvalidiĝis. Tio kutime okazas post kiam via ŝangas vian pasvorton ĉe Facebook. Por reaktivigi la konekto, vi bezonas %3\$sreaŭtentiĝi la Facebook konektilon%4\$s.";
+$a->strings["Lifetime of the cache (in hours)"] = "Vivodaŭro de kaŝmemoro (horoj)";
+$a->strings["Cache Statistics"] = "Statistikoj pri kaŝmemoro";
+$a->strings["Number of items"] = "Kvanto da eroj";
+$a->strings["Size of the cache"] = "Grando de la kaŝmemoro";
+$a->strings["Delete the whole cache"] = "Forviŝi la kaŝmemoron";
$a->strings["%d person likes this"] = array(
0 => "%d homo ŝatas tiun",
1 => "%d homoj ŝatas tiun",
diff --git a/view/head.tpl b/view/head.tpl
index cd6f5ca97..7638e56ca 100644
--- a/view/head.tpl
+++ b/view/head.tpl
@@ -79,6 +79,7 @@
ins = ins.replace('&','&');
ins = ins.replace('"','"');
$("#comment-edit-text-" + id).val(tmpStr + ins);
+ $(obj).val('');
}
function showHideComments(id) {
diff --git a/view/theme/cleanzero/cleanzero-green/style.css b/view/theme/cleanzero/cleanzero-green/style.css
new file mode 100644
index 000000000..73feb5e60
--- /dev/null
+++ b/view/theme/cleanzero/cleanzero-green/style.css
@@ -0,0 +1,127 @@
+@import url('../greenzero/style.css');
+body {background-image:none;
+
+}
+
+.wall-item-content-wrapper {
+ border-top: 1px solid #ccc;
+//border-top:none;
+border-left:none;
+border-right:none;
+border-radius:0px;
+//border:none;
+ //background: #f8f8f8 !important;
+}
+
+.wall-item-content-wrapper.comment {
+ // background: #f8f8f8 !important;
+ // border-left: 1px solid #ccc;
+ border-top: 1px solid #ccc;
+border-left:none;
+border-right:none;
+border-radius:0px;
+ }
+
+ .wall-item-tools {
+// border-top: 1px solid #ccc;
+// background: #f8f8f8 !important;
+background: #ffffff !important;
+ }
+
+.comment-edit-text-empty, .comment-edit-text-full {
+ border: 1px solid #ccc;
+ border-left: 1px solid #EEE;
+ background: #ffffff;
+}
+
+.comment-edit-wrapper, .comment-wwedit-wrapper {
+ // background: #ffffff; !important;
+//background: #f8f8f8 !important;
+}
+
+
+
+
+
+section {
+ margin: 0px 10%;
+margin-right:12%;
+ background-image:none;
+}
+
+aside {
+ margin-left: 10%;
+ background-image:none;
+}
+nav {
+ margin-left: 32px;
+ margin-right: 5%;
+
+}
+
+nav #site-location {
+ top: 80px;
+ right: 5%;
+
+}
+
+.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+}
+
+.tabs { background-image:none;
+
+}
+.tab.active {
+ padding: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ border: 1px solid #CCCCCC;
+ //background: #F8F8F8;
+ font-weight: bold;
+}
+.tab { margin-right: 1px ;
+
+}
+
+#group-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#nets-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#saved-search-list {
+ border:none;
+}
+blockquote {
+ //background-color: #f8f8f8;
+ border: 1px solid #ccc;
+ -moz-border-radius: 3px;
+
+ border-radius: 3px;
+}
+.widget {
+border: none;
+}
+
+
+.wall-item-content {
+max-height: 20000px;
+overflow: none;
+}
+
+.nav-commlink, .nav-login-link {
+margin-top: 67px;
+height: 15px;
+float:left;
+padding: 6px 3px;
+}
+
+nav .nav-link {
+ //float: left;
+}
\ No newline at end of file
diff --git a/view/theme/cleanzero/cleanzero-purple/style.css b/view/theme/cleanzero/cleanzero-purple/style.css
new file mode 100644
index 000000000..1de6e076e
--- /dev/null
+++ b/view/theme/cleanzero/cleanzero-purple/style.css
@@ -0,0 +1,127 @@
+@import url('../purplezero/style.css');
+body {background-image:none;
+
+}
+
+.wall-item-content-wrapper {
+ border-top: 1px solid #ccc;
+//border-top:none;
+border-left:none;
+border-right:none;
+border-radius:0px;
+//border:none;
+ //background: #f8f8f8 !important;
+}
+
+.wall-item-content-wrapper.comment {
+ // background: #f8f8f8 !important;
+ // border-left: 1px solid #ccc;
+ border-top: 1px solid #ccc;
+border-left:none;
+border-right:none;
+border-radius:0px;
+ }
+
+ .wall-item-tools {
+// border-top: 1px solid #ccc;
+// background: #f8f8f8 !important;
+background: #ffffff !important;
+ }
+
+.comment-edit-text-empty, .comment-edit-text-full {
+ border: 1px solid #ccc;
+ border-left: 1px solid #EEE;
+ background: #ffffff;
+}
+
+.comment-edit-wrapper, .comment-wwedit-wrapper {
+ // background: #ffffff; !important;
+// background: #f8f8f8 !important;
+}
+
+
+
+
+
+section {
+ margin: 0px 10%;
+margin-right:12%;
+ background-image:none;
+}
+
+aside {
+ margin-left: 10%;
+ background-image:none;
+}
+nav {
+ margin-left: 32px;
+ margin-right: 5%;
+
+}
+
+nav #site-location {
+ top: 80px;
+ right: 5%;
+
+}
+
+.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+}
+
+.tabs { background-image:none;
+
+}
+.tab.active {
+ padding: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ border: 1px solid #CCCCCC;
+ // background: #F8F8F8;
+ font-weight: bold;
+}
+.tab { margin-right: 1px ;
+
+}
+
+#group-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#nets-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#saved-search-list {
+ border:none;
+}
+blockquote {
+ background-color: #f8f8f8;
+ border: 1px solid #ccc;
+ -moz-border-radius: 3px;
+
+ border-radius: 3px;
+}
+.widget {
+border: none;
+}
+
+
+.wall-item-content {
+max-height: 20000px;
+overflow: none;
+}
+
+.nav-commlink, .nav-login-link {
+margin-top: 67px;
+height: 15px;
+float:left;
+padding: 6px 3px;
+}
+
+nav .nav-link {
+ //float: left;
+}
\ No newline at end of file
diff --git a/view/theme/cleanzero/cleanzero/style.css b/view/theme/cleanzero/cleanzero/style.css
new file mode 100644
index 000000000..3efb8a25c
--- /dev/null
+++ b/view/theme/cleanzero/cleanzero/style.css
@@ -0,0 +1,127 @@
+@import url('../duepuntozero/style.css');
+body {background-image:none;
+
+}
+
+.wall-item-content-wrapper {
+ border-top: 1px solid #ccc;
+//border-top:none;
+border-left:none;
+border-right:none;
+border-radius:0px;
+//border:none;
+ //background: #f8f8f8 !important;
+}
+
+.wall-item-content-wrapper.comment {
+ background: #f8f8f8 !important;
+ // border-left: 1px solid #ccc;
+ border-top: 1px solid #ccc;
+border-left:none;
+border-right:none;
+border-radius:0px;
+ }
+
+ .wall-item-tools {
+// border-top: 1px solid #ccc;
+// background: #f8f8f8 !important;
+background: #ffffff !important;
+ }
+
+.comment-edit-text-empty, .comment-edit-text-full {
+ border: 1px solid #ccc;
+ border-left: 1px solid #EEE;
+ background: #ffffff;
+}
+
+.comment-edit-wrapper, .comment-wwedit-wrapper {
+ // background: #ffffff; !important;
+background: #f8f8f8 !important;
+}
+
+
+
+
+
+section {
+ margin: 0px 10%;
+margin-right:12%;
+ background-image:none;
+}
+
+aside {
+ margin-left: 10%;
+ background-image:none;
+}
+nav {
+ margin-left: 32px;
+ margin-right: 5%;
+
+}
+
+nav #site-location {
+ top: 80px;
+ right: 5%;
+
+}
+
+.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+}
+
+.tabs { background-image:none;
+
+}
+.tab.active {
+ padding: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ border: 1px solid #CCCCCC;
+ background: #F8F8F8;
+ font-weight: bold;
+}
+.tab { margin-right: 1px ;
+
+}
+
+#group-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#nets-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#saved-search-list {
+ border:none;
+}
+blockquote {
+ background-color: #f8f8f8;
+ border: 1px solid #ccc;
+ -moz-border-radius: 3px;
+
+ border-radius: 3px;
+}
+.widget {
+border: none;
+}
+
+
+.wall-item-content {
+max-height: 20000px;
+overflow: none;
+}
+
+.nav-commlink, .nav-login-link {
+margin-top: 67px;
+height: 15px;
+float:left;
+padding: 6px 3px;
+}
+
+nav .nav-link {
+ //float: left;
+}
\ No newline at end of file
diff --git a/view/theme/cleanzero/config.php b/view/theme/cleanzero/config.php
new file mode 100644
index 000000000..7982a75c5
--- /dev/null
+++ b/view/theme/cleanzero/config.php
@@ -0,0 +1,79 @@
+"cleanzero",
+ "cleanzero-green"=>"green",
+ "cleanzero-purple"=>"purple"
+ );
+ $font_sizes = array(
+ '12'=>'12',
+ "---"=>"---",
+ "16"=>"16",
+ "14"=>"14",
+ '10'=>'10',
+ );
+ $resizes = array(
+ "0"=>"0 (no resizing)",
+ "600"=>"1 (600px)",
+ "300"=>"2 (300px)",
+ "250"=>"3 (250px)",
+ "150"=>"4 (150px)",
+ );
+
+ $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
+ $o .= replace_macros($t, array(
+ '$submit' => t('Submit'),
+ '$baseurl' => $a->get_baseurl(),
+ '$title' => t("Theme settings"),
+ '$resize' => array('cleanzero_resize',t ('Set resize level for images in posts and comments (width and height)'),$resize,'',$resizes),
+ '$font_size' => array('cleanzero_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
+ '$color' => array('cleanzero_color', t('Color scheme'), $color, '', $colors),
+ ));
+ return $o;
+}
diff --git a/view/theme/cleanzero/js/jquery.ae.image.resize.js b/view/theme/cleanzero/js/jquery.ae.image.resize.js
new file mode 100644
index 000000000..bac09cd45
--- /dev/null
+++ b/view/theme/cleanzero/js/jquery.ae.image.resize.js
@@ -0,0 +1,69 @@
+(function( $ ) {
+
+ $.fn.aeImageResize = function( params ) {
+
+ var aspectRatio = 0
+ // Nasty I know but it's done only once, so not too bad I guess
+ // Alternate suggestions welcome :)
+ , isIE6 = $.browser.msie && (6 == ~~ $.browser.version)
+ ;
+
+ // We cannot do much unless we have one of these
+ if ( !params.height && !params.width ) {
+ return this;
+ }
+
+ // Calculate aspect ratio now, if possible
+ if ( params.height && params.width ) {
+ aspectRatio = params.width / params.height;
+ }
+
+ // Attach handler to load
+ // Handler is executed just once per element
+ // Load event required for Webkit browsers
+ return this.one( "load", function() {
+
+ // Remove all attributes and CSS rules
+ this.removeAttribute( "height" );
+ this.removeAttribute( "width" );
+ this.style.height = this.style.width = "";
+
+ var imgHeight = this.height
+ , imgWidth = this.width
+ , imgAspectRatio = imgWidth / imgHeight
+ , bxHeight = params.height
+ , bxWidth = params.width
+ , bxAspectRatio = aspectRatio;
+
+ // Work the magic!
+ // If one parameter is missing, we just force calculate it
+ if ( !bxAspectRatio ) {
+ if ( bxHeight ) {
+ bxAspectRatio = imgAspectRatio + 1;
+ } else {
+ bxAspectRatio = imgAspectRatio - 1;
+ }
+ }
+
+ // Only resize the images that need resizing
+ if ( (bxHeight && imgHeight > bxHeight) || (bxWidth && imgWidth > bxWidth) ) {
+
+ if ( imgAspectRatio > bxAspectRatio ) {
+ bxHeight = ~~ ( imgHeight / imgWidth * bxWidth );
+ } else {
+ bxWidth = ~~ ( imgWidth / imgHeight * bxHeight );
+ }
+
+ this.height = bxHeight;
+ this.width = bxWidth;
+ }
+ })
+ .each(function() {
+
+ // Trigger load event (for Gecko and MSIE)
+ if ( this.complete || isIE6 ) {
+ $( this ).trigger( "load" );
+ }
+ });
+ };
+})( jQuery );
\ No newline at end of file
diff --git a/view/theme/cleanzero/js/jquery.ae.image.resize.min.js b/view/theme/cleanzero/js/jquery.ae.image.resize.min.js
new file mode 100644
index 000000000..16c30b123
--- /dev/null
+++ b/view/theme/cleanzero/js/jquery.ae.image.resize.min.js
@@ -0,0 +1 @@
+(function(d){d.fn.aeImageResize=function(a){var i=0,j=d.browser.msie&&6==~~d.browser.version;if(!a.height&&!a.width)return this;if(a.height&&a.width)i=a.width/a.height;return this.one("load",function(){this.removeAttribute("height");this.removeAttribute("width");this.style.height=this.style.width="";var e=this.height,f=this.width,g=f/e,b=a.height,c=a.width,h=i;h||(h=b?g+1:g-1);if(b&&e>b||c&&f>c){if(g>h)b=~~(e/f*c);else c=~~(f/e*b);this.height=b;this.width=c}}).each(function(){if(this.complete||j)d(this).trigger("load")})}})(jQuery);
\ No newline at end of file
diff --git a/view/theme/cleanzero/nav.tpl b/view/theme/cleanzero/nav.tpl
new file mode 100644
index 000000000..4dacf3858
--- /dev/null
+++ b/view/theme/cleanzero/nav.tpl
@@ -0,0 +1,71 @@
+
+ $langselector
+
+ $sitelocation
+
+ {{ if $nav.logout }}$nav.logout.1 {{ endif }}
+ {{ if $nav.login }}$nav.login.1 {{ endif }}
+
+
+
+ {{ if $nav.register }}$nav.register.1 {{ endif }}
+
+ {{ if $nav.help }} $nav.help.1 {{ endif }}
+
+ {{ if $nav.apps }}$nav.apps.1 {{ endif }}
+
+ $nav.search.1
+ $nav.directory.1
+
+ {{ if $nav.admin }}$nav.admin.1 {{ endif }}
+
+ {{ if $nav.network }}
+ $nav.network.1
+
+ {{ endif }}
+ {{ if $nav.home }}
+ $nav.home.1
+
+ {{ endif }}
+
+ {{ if $nav.introductions }}
+ $nav.introductions.1
+
+ {{ endif }}
+ {{ if $nav.messages }}
+ $nav.messages.1
+
+ {{ endif }}
+
+
+
+
+
+ {{ if $nav.notifications }}
+
+
+
+ {{ endif }}
+
+ {{ if $nav.settings }}$nav.settings.1 {{ endif }}
+ {{ if $nav.profiles }}$nav.profiles.1 {{ endif }}
+
+ {{ if $nav.contacts }}$nav.contacts.1 {{ endif }}
+
+
+ {{ if $nav.manage }}$nav.manage.1 {{ endif }}
+ {{ if $nav.community }}
+
+ {{ endif }}
+
+
+ $banner
+
+
+
diff --git a/view/theme/cleanzero/screenshot.png b/view/theme/cleanzero/screenshot.png
new file mode 100644
index 000000000..d259e2e4d
Binary files /dev/null and b/view/theme/cleanzero/screenshot.png differ
diff --git a/view/theme/cleanzero/style.css b/view/theme/cleanzero/style.css
new file mode 100644
index 000000000..3efb8a25c
--- /dev/null
+++ b/view/theme/cleanzero/style.css
@@ -0,0 +1,127 @@
+@import url('../duepuntozero/style.css');
+body {background-image:none;
+
+}
+
+.wall-item-content-wrapper {
+ border-top: 1px solid #ccc;
+//border-top:none;
+border-left:none;
+border-right:none;
+border-radius:0px;
+//border:none;
+ //background: #f8f8f8 !important;
+}
+
+.wall-item-content-wrapper.comment {
+ background: #f8f8f8 !important;
+ // border-left: 1px solid #ccc;
+ border-top: 1px solid #ccc;
+border-left:none;
+border-right:none;
+border-radius:0px;
+ }
+
+ .wall-item-tools {
+// border-top: 1px solid #ccc;
+// background: #f8f8f8 !important;
+background: #ffffff !important;
+ }
+
+.comment-edit-text-empty, .comment-edit-text-full {
+ border: 1px solid #ccc;
+ border-left: 1px solid #EEE;
+ background: #ffffff;
+}
+
+.comment-edit-wrapper, .comment-wwedit-wrapper {
+ // background: #ffffff; !important;
+background: #f8f8f8 !important;
+}
+
+
+
+
+
+section {
+ margin: 0px 10%;
+margin-right:12%;
+ background-image:none;
+}
+
+aside {
+ margin-left: 10%;
+ background-image:none;
+}
+nav {
+ margin-left: 32px;
+ margin-right: 5%;
+
+}
+
+nav #site-location {
+ top: 80px;
+ right: 5%;
+
+}
+
+.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+}
+
+.tabs { background-image:none;
+
+}
+.tab.active {
+ padding: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ border: 1px solid #CCCCCC;
+ background: #F8F8F8;
+ font-weight: bold;
+}
+.tab { margin-right: 1px ;
+
+}
+
+#group-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#nets-sidebar {
+ margin-bottom: 10px;
+ border:none;
+}
+
+#saved-search-list {
+ border:none;
+}
+blockquote {
+ background-color: #f8f8f8;
+ border: 1px solid #ccc;
+ -moz-border-radius: 3px;
+
+ border-radius: 3px;
+}
+.widget {
+border: none;
+}
+
+
+.wall-item-content {
+max-height: 20000px;
+overflow: none;
+}
+
+.nav-commlink, .nav-login-link {
+margin-top: 67px;
+height: 15px;
+float:left;
+padding: 6px 3px;
+}
+
+nav .nav-link {
+ //float: left;
+}
\ No newline at end of file
diff --git a/view/theme/cleanzero/style.php b/view/theme/cleanzero/style.php
new file mode 100644
index 000000000..b820d3b7a
--- /dev/null
+++ b/view/theme/cleanzero/style.php
@@ -0,0 +1,71 @@
+theme_info = array(
+ 'extends' => 'duepuntozero',
+);
+function cleanzero_init(&$a) {
+$a->page['htmlhead'] .= <<< EOT
+
+EOT;
+// get resize configuration
+
+$resize=false;
+$site_resize = get_config('cleanzero', 'resize' );
+if(local_user()) $resize = get_pconfig(local_user(), 'cleanzero', 'resize' );
+
+if ($resize===false) $resize=$site_resize;
+if ($resize===false) $resize=0;
+
+if (intval($resize) > 0) {
+//load jquery.ae.image.resize.js
+$imageresizeJS = $a->get_baseurl($ssl_state)."/view/theme/cleanzero/js/jquery.ae.image.resize.js";
+$a->page['htmlhead'] .= sprintf('', $imageresizeJS);
+$a->page['htmlhead'] .= '
+';}
+}
diff --git a/view/theme/cleanzero/theme_settings.tpl b/view/theme/cleanzero/theme_settings.tpl
new file mode 100644
index 000000000..07e7cba05
--- /dev/null
+++ b/view/theme/cleanzero/theme_settings.tpl
@@ -0,0 +1,10 @@
+{{inc field_select.tpl with $field=$color}}{{endinc}}
+{{inc field_select.tpl with $field=$font_size}}{{endinc}}
+{{inc field_select.tpl with $field=$resize}}{{endinc}}
+
+
+
+
+
+
+
diff --git a/view/theme/darkzero-NS/comment_item.tpl b/view/theme/darkzero-NS/comment_item.tpl
deleted file mode 100755
index 84b9597e8..000000000
--- a/view/theme/darkzero-NS/comment_item.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/view/theme/darkzero-NS/theme.php b/view/theme/darkzero-NS/theme.php
index bdf4b8cef..211c552c5 100644
--- a/view/theme/darkzero-NS/theme.php
+++ b/view/theme/darkzero-NS/theme.php
@@ -22,7 +22,8 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
diff --git a/view/theme/darkzero/comment_item.tpl b/view/theme/darkzero/comment_item.tpl
deleted file mode 100755
index 84b9597e8..000000000
--- a/view/theme/darkzero/comment_item.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/view/theme/darkzero/theme.php b/view/theme/darkzero/theme.php
index dc0da0b16..e6b469bff 100644
--- a/view/theme/darkzero/theme.php
+++ b/view/theme/darkzero/theme.php
@@ -23,7 +23,8 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
diff --git a/view/theme/diabook/diabook-dark/style-network.css b/view/theme/diabook/diabook-dark/style-network.css
index 7ddedb320..6ff44748f 100644
--- a/view/theme/diabook/diabook-dark/style-network.css
+++ b/view/theme/diabook/diabook-dark/style-network.css
@@ -540,7 +540,7 @@ header #banner a:active,
header #banner a:visited,
header #banner a:link,
header #banner a:hover {
- color: #2e2f2e;
+ color: #eec;
text-decoration: none;
outline: none;
vertical-align: middle;
@@ -776,7 +776,7 @@ nav #nav-apps-link.selected {
}
.notify-seen {
- background: none repeat scroll 0 0 #DDDDDD;
+ background: none repeat scroll 0 0 #666;
}
ul.menu-popup {
@@ -966,7 +966,7 @@ aside {
vertical-align: top;
width: 160px;
padding: 0px 10px 0px 10px;
- border-right: 1px solid #D2D2D2;
+ border-right: 1px solid #eec;
float: left;
/* background: #F1F1F1; */
}
@@ -1241,7 +1241,7 @@ right_aside {
/* background: #F1F1F1; */
}
-right_aside a{color: #1872A2;}
+right_aside a{color: #88a9d2;}
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; }
diff --git a/view/theme/diabook/diabook-dark/style.css b/view/theme/diabook/diabook-dark/style.css
index 24de9f262..638aeb455 100644
--- a/view/theme/diabook/diabook-dark/style.css
+++ b/view/theme/diabook/diabook-dark/style.css
@@ -1201,8 +1201,19 @@ aside #side-peoplefind-url {
margin-right: 20px;
}
#login-submit-wrapper{
-margin-bottom: 15px;
+ padding-top: 120px;
+ 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;
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php
index 073e270ef..c45db9884 100755
--- a/view/theme/diabook/theme.php
+++ b/view/theme/diabook/theme.php
@@ -14,12 +14,17 @@ $a->page['htmlhead'] .= sprintf('', $diabook_version);
//change css on network and profilepages
$cssFile = null;
+
$resolution=false;
$resolution = get_pconfig(local_user(), "diabook", "resolution");
if ($resolution===false) $resolution="normal";
+
$color = false;
-$color = get_pconfig(local_user(), "diabook", "color");
+$site_color = get_config("diabook", "color" );
+if (local_user()) {$color = get_pconfig(local_user(), "diabook", "color");}
+if ($color===false) $color=$site_color;
if ($color===false) $color="diabook";
+
if ($color=="diabook") $color_path = "/";
if ($color=="aerith") $color_path = "/diabook-aerith/";
if ($color=="blue") $color_path = "/diabook-blue/";
diff --git a/view/theme/dispy-dark/bottom.tpl b/view/theme/dispy-dark/bottom.tpl
deleted file mode 100644
index 130bfb25a..000000000
--- a/view/theme/dispy-dark/bottom.tpl
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
diff --git a/view/theme/dispy-dark/comment_item.tpl b/view/theme/dispy-dark/comment_item.tpl
deleted file mode 100644
index b4fbae5df..000000000
--- a/view/theme/dispy-dark/comment_item.tpl
+++ /dev/null
@@ -1,71 +0,0 @@
-
diff --git a/view/theme/dispy-dark/communityhome.tpl b/view/theme/dispy-dark/communityhome.tpl
deleted file mode 100644
index 4d09b9255..000000000
--- a/view/theme/dispy-dark/communityhome.tpl
+++ /dev/null
@@ -1,39 +0,0 @@
-{{ if $page }}
-$page
-{{ endif }}
-
-{{ if $lastusers_title }}
-
-
-{{ endif }}
-
-{{ if $lastusers_title }}
-
-
-{{ endif }}
-
diff --git a/view/theme/dispy-dark/contact_template.tpl b/view/theme/dispy-dark/contact_template.tpl
deleted file mode 100644
index 04968bd07..000000000
--- a/view/theme/dispy-dark/contact_template.tpl
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
- {{ if $contact.photo_menu }}
-
-
- {{ endif }}
-
-
-
-
-
$contact.name
-{{ if $contact.alt_text }}
$contact.alt_text
{{ endif }}
-
-
$contact.network
-
-
-
-
diff --git a/view/theme/dispy-dark/conversation.tpl b/view/theme/dispy-dark/conversation.tpl
deleted file mode 100644
index 41b6aeadf..000000000
--- a/view/theme/dispy-dark/conversation.tpl
+++ /dev/null
@@ -1,23 +0,0 @@
-{{ for $threads as $thread }}
-
- {{ for $thread.items as $item }}
- {{if $item.comment_firstcollapsed}}
-
- {{endif}}
-
- {{ inc $item.template }}{{ endinc }}
-
-
- {{ endfor }}
-
-{{ endfor }}
-
-{{ if $dropping }}
-
-{{ endif }}
diff --git a/view/theme/dispy-dark/default.php b/view/theme/dispy-dark/default.php
deleted file mode 100644
index c3e6c9119..000000000
--- a/view/theme/dispy-dark/default.php
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/view/theme/dispy-dark/group_side.tpl b/view/theme/dispy-dark/group_side.tpl
deleted file mode 100644
index 10ecec2e8..000000000
--- a/view/theme/dispy-dark/group_side.tpl
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
diff --git a/view/theme/dispy-dark/head.tpl b/view/theme/dispy-dark/head.tpl
deleted file mode 100644
index d42b19aef..000000000
--- a/view/theme/dispy-dark/head.tpl
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/view/theme/dispy-dark/header.tpl b/view/theme/dispy-dark/header.tpl
deleted file mode 100644
index e69de29bb..000000000
diff --git a/view/theme/dispy-dark/jot-header.tpl b/view/theme/dispy-dark/jot-header.tpl
deleted file mode 100644
index ab15f9516..000000000
--- a/view/theme/dispy-dark/jot-header.tpl
+++ /dev/null
@@ -1,349 +0,0 @@
-
-
-
diff --git a/view/theme/dispy-dark/jot.tpl b/view/theme/dispy-dark/jot.tpl
deleted file mode 100644
index 688ac1451..000000000
--- a/view/theme/dispy-dark/jot.tpl
+++ /dev/null
@@ -1,72 +0,0 @@
-
-{{ if $content }}{{ endif }}
diff --git a/view/theme/dispy-dark/lang_selector.tpl b/view/theme/dispy-dark/lang_selector.tpl
deleted file mode 100644
index e777a0a86..000000000
--- a/view/theme/dispy-dark/lang_selector.tpl
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- {{ for $langs.0 as $v=>$l }}
- $l
- {{ endfor }}
-
-
-
diff --git a/view/theme/dispy-dark/mail_head.tpl b/view/theme/dispy-dark/mail_head.tpl
deleted file mode 100644
index d49d7c1af..000000000
--- a/view/theme/dispy-dark/mail_head.tpl
+++ /dev/null
@@ -1,5 +0,0 @@
-$messages
-
-
-$tab_content
-
diff --git a/view/theme/dispy-dark/nav.tpl b/view/theme/dispy-dark/nav.tpl
deleted file mode 100644
index 6ffd2b379..000000000
--- a/view/theme/dispy-dark/nav.tpl
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-$banner
-
-
-
-
-
-
-
-{{ if $userinfo }}
-
-{{ endif }}
-
-
- {{ if $nav.home }}
-
- {{ endif }}
- {{ if $nav.network }}
-
- {{ endif }}
- {{ if $nav.notifications }}
-
- {{ endif }}
- {{ if $nav.messages }}
-
- {{ endif }}
- {{if $nav.introductions }}
-
- {{ endif }}
-
-
-
-
-
-
-$langselector
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/view/theme/dispy-dark/nets.tpl b/view/theme/dispy-dark/nets.tpl
deleted file mode 100644
index b0cb8890c..000000000
--- a/view/theme/dispy-dark/nets.tpl
+++ /dev/null
@@ -1,10 +0,0 @@
-
diff --git a/view/theme/dispy-dark/photo_view.tpl b/view/theme/dispy-dark/photo_view.tpl
deleted file mode 100644
index 732caf690..000000000
--- a/view/theme/dispy-dark/photo_view.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-{{ if $prevlink }}{{ endif }}
-
-{{ if $nextlink }}{{ endif }}
-
-$desc
-{{ if $tags }}
-$tags.0
-$tags.1
-{{ endif }}
-{{ if $tags.2 }}{{ endif }}
-
-{{ if $edit }}$edit{{ endif }}
-
-{{ if $likebuttons }}
-
- $likebuttons
- $like
- $dislike
-
-{{ endif }}
-
-$comments
-
-$paginate
-
diff --git a/view/theme/dispy-dark/profile_vcard.tpl b/view/theme/dispy-dark/profile_vcard.tpl
deleted file mode 100644
index f14ea7915..000000000
--- a/view/theme/dispy-dark/profile_vcard.tpl
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
- {{ if $profile.edit }}
-
-
-
-
-
- {{ endif }}
-
-
$profile.name
-
- {{ if $pdesc }}
-
$profile.pdesc
- {{ endif }}
-
-
-
-
- {{ if $location }}
-
-
$location
-
- {{ if $profile.address }}
-
$profile.address
{{ endif }}
-
- $profile.locality {{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal-code
-
- {{ if $profile.country-name }}
$profile.country-name {{ endif }}
-
-
- {{ endif }}
-
- {{ if $gender }}
-
- $gender
- $profile.gender
-
- {{ endif }}
-
- {{ if $profile.pubkey }}
-
$profile.pubkey
- {{ endif }}
-
- {{ if $marital }}
-
-
- ♥ $marital
- $profile.marital
-
- {{ endif }}
-
- {{ if $homepage }}
-
{{ endif }}
-
- {{ inc diaspora_vcard.tpl }}{{ endinc }}
-
-
-
-
-$contact_block
-
diff --git a/view/theme/dispy-dark/saved_searches_aside.tpl b/view/theme/dispy-dark/saved_searches_aside.tpl
deleted file mode 100644
index fb822fe5d..000000000
--- a/view/theme/dispy-dark/saved_searches_aside.tpl
+++ /dev/null
@@ -1,14 +0,0 @@
-
diff --git a/view/theme/dispy-dark/search_item.tpl b/view/theme/dispy-dark/search_item.tpl
deleted file mode 100644
index bfad1b7b7..000000000
--- a/view/theme/dispy-dark/search_item.tpl
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- {{ if $item.lock }}
- {{ else }}
{{ endif }}
-
$item.location
-
-
-
-
-
$item.title
-
-
$item.body
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/view/theme/dispy-dark/style.css b/view/theme/dispy-dark/style.css
deleted file mode 100644
index 05d544b0a..000000000
--- a/view/theme/dispy-dark/style.css
+++ /dev/null
@@ -1,3176 +0,0 @@
-/*
- * dispy-dark
- *
- * author, maintainer: simon
- *
- */
-
-/* from html5boilerplate */
-
-/* these are to tell browsers they should be displayed a certain way */
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-audio,
-canvas,
-video,
-time {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-audio:not([controls]) {
- display: none;
-}
-[hidden] {
- display: none;
-}
-
-/*
- * Base
- */
-
-/*
- * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
- * 2. Force vertical scrollbar in non-IE
- * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
- */
-
-html {
- font-size: 100%;
- overflow-y: scroll;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-body {
- margin: 0;
- font-size: 16px;
- line-height: 1.1em;
-}
-body,
-button,
-input,
-select,
-textarea {
- font-family: sans-serif;
- color: #eec;
- background-color: #2e2f2e;
-}
-select {
- border: 1px #555 dotted;
- padding: 3px;
- margin: 3px;
- color: #eec;
- background: #2e2f2e;
-}
-option {
- padding: 3px;
- color: #eec;
- background: #2e2f2e;
-}
-option[selected="selected"] {
- color: #2e2f2e;
- background: #eec;
-}
-ul, ol {
- padding: 0;
-}
-/* remember to define focus styles! */
-:focus {
- outline: 0;
-}
-[disabled="disabled"] {
- background: #4e4f4f;
- color: #ddb;
-}
-
-/* remember to highlight inserts somehow! */
-ins {
- background-color: #2e302e;
- color: #ff9;
- text-decoration: none;
-}
-mark {
- background-color: #2e302e;
- color: #ff9;
- font-style: italic;
- font-weight: bold;
-}
-/* Redeclare monospace font family: h5bp.com/j */
-pre, code, kbd, samp, .wall-item-body code {
- font-family: monospace, monospace;
- _font-family: monospace;
- font-size: 1em; }
-
-/* Improve readability of pre-formatted text in all browsers */
-pre, .wall-item-body code {
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-q {
- quotes: none;
-}
-q:before, q:after {
- content: "";
- content: none;
-}
-small {
- font-size: 85%;
-}
-
-/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
-sub, sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-img {
- border: 0 none;
- /*vertical-align: middle;*/
-}
-a {
- color: #88a9d2;
- text-decoration: none;
- margin-bottom: 1px;
-}
-a:hover img {
- text-decoration: none;
-}
-blockquote {
- background: #444;
- color: #eec;
- text-indent: 5px;
- padding: 5px;
- border: 1px #aaa solid;
- border-radius: 5px;
-}
-a:hover {
- color: #729fcf;
- border-bottom: 1px dotted #729fcf;
-}
-.required {
- display: inline;
- color: #ff0;
- font-size: 16px;
- font-weight: bold;
- margin: 3px;
-}
-.fakelink, .lockview {
- color: #729fcf;
- cursor: pointer;
-}
-.fakelink:hover {
- color: #729fcf;
-}
-.smalltext {
- font-size: 0.7em;
-}
-#panel {
- position: absolute;
- font-size: 0.8em;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 1px solid #fff;
- background-color: #2e302e;
- color: #eeeeec;
- padding: 1em;
-}
-.pager {
- margin-top: 60px;
- display: block;
- clear: both;
- text-align: center;
-}
-.pager span {
- padding: 4px;
- margin: 4px;
-}
-.pager_current {
- background-color: #729fcf;
- color: #fff;
-}
-
-
-/**
- * global
- */
-/* .tool .action */
-.action {
- margin: 5px 0;
-}
-.tool {
- margin: 5px 0;
- list-style: none;
-}
-#articlemain {
- width: 100%;
- height: 100%;
- margin: 0 auto;
-}
-
-
-/**
- * login
- */
-#asidemain .field {
- overflow: hidden;
- width: 200px;
-}
-#login-extra-links {
- overflow: auto !important;
- padding-top: 60px !important;
- width: 100% !important;
-}
-#login-extra-links a {
- margin-right: 20px;
-}
-#login_standard {
- display: block !important;
- float: none !important;
- height: 100% !important;
- position: relative !important;
- width: 100% !important;
-}
-#login_standard .field label {
- width: 200px !important;
-}
-#login_standard input, #login_standard input[type="text"] {
- margin: 0 0 8px !important;
- width: 210px !important;
-}
-#login-submit-wrapper {
- margin: 0 !important;
-}
-#login-submit-button {
- margin-left: 0px !important;
-}
-#asidemain #login_openid {
- position: relative !important;
- float: none !important;
- margin-left: 0px !important;
- height: auto !important;
- width: 200px !important;
-}
-#login_openid #id_openid_url {
- width: 180px !important;
- overflow: hidden !important;
-}
-#login_openid label {
- width: 180px !important;
-}
-
-
-/**
- * nav
- */
-nav {
- height: 60px;
- background-color: #1d1f1d;
- color: #eeeeec;
- position: relative;
- padding: 20px 20px 10px 95px;
-}
-nav a {
- text-decoration: none;
- color: #eeeeec;
- border: 0px;
-}
-nav a:hover {
- text-decoration: none;
- color: #eeeeec;
- border: 0px;
-}
-nav #banner {
- display: block;
- position: absolute;
- left: 51px;
- top: 25px;
-}
-nav #banner #logo-text a {
- font-size: 40px;
- font-weight: bold;
- margin-left: 3px;
-}
-ul#user-menu-popup {
- display: none;
- position: absolute;
- background-color: #555753;
- width: 100%;
- padding: 10px 0px;
- margin: 0px;
- top: 20px;
- left: 0;
- -webkit-border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- border-radius: 0 0 5px 5px;
- box-shadow: 5px 10px 10px 0 #111;
- z-index: 10000;
-}
-ul#user-menu-popup li {
- display: block;
-}
-ul#user-menu-popup li a {
- display: block;
- padding: 5px;
-}
-ul#user-menu-popup li a:hover {
- color: #2e302e;
- background-color: #eeeeec;
-}
-ul#user-menu-popup li a.nav-sep {
- border-top: 1px solid #eeeeec;
-}
-nav .nav-link {
- display: inline-block;
- width: 22px;
- height: 22px;
- overflow: hidden;
- margin: 0px 5px 5px;
- text-indent: 50px;
- background: transparent url(icons.png) 0 0 no-repeat;
-}
-#nav-apps-link {
- background-position: 0 -66px;
-}
-#nav-apps-link:hover {
- background-position: -22px -66px;
-}
-#nav-community-link {
- background-position: 0 -22px;
-}
-#nav-community-link:hover {
- background-position: -22px -22px;
-}
-#nav-contacts-link {
- background-position: 0 -22px;
-}
-#nav-contacts-link:hover {
- background-position: -22px -22px;
-}
-#nav-directory-link {
- background-position: -44px -154px;
-}
-#nav-directory-link:hover {
- background-position: -66px -154px;
-}
-#nav-help-link {
- background-position: 0 -110px;
-}
-#nav-help-link:hover {
- background-position: -22px -110px;
-}
-#nav-home-link {
- background-position: -44px -132px;
-}
-#nav-home-link:hover {
- background-position: -66px -132px;
-}
-#nav-intro-link {
- background-position: 0px -190px;
-}
-#nav-intro-link:hover {
- background-position: -44px -190px;
-}
-#nav-login-link {
- background-position: 0 -88px;
-}
-#nav-login-link:hover {
- background-position: -22px -88px;
-}
-#nav-logout-link {
- background-position: 0 -88px;
-}
-#nav-logout-link:hover {
- background-position: -22px -88px;
-}
-#nav-messages-link {
- background-position: -44px -88px;
-}
-#nav-messages-link:hover {
- background-position: -66px -88px;
-}
-#nav-notify-link, #nav-notifications-linkmenu {
- background-position: -44px -110px;
-}
-#nav-notify-link:hover {
- background-position: -66px -110px;
-}
-#nav-network-link {
- background-position: 0px -177px;
-}
-#nav-network-link:hover {
- background-position: -22px -177px;
-}
-#nav-search-link {
- background-position: 0 -44px;
-}
-#nav-search-link:hover {
- background-position: -22px -44px;
-}
-#profile-link,
-#profile-title,
-#wall-image-upload,
-#wall-file-upload,
-#profile-attach-wrapper,
-#profile-audio,
-#profile-link,
-#profile-location,
-#profile-nolocation,
-#profile-title,
-#jot-title,
-#profile-upload-wrapper,
-#profile-video,
-#profile-jot-submit,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.icon, .hover, .focus, .pointer {
- cursor: pointer;
-}
-
-
-/* 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;
-}
-#nav-notifications-menu {
- margin: 30px 0 0 -20px;
- width: 275px;
- max-height: 300px;
- overflow-y: auto;
- font-size: 9pt;
-}
-#nav-notifications-menu .contactname {
- font-weight: bold;
- font-size: 0.9em;
-}
-#nav-notifications-menu img {
- float: left;
- margin-right: 5px;
-}
-#nav-notifications-menu .notif-when {
- font-size: 0.8em;
- display: block;
-}
-#nav-notifications-menu li {
- word-wrap: normal;
- border-bottom: 1px solid #000;
-}
-#nav-notifications-menu li:hover {
- color: black;
-}
-#nav-notifications-menu a:hover {
- color: black;
- text-decoration: underline;
-}
-nav #nav-notifications-linkmenu.on .icon.s22.notify,
-nav #nav-notifications-linkmenu.selected .icon.s22.notify {
- background-image: url("../../../images/icons/22/notify_on.png");
-}
-.show {
- display: block;
-}
-#notifications {
- height: 20px;
- width: 170px;
- position: absolute;
- top: -19px;
- left: 4px;
-}
-#nav-floater {
- position: fixed;
- top: 20px;
- right: 1%;
- padding: 5px;
- background: #1d1f1d;
- color: transparent;
- border-radius: 5px;
- z-index: 100;
- width: 300px;
- height: 60px;
-}
-#nav-buttons {
- clear: both;
- list-style: none;
- padding: 0px;
- margin: 0px;
- height: 25px;
-}
-#nav-buttons > li {
- padding: 0;
- display: inline-block;
- margin: 0px -4px 0px 0px;
-}
-.floaterflip {
- display: block;
- position: fixed;
- z-index: 110;
- top: 56px;
- right: 19px;
- width: 22px;
- height: 22px;
- overflow: hidden;
- margin: 0px;
- background: transparent url(icons.png) -190px -60px no-repeat;
-}
-.search-box {
- display: inline-block;
- margin: 5px;
- position: fixed;
- right: 0px;
- bottom: 0px;
- z-index: 100;
- background: #1d1f1d;
- border-radius: 5px;
-}
-#search-text {
- border: 1px #eec solid;
- background: #2e2f2e;
- color: #eec;
-}
-.search-box #search-text {
- margin: 8px;
- width: 10em;
- height: 14px;
- color: #eec;
-}
-#scrollup {
- position: fixed;
- right: 5px;
- bottom: 40px;
- z-index: 100;
-}
-#scrollup a:hover {
- text-decoration: none;
- border: 0;
-}
-#user-menu {
- box-shadow: 5px 0 10px 0 #111;
- display: block;
- width: 75%;
- margin: 3px 0 0 0;
- position: relative;
- background-color: #555753;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #555753 url("menu-user-pin.jpg") 98% center no-repeat;
- clear: both;
- top: 4px;
- left: 10px;
- padding: 2px;
-}
-#user-menu > a {
- vertical-align: top;
-}
-#user-menu-label {
- font-size: 12px;
- padding: 3px 20px 9px 5px;
- height: 10px;
-}
-.nav-ajax-update, .nav-ajax-left {
- width: 30px;
- height: 19px;
- background: transparent url(notifications.png) 0 0 no-repeat;
- color: #222;
- font-weight: bold;
- font-size: 0.8em;
- padding-top: 0.2em;
- text-align: center;
- float: left;
- margin: 0 -1px 0 3px;
- display: block;
- visibility: hidden;
-}
-.nav-ajax-update.show, .nav-ajax-left.show {
- visibility: visible;
-}
-#net-update {
- background-position: 0px 0px;
-}
-#mail-update {
- background-position: -30px 0;
-}
-#notify-update {
- background-position: -60px 0px;
-}
-#home-update {
- background-position: -90px 0px;
-}
-#intro-update {
- background-position: -120px 0px;
-}
-#lang-select-icon {
- cursor: pointer;
- position: fixed;
- left: 28px;
- bottom: 6px;
- z-index: 10;
-}
-#language-selector {
- position: fixed;
- bottom: 2px;
- left: 52px;
- z-index: 10;
-}
-.menu-popup {
- position: absolute;
- display: none;
- width: 11em;
- background: #ffffff;
- color: #2d2d2d;
- margin: 0px;
- padding: 0px;
- list-style: none;
- border: 3px solid #364e59;
- z-index: 100000;
- -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
- box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
-}
-.menu-popup a {
- display: block;
- color: #2d2d2d;
- padding: 5px 10px;
- text-decoration: none;
-}
-.menu-popup a:hover {
- background-color: #bdcdd4;
-}
-.menu-popup .menu-sep {
- border-top: 1px solid #9eabb0;
-}
-.menu-popup li {
- float: none;
- overflow: auto;
- height: auto;
- display: block;
-}
-.menu-popup li img {
- float: left;
- width: 16px;
- height: 16px;
- padding-right: 5px;
-}
-.menu-popup .empty {
- padding: 5px;
- text-align: center;
- color: #9eabb0;
-}
-.notif-item {
- font-size: small;
-}
-.notif-item a {
- vertical-align: middle;
-}
-.notif-image {
- width: 32px;
- height: 32px;
- padding: 7px 7px 0px 0px;
-}
-.notify-seen {
- background: #ddd;
-}
-
-
-/**
- * sysmsg
- */
-#sysmsg_info {
- position: fixed;
- bottom: 0;
- -moz-box-shadow: 3px 3px 3px 10px 0 #000;
- -webkit-box-shadow: 3px 3px 10px 0 #000;
- box-shadow: 3px 3px 10px 0 #000;
- padding: 10px;
- background-color: #fcaf3e;
- border:2px solid #f8911b;
- border-bottom: 0;
- padding-bottom: 50px;
- z-index: 1000;
-}
-#sysmsg {
- position: fixed;
- bottom: 0;
- -moz-box-shadow: 3px 3px 10px 0 #000;
- -webkit-box-shadow: 3px 3px 10px 0 #000;
- box-shadow: 3px 3px 10px 0 #000;
- padding: 10px;
- background-color: #fcaf3e;
- border: 2px solid #f8911b;
- border-bottom: 0;
- padding-bottom: 50px;
- z-index: 1000;
-}
-#sysmsg_info br,
-#sysmsg br {
- display: block;
- margin: 2px 0px;
- border-top: 1px solid #ccccce;
-}
-
-
-/**
- * aside
- */
-#asidemain {
- float: left;
- font-size: smaller;
- margin: 20px 0 20px 35px;
- width: 25%;
- display: inline;
-}
-/* for now, disappear these */
-#asideright, #asideleft {
- display: none;
-}
-.vcard .fn {
- font-size: 1.7em;
- font-weight: bold;
- border-bottom: 1px solid #729fcf;
- padding-bottom: 3px;
-}
-.vcard #profile-photo-wrapper {
- margin: 20px;
-}
-/* http://css-tricks.com/snippets/css/css-box-shadow/
-* box-shadow:
-* 1. The horizontal offset of the shadow, positive means
-* the shadow will be on the right of the box, a negative
-* offset will put the shadow on the left of the box.
-* 2. The vertical offset of the shadow, a negative one
-* means the box-shadow will be above the box, a
-* positive one means the shadow will be below the box.
-* 3. The blur radius (optional), if set to 0 the shadow
-* will be sharp, the higher the number, the more blurred
-* it will be.
-* 4. The spread radius (optional), positive values increase
-* the size of the shadow, negative values decrease the size.
-* Default is 0 (the shadow is same size as blur).
-* 5. Colo[u]r
-*/
-.vcard #profile-photo-wrapper img {
- box-shadow: 3px 3px 10px 0 #000;
-}
-#asidemain h4 {
- font-size: 1.2em;
-}
-#asidemain #viewcontacts {
- text-align: right;
-}
-.aprofile dt {
- background: #eec;
- color: #2e2f2e;
- font-weight: bold;
- box-shadow: 1px 1px 5px 0 #000;
- margin: 15px 0 5px;
- padding-left: 5px;
-}
-#profile-extra-links ul {
- margin-left: 0px;
- padding-left: 0px;
- list-style: none;
-}
-#dfrn-request-link {
- background: #3465A4 url(connect.png) no-repeat 95% center;
- border-radius: 5px 5px 5px 5px;
- color: #eec;
- display: block;
- font-size: 1.2em;
- padding: 0.2em 0.5em;
-}
-#wallmessage-link {
- /*background: #3465A4 url(connect.png) no-repeat 95% center;*/
- /*border-radius: 5px 5px 5px 5px;*/
- color: #eee;
- display: block;
- font-size: 1.2em;
- padding: 0.2em 0.5em;
-}
-#netsearch-box {
- margin: 20px 0px 30px;
- width: 150px;
-}
-#netsearch-box #search-submit {
- margin: 5px 5px 0px 0px;
-}
-.ttright {
- margin: 0px 0px 0px 0px;
-}
-
-
-/**
- * contacts block
- */
-.contact-block-div {
- width: 50px;
- height: 50px;
- float: left;
-}
-.contact-block-textdiv {
- width: 150px;
- height: 34px;
- float: left;
-}
-#contact-block-end {
- clear: both;
-}
-
-
-/**
- * jot
- */
-#jot {
-/*width: 785px;*/
-margin: 10px 0 20px 0px;
-width: 100%;
-}
-#jot #jot-tools {
-margin: 0px;
-padding: 0px;
-height: 35px;
-overflow: none;
-width: 100%;
-/*background-color: #0e232e;*/
-/*border-bottom: 2px solid #9eabb0;*/
-}
-#jot #jot-tools span {
- float: left;
- margin: 10px 20px 2px 0px;
-}
-#jot #jot-tools span a {
- display: block;
-}
-#jot #jot-tools .perms {
- float: right;
- width: 40px;
-}
-#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;
-}
-#jot #jot-title {
- border: 1px solid #ccc;
- margin: 0 0 5px;
- height: 20px;
- width: 90%;
- font-weight: bold;
- border-radius: 5px;
- vertical-align: middle;
-}
-#jot-category {
- margin: 5px 0;
- border-radius: 5px;
- border: 1px #999 solid;
- color: #aaa;
- font-size: smaller;
-}
-#jot-category:focus {
- color: #eee;
-}
-#jot #character-counter {
- width: 6%;
- float: right;
- text-align: right;
- height: 15px;
- line-height: 20px;
- padding: 2px 20px 5px 0;
-}
-#profile-jot-text_parent {
- box-shadow: 5px 0 10px 0 #111;
-}
-#profile-jot-text_tbl {
- margin-bottom: 10px;
- background: #777;
-}
-#profile-jot-text_ifr {
- width:99.900002% !important;
-}
-#profile-jot-text_toolbargroup {
- background: #777;
-}
-.mceCenter table tr {
- background: #777;
-}
-[id$="jot-text_ifr"] {
- width: 99.900002% !important;
- color: #2e2f2e;
- background: #eec;
-}
-[id$="jot-text_ifr"] .mceContentBody {
- color: #2e2f2e;
- background: #eec;
-}
-.defaultSkin tr.mceFirst {
- background: #777;
-}
-.defaultSkin td.mceFirst {
- background-color: #eec;
-}
-.defaultSkin td.mceLast {
- background-color: #eec;
-}
-.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {
- background-color: #eec;
-}
-.defaultSkin .mceButtonDisabled .mceIcon {
- background-color: #eec;
-}
-#profile-attach-wrapper,
-#profile-audio-wrapper,
-#profile-link-wrapper,
-#profile-location-wrapper,
-#profile-nolocation-wrapper,
-#profile-title-wrapper,
-#profile-upload-wrapper,
-#profile-video-wrapper {
- float: left;
- margin: 0 20px 0 0;
-}
-#profile-rotator-wrapper {
- float: right;
-}
-#profile-jot-tools-end,
-#profile-jot-banner-end {
- clear: both;
-}
-#profile-jot-email-wrapper {
- margin:10px 10% 0;
- border:1px solid #555753;
- border-bottom:0;
-}
-#profile-jot-email-label {
- background-color:#555753;
- color:#ccccce;
- padding:5px;
-}
-#profile-jot-email {
- width:90%;
- margin:5px;
-}
-#profile-jot-networks {
- margin: 0 10%;
- border: 1px solid #555753;
- border-top: 0;
- border-bottom: 0;
- padding: 5px;
-}
-#profile-jot-net {
- margin: 5px 0;
-}
-#jot-preview-link {
- margin: 0 0 0 10px;
- border: 0;
- text-decoration: none;
- float: right;
-}
-.icon-text-preview {
- margin: 0 0 -18px 0;
- display: block;
- width: 20px;
- height: 20px;
- background: url(icons.png) no-repeat -128px -40px;
- border: 0;
- text-decoration: none;
- float: right;
- cursor: pointer;
-}
-#profile-jot-perms {
- float: right;
- background-color: #555753;
- height: 22px;
- width: 20px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- overflow: hidden;
- border: 0px;
- margin: 0 10px 0 10px;
-}
-#profile-jot-plugin-wrapper {
- width: 1px;
- margin: 10px 0 0 0;
- float: right;
-}
-#profile-jot-submit-wrapper {
- float: right;
- width: 100%;
- list-style: none;
- margin: 10px 0 0 0;
- padding: 0;
-}
-#profile-jot-submit {
- height: auto;
- background-color: #555753;
- color: #eeeeec;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 2px outset #222420;
- margin: 0;
- float: right;
- text-shadow: 1px 1px #111;
- width: auto;
-}
-#profile-jot-submit:active {
- box-shadow: 0 0 0 0;
-}
-#jot-perms-icon {
- height: 22px;
- width: 20px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- overflow: hidden;
- border: 0;
-}
-#profile-jot-acl-wrapper {
- margin: 0 10px;
- border: 1px solid #555753;
- border-top: 0;
- display: block !important;
-}
-#group_allow_wrapper,
-#group_deny_wrapper,
-#acl-permit-outer-wrapper {
- width:47%;
- float:left;
-}
-#contact_allow_wrapper,
-#contact_deny_wrapper,
-#acl-deny-outer-wrapper {
- width:47%;
- float:right;
-}
-#acl-permit-text {
- background-color: #555753;
- color: #ccccce;
- padding: 5px;
- float: left;
-}
-#jot-public {
- background-color: #555753;
- color: #ff0000;
- padding: 5px;
- float: left;
-}
-#acl-deny-text {
- background-color: #555753;
- color: #ccccce;
- padding: 5px;
- float: left;
-}
-#acl-permit-text-end,
-#acl-deny-text-end {
- clear: both;
-}
-#jot-title-desc {
- color: #ccc;
-}
-#profile-jot-desc {
- color: #ff2000;
- margin: 5px 0;
-}
-#jot-title-wrapper {
- margin-bottom: 5px;
-}
-#jot-title-display {
- font-weight: bold;
-}
-.jothidden {
- display: none;
-}
-#jot-preview-content {
- background-color: #3e3f3e;
- color: #eec;
- border: 1px #eec solid;
- border-radius: 5px;
- padding: 3px 3px 6px 10px;
-}
-#jot-preview-content .wall-item-outside-wrapper {
- border: 0;
- border-radius: 0px;
-}
-
-
-/**
- * section
- */
-#sectionmain {
- margin: 20px;
- font-size: 0.8em;
- min-width: 475px;
- width: 67%;
- float: left;
- display: inline;
-}
-
-
-/**
- * tabs
- */
-.tabs {
- list-style: none;
- margin: 10px 0;
- padding: 0;
-}
-.tabs li {
- display: inline;
- font-size: smaller;
- font-weight: bold;
-}
-.tab {
- border: 1px solid #729fcf;
- padding: 4px;
-}
-.tab:hover, .tab.active:hover {
- background: #88a9d2;
- color: #2e2f2e;
-}
-.tab:active {
- background: #88a9d2;
- color: #2e2f2e;
-}
-.tab.active {
- background: #88a9d2;
- color: #2e2f2e;
-}
-.tab.active a {
- color: #2e2f2e;
-}
-.tab a {
- border: 0;
- text-decoration: none;
-}
-
-
-/**
- * items
- */
-.wall-item-outside-wrapper {
- border: 1px solid #aaa;
- border-radius: 5px;
- box-shadow: 5px 0 10px 0 #111;
-}
-.wall-item-outside-wrapper.comment {
- margin-top: 5px;
-}
-.wall-item-outside-wrapper-end {
- clear: both;
-}
-.wall-item-content-wrapper {
- position: relative;
- padding: 10px;
- width: auto;
-}
-.wall-item-outside-wrapper .wall-item-comment-wrapper {
- /*margin-left: 90px;*/
-}
-.shiny {
- background: #2e3436;
- border-radius: 5px;
-}
-.wall-outside-wrapper .shiny {
- border-radius: 5px;
-}
-.heart {
- color: red;
-}
-.wall-item-content {
- overflow-x: auto;
- margin: 0px 15px 0px 5px;
-}
-/* removing it from here, vs. putting it in .wall-item-content
-* might break things for people. we shall see ;) */
-[id^="tread-wrapper"], [class^="tread-wrapper"] {
- margin: 15px 0 0 0;
- padding: 0px;
- /*overflow-x: auto;*/
-}
-.wall-item-photo-menu {
- display: none;
-}
-.wall-item-photo-menu-button {
- display:none;
- text-indent:-99999px;
- background:#555753 url(menu-user-pin.jpg) no-repeat 75px center;
- position:absolute;
- overflow:hidden;
- height:20px;
- width:90px;
- top:85px;
- left:0;
- -webkit-border-radius:0 0 5px 5px;
- -moz-border-radius:0 0 5px 5px;
- border-radius:0 0 5px 5px;
-}
-.wall-item-info {
- float: left;
- width: 110px;
-}
-.wall-item-photo-wrapper {
- width: 80px;
- height: 80px;
- position: relative;
- padding: 5px;
- background-color: #555753;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-[class^="wall-item-tools"] > *, [class^="wall-item-tools"] > * > * {
- /*margin: 0 0 5px 0;*/
-}
-.wall-item-tools {
- float: right;
- filter: alpha(opacity=35);
- opacity: 0.4;
- -webkit-transition: all 1s ease-in-out;
- -moz-transition: all 1s ease-in-out;
- -o-transition: all 1s ease-in-out;
- -ms-transition: all 1s ease-in-out;
- transition: all 1s ease-in-out;
-}
-.wall-item-tools:hover {
- filter: alpha(opacity=100);
- opacity: 1;
- -webkit-transition: all 1s ease-in-out;
- -moz-transition: all 1s ease-in-out;
- -o-transition: all 1s ease-in-out;
- -ms-transition: all 1s ease-in-out;
- transition: all 1s ease-in-out;
-}
-.wall-item-subtools1 {
- height: 30px;
- list-style: none outside none;
- margin: 20px 0 30px -20px;
- padding: 0;
- width: 30px;
-}
-.wall-item-subtools2 {
- height: 25px;
- list-style: none outside none;
- margin: -75px 0 0 5px;
- padding: 0;
- width: 25px;
-}
-.wall-item-title {
- font-size: 1.2em;
- font-weight: bold;
- margin-bottom: 1em;
-}
-.wall-item-body {
- margin: 20px 20px 10px 0px;
- text-align: left;
- overflow-x: auto;
-}
-.wall-item-lock-wrapper {
- float: right;
- height: 22px;
- margin: 0 -5px 0 0;
- width: 22px;
- opacity: 1;
-}
-.wall-item-dislike,
-.wall-item-like {
- clear: left;
- font-size: 0.8em;
- color: #878883;
- margin: 5px 0 5px 120px;
-}
-.wall-item-author, .wall-item-actions-author {
- clear: left;
- font-size: 0.8em;
- color: #878883;
- margin: 20px 20px 0 110px;
-}
-.wall-item-ago {
- display: inline;
- padding-left: 10px;
-}
-.wall-item-wrapper-end {
- clear:both;
-}
-.wall-item-location {
- margin-top: 15px;
- width: 100px;
- overflow: hidden;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
-}
-.wall-item-location .icon {
- float: left;
-}
-.wall-item-location > a {
- margin-left: 25px;
- font-size: 0.7em;
- display: block;
-}
-.wall-item-location .smalltext {
- margin-left: 25px;
- font-size: 0.7em;
- display: block;
-}
-.wall-item-location > br {
- display: none;
-}
-.wallwall .wwto {
- left: 5px;
- margin: 0;
- position: absolute;
- top: 75px;
- width: 30px;
- z-index: 10001;
- width: 30px;
- height: 30px;
-}
-.wallwall .wwto img {
- width: 30px !important;
- height: 30px !important;
-}
-.wallwall .wall-item-photo-end {
- clear: both;
-}
-.wall-item-arrowphoto-wrapper {
- position: absolute;
- left: 35px;
- top: 80px;
- z-index: 10002;
-}
-.wall-item-photo-menu {
- min-width: 92px;
- border: 2px solid #FFFFFF;
- border-top: 0px;
- background: #555753;
- position: absolute;
- left: -2px; top: 101px;
- display: none;
- z-index: 10003;
- -webkit-border-radius: 0px 5px 5px 5px;
- -moz-border-radius: 0px 5px 5px 5px;
- border-radius: 0px 5px 5px 5px;
-}
-.wall-item-photo-menu ul {
- margin:0px;
- padding: 0px;
- list-style: none;
-}
-.wall-item-photo-menu li a {
- white-space: nowrap;
- display: block;
- padding: 5px 2px;
- color: #eeeeec;
-}
-.wall-item-photo-menu li a:hover {
- color: #555753;
- background: #eeeeec;
-}
-#item-delete-selected {
- overflow: auto;
- width: 100%;
-}
-#connect-services-header {
- margin: 5px 0 0 0;
-}
-#connect-services {
- margin: 5px 0 0 0;
-}
-#extra-help-header {
- margin: 5px 0 0 0;
-}
-#extra-help {
- margin: 5px 0 0 0;
-}
-#postit-header {
- margin: 5px 0 0 0;
-}
-#postit {
- margin: 5px 0 0 0;
-}
-
-
-/**
- * comment
- */
-.ccollapse-wrapper {
- font-size: 0.9em;
- margin-left: 80px;
-}
-
-.wall-item-outside-wrapper.comment {
- margin-left: 80px;
-}
-.wall-item-outside-wrapper.comment .wall-item-photo {
- width: 40px!important;
- height: 40px!important;
-}
-.wall-item-outside-wrapper.comment .wall-item-photo-wrapper {
- width: 40px;
- height: 40px;
-}
-.wall-item-outside-wrapper.comment .wall-item-photo-menu-button {
- width: 50px;
- top: 45px;
- background-position: 35px center;
-}
-.wall-item-outside-wrapper.comment .wall-item-info {
- width: 60px;
-}
-.wall-item-outside-wrapper.comment .wall-item-body {
- margin-left: 10px;
-}
-.wall-item-outside-wrapper.comment .wall-item-author {
- margin-left: 50px;
-}
-
-.wall-item-outside-wrapper.comment .wall-item-photo-menu {
- min-width: 50px;
- top: 60px;
-}
-.comment-wwedit-wrapper {
- /*margin: 30px 0px 0px 80px;*/
-}
-.comment-edit-wrapper {
- border-top: 1px #aaa solid;
-}
-[class^="comment-edit-bb"] {
- list-style: none;
- display: none;
- margin: -40px 0 5px 60px;
- width: 75%;
-}
-[class^="comment-edit-bb"] > li {
- display: inline-block;
- margin: 0 10px 0 0;
- visibility: none;
-}
-.comment-wwedit-wrapper img,
-.comment-edit-wrapper img {
- width: 20px;
- height: 20px;
-}
-.comment-edit-photo-link, .comment-edit-photo {
- margin-left: 10px;
-}
-.my-comment-photo {
- width: 40px;
- height: 40px;
- padding: 5px;
-}
-[class^="comment-edit-text"] {
- margin: 5px 0 10px 20px;
- width: 84.5%;
-}
-.comment-edit-text-empty {
- height: 20px;
- border: 2px #c8bebe solid;
- border-radius: 5px;
- color: #c8bebe;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;
-}
-.comment-edit-text-empty:hover {
- color: #999999;
-}
-.comment-edit-text-full {
- height: 10em;
- border-radius: 5px;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;
-}
-.comment-edit-submit-wrapper {
- width: 90%;
- margin: 5px 5px 10px 50px;
- text-align: right;
-}
-.comment-edit-submit {
- height: 22px;
- background-color: #555753;
- color: #eeeeec;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 0;
-}
-
-
-/**
- * item text style
- */
-.wall-item-body code {
- display: block;
- padding: 0 0 10px 5px;
- border-color: #ccc;
- border-style: solid;
- border-width: 1px 1px 1px 10px;
- background: #eee;
- color: #2e2f2e;
- width: 95%;
-}
-
-
-/**
- * profile
- */
-div[id$="text"] {
- font-weight: bold;
- border-bottom: 1px solid #ccc;
-}
-div[id$="wrapper"] {
- height: 100%;
- margin-bottom: 1em;
-}
-div[id$="wrapper"] br {
- clear: left;
-}
-[id$="-end"], [class$="end"] {
- clear: both;
- margin: 0 0 10px 0;
-}
-#advanced-profile-with {
- margin-left: 200px;
-}
-
-
-/**
- * photos
- */
-.photos {
- height: auto;
- overflow: auto;
-}
-#photo-top-links {
- margin-bottom: 30px;
-}
-.photo-album-image-wrapper,
-.photo-top-image-wrapper {
- float: left;
- -moz-box-shadow: 3px 3px 10px 0 #000;
- -webkit-box-shadow: 3px 3px 10px 0 #000;
- box-shadow: 3px 3px 10px 0 #000;
- background-color: #222;
- color: #2e2f2e;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- padding-bottom: 30px;
- position: relative;
- margin: 0 10px 10px 0;
-}
-
-#photo-photo {
- max-width: 100%;
-}
-#photo-photo img {
- max-width: 100%;
-}
-.photo-top-image-wrapper a:hover,
-#photo-photo a:hover,
-.photo-album-image-wrapper a:hover {
- border-bottom: 0;
-}
-.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-top-album-name {
- position: absolute;
- bottom: 0;
- padding: 0 5px;
-}
-.caption {
- position: absolute;
- bottom: 0;
- margin: 0 5px;
-}
-#photo-photo {
- position: relative;
- float:left;
-}
-#photo-prev-link,
-#photo-next-link {
- position:absolute;
- width:30%;
- height:100%;
- background-color:rgba(255,255,255,0.5);
- opacity:0;
- -webkit-transition:all .2s ease-in-out;
- -moz-transition:all .2s ease-in-out;
- -o-transition:all .2s ease-in-out;
- -ms-transition:all .2s ease-in-out;
- transition:all .2s ease-in-out;
- background-position:center center;
- background-repeat:no-repeat;
-}
-#photo-prev-link {
- left:0;
- top:0;
- background-image:url(prev.png);
-}
-#photo-next-link {
- right:0;
- top:0;
- background-image:url(next.png);
-}
-
-#photo-prev-link a,#photo-next-link a {
- display:block;
- width:100%;
- height:100%;
- overflow:hidden;
- text-indent:-900000px;
-}
-#photo-prev-link:hover,
-#photo-next-link:hover {
- opacity:1;
- -webkit-transition:all .2s ease-in-out;
- -moz-transition:all .2s ease-in-out;
- -o-transition:all .2s ease-in-out;
- -ms-transition:all .2s ease-in-out;
- transition:all .2s ease-in-out;
-}
-#photo-next-link .icon,
-#photo-prev-link .icon {
- display: none;
-}
-#photos-upload-spacer,
-#photos-upload-new-wrapper,
-#photos-upload-exist-wrapper {
- margin-bottom: 1em;
-}
-#photos-upload-existing-album-text,
-#photos-upload-newalbum-div {
- background-color:#555753;
- color:#eeeeec;
- padding:1px;
-}
-#photos-upload-album-select,
-#photos-upload-newalbum {
- width: 99%;
-}
-#photos-upload-perms-menu {
- text-align: right;
-}
-#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
- float: left;
- margin-bottom: 25px;
-}
-#photo-edit-link-wrap {
- margin-bottom: 15px;
-}
-#photo-edit-caption {
- width: 100%;
-}
-#photo-edit-newtag {
- width: 100%;
-}
-#photo-like-div {
- margin-bottom: 25px;
-}
-#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
- clear: both;
-}
-#photo-edit-delete-button {
- margin-left: 200px;
-}
-#photo-edit-end {
- margin-bottom: 35px;
-}
-#photo-caption {
- font-size: 110%;
- font-weight: bold;
- margin-top: 15px;
- margin-bottom: 15px;
-}
-
-/**
- * message
- */
-.prvmail-text {
- width: 100%;
-}
-#prvmail-subject {
- width: 100%;
- color: #2e2f2e;
- background: #eec;
-}
-#prvmail-submit-wrapper {
- margin-top: 10px;
-}
-#prvmail-submit {
- float:right;
- margin-top: 0;
-}
-#prvmail-submit-wrapper > div {
- margin-right:5px;
- float:left;
-}
-.mail-list-outside-wrapper {
- margin-top: 20px;
-}
-.mail-list-sender {
- float: left;
-}
-.mail-list-detail {
- margin-left: 90px;
-}
-.mail-list-sender-name {
- display: inline;
- font-size: 1.1em;
-}
-.mail-list-date {
- display: inline;
- font-size: 0.9em;
- padding-left: 10px;
-}
-.mail-list-sender-name, .mail-list-date {
- font-style: italic;
-}
-.mail-list-subject {
- font-size: 1.2em;
-}
-.mail-list-delete-wrapper {
- float: right;
-}
-.mail-list-outside-wrapper-end {
- clear: both;
- border-bottom: 1px #eec dotted;
-}
-.mail-conv-sender {
- float: left;
- margin: 0px 5px 5px 0px;
-}
-.mail-conv-sender-photo {
- width: 32px;
- height: 32px;
-}
-.mail-conv-sender-name {
- float: left;
-}
-.mail-conv-date {
- float: right;
-}
-.mail-conv-subject {
- clear: right;
- font-weight: bold;
- font-size: 1.2em;
-}
-.mail-conv-body {
- clear: both;
-}
-.mail-conv-delete-wrapper {
- margin-top: 5px;
-}
-
-
-/**
- * contacts
- */
-.view-contact-wrapper,
-.contact-entry-wrapper {
- float: left;
- margin: 0 5px 40px 0;
- width: 120px;
- height: 120px;
- padding: 3px;
- position: relative;
-}
-.contact-direction-wrapper {
- position: absolute;
- top: 20px;
-}
-.contact-edit-links {
- position: absolute;
- top: 60px;
-}
-.contact-entry-photo-wrapper {
-
-}
-.contact-entry-photo {
- margin-left: 20px;
-}
-.contact-entry-name {
- width: 120px;
- font-weight: bold;
- /*overflow: hidden;*/
-}
-.contact-entry-photo {
- position: relative;
-}
-.contact-entry-edit-links .icon {
- border: 1px solid #babdb6;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- background-color: #fff;
-}
-#contact-entry-url, [id^="contact-entry-url"] {
- font-size: smaller;
- /*overflow: scroll;*/
-}
-#contact-entry-network, [id^="contact-entry-network"] {
- font-size: smaller;
- font-style: italic;
-}
-#contact-edit-banner-name {
- font-size: 1.5em;
-}
-#contact-edit-photo-wrapper {
- position: relative;
- float: left;
- padding: 20px;
-}
-#contact-edit-direction-icon {
- position:absolute;
- top:60px;
- left:0;
-}
-#contact-edit-nav-wrapper {
- margin-left: 0px;
-}
-#contact-edit-links {
- margin-top: 23px;
-}
-#contact-edit-links ul {
- list-style-type: none;
-}
-#contact-drop-links {
- margin-left:5px;
-}
-#contact-edit-nav-wrapper .icon {
- border: 1px solid #babdb6;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-#contact-edit-poll-wrapper {
- margin-left: 0px;
-}
-#contact-edit-last-update-text {
- margin-bottom: 15px;
-}
-#contact-edit-last-updated {
- font-weight: bold;
-}
-#contact-edit-poll-text {
- display: inline;
-}
-#contact-edit-info_tbl, #contact-edit-info_parent {
- width: 100%;
-}
-.mceLayout {
- width: 100%;
-}
-#contact-edit-end {
- clear: both;
- margin-bottom: 65px;
-}
-
-.contact-photo-menu-button {
- position: absolute;
- background-image: url("photo-menu.jpg");
- background-position: top left;
- background-repeat: no-repeat;
- margin: 0px; padding: 0px;
- width: 16px;
- height: 16px;
- top: 64px; left:0px;
- overflow: hidden;
- text-indent: 40px;
- display: none;
-}
-.contact-photo-menu {
- width: auto;
- border: 2px solid #444;
- background: #2e2f2e;
- color: #eec;
- position: absolute;
- left: 0px; top: 90px;
- display: none;
- z-index: 10000;
-}
-.contact-photo-menu ul {
- margin:0px;
- padding: 0px;
- list-style: none;
-}
-.contact-photo-menu li a {
- display: block;
- padding: 2px;
-}
-.contact-photo-menu li a:hover {
- color: #fff;
- background: #3465A4;
- text-decoration: none;
-}
-
-
-/**
- * register, settings & profile forms
- */
-.openid {
-
-}
-#id_openid_url {
- background:url(login-bg.gif) no-repeat;
- background-position:0 50%;
- padding-left:18px;
-}
-
-#settings-nickname-desc {
- background-color: #eec;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- padding: 5px;
- color: #111;
-}
-#settings-default-perms {
- margin-bottom: 20px;
-}
-#register-form div,
-#profile-edit-form div {
- clear: both;
-}
-.settings-block {
-
-}
-.settings-block label {
- clear: left;
-}
-.settings-block input {
- margin: 10px 5px;
-}
-/*#register-form label, */
-/*#profile-edit-form label {*/
-/* width: 300px; */
-/* float: left; */
-/*} */
-
-/*#register-form span, */
-/*#profile-edit-form span {*/
-/* color: #555753; */
-/* display: block; */
-/* margin-bottom: 20px; */
-/*} */
-#profile-edit-marital-label span {
- margin: -4px;
-}
-.settings-submit-wrapper,
-.profile-edit-submit-wrapper {
- margin: 30px 0px;
-}
-.profile-edit-side-div {
- display: none;
-}
-/*.profile-edit-side-div:hover {
- display: block;
-}
-.profile-edit-side-link {
- margin: 3px 0px 0px 70px;
-}*/
-#profiles-menu-trigger {
- margin: 0px 0px 0px 25px;
-}
-.profile-listing {
- float: left;
- margin: 20px 20px 0px 0px;
-}
-.icon-profile-edit {
- background: url("icons.png") -150px 0px no-repeat;
- border: 0;
- cursor: pointer;
- display: block;
- float: right;
- width: 20px;
- height: 20px;
- margin: 0 0 -18px;
- position: absolute;
- text-decoration: none;
- top: 113px;
- right: 260px;
-}
-#profile-edit-links ul {
- margin: 20px 0;
- padding: 0;
- list-style: none;
-}
-.marital {
- margin-top: 5px;
-}
-#register-sitename {
- display: inline;
- font-weight: bold;
-}
-#advanced-expire-popup {
- background: #2e2f2e;
- color: #eec;
-}
-#id_ssl_policy {
- width: 374px;
-}
-#theme-preview {
-
-}
-#theme-preview img {
- margin: 10px 10px 10px 288px;
-}
-
-
-/**
- * contacts selector
- */
-.group-delete-wrapper {
- margin: -31px 50px 0 0;
- float: right;
-}
-/*.group-delete-icon {
- margin: 0 0 0 10px;
-}*/
-#group-edit-submit-wrapper {
- margin: 0 0 10px 0;
- display: inline;
-}
-#group-edit-desc {
- margin: 10px 0px;
-}
-#group-members,
-#prof-members {
- height:200px;
- overflow:auto;
- border:1px solid #555753;
- -webkit-border-radius:5px 5px 0 0;
- -moz-border-radius:5px 5px 0 0;
- border-radius:5px 5px 0 0;
-}
-#group-all-contacts,
-#prof-all-contacts {
- height:200px;
- overflow:auto;
- border:1px solid #555753;
- -webkit-border-radius:0 0 5px 5px;
- -moz-border-radius:0 0 5px 5px;
- border-radius:0 0 5px 5px;
-}
-#group-members h3,
-#group-all-contacts h3,
-#prof-members h3,
-#prof-all-contacts h3 {
- color:#eeeeec;
- background-color:#555753;
- margin:0;
- padding:5px;
-}
-#group-separator,
-#prof-separator {
- display: none;
-}
-
-
-/**
- * profile
- */
-#cropimage-wrapper {
- float:left;
-}
-#crop-image-form {
- clear:both;
-}
-
-
-/**
- * intros
- */
-.intro-wrapper {
- margin-top: 20px;
-}
-
-.intro-fullname {
- font-size: 1.1em;
- font-weight: bold;
-
-}
-.intro-desc {
- margin-bottom: 20px;
- font-weight: bold;
-}
-
-.intro-note {
- padding: 10px;
-}
-
-.intro-end {
- padding: 30px;
-}
-
-.intro-form {
- float: left;
-}
-.intro-approve-form {
- clear: both;
-}
-.intro-approve-as-friend-end {
- clear: both;
-}
-.intro-submit-approve, .intro-submit-ignore {
- margin-right: 20px;
-}
-.intro-submit-approve {
- margin-top: 15px;
-}
-
-.intro-approve-as-friend-label, .intro-approve-as-fan-label {
- float: left;
-}
-.intro-approve-as-friend, .intro-approve-as-fan {
- float: left;
-}
-.intro-form-end {
- clear: both;
- margin-bottom: 10px;
-}
-.intro-approve-as-friend-desc {
- margin-top: 10px;
-}
-.intro-approve-as-end {
- clear: both;
- margin-bottom: 10px;
-}
-
-.intro-end {
- clear: both;
-}
-
-
-/**
- * events
- */
-.clear { clear: both; }
-.eventcal {
- float:left;
- font-size:20px;
-}
-.event {
- background: #2e2f2e;
-}
-.vevent {
- border:1px solid #ccc;
-}
-.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;
- font-size: smaller;
-}
-.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: monospace;
-}
-.today {
- font-weight: bold;
- color: #FF0000;
-}
-#event-start-text,
-#event-finish-text {
- margin-top: 10px;
- margin-bottom: 5px;
-}
-#event-nofinish-checkbox,
-#event-nofinish-text,
-#event-adjust-checkbox,
-#event-adjust-text,
-#event-share-checkbox {
- float:left;
-}
-#event-datetime-break {
- margin-bottom: 10px;
-}
-#event-nofinish-break,
-#event-adjust-break,
-#event-share-break {
- clear: both;
-}
-#event-desc-text,
-#event-location-text {
- margin-top: 10px;
- margin-bottom: 5px;
-}
-#event-submit {
- margin-top: 10px;
-}
-.body-tag {
- margin: 10px 0;
- opacity: 0.5;
- filter:alpha(opacity=50);
-}
-.body-tag:hover {
- opacity: 1.0 !important;
- filter:alpha(opacity=100) !important;
-}
-.filesavetags, .categorytags {
- margin: 20px 0;
- opacity: 0.5;
- filter:alpha(opacity=50);
-}
-.filesavetags:hover, .categorytags:hover {
- margin: 20px 0;
- opacity: 1.0 !important;
- filter:alpha(opacity=100) !important;
-}
-.item-select {
- opacity: 0.1;
- filter:alpha(opacity=10);
- margin: 5px 0 0 6px !important;
-}
-.item-select:hover, .checkeditem {
- opacity: 1;
- filter:alpha(opacity=100);
-}
-#item-delete-selected {
- margin-top: 30px;
-}
-/* was tired of having no way of moving it around, so
-* here's a little 'hook' to do so */
-.delete-checked {
- position: absolute;
- left: 35px;
- margin-top: 20px;
-}
-#item-delete-selected-end {
- clear: both;
-}
-#item-delete-selected-icon, #item-delete-selected-desc {
- float: left;
- margin-right: 5px;
-}
-#item-delete-selected-desc:hover {
- text-decoration: underline;
-}
-.fc-state-highlight {
- background: #eec;
- color: #2e2f2e;
-}
-
-
-/**
- * directory
- */
-.directory-item {
- float: left;
- /*margin: 50px 50px 0px 0px;*/
- margin: 0 5px 4px 0;
- padding: 3px;
- width: 180px;
- height: 250px;
- position: relative;
-}
-
-
-/**
- * sidebar
- */
-#group-sidebar {
- margin-bottom: 10px;
-}
-.group-selected, .nets-selected, .fileas-selected {
- padding: 3px;
- color: #2e2f2e;
- background: #88a9d2;
- font-weight: bold;
-}
-.group-selected:hover, .nets-selected:hover, .fileas-selected:hover {
- color: #2e2f2e;
-}
-.groupsideedit {
- margin-right: 10px;
-}
-#sidebar-group-ul {
- padding-left: 0;
-}
-#sidebar-group-list {
- margin: 0 0 5px 0;
-}
-#sidebar-group-list ul {
- list-style-type: none;
- list-style-position: inside;
-}
-#sidebar-group-list li {
- margin-top: 10px;
-}
-#sidebar-group-list .icon {
- display: inline-block;
- height: 12px;
- width: 12px;
-}
-#sidebar-new-group {
- margin: auto;
- display: inline-block;
- color: #efefef;
- text-decoration: none;
- text-align: center;
-}
-#peoplefind-sidebar form {
- margin-bottom: 10px;
-}
-#sidebar-new-group:hover {
- /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
- /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
- /*background-color: #b20202;*/
-}
-
-#sidebar-new-group:active {
- position: relative;
- top: 1px;
-}
-#side-peoplefind-url {
- background-color: #2e2f2e;
- color: #eec;
- border: 1px 999 solid;
- margin-right: 3px;
- width: 75%;
-}
-#side-peoplefind-url:hover, #side-peoplefind-url:focus {
- background-color: #efefef;
- color: #222;
- border: 1px 333 solid;
-}
-.nets-ul {
- list-style-type: none;
- padding-left: 0px;
-}
-.nets-ul li {
- margin: 10px 0 0;
-}
-
-.nets-link {
- margin-left: 0px;
-}
-.nets-all {
- margin-left: 0px;
-}
-#netsearch-box {
- margin-top: 20px;
- width: 150px;
-}
-#netsearch-box #search-submit {
- margin: 5px 0px 0px 0px;
-}
-
-
-/**
- * admin
- */
-#pending-update {
- float:right;
- color: #fff;
- font-weight: bold;
- background-color: #ff0000;
- padding: 0 .3em;
-}
-.admin.linklist {
- border: 0; padding: 0;
-}
-.admin.link {
- list-style-position: inside;
-}
-#adminpage {
- color: #eec;
- background: #2e2f2e;
- margin: 5px;
- padding: 10px;
-}
-#adminpage dl {
- clear:left;
- margin-bottom: 2px;
- padding-bottom: 2px;
- border-bottom: 1px solid #000;
-}
-#adminpage dt {
- width: 250px;
- float: left;
- font-weight: bold;
-}
-#adminpage dd {
- margin-left: 250px;
-}
-#adminpage h3 {
- border-bottom:1px solid #ccc;
-}
-
-#adminpage .submit {
- clear:left;
-}
-#adminpage #pluginslist {
- margin: 0;
- padding: 0;
-}
-#adminpage .plugin {
- list-style: none;
- display: block;
- border: 1px solid #888;
- padding: 1em;
- margin-bottom: 5px;
- clear: left;
-}
-#adminpage .toggleplugin {
- float:left;
- margin-right: 1em;
-}
-#adminpage table {
- width: 100%;
- border-bottom: 1px solid #000;
- margin: 5px 0;
-}
-#adminpage table th {
- text-align: left;
-}
-#adminpage td .icon {
- float: left;
-}
-#adminpage table#users img {
- width: 16px; height: 16px;
-}
-#adminpage table tr:hover {
- color: #2e2f2e;
- background-color: #eec;
-}
-#adminpage .selectall {
- text-align: right;
-}
-#adminpage #users a {
- color: #eec;
- text-decoration: underline;
-}
-#users .name {
- color: #eec;
-}
-
-
-/**
- * form fields
- */
-.field {
- /*margin-bottom: 10px;*/
- /*padding-bottom: 10px;*/
- overflow: auto;
- width: 100%;
-}
-.field label, label {
- width: 38%;
- display: inline-block;
- font-size: 1.077em;
- margin: 0 10px 1em 0;
- border: 1px #2e2f2e solid;
- padding: 5px;
- background: #eec;
- color: #111;
-}
-input,
-input[type="text"],
-input[type="password"],
-input[type="search"] {
- width: 250px;
- height: 25px;
- border: 1px #999 solid;
-}
-input[type="checkbox"], input[type="radio"] {
- border: 1px #999 solid;
- margin: 0 0 0 0;
- height: 15px;
- width: 15px;
-}
-input[type="submit"], input[type="button"] {
- background-color: #eee;
- border: 2px outset #aaa;
- border-radius: 5px;
- box-shadow: 1px 3px 4px 0 #111;
- color: #2e302e;
- cursor: pointer;
- font-weight: bold;
- width: auto;
- text-shadow: 1px 1px #000;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
-}
-input[type="submit"]:active, input[type="button"]:active {
- box-shadow: 0 0 0 0;
-}
-.field textarea {
- width: 80%;
- height: 100px;
-}
-.field_help {
- display: block;
- margin-left: 297px;
- color: #aaa;
-}
-.field .onoff {
- float: left;
- width: 80px;
-}
-.field .onoff a {
- display: block;
- border: 1px solid #666;
- padding: 3px 6px 4px 10px;
- height: 16px;
- text-decoration: none;
-}
-.field .onoff .on {
- background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999;
- color: #111;
- text-align: left;
-}
-.field .onoff .off {
- background: url("../../../images/onoff.jpg") no-repeat 2px 1px #ccc;
- color: #333;
- text-align: right;
-}
-.hidden {
- display:none !important;
-}
-.field.radio .field_help {
- margin-left: 297px;
-}
-
-
-/*
- * update
- */
-.popup {
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- position: absolute;
- display: none;
-}
-.popup .background {
- background-color: rgba(0,0,0,128);
- opacity: 0.5;
- width: 100%;
- height: 100%;
- position: absolute;
- top:0px;
- left:0px;
-}
-.popup .panel {
- top: 25%;
- left: 25%;
- width: 50%;
- height: 50%;
- padding: 1em;
- position: absolute;
- border: 4px solid #000000;
- background-color: #FFFFFF;
-}
-#panel {
- z-index: 100;
-}
-.grey {
- color: grey;
-}
-.orange {
- color: orange;
-}
-.red {
- color: red;
-}
-.popup .panel .panel_text {
- display: block;
- overflow: auto;
- height: 80%;
-}
-.popup .panel .panel_in {
- width: 100%;
- height: 100%;
- position: relative;
-}
-.popup .panel .panel_actions {
- width: 100%;
- bottom: 4px;
- left: 0px;
- position: absolute;
-}
-.panel_text .progress {
- width: 50%;
- overflow: hidden;
- height: auto;
- border: 1px solid #cccccc;
- margin-bottom: 5px;
-}
-.panel_text .progress span {
- float: right;
- display: block;
- width: 25%;
- background-color: #eeeeee;
- text-align: right;
-}
-
-/**
- * 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;
-}
-
-
-/**
- * icons
- */
-.iconspacer {
- display: block;
- width: 16px;
- height: 16px;
-}
-.icon {
- display: block;
- width: 20px;
- height: 20px;
- background: url(icons.png) no-repeat;
- border: 0;
- text-decoration: none;
- border-radius: 5px;
-}
-.icon:hover {
- border: 0;
- text-decoration: none;
-}
-.editicon {
- display: inline-block;
- width: 21px;
- height: 21px;
- background: url(editicons.png) no-repeat;
- border: 0;
- text-decoration: none;
-}
-.shadow {
- box-shadow: 2px 2px 5px 2px #111;
-}
-.shadow:active, .shadow:focus, .shadow:hover {
- box-shadow: 0 0 0 0;
-}
-.editicon:hover {
- border: 0;
-}
-.boldbb {
- background-position: 0px 0px;
-}
-.boldbb:hover {
- background-position: -22px 0px;
-}
-.italicbb {
- background-position: 0px -22px;
-}
-.italicbb:hover {
- background-position: -22px -22px;
-}
-.underlinebb {
- background-position: 0px -44px;
-}
-.underlinebb:hover {
- background-position: -22px -44px;
-}
-.quotebb {
- background-position: 0px -66px;
-}
-.quotebb:hover {
- background-position: -22px -66px;
-}
-.codebb {
- background-position: 0px -88px;
-}
-.codebb:hover {
- background-position: -22px -88px;
-}
-.imagebb {
- background-position: -44px 0px;
-}
-.imagebb:hover {
- background-position: -66px 0px;
-}
-.urlbb {
- background-position: -44px -22px;
-}
-.urlbb:hover {
- background-position: -66px -22px;
-}
-.videobb {
- background-position: -44px -44px;
-}
-.videobb:hover {
- background-position: -66px -44px;
-}
-.icon.drop,
-.icon.drophide, .icon.delete {
- float: left;
- margin: 0 2px;
-}
-.icon.s22.delete {
- display: block;
- background-position: -110px 0;
-}
-.icon.s22.text {
- padding: 10px 0px 0px 25px;
- width: 200px;
-}
-.icon.text {
- text-indent: 0px;
-}
-.icon.s16 {
- min-width: 16px;
- height: 16px;
-}
-.s16 .add {
- background: url("../../../images/icons/16/add.png") no-repeat;
-}
-.add {
- margin: 0px 5px;
-}
-.article {
- background-position: -50px 0;
-}
-.audio {
- background-position: -70px 0;
-}
-.block {
- background-position: -90px 0px;
-}
-.drop, .delete {
- background-position: -110px 0;
-}
-.drophide {
- background-position: -130px 0;
-}
-.edit {
- background-position: -150px 0;
-}
-.camera {
- background-position: -170px 0;
-}
-.dislike {
- background-position: -190px 0;
-}
-.file-as {
- background-position: -230px -60px;
-}
-.like {
- background-position: -211px 0;
-}
-.link {
- background-position: -230px 0;
-}
-.globe, .location {
- background-position: -50px -20px;
-}
-.noglobe, .nolocation {
- background-position: -70px -20px;
-}
-.no {
- background-position: -90px -20px;
-}
-.pause {
- background-position: -110px -20px;
-}
-.play {
- background-position: -130px -20px;
-}
-.pencil {
- background-position: -151px -18px;
-}
-.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;
-}
-.unlock {
- background-position: -88px -40px;
-}
-.video {
- background-position: -110px -40px;
-}
-.attach {
- background-position: -190px -40px;
-}
-.language {
- background-position: -210px -40px;
-}
-.starred {
- background-position: -130px -60px;
-}
-.unstarred {
- background-position: -150px -60px;
-}
-.tagged {
- background-position: -170px -60px;
-}
-.on {
- background-position: -50px -60px;
-}
-.off {
- background-position: -70px -60px;
-}
-.prev {
- background-position: -90px -60px;
-}
-.next {
- background-position: -110px -60px;
-}
-.icon.dim {
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-#pause {
- position: fixed;
- bottom: 40px;
- right: 30px;
-}
-.border, .border:hover {
- border: 1px solid #babdb6;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.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 0;
-}
-.type-audio {
- background-position: -40px 0;
-}
-.type-text {
- background-position: -60px 0px;
-}
-.type-unkn {
- background-position: -80px 0;
-}
-
-
-/**
- * footer
- */
-.cc-license {
- margin-top: 100px;
- font-size: 0.7em;
-}
-footer {
- display: block;
- /*margin: 50px 20%;*/
- clear: both;
-}
-#profile-jot-text {
- height: 20px;
- color: #eec;
- border: 1px solid #eec;
- border-radius: 5px;
- width: 99.5%;
-}
-
-
-/**
- * acl
- */
-#photo-edit-perms-select,
-#photos-upload-permissions-wrapper,
-#profile-jot-acl-wrapper {
- display: block !important;
- background: #2e2f2e;
- color: #eec;
-}
-#acl-wrapper {
- width: 660px;
- margin: 0 auto;
-}
-#acl-search {
- float: right;
- background: #fff url("../../../images/search_18.png") no-repeat right center;
- padding-right: 20px;
- margin: 6px;
- color: #111;
-}
-#acl-showall {
- float: left;
- display: block;
- width: auto;
- height: 18px;
- background: #eec url("../../../images/show_all_off.png") 8px 8px no-repeat;
- padding: 7px 10px 7px 30px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- color: #999;
- margin: 5px 0;
-}
-#acl-showall.selected {
- color: #000;
- background: #f90 url(../../../images/show_all_on.png) 8px 8px no-repeat;
-}
-#acl-list {
- height: 210px;
- border: 1px solid #ccc;
- clear: both;
- margin-top: 30px;
- overflow: auto;
-}
-/*#acl-list-content {
-}*/
-.acl-list-item {
- border: 1px solid #eec;
- display: block;
- float: left;
- height: 110px;
- margin: 3px 0 5px 5px;
- width: 120px;
-}
-.acl-list-item img {
- width: 22px;
- height: 22px;
- float: left;
- margin: 5px 5px 20px;
-}
-.acl-list-item p {
- height: 12px;
- font-size: 10px;
- margin: 0 0 22px;
- padding: 2px 0 1px;
-}
-.acl-list-item a {
- background: #eec 3px 3px no-repeat;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- clear: both;
- font-size: 10px;
- display: block;
- width: 55px;
- height: 20px;
- color: #2e2f2e;
- margin: 5px auto 0;
- padding: 0 3px;
- text-align: center;
- vertical-align: middle;
-}
-#acl-wrapper a:hover {
- text-decoration: none;
- color: #2e2f2e;
- border: 0;
-}
-.acl-button-show {
- background-image: url('../../../images/show_off.png');
- margin: 0 auto;
-}
-.acl-button-hide {
- background-image: url('../../../images/hide_off.png');
- margin: 0 auto;
-}
-.acl-button-show.selected {
- color: #2e2f2e;
- background-color: #9ade00;
- background-image: url(../../../images/show_on.png);
-}
-.acl-button-hide.selected {
- color: #2e2f2e;
- 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 **/
-
-
-/* autocomplete popup */
-.acpopup {
- max-height: 175px;
- max-width: 42%;
- background-color: #555753;
- color: #fff;
- overflow: auto;
- z-index: 100000;
- border: 1px solid #cccccc;
-}
-.acpopupitem {
- background-color: #555753;
- padding: 4px;
- clear: left;
-}
-.acpopupitem img {
- float: left;
- margin-right: 4px;
-}
-.acpopupitem.selected {
- color: #2e302e;
- background-color: #eeeeec;
-}
-.qcomment-wrapper {
- padding: 0px;
- margin: 5px 5px 5px 81%;
-}
-.qcomment {
- opacity: 0.5;
- filter:alpha(opacity=50);
-}
-.qcomment:hover {
- opacity: 1.0;
- filter:alpha(opacity=100);
-}
-#network-star-link {
- margin-top: 10px;
-}
-.network-star {
- float: left;
- margin-right: 5px;
-}
-.network-star.icon.starred {
- display: inline-block;
-}
-#fileas-sidebar {
-
-}
-.fileas-ul {
- padding: 0;
-}
-
-
-
-/*
- * addons theming
- */
-
-#sidebar-page-list {
-
-}
-#sidebar-page-list ul {
- padding: 0;
- margin: 5px 0;
-}
-#sidebar-page-list li {
- list-style: none;
-}
-#jappix_mini {
- margin-left: 130px;
- position: fixed;
- bottom: 0;
- right: 175px !important; /* override the jappix css */
- z-index: 999;
-}
-
-@media handheld {
- body {
- font-size: 15pt;
- }
-}
diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php
deleted file mode 100644
index 57e0fbe5c..000000000
--- a/view/theme/dispy-dark/theme.php
+++ /dev/null
@@ -1,163 +0,0 @@
-
- * Maintainer: Simon
- * Screenshot: Screenshot
- */
-
-$a = get_app();
-$a->theme_info = array(
- 'name' => 'dispy-dark',
- 'version' => '1.1'
-);
-
-function dispy_dark_init(&$a) {
-
- // aside on profile page
- if (($a->argv[0] . $a->argv[1]) === ("profile" . $a->user['nickname'])) {
- dispy_dark_community_info();
- }
-
- $a->page['htmlhead'] .= <<
- $(document).ready(function() {
- $('.group-edit-icon').hover(
- function() {
- $(this).addClass('icon');
- $(this).removeClass('iconspacer'); },
-
- function() {
- $(this).removeClass('icon');
- $(this).addClass('iconspacer'); }
- );
-
- $('.sidebar-group-element').hover(
- function() {
- id = $(this).attr('id');
- $('#edit-' + id).addClass('icon');
- $('#edit-' + id).removeClass('iconspacer'); },
-
- function() {
- id = $(this).attr('id');
- $('#edit-' + id).removeClass('icon');
- $('#edit-' + id).addClass('iconspacer'); }
- );
-
- $('.savedsearchdrop').hover(
- function() {
- $(this).addClass('drop');
- $(this).addClass('icon');
- $(this).removeClass('iconspacer'); },
-
- function() {
- $(this).removeClass('drop');
- $(this).removeClass('icon');
- $(this).addClass('iconspacer'); }
- );
-
- $('.savedsearchterm').hover(
- function() {
- id = $(this).attr('id');
- $('#drop-' + id).addClass('icon');
- $('#drop-' + id).addClass('drophide');
- $('#drop-' + id).removeClass('iconspacer'); },
-
- function() {
- id = $(this).attr('id');
- $('#drop-' + id).removeClass('icon');
- $('#drop-' + id).removeClass('drophide');
- $('#drop-' + id).addClass('iconspacer'); }
- );
-
- // click outside notifications menu closes it
- $('html').click(function() {
- $('#nav-notifications-linkmenu').removeClass('selected');
- $('#nav-notifications-menu').css({display: 'none'});
- });
-
- $('#nav-notifications-linkmenu').click(function(event) {
- event.stopPropagation();
- });
- // click outside profiles menu closes it
- $('html').click(function() {
- $('#profiles-menu-trigger').removeClass('selected');
- $('#profiles-menu').css({display: 'none'});
- });
-
- $('#profiles-menu').click(function(event) {
- event.stopPropagation();
- });
-
- // main function in toolbar functioning
- function toggleToolbar() {
- if ( $('#nav-floater').is(':visible') ) {
- $('#nav-floater').slideUp('fast');
- $('.floaterflip').css({
- backgroundPosition: '-210px -60px'
- });
- $('.search-box').slideUp('fast');
- } else {
- $('#nav-floater').slideDown('fast');
- $('.floaterflip').css({
- backgroundPosition: '-190px -60px'
- });
- $('.search-box').slideDown('fast');
- }
- };
- // our trigger for the toolbar button
- $('.floaterflip').click(function() {
- toggleToolbar();
- return false;
- });
-
- // (attempt to) change the text colour in a top post
- $('#profile-jot-text').focusin(function() {
- $(this).css({color: '#eec'});
- });
-
- $('a[href=#top]').click(function() {
- $('html, body').animate({scrollTop:0}, 'slow');
- return false;
- });
-
- });
- // shadowing effect for floating toolbars
- $(document).scroll(function(e) {
- var pageTop = $('html').scrollTop();
- if (pageTop) {
- $('#nav-floater').css({boxShadow: '3px 3px 10px rgba(0, 0, 0, 0.7)'});
- $('.search-box').css({boxShadow: '3px 3px 10px rgba(0, 0, 0, 0.7)'});
- } else {
- $('#nav-floater').css({boxShadow: '0 0 0 0'});
- $('.search-box').css({boxShadow: '0 0 0 0'});
- }
- });
-
-EOT;
-
- js_in_foot();
-}
-
-function dispy_dark_community_info() {
- $a = get_app();
- $url = $a->get_baseurl($ssl_state);
- $aside['$url'] = $url;
-
- $tpl = file_get_contents(dirname(__file__) . '/communityhome.tpl');
- return $a->page['aside_bottom'] = replace_macros($tpl, $aside);
-}
-
-function js_in_foot() {
- /** @purpose insert stuff in bottom of page
- */
- $a = get_app();
- $baseurl = $a->get_baseurl($ssl_state);
- $bottom['$baseurl'] = $baseurl;
- $tpl = file_get_contents(dirname(__file__) . '/bottom.tpl');
-
- return $a->page['bottom'] = replace_macros($tpl, $bottom);
-}
diff --git a/view/theme/dispy-dark/wall_item.tpl b/view/theme/dispy-dark/wall_item.tpl
deleted file mode 100644
index 52af07532..000000000
--- a/view/theme/dispy-dark/wall_item.tpl
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
{{ if $item.location }} $item.location {{ endif }}
-
-
-
-
$item.title
-
-
- $item.body
-
- {{ for $item.tags as $tag }}
- $tag
- {{ endfor }}
-
-
-
-
-
-
-
$item.like
-
$item.dislike
-
-
-
-
-
diff --git a/view/theme/dispy-dark/wallwall_item.tpl b/view/theme/dispy-dark/wallwall_item.tpl
deleted file mode 100644
index e8cbc2cd4..000000000
--- a/view/theme/dispy-dark/wallwall_item.tpl
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{{ if $item.location }} $item.location {{ endif }}
-
-
-
-
$item.title
-
-
- $item.body
-
- {{ for $item.tags as $tag }}
- $tag
- {{ endfor }}
-
-
-
-
-
-
-
$item.like
-
$item.dislike
-
-
-
-
-
diff --git a/view/theme/dispy/config.php b/view/theme/dispy/config.php
new file mode 100644
index 000000000..a24288bf8
--- /dev/null
+++ b/view/theme/dispy/config.php
@@ -0,0 +1,79 @@
+"1.3",
+ "---"=>"---",
+ "1.6"=>"1.6",
+ "1.5"=>"1.5",
+ "1.4"=>"1.4",
+ "1.2"=>"1.2",
+ "1.1"=>"1.1",
+ );
+ $font_sizes = array(
+ '12' => '12',
+ '14' =>'14',
+ "---" => "---",
+ "16" => "16",
+ "15" => "15",
+ '13.5' => '13.5',
+ '13' => '13',
+ '12.5' => '12.5',
+ '12' => '12',
+ );
+ $colours = array(
+ 'light' => 'light',
+ 'dark' => 'dark',
+ );
+
+ $t = file_get_contents( dirname(__file__). "/theme_settings.tpl" );
+ $o .= replace_macros($t, array(
+ '$submit' => t('Submit'),
+ '$baseurl' => $a->get_baseurl(),
+ '$title' => t("Theme settings"),
+ '$font_size' => array('dispy_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
+ '$line_height' => array('dispy_line_height', t('Set line-height for posts and comments'), $line_height, '', $line_heights),
+ '$colour' => array('dispy_colour', t('Set colour scheme'), $colour, '', $colours),
+ ));
+
+ return $o;
+}
diff --git a/view/theme/dispy-dark/connect.png b/view/theme/dispy/dark/connect.png
similarity index 100%
rename from view/theme/dispy-dark/connect.png
rename to view/theme/dispy/dark/connect.png
diff --git a/view/theme/dispy-dark/editicons.png b/view/theme/dispy/dark/editicons.png
similarity index 100%
rename from view/theme/dispy-dark/editicons.png
rename to view/theme/dispy/dark/editicons.png
diff --git a/view/theme/dispy-dark/editicons.svg b/view/theme/dispy/dark/editicons.svg
similarity index 100%
rename from view/theme/dispy-dark/editicons.svg
rename to view/theme/dispy/dark/editicons.svg
diff --git a/view/theme/dispy-dark/icons.png b/view/theme/dispy/dark/icons.png
similarity index 100%
rename from view/theme/dispy-dark/icons.png
rename to view/theme/dispy/dark/icons.png
diff --git a/view/theme/dispy-dark/icons.svg b/view/theme/dispy/dark/icons.svg
similarity index 100%
rename from view/theme/dispy-dark/icons.svg
rename to view/theme/dispy/dark/icons.svg
diff --git a/view/theme/dispy-dark/login-bg.gif b/view/theme/dispy/dark/login-bg.gif
similarity index 100%
rename from view/theme/dispy-dark/login-bg.gif
rename to view/theme/dispy/dark/login-bg.gif
diff --git a/view/theme/dispy-dark/menu-user-pin.jpg b/view/theme/dispy/dark/menu-user-pin.jpg
similarity index 100%
rename from view/theme/dispy-dark/menu-user-pin.jpg
rename to view/theme/dispy/dark/menu-user-pin.jpg
diff --git a/view/theme/dispy-dark/next.png b/view/theme/dispy/dark/next.png
similarity index 100%
rename from view/theme/dispy-dark/next.png
rename to view/theme/dispy/dark/next.png
diff --git a/view/theme/dispy-dark/notifications.png b/view/theme/dispy/dark/notifications.png
similarity index 100%
rename from view/theme/dispy-dark/notifications.png
rename to view/theme/dispy/dark/notifications.png
diff --git a/view/theme/dispy-dark/notifications.svg b/view/theme/dispy/dark/notifications.svg
similarity index 100%
rename from view/theme/dispy-dark/notifications.svg
rename to view/theme/dispy/dark/notifications.svg
diff --git a/view/theme/dispy-dark/photo-menu.jpg b/view/theme/dispy/dark/photo-menu.jpg
similarity index 100%
rename from view/theme/dispy-dark/photo-menu.jpg
rename to view/theme/dispy/dark/photo-menu.jpg
diff --git a/view/theme/dispy-dark/premium.png b/view/theme/dispy/dark/premium.png
similarity index 100%
rename from view/theme/dispy-dark/premium.png
rename to view/theme/dispy/dark/premium.png
diff --git a/view/theme/dispy-dark/prev.png b/view/theme/dispy/dark/prev.png
similarity index 100%
rename from view/theme/dispy-dark/prev.png
rename to view/theme/dispy/dark/prev.png
diff --git a/view/theme/dispy-dark/screenshot.jpg b/view/theme/dispy/dark/screenshot.jpg
similarity index 100%
rename from view/theme/dispy-dark/screenshot.jpg
rename to view/theme/dispy/dark/screenshot.jpg
diff --git a/view/theme/dispy-dark/star.png b/view/theme/dispy/dark/star.png
similarity index 100%
rename from view/theme/dispy-dark/star.png
rename to view/theme/dispy/dark/star.png
diff --git a/view/theme/dispy/dark/style.css b/view/theme/dispy/dark/style.css
new file mode 100644
index 000000000..d151cfa1c
--- /dev/null
+++ b/view/theme/dispy/dark/style.css
@@ -0,0 +1,518 @@
+article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
+audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;}
+audio:not([controls]),[hidden]{display:none;}
+html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
+body{margin:0;font-size:16px;line-height:1.1em;font-family:sans-serif;color:#eec;background-color:#2e2f2e;}
+button,input,select,textarea{font-family:sans-serif;color:#eec;background-color:#2e2f2e;}
+select{border:1px #555 dotted;padding:3px;margin:3px;color:#eec;background:#2e2f2e;}
+option{padding:3px;color:#eec;background:#2e2f2e;}option[selected="selected"]{color:#2e2f2e;background:#eec;}
+ul,ol{padding:0;}
+:focus{outline:0;}
+[disabled="disabled"]{background:#4e4f4f;color:#ddb;}
+ins{background-color:#2e302e;color:#ff9;text-decoration:none;}
+mark{background-color:#2e302e;color:#ff9;font-style:italic;font-weight:bold;}
+pre,code,kbd,samp,.wall-item-body code{font-family:monospace, monospace;_font-family:monospace;font-size:1em;}
+pre,.wall-item-body code{white-space:pre;white-space:pre-wrap;word-wrap:break-word;}
+q{quotes:none;}q:before,q:after{content:"";content:none;}
+small{font-size:85%;}
+sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
+sub{bottom:-0.25em;}
+sup{top:-0.5em;}
+img{border:0 none;}
+a{color:#88a9d2;text-decoration:none;margin-bottom:1px;}a:hover img{text-decoration:none;}
+blockquote{background:#444;color:#eec;text-indent:5px;padding:5px;border:1px #aaa solid;border-radius:5px;}
+a:hover{color:#729fcf;border-bottom:1px dotted #729fcf;}
+.required{display:inline;color:#ff0;font-size:16px;font-weight:bold;margin:3px;}
+.fakelink,.lockview{color:#729fcf;cursor:pointer;}
+.fakelink:hover{color:#729fcf;}
+.smalltext{font-size:0.7em;}
+#panel{position:absolute;font-size:0.8em;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #fff;background-color:#2e302e;color:#eeeeec;padding:1em;}
+.pager{margin-top:60px;display:block;clear:both;text-align:center;}.pager span{padding:4px;margin:4px;}
+.pager_current{background-color:#729fcf;color:#fff;}
+.action{margin:5px 0;}
+.tool{margin:5px 0;list-style:none;}
+#articlemain{width:100%;height:100%;margin:0 auto;}
+#asidemain .field{overflow:hidden;width:200px;}
+#login-extra-links{overflow:auto !important;padding-top:60px !important;width:100% !important;}#login-extra-links a{margin-right:20px;}
+#login_standard{display:block !important;float:none !important;height:100% !important;position:relative !important;width:100% !important;}#login_standard .field label{width:200px !important;}
+#login_standard input{margin:0 0 8px !important;width:210px !important;}#login_standard input[type="text"]{margin:0 0 8px !important;width:210px !important;}
+#login-submit-wrapper{margin:0 !important;}
+#login-submit-button{margin-left:0px !important;}
+#asidemain #login_openid{position:relative !important;float:none !important;margin-left:0px !important;height:auto !important;width:200px !important;}
+#login_openid #id_openid_url{width:180px !important;overflow:hidden !important;}
+#login_openid label{width:180px !important;}
+nav{height:60px;background-color:#1d1f1d;color:#eeeeec;position:relative;padding:20px 20px 10px 95px;}nav a{text-decoration:none;color:#eeeeec;border:0px;}nav a:hover{text-decoration:none;color:#eeeeec;border:0px;}
+nav #banner{display:block;position:absolute;left:51px;top:25px;}nav #banner #logo-text a{font-size:40px;font-weight:bold;margin-left:3px;}
+ul#user-menu-popup{display:none;position:absolute;background-color:#555753;width:100%;padding:10px 0px;margin:0px;top:20px;left:0;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;box-shadow:5px 10px 10px 0 #111;z-index:10000;}ul#user-menu-popup li{display:block;}ul#user-menu-popup li a{display:block;padding:5px;}ul#user-menu-popup li a:hover{color:#2e302e;background-color:#eeeeec;}
+ul#user-menu-popup li a.nav-sep{border-top:1px solid #eeeeec;}
+nav .nav-link{display:inline-block;width:22px;height:22px;overflow:hidden;margin:0px 5px 5px;text-indent:50px;background:transparent url(dark/icons.png) 0 0 no-repeat;}
+#nav-apps-link{background-position:0 -66px;}#nav-apps-link:hover{background-position:-22px -66px;}
+#nav-community-link,#nav-contacts-link{background-position:0 -22px;}#nav-community-link:hover,#nav-contacts-link:hover{background-position:-22px -22px;}
+#nav-directory-link{background-position:-44px -154px;}#nav-directory-link:hover{background-position:-66px -154px;}
+#nav-help-link{background-position:0 -110px;}#nav-help-link:hover{background-position:-22px -110px;}
+#nav-home-link{background-position:-44px -132px;}#nav-home-link:hover{background-position:-66px -132px;}
+#nav-intro-link{background-position:0px -190px;}#nav-intro-link:hover{background-position:-44px -190px;}
+#nav-login-link,#nav-logout-link{background-position:0 -88px;}#nav-login-link:hover,#nav-logout-link:hover{background-position:-22px -88px;}
+#nav-messages-link{background-position:-44px -88px;}#nav-messages-link:hover{background-position:-66px -88px;}
+#nav-notify-link,#nav-notifications-linkmenu{background-position:-44px -110px;}
+#nav-notify-link:hover{background-position:-66px -110px;}
+#nav-network-link{background-position:0px -177px;}#nav-network-link:hover{background-position:-22px -177px;}
+#nav-search-link{background-position:0 -44px;}#nav-search-link:hover{background-position:-22px -44px;}
+#profile-link,#profile-title,#wall-image-upload,#wall-file-upload,#profile-attach-wrapper,#profile-audio,#profile-link,#profile-location,#profile-nolocation,#profile-title,#jot-title,#profile-upload-wrapper,#profile-video,#profile-jot-submit,#wall-image-upload-div,#wall-file-upload-div,.icon,.hover,.focus,.pointer{cursor:pointer;}
+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;}
+#nav-notifications-menu{margin:30px 0 0 -20px;width:275px;max-height:300px;overflow-y:auto;font-size:9pt;}#nav-notifications-menu .contactname{font-weight:bold;font-size:0.9em;}
+#nav-notifications-menu img{float:left;margin-right:5px;}
+#nav-notifications-menu .notif-when{font-size:0.8em;display:block;}
+#nav-notifications-menu li{word-wrap:normal;border-bottom:1px solid #000;}#nav-notifications-menu li:hover{color:black;}
+#nav-notifications-menu a:hover{color:black;text-decoration:underline;}
+nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkmenu.selected .icon.s22.notify{background-image:url("../../../images/icons/22/notify_on.png");}
+.show{display:block;}
+#notifications{height:20px;width:170px;position:absolute;top:-19px;left:4px;}
+#nav-floater{position:fixed;top:20px;right:1%;padding:5px;background:#1d1f1d;color:transparent;border-radius:5px;z-index:100;width:300px;height:60px;}
+#nav-buttons{clear:both;list-style:none;padding:0px;margin:0px;height:25px;}#nav-buttons>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;}
+.floaterflip{display:block;position:fixed;z-index:110;top:56px;right:19px;width:22px;height:22px;overflow:hidden;margin:0px;background:transparent url(dark/icons.png) -190px -60px no-repeat;}
+.search-box{display:inline-block;margin:5px;position:fixed;right:0px;bottom:0px;z-index:100;background:#1d1f1d;border-radius:5px;}
+#search-text{border:1px #eec solid;background:#2e2f2e;color:#eec;}
+.search-box #search-text{margin:8px;width:10em;height:14px;color:#eec;}
+#scrollup{position:fixed;right:5px;bottom:40px;z-index:100;}#scrollup a:hover{text-decoration:none;border:0;}
+#user-menu{box-shadow:5px 0 10px 0 #111;display:block;width:75%;margin:3px 0 0 0;position:relative;background-color:#555753;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:#555753 url("dark/menu-user-pin.jpg") 98% center no-repeat;clear:both;top:4px;left:10px;padding:2px;}#user-menu>a{vertical-align:top;}
+#user-menu-label{font-size:12px;padding:3px 20px 9px 5px;height:10px;}
+.nav-ajax-update,.nav-ajax-left{width:30px;height:19px;background:transparent url(dark/notifications.png) 0 0 no-repeat;color:#222;font-weight:bold;font-size:0.8em;padding-top:0.2em;text-align:center;float:left;margin:0 -1px 0 3px;display:block;visibility:hidden;}
+.nav-ajax-update.show,.nav-ajax-left.show{visibility:visible;}
+#net-update{background-position:0px 0px;}
+#mail-update{background-position:-30px 0;}
+#notify-update{background-position:-60px 0px;}
+#home-update{background-position:-90px 0px;}
+#intro-update{background-position:-120px 0px;}
+#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;}
+#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;}
+.menu-popup{position:absolute;display:none;width:11em;background:#ffffff;color:#2d2d2d;margin:0px;padding:0px;list-style:none;border:3px solid #364e59;z-index:100000;-webkit-box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);-moz-box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);}.menu-popup a{display:block;color:#2d2d2d;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{background-color:#bdcdd4;}
+.menu-popup .menu-sep{border-top:1px solid #9eabb0;}
+.menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;}
+.menu-popup .empty{padding:5px;text-align:center;color:#9eabb0;}
+.notif-item{font-size:small;}.notif-item a{vertical-align:middle;}
+.notif-image{width:32px;height:32px;padding:7px 7px 0px 0px;}
+.notify-seen{background:#ddd;}
+#sysmsg_info{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;}
+#sysmsg{position:fixed;bottom:0;-moz-box-shadow:3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;}
+#sysmsg_info br,#sysmsg br{display:block;margin:2px 0px;border-top:1px solid #ccccce;}
+#asidemain{float:left;font-size:smaller;margin:20px 0 20px 35px;width:25%;display:inline;}
+#asideright,#asideleft{display:none;}
+.vcard .fn{font-size:1.7em;font-weight:bold;border-bottom:1px solid #729fcf;padding-bottom:3px;}
+.vcard #profile-photo-wrapper{margin:20px;}.vcard #profile-photo-wrapper img{box-shadow:3px 3px 10px 0 #000;}
+#asidemain h4{font-size:1.2em;}
+#asidemain #viewcontacts{text-align:right;}
+.aprofile dt{background:#eec;color:#2e2f2e;font-weight:bold;box-shadow:1px 1px 5px 0 #000;margin:15px 0 5px;padding-left:5px;}
+#profile-extra-links ul{margin-left:0px;padding-left:0px;list-style:none;}
+#dfrn-request-link{background:#3465a4 url(dark/connect.png) no-repeat 95% center;border-radius:5px 5px 5px 5px;color:#eec;display:block;font-size:1.2em;padding:0.2em 0.5em;}
+#wallmessage-link{color:#eee;display:block;font-size:1.2em;padding:0.2em 0.5em;}
+#netsearch-box{margin:20px 0px 30px;width:150px;}#netsearch-box #search-submit{margin:5px 5px 0px 0px;}
+.ttright{margin:0px 0px 0px 0px;}
+.contact-block-div{width:50px;height:50px;float:left;}
+.contact-block-textdiv{width:150px;height:34px;float:left;}
+#contact-block-end{clear:both;}
+#jot{margin:10px 0 20px 0px;width:100%;}#jot #jot-tools{margin:0px;padding:0px;height:35px;overflow:none;width:100%;}#jot #jot-tools span{float:left;margin:10px 20px 2px 0px;}#jot #jot-tools span a{display:block;}
+#jot #jot-tools .perms{float:right;width:40px;}
+#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;}
+#jot #jot-title{border:1px solid #ccc;margin:0 0 5px;height:20px;width:90%;font-weight:bold;border-radius:5px;vertical-align:middle;}
+#jot-category{margin:5px 0;border-radius:5px;border:1px #999 solid;color:#aaa;font-size:smaller;}#jot-category:focus{color:#eee;}
+#jot #character-counter{width:6%;float:right;text-align:right;height:15px;line-height:20px;padding:2px 20px 5px 0;}
+#profile-jot-text_parent{box-shadow:5px 0 10px 0 #111;}
+#profile-jot-text_tbl{margin-bottom:10px;background:#777;}
+#profile-jot-text_ifr{width:99.900002% !important;}
+#profile-jot-text_toolbargroup,.mceCenter tr{background:#777;}
+[id$="jot-text_ifr"]{width:99.900002% !important;color:#2e2f2e;background:#eec;}[id$="jot-text_ifr"] .mceContentBody{color:#2e2f2e;background:#eec;}
+.defaultSkin tr.mceFirst{background:#777;}
+.defaultSkin td.mceFirst,.defaultSkin td.mceLast{background-color:#eec;}
+.defaultSkin span.mceIcon,.defaultSkin img.mceIcon,.defaultSkin .mceButtonDisabled .mceIcon{background-color:#eec;}
+#profile-attach-wrapper,#profile-audio-wrapper,#profile-link-wrapper,#profile-location-wrapper,#profile-nolocation-wrapper,#profile-title-wrapper,#profile-upload-wrapper,#profile-video-wrapper{float:left;margin:0 20px 0 0;}
+#profile-rotator-wrapper{float:right;}
+#profile-jot-tools-end,#profile-jot-banner-end{clear:both;}
+#profile-jot-email-wrapper{margin:10px 10% 0;border:1px solid #555753;border-bottom:0;}
+#profile-jot-email-label{background-color:#555753;color:#ccccce;padding:5px;}
+#profile-jot-email{width:90%;margin:5px;}
+#profile-jot-networks{margin:0 10%;border:1px solid #555753;border-top:0;border-bottom:0;padding:5px;}
+#profile-jot-net{margin:5px 0;}
+#jot-preview-link{margin:0 0 0 10px;border:0;text-decoration:none;float:right;}
+.icon-text-preview{margin:0 0 -18px 0;display:block;width:20px;height:20px;background:url(dark/icons.png) no-repeat -128px -40px;border:0;text-decoration:none;float:right;cursor:pointer;}
+#profile-jot-perms{float:right;background-color:#555753;height:22px;width:20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;border:0px;margin:0 10px 0 10px;}
+#profile-jot-plugin-wrapper{width:1px;margin:10px 0 0 0;float:right;}
+#profile-jot-submit-wrapper{float:right;width:100%;list-style:none;margin:10px 0 0 0;padding:0;}
+#profile-jot-submit{height:auto;background-color:#555753;color:#eeeeec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:2px outset #222420;margin:0;float:right;text-shadow:1px 1px #111;width:auto;}#profile-jot-submit:active{box-shadow:0 0 0 0;}
+#jot-perms-icon{height:22px;width:20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;border:0;}
+#profile-jot-acl-wrapper{margin:0 10px;border:1px solid #555753;border-top:0;display:block !important;}
+#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper{width:47%;float:left;}
+#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{width:47%;float:right;}
+#acl-permit-text{background-color:#555753;color:#ccccce;padding:5px;float:left;}
+#jot-public{background-color:#555753;color:#ff0000;padding:5px;float:left;}
+#acl-deny-text{background-color:#555753;color:#ccccce;padding:5px;float:left;}
+#acl-permit-text-end,#acl-deny-text-end{clear:both;}
+#jot-title-desc{color:#ccc;}
+#profile-jot-desc{color:#ff2000;margin:5px 0;}
+#jot-title-wrapper{margin-bottom:5px;}
+#jot-title-display{font-weight:bold;}
+.jothidden{display:none;}
+#jot-preview-content{background-color:#3e3f3e;color:#eec;border:1px #eec solid;border-radius:5px;padding:3px 3px 6px 10px;}#jot-preview-content .wall-item-outside-wrapper{border:0;border-radius:0px;}
+#sectionmain{margin:20px;font-size:0.8em;min-width:475px;width:67%;float:left;display:inline;}
+.tabs{list-style:none;margin:10px 0;padding:0;}.tabs li{display:inline;font-size:smaller;font-weight:bold;}
+.tab{border:1px solid #729fcf;padding:4px;}.tab:hover,.tab.active:hover,.tab:active{background:#88a9d2;color:#2e2f2e;}
+.tab.active{background:#88a9d2;color:#2e2f2e;}.tab.active a{color:#2e2f2e;}
+.tab a{border:0;text-decoration:none;}
+.wall-item-outside-wrapper{border:1px solid #aaa;border-radius:5px;box-shadow:5px 0 10px 0 #111;}.wall-item-outside-wrapper.comment{margin-top:5px;}
+.wall-item-outside-wrapper-end{clear:both;}
+.wall-item-content-wrapper{position:relative;padding:10px;width:auto;}
+.wall-item-outside-wrapper .wall-item-comment-wrapper{}
+.shiny{background:#2e3436;border-radius:5px;}
+.wall-outside-wrapper .shiny{border-radius:5px;}
+.heart{color:red;}
+.wall-item-content{overflow-x:auto;margin:0px 15px 0px 5px;}
+[id^="tread-wrapper"],[class^="tread-wrapper"]{margin:15px 0 0 0;padding:0px;}
+.wall-item-photo-menu{display:none;}
+.wall-item-photo-menu-button{display:none;text-indent:-99999px;background:#555753 url(dark/menu-user-pin.jpg) no-repeat 75px center;position:absolute;overflow:hidden;height:20px;width:90px;top:85px;left:0;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;}
+.wall-item-info{float:left;width:110px;}
+.wall-item-photo-wrapper{width:80px;height:80px;position:relative;padding:5px;background-color:#555753;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+[class^="wall-item-tools"] *{}[class^="wall-item-tools"] *>*{}
+.wall-item-tools{float:right;opacity:0.4;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out;}.wall-item-tools:hover{opacity:1;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out;}
+.wall-item-subtools1{height:30px;list-style:none outside none;margin:20px 0 30px -20px;padding:0;width:30px;}
+.wall-item-subtools2{height:25px;list-style:none outside none;margin:-75px 0 0 5px;padding:0;width:25px;}
+.wall-item-title{font-size:1.2em;font-weight:bold;margin-bottom:1em;}
+.wall-item-body{margin:20px 20px 10px 0px;text-align:left;overflow-x:auto;}
+.wall-item-lock-wrapper{float:right;height:22px;margin:0 -5px 0 0;width:22px;opacity:1;}
+.wall-item-dislike,.wall-item-like{clear:left;font-size:0.8em;color:#878883;margin:5px 0 5px 120px;}
+.wall-item-author,.wall-item-actions-author{clear:left;font-size:0.8em;color:#878883;margin:20px 20px 0 110px;}
+.wall-item-ago{display:inline;padding-left:10px;}
+.wall-item-wrapper-end{clear:both;}
+.wall-item-location{margin-top:15px;width:100px;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;}.wall-item-location .icon{float:left;}
+.wall-item-location>a,.wall-item-location .smalltext{margin-left:25px;font-size:0.7em;display:block;}
+.wall-item-location>br{display:none;}
+.wallwall .wwto{left:5px;margin:0;position:absolute;top:75px;width:30px;z-index:10001;width:30px;height:30px;}.wallwall .wwto img{width:30px !important;height:30px !important;}
+.wallwall .wall-item-photo-end{clear:both;}
+.wall-item-arrowphoto-wrapper{position:absolute;left:35px;top:80px;z-index:10002;}
+.wall-item-photo-menu{min-width:92px;border:2px solid #FFFFFF;border-top:0px;background:#555753;position:absolute;left:-2px;top:101px;display:none;z-index:10003;-webkit-border-radius:0px 5px 5px 5px;-moz-border-radius:0px 5px 5px 5px;border-radius:0px 5px 5px 5px;}.wall-item-photo-menu ul{margin:0px;padding:0px;list-style:none;}
+.wall-item-photo-menu li a{white-space:nowrap;display:block;padding:5px 2px;color:#eeeeec;}.wall-item-photo-menu li a:hover{color:#555753;background:#eeeeec;}
+#item-delete-selected{overflow:auto;width:100%;}
+#connect-services-header,#connect-services,#extra-help-header,#extra-help,#postit-header,#postit{margin:5px 0 0 0;}
+.ccollapse-wrapper{font-size:0.9em;margin-left:80px;}
+.wall-item-outside-wrapper.comment{margin-left:80px;}.wall-item-outside-wrapper.comment .wall-item-photo{width:40px!important;height:40px!important;}
+.wall-item-outside-wrapper.comment .wall-item-photo-wrapper{width:40px;height:40px;}
+.wall-item-outside-wrapper.comment .wall-item-photo-menu-button{width:50px;top:45px;background-position:35px center;}
+.wall-item-outside-wrapper.comment .wall-item-info{width:60px;}
+.wall-item-outside-wrapper.comment .wall-item-body{margin-left:10px;}
+.wall-item-outside-wrapper.comment .wall-item-author{margin-left:50px;}
+.wall-item-outside-wrapper.comment .wall-item-photo-menu{min-width:50px;top:60px;}
+.comment-wwedit-wrapper{}
+.comment-edit-wrapper{border-top:1px #aaa solid;}
+[class^="comment-edit-bb"]{list-style:none;display:none;margin:-40px 0 5px 60px;width:75%;}[class^="comment-edit-bb"]>li{display:inline-block;margin:0 10px 0 0;visibility:none;}
+.comment-wwedit-wrapper img,.comment-edit-wrapper img{width:20px;height:20px;}
+.comment-edit-photo-link,.comment-edit-photo{margin-left:10px;}
+.my-comment-photo{width:40px;height:40px;padding:5px;}
+[class^="comment-edit-text"]{margin:5px 0 10px 20px;width:84.5%;}
+.comment-edit-text-empty{height:20px;border:2px #c8bebe solid;border-radius:5px;color:#c8bebe;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.comment-edit-text-empty:hover{color:#999999;}
+.comment-edit-text-full{height:10em;border-radius:5px;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}
+.comment-edit-submit-wrapper{width:90%;margin:5px 5px 10px 50px;text-align:right;}
+.comment-edit-submit{height:22px;background-color:#555753;color:#eeeeec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:0;}
+.wall-item-body code{display:block;padding:0 0 10px 5px;border-color:#ccc;border-style:solid;border-width:1px 1px 1px 10px;background:#eee;color:#2e2f2e;width:95%;}
+div[id$="text"]{font-weight:bold;border-bottom:1px solid #ccc;}
+div[id$="wrapper"]{height:100%;margin-bottom:1em;}div[id$="wrapper"] br{clear:left;}
+[id$="-end"],[class$="end"]{clear:both;margin:0 0 10px 0;}
+#advanced-profile-with{margin-left:200px;}
+.photos{height:auto;overflow:auto;}
+#photo-top-links{margin-bottom:30px;}
+.photo-album-image-wrapper,.photo-top-image-wrapper{float:left;-moz-box-shadow:3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;background-color:#222;color:#2e2f2e;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding-bottom:30px;position:relative;margin:0 10px 10px 0;}
+#photo-photo{max-width:100%;}#photo-photo img{max-width:100%;}
+.photo-top-image-wrapper a:hover,#photo-photo a:hover,.photo-album-image-wrapper a:hover{border-bottom:0;}
+.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-top-album-name{position:absolute;bottom:0;padding:0 5px;}
+.caption{position:absolute;bottom:0;margin:0 5px;}
+#photo-photo{position:relative;float:left;}
+#photo-prev-link,#photo-next-link{position:absolute;width:30%;height:100%;background-color:rgba(255, 255, 255, 0.5);opacity:0;-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;background-position:center center;background-repeat:no-repeat;}
+#photo-prev-link{left:0;top:0;background-image:url(dark/prev.png);}
+#photo-next-link{right:0;top:0;background-image:url(dark/next.png);}
+#photo-prev-link a,#photo-next-link a{display:block;width:100%;height:100%;overflow:hidden;text-indent:-900000px;}
+#photo-prev-link: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;}
+#photo-next-link: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;}
+#photo-next-link .icon{display:none;}
+#photo-prev-link .icon{display:none;}
+#photos-upload-spacer,#photos-upload-new-wrapper,#photos-upload-exist-wrapper{margin-bottom:1em;}
+#photos-upload-existing-album-text,#photos-upload-newalbum-div{background-color:#555753;color:#eeeeec;padding:1px;}
+#photos-upload-album-select,#photos-upload-newalbum{width:99%;}
+#photos-upload-perms-menu{text-align:right;}
+#photo-edit-caption,#photo-edit-newtag,#photo-edit-albumname{float:left;margin-bottom:25px;}
+#photo-edit-link-wrap{margin-bottom:15px;}
+#photo-edit-caption,#photo-edit-newtag{width:100%;}
+#photo-like-div{margin-bottom:25px;}
+#photo-edit-caption-end,#photo-edit-tags-end,#photo-edit-albumname-end{clear:both;}
+#photo-edit-delete-button{margin-left:200px;}
+#photo-edit-end{margin-bottom:35px;}
+#photo-caption{font-size:110%;font-weight:bold;margin-top:15px;margin-bottom:15px;}
+.prvmail-text{width:100%;}
+#prvmail-subject{width:100%;color:#2e2f2e;background:#eec;}
+#prvmail-submit-wrapper{margin-top:10px;}
+#prvmail-submit{float:right;margin-top:0;}
+#prvmail-submit-wrapper div{margin-right:5px;float:left;}
+.mail-list-outside-wrapper{margin-top:20px;}
+.mail-list-sender{float:left;}
+.mail-list-detail{margin-left:90px;}
+.mail-list-sender-name{display:inline;font-size:1.1em;}
+.mail-list-date{display:inline;font-size:0.9em;padding-left:10px;}
+.mail-list-sender-name,.mail-list-date{font-style:italic;}
+.mail-list-subject{font-size:1.2em;}
+.mail-list-delete-wrapper{float:right;}
+.mail-list-outside-wrapper-end{clear:both;border-bottom:1px #eec dotted;}
+.mail-conv-sender{float:left;margin:0px 5px 5px 0px;}
+.mail-conv-sender-photo{width:32px;height:32px;}
+.mail-conv-sender-name{float:left;}
+.mail-conv-date{float:right;}
+.mail-conv-subject{clear:right;font-weight:bold;font-size:1.2em;}
+.mail-conv-body{clear:both;}
+.mail-conv-delete-wrapper{margin-top:5px;}
+.view-contact-wrapper,.contact-entry-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:120px;padding:3px;position:relative;}
+.contact-direction-wrapper{position:absolute;top:20px;}
+.contact-edit-links{position:absolute;top:60px;}
+.contact-entry-photo{margin-left:20px;}
+.contact-entry-name{width:120px;font-weight:bold;}
+.contact-entry-photo{position:relative;}
+.contact-entry-edit-links .icon{border:1px solid #babdb6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:#fff;}
+#contact-entry-url,[id^="contact-entry-url"]{font-size:smaller;}
+#contact-entry-network,[id^="contact-entry-network"]{font-size:smaller;font-style:italic;}
+#contact-edit-banner-name{font-size:1.5em;}
+#contact-edit-photo-wrapper{position:relative;float:left;padding:20px;}
+#contact-edit-direction-icon{position:absolute;top:60px;left:0;}
+#contact-edit-nav-wrapper{margin-left:0px;}
+#contact-edit-links{margin-top:23px;}#contact-edit-links ul{list-style-type:none;}
+#contact-drop-links{margin-left:5px;}
+#contact-edit-nav-wrapper .icon{border:1px solid #babdb6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
+#contact-edit-poll-wrapper{margin-left:0px;}
+#contact-edit-last-update-text{margin-bottom:15px;}
+#contact-edit-last-updated{font-weight:bold;}
+#contact-edit-poll-text{display:inline;}
+#contact-edit-info_tbl,#contact-edit-info_parent,.mceLayout{width:100%;}
+#contact-edit-end{clear:both;margin-bottom:65px;}
+.contact-photo-menu-button{position:absolute;background-image:url("dark/photo-menu.jpg");background-position:top left;background-repeat:no-repeat;margin:0px;padding:0px;width:16px;height:16px;top:64px;left:0px;overflow:hidden;text-indent:40px;display:none;}
+.contact-photo-menu{width:auto;border:2px solid #444;background:#2e2f2e;color:#eec;position:absolute;left:0px;top:90px;display:none;z-index:10000;}.contact-photo-menu ul{margin:0px;padding:0px;list-style:none;}
+.contact-photo-menu li a{display:block;padding:2px;}.contact-photo-menu li a:hover{color:#fff;background:#3465A4;text-decoration:none;}
+#id_openid_url{background:url(dark/login-bg.gif) no-repeat;background-position:0 50%;padding-left:18px;}
+#settings-nickname-desc{background-color:#eec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:5px;color:#111;}
+#settings-default-perms{margin-bottom:20px;}
+#register-form div,#profile-edit-form div{clear:both;}
+.settings-block label{clear:left;}
+.settings-block input{margin:10px 5px;}
+#profile-edit-marital-label span{margin:-4px;}
+.settings-submit-wrapper,.profile-edit-submit-wrapper{margin:0 0 30px -3px;}
+.profile-edit-side-div{display:none;}
+#profiles-menu-trigger{margin:0px 0px 0px 25px;}
+.profile-listing{float:left;margin:20px 20px 0px 0px;}
+.icon-profile-edit{background:url("dark/icons.png") -150px 0px no-repeat;border:0;cursor:pointer;display:block;float:right;width:20px;height:20px;margin:0 0 -18px;position:absolute;text-decoration:none;top:113px;right:260px;}
+#profile-edit-links ul{margin:20px 0;padding:0;list-style:none;}
+.marital{margin-top:5px;}
+#register-sitename{display:inline;font-weight:bold;}
+#advanced-expire-popup{background:#2e2f2e;color:#eec;}
+#id_ssl_policy{width:374px;}
+#theme-preview img{margin:10px 10px 10px 288px;}
+.group-delete-wrapper{margin:-31px 50px 0 0;float:right;}
+#group-edit-submit-wrapper{margin:0 0 10px 0;display:inline;}
+#group-edit-desc{margin:10px 0px;}
+#group-members,#prof-members{height:200px;overflow:auto;border:1px solid #555753;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}
+#group-all-contacts,#prof-all-contacts{height:200px;overflow:auto;border:1px solid #555753;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;}
+#group-members h3,#group-all-contacts h3,#prof-members h3,#prof-all-contacts h3{color:#eeeeec;background-color:#555753;margin:0;padding:5px;}
+#group-separator,#prof-separator{display:none;}
+#cropimage-wrapper{float:left;}
+#crop-image-form{clear:both;}
+.intro-wrapper{margin-top:20px;}
+.intro-fullname{font-size:1.1em;font-weight:bold;}
+.intro-desc{margin-bottom:20px;font-weight:bold;}
+.intro-note{padding:10px;}
+.intro-end{padding:30px;}
+.intro-form{float:left;}
+.intro-approve-form,.intro-approve-as-friend-end{clear:both;}
+.intro-submit-approve,.intro-submit-ignore{margin-right:20px;}
+.intro-submit-approve{margin-top:15px;}
+.intro-approve-as-friend-label,.intro-approve-as-fan-label,.intro-approve-as-friend,.intro-approve-as-fan{float:left;}
+.intro-form-end{clear:both;margin-bottom:10px;}
+.intro-approve-as-friend-desc{margin-top:10px;}
+.intro-approve-as-end{clear:both;margin-bottom:10px;}
+.intro-end,.clear{clear:both;}
+.eventcal{float:left;font-size:20px;}
+.event{background:#2e2f2e;}
+.vevent{border:1px solid #ccc;}.vevent .event-description,.vevent .event-location,.vevent .event-start{margin-left:10px;margin-right:10px;}
+#new-event-link{margin-bottom:10px;}
+.edit-event-link,.plink-event-link{}
+.event-description:before{content:url('../../../images/calendar.png');margin-right:15px;}
+.event-start,.event-end{margin-left:10px;width:330px;font-size:smaller;}
+.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:monospace;}
+.today{font-weight:bold;color:#FF0000;}
+#event-start-text,#event-finish-text{margin-top:10px;margin-bottom:5px;}
+#event-nofinish-checkbox,#event-nofinish-text,#event-adjust-checkbox,#event-adjust-text,#event-share-checkbox{float:left;}
+#event-datetime-break{margin-bottom:10px;}
+#event-nofinish-break,#event-adjust-break,#event-share-break{clear:both;}
+#event-desc-text,#event-location-text{margin-top:10px;margin-bottom:5px;}
+#event-submit{margin-top:10px;}
+.body-tag{margin:10px 0;opacity:0.5;}.body-tag:hover{opacity:1.0 !important;}
+.filesavetags,.categorytags{margin:20px 0;opacity:0.5;}
+.filesavetags:hover,.categorytags:hover{margin:20px 0;opacity:1.0 !important;}
+.item-select{opacity:0.1;margin:5px 0 0 6px !important;}.item-select:hover{opacity:1;}
+.checkeditem{opacity:1;}
+#item-delete-selected{margin-top:30px;}
+.delete-checked{position:absolute;left:35px;margin-top:20px;}
+#item-delete-selected-end{clear:both;}
+#item-delete-selected-icon{float:left;margin-right:5px;}
+#item-delete-selected-desc{float:left;margin-right:5px;}#item-delete-selected-desc:hover{text-decoration:underline;}
+.fc-state-highlight{background:#eec;color:#2e2f2e;}
+.directory-item{float:left;margin:0 5px 4px 0;padding:3px;width:180px;height:250px;position:relative;}
+#group-sidebar{margin-bottom:10px;}
+.group-selected,.nets-selected,.fileas-selected{padding:3px;color:#2e2f2e;background:#88a9d2;font-weight:bold;}
+.group-selected:hover,.nets-selected:hover,.fileas-selected:hover{color:#2e2f2e;}
+.groupsideedit{margin-right:10px;}
+#sidebar-group-ul{padding-left:0;}
+#sidebar-group-list{margin:0 0 5px 0;}#sidebar-group-list ul{list-style-type:none;list-style-position:inside;}
+#sidebar-group-list li{margin-top:10px;}
+#sidebar-group-list .icon{display:inline-block;height:12px;width:12px;}
+#sidebar-new-group{margin:auto;display:inline-block;color:#efefef;text-decoration:none;text-align:center;}
+#peoplefind-sidebar form{margin-bottom:10px;}
+#sidebar-new-group:hover{}
+#sidebar-new-group:active{position:relative;top:1px;}
+#side-peoplefind-url{background-color:#2e2f2e;color:#eec;border:1px 999 solid;margin-right:3px;width:75%;}#side-peoplefind-url:hover,#side-peoplefind-url:focus{background-color:#efefef;color:#222;border:1px 333 solid;}
+.nets-ul{list-style-type:none;padding-left:0px;}.nets-ul li{margin:10px 0 0;}
+.nets-link,.nets-all{margin-left:0px;}
+#netsearch-box{margin-top:20px;width:150px;}#netsearch-box #search-submit{margin:5px 0px 0px 0px;}
+#pending-update{float:right;color:#fff;font-weight:bold;background-color:#ff0000;padding:0 .3em;}
+.admin.linklist{border:0;padding:0;}
+.admin.link{list-style-position:inside;}
+#adminpage{color:#eec;background:#2e2f2e;margin:5px;padding:10px;}#adminpage dl{clear:left;margin-bottom:2px;padding-bottom:2px;border-bottom:1px solid #000;}
+#adminpage dt{width:250px;float:left;font-weight:bold;}
+#adminpage dd{margin-left:250px;}
+#adminpage h3{border-bottom:1px solid #ccc;}
+#adminpage .submit{clear:left;}
+#adminpage #pluginslist{margin:0;padding:0;}
+#adminpage .plugin{list-style:none;display:block;border:1px solid #888;padding:1em;margin-bottom:5px;clear:left;}
+#adminpage .toggleplugin{float:left;margin-right:1em;}
+#adminpage table{width:100%;border-bottom:1px solid #000;margin:5px 0;}#adminpage table th{text-align:left;}
+#adminpage td .icon{float:left;}
+#adminpage table#users img{width:16px;height:16px;}
+#adminpage table tr:hover{color:#2e2f2e;background-color:#eec;}
+#adminpage .selectall{text-align:right;}
+#adminpage #users a{color:#eec;text-decoration:underline;}
+#users .name{color:#eec;}
+.field{overflow:auto;}.field label{width:38%;display:inline-block;font-size:1.077em;margin:0 10px 1em 0;border:1px #2e2f2e solid;padding:5px;background:#eec;color:#111;}
+.field .onoff{float:right;margin:0 330px 0 auto;width:80px;}.field .onoff a{display:block;border:1px solid #666;padding:3px 6px 4px 10px;height:16px;text-decoration:none;}
+.field .onoff .on{background:url("../../../images/onoff.jpg") no-repeat 42px 1px #999999;color:#111;text-align:left;}
+.field .onoff .off{background:url("../../../images/onoff.jpg") no-repeat 2px 1px #cccccc;color:#333;text-align:right;}
+.hidden{display:none !important;}
+.field textarea{width:80%;height:100px;}
+.field_help{display:block;margin-left:297px;color:#aaa;}
+.field.radio .field_help{margin-left:297px;}
+label{width:38%;display:inline-block;font-size:1.077em;margin:0 10px 1em 0;border:1px #2e2f2e solid;padding:5px;background:#eec;color:#111;}
+input{width:250px;height:25px;border:1px #999 solid;}input[type="text"],input[type="password"],input[type="search"]{width:250px;height:25px;border:1px #999 solid;}
+input[type="checkbox"],input[type="radio"]{border:1px #999 solid;margin:0 0 0 0;height:15px;width:15px;}
+input[type="submit"],input[type="button"]{background-color:#eee;border:2px outset #aaa;border-radius:5px;box-shadow:1px 3px 4px 0 #111;color:#2e302e;cursor:pointer;font-weight:bold;width:auto;text-shadow:1px 1px #000;-webkit-border-radius:5px;-moz-border-radius:5px;}
+input[type="submit"]:active,input[type="button"]:active{box-shadow:0 0 0 0;}
+.popup{width:100%;height:100%;top:0px;left:0px;position:absolute;display:none;}.popup .background{background-color:#000;opacity:0.5;width:100%;height:100%;position:absolute;top:0px;left:0px;}
+.popup .panel{top:25%;left:25%;width:50%;height:50%;padding:1em;position:absolute;border:4px solid #000000;background-color:#FFFFFF;}
+#panel{z-index:100;}
+.grey{color:grey;}
+.orange{color:orange;}
+.red{color:red;}
+.popup .panel .panel_text{display:block;overflow:auto;height:80%;}
+.popup .panel .panel_in{width:100%;height:100%;position:relative;}
+.popup .panel .panel_actions{width:100%;bottom:4px;left:0px;position:absolute;}
+.panel_text .progress{width:50%;overflow:hidden;height:auto;border:1px solid #cccccc;margin-bottom:5px;}.panel_text .progress span{float:right;display:block;width:25%;background-color:#eeeeee;text-align:right;}
+.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;}
+.iconspacer{display:block;width:16px;height:16px;}
+.icon{display:block;width:20px;height:20px;background:url(dark/icons.png) no-repeat;border:0;text-decoration:none;border-radius:5px;}.icon:hover{border:0;text-decoration:none;}
+.editicon{display:inline-block;width:21px;height:21px;background:url(dark/editicons.png) no-repeat;border:0;text-decoration:none;}
+.shadow{box-shadow:2px 2px 5px 2px #111;}.shadow:active,.shadow:focus,.shadow:hover{box-shadow:0 0 0 0;}
+.editicon:hover{border:0;}
+.boldbb{background-position:0px 0px;}.boldbb:hover{background-position:-22px 0px;}
+.italicbb{background-position:0px -22px;}.italicbb:hover{background-position:-22px -22px;}
+.underlinebb{background-position:0px -44px;}.underlinebb:hover{background-position:-22px -44px;}
+.quotebb{background-position:0px -66px;}.quotebb:hover{background-position:-22px -66px;}
+.codebb{background-position:0px -88px;}.codebb:hover{background-position:-22px -88px;}
+.imagebb{background-position:-44px 0px;}.imagebb:hover{background-position:-66px 0px;}
+.urlbb{background-position:-44px -22px;}.urlbb:hover{background-position:-66px -22px;}
+.videobb{background-position:-44px -44px;}.videobb:hover{background-position:-66px -44px;}
+.icon.drop,.icon.drophide,.icon.delete{float:left;margin:0 2px;}
+.icon.s22.delete{display:block;background-position:-110px 0;}
+.icon.s22.text{padding:10px 0px 0px 25px;width:200px;}
+.icon.text{text-indent:0px;}
+.icon.s16{min-width:16px;height:16px;}
+.s16 .add{background:url("../../../images/icons/16/add.png") no-repeat;}
+.add{margin:0px 5px;}
+.article{background-position:-50px 0;}
+.audio{background-position:-70px 0;}
+.block{background-position:-90px 0px;}
+.drop,.delete{background-position:-110px 0;}
+.drophide{background-position:-130px 0;}
+.edit{background-position:-150px 0;}
+.camera{background-position:-170px 0;}
+.dislike{background-position:-190px 0;}
+.file-as{background-position:-230px -60px;}
+.like{background-position:-211px 0;}
+.link{background-position:-230px 0;}
+.globe,.location{background-position:-50px -20px;}
+.noglobe,.nolocation{background-position:-70px -20px;}
+.no{background-position:-90px -20px;}
+.pause{background-position:-110px -20px;}
+.play{background-position:-130px -20px;}
+.pencil{background-position:-151px -18px;}
+.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;}
+.unlock{background-position:-88px -40px;}
+.video{background-position:-110px -40px;}
+.attach{background-position:-190px -40px;}
+.language{background-position:-210px -40px;}
+.starred{background-position:-130px -60px;}
+.unstarred{background-position:-150px -60px;}
+.tagged{background-position:-170px -60px;}
+.on{background-position:-50px -60px;}
+.off{background-position:-70px -60px;}
+.prev{background-position:-90px -60px;}
+.next{background-position:-110px -60px;}
+.icon.dim{opacity:0.3;}
+#pause{position:fixed;bottom:40px;right:30px;}
+.border{border:1px solid #babdb6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+.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 0;}
+.type-audio{background-position:-40px 0;}
+.type-text{background-position:-60px 0px;}
+.type-unkn{background-position:-80px 0;}
+.cc-license{margin-top:100px;font-size:0.7em;}
+footer{display:block;clear:both;}
+#profile-jot-text{height:20px;color:#eec;border:1px solid #eec;border-radius:5px;width:99.5%;}
+#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#2e2f2e;color:#eec;}
+#acl-wrapper{width:660px;margin:0 auto;}
+#acl-search{float:right;background:#ffffff url("../../../images/search_18.png") no-repeat right center;padding-right:20px;margin:6px;color:#111;}
+#acl-showall{float:left;display:block;width:auto;height:18px;background:#eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;padding:7px 10px 7px 30px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:#999;margin:5px 0;}#acl-showall.selected{color:#000;background:#ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat;}
+#acl-list{height:210px;border:1px solid #ccc;clear:both;margin-top:30px;overflow:auto;}
+.acl-list-item{border:1px solid #eec;display:block;float:left;height:110px;margin:3px 0 5px 5px;width:120px;}.acl-list-item img{width:22px;height:22px;float:left;margin:5px 5px 20px;}
+.acl-list-item p{height:12px;font-size:10px;margin:0 0 22px;padding:2px 0 1px;}
+.acl-list-item a{background:#eeeecc 3px 3px no-repeat;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;clear:both;font-size:10px;display:block;width:55px;height:20px;color:#2e2f2e;margin:5px auto 0;padding:0 3px;text-align:center;vertical-align:middle;}
+#acl-wrapper a:hover{text-decoration:none;color:#2e2f2e;border:0;}
+.acl-button-show{background-image:url('../../../images/show_off.png');margin:0 auto;}
+.acl-button-hide{background-image:url('../../../images/hide_off.png');margin:0 auto;}
+.acl-button-show.selected{color:#2e2f2e;background-color:#9ade00;background-image:url(../../../images/show_on.png);}
+.acl-button-hide.selected{color:#2e2f2e;background-color:#ff4141;background-image:url(../../../images/hide_on.png);}
+.acl-list-item.groupshow{border-color:#9ade00;}
+.acl-list-item.grouphide{border-color:#ff4141;}
+.acpopup{max-height:175px;max-width:42%;background-color:#555753;color:#fff;overflow:auto;z-index:100000;border:1px solid #cccccc;}
+.acpopupitem{background-color:#555753;padding:4px;clear:left;}.acpopupitem img{float:left;margin-right:4px;}
+.acpopupitem.selected{color:#2e302e;background-color:#eeeeec;}
+.qcomment-wrapper{padding:0px;margin:5px 5px 5px 81%;}
+.qcomment{opacity:0.5;}.qcomment:hover{opacity:1.0;}
+#network-star-link{margin-top:10px;}
+.network-star{float:left;margin-right:5px;}.network-star.icon.starred{display:inline-block;}
+.fileas-ul{padding:0;}
+#sidebar-page-list ul{padding:0;margin:5px 0;}
+#sidebar-page-list li{list-style:none;}
+#jappix_mini{margin-left:130px;position:fixed;bottom:0;right:175px !important;z-index:999;}
+@media handheld{body{font-size:15pt;}}
diff --git a/view/theme/dispy/dark/style.less b/view/theme/dispy/dark/style.less
new file mode 100644
index 000000000..6bab0109a
--- /dev/null
+++ b/view/theme/dispy/dark/style.less
@@ -0,0 +1,2878 @@
+/*
+ * dispy-dark
+ *
+ * author, maintainer: simon
+ *
+ * Author's notes:
+ * A few things of note here. The less file is our working copy,
+ * and the CSS is *generated* from it. The CSS is the one that's
+ * included in the HTML, and not the less one. This is to save
+ * bandwidth and processing time.
+ */
+/* from html5boilerplate */
+/* these are to tell browsers they should be displayed a certain way */
+
+article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
+ display: block; }
+
+audio, canvas, video, time {
+ display: inline-block;
+ *display: inline;
+ *zoom: 1; }
+
+audio:not([controls]), [hidden] {
+ display: none; }
+
+/*
+ * Base
+ */
+/*
+ * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
+ * 2. Force vertical scrollbar in non-IE
+ * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
+ */
+
+html {
+ font-size: 100%;
+ overflow-y: scroll;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%; }
+
+body {
+ margin: 0;
+ font-size: 16px;
+ line-height: 1.1em;
+ font-family: sans-serif;
+ color: #eec;
+ background-color: #2e2f2e; }
+
+button, input, select, textarea {
+ font-family: sans-serif;
+ color: #eec;
+ background-color: #2e2f2e; }
+
+select {
+ border: 1px #555 dotted;
+ padding: 3px;
+ margin: 3px;
+ color: #eec;
+ background: #2e2f2e; }
+
+option {
+ padding: 3px;
+ color: #eec;
+ background: #2e2f2e;
+ &[selected="selected"] {
+ color: #2e2f2e;
+ background: #eec; } }
+
+ul, ol {
+ padding: 0; }
+
+/* remember to define focus styles! */
+
+:focus {
+ outline: 0; }
+
+[disabled="disabled"] {
+ background: #4e4f4f;
+ color: #ddb; }
+
+/* remember to highlight inserts somehow! */
+
+ins {
+ background-color: #2e302e;
+ color: #ff9;
+ text-decoration: none; }
+
+mark {
+ background-color: #2e302e;
+ color: #ff9;
+ font-style: italic;
+ font-weight: bold; }
+
+/* Redeclare monospace font family: h5bp.com/j */
+
+pre, code, kbd, samp, .wall-item-body code {
+ font-family: monospace, monospace;
+ _font-family: monospace;
+ font-size: 1em; }
+
+/* Improve readability of pre-formatted text in all browsers */
+
+pre, .wall-item-body code {
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word; }
+
+q {
+ quotes: none;
+ &:before, &:after {
+ content: "";
+ content: none; } }
+
+small {
+ font-size: 85%; }
+
+/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
+
+sub, sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline; }
+
+sub {
+ bottom: -0.25em; }
+
+sup {
+ top: -0.5em; }
+
+img {
+ border: 0 none; }
+
+a {
+ color: #88a9d2;
+ text-decoration: none;
+ margin-bottom: 1px;
+ &:hover img {
+ text-decoration: none; } }
+
+blockquote {
+ background: #444;
+ color: #eec;
+ text-indent: 5px;
+ padding: 5px;
+ border: 1px #aaa solid;
+ border-radius: 5px; }
+
+a:hover {
+ color: #729fcf;
+ border-bottom: 1px dotted #729fcf; }
+
+.required {
+ display: inline;
+ color: #ff0;
+ font-size: 16px;
+ font-weight: bold;
+ margin: 3px; }
+
+.fakelink, .lockview {
+ color: #729fcf;
+ cursor: pointer; }
+
+.fakelink:hover {
+ color: #729fcf; }
+
+.smalltext {
+ font-size: 0.7em; }
+
+#panel {
+ position: absolute;
+ font-size: 0.8em;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #fff;
+ background-color: #2e302e;
+ color: #eeeeec;
+ padding: 1em; }
+
+.pager {
+ margin-top: 60px;
+ display: block;
+ clear: both;
+ text-align: center;
+ span {
+ padding: 4px;
+ margin: 4px; } }
+
+.pager_current {
+ background-color: #729fcf;
+ color: #fff; }
+
+/**
+ * global
+ */
+/* .tool .action */
+
+.action {
+ margin: 5px 0; }
+
+.tool {
+ margin: 5px 0;
+ list-style: none; }
+
+#articlemain {
+ width: 100%;
+ height: 100%;
+ margin: 0 auto; }
+
+/**
+ * login
+ */
+
+#asidemain .field {
+ overflow: hidden;
+ width: 200px; }
+
+#login-extra-links {
+ overflow: auto !important;
+ padding-top: 60px !important;
+ width: 100% !important;
+ a {
+ margin-right: 20px; } }
+
+#login_standard {
+ display: block !important;
+ float: none !important;
+ height: 100% !important;
+ position: relative !important;
+ width: 100% !important;
+ .field label {
+ width: 200px !important; }
+ input {
+ margin: 0 0 8px !important;
+ width: 210px !important;
+ &[type="text"] {
+ margin: 0 0 8px !important;
+ width: 210px !important; } } }
+
+#login-submit-wrapper {
+ margin: 0 !important; }
+
+#login-submit-button {
+ margin-left: 0px !important; }
+
+#asidemain #login_openid {
+ position: relative !important;
+ float: none !important;
+ margin-left: 0px !important;
+ height: auto !important;
+ width: 200px !important; }
+
+#login_openid {
+ #id_openid_url {
+ width: 180px !important;
+ overflow: hidden !important; }
+ label {
+ width: 180px !important; } }
+
+/**
+ * nav
+ */
+
+nav {
+ height: 60px;
+ background-color: #1d1f1d;
+ color: #eeeeec;
+ position: relative;
+ padding: 20px 20px 10px 95px;
+ a {
+ text-decoration: none;
+ color: #eeeeec;
+ border: 0px;
+ &:hover {
+ text-decoration: none;
+ color: #eeeeec;
+ border: 0px; } }
+ #banner {
+ display: block;
+ position: absolute;
+ left: 51px;
+ top: 25px;
+ #logo-text a {
+ font-size: 40px;
+ font-weight: bold;
+ margin-left: 3px; } } }
+
+ul#user-menu-popup {
+ display: none;
+ position: absolute;
+ background-color: #555753;
+ width: 100%;
+ padding: 10px 0px;
+ margin: 0px;
+ top: 20px;
+ left: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ box-shadow: 5px 10px 10px 0 #111;
+ z-index: 10000;
+ li {
+ display: block;
+ a {
+ display: block;
+ padding: 5px;
+ &:hover {
+ color: #2e302e;
+ background-color: #eeeeec; }
+ &.nav-sep {
+ border-top: 1px solid #eeeeec; } } } }
+
+nav .nav-link {
+ display: inline-block;
+ width: 22px;
+ height: 22px;
+ overflow: hidden;
+ margin: 0px 5px 5px;
+ text-indent: 50px;
+ background: transparent url(dark/icons.png) 0 0 no-repeat; }
+
+#nav-apps-link {
+ background-position: 0 -66px;
+ &:hover {
+ background-position: -22px -66px; } }
+
+#nav-community-link, #nav-contacts-link {
+ background-position: 0 -22px;
+ &:hover {
+ background-position: -22px -22px; } }
+
+#nav-directory-link {
+ background-position: -44px -154px;
+ &:hover {
+ background-position: -66px -154px; } }
+
+#nav-help-link {
+ background-position: 0 -110px;
+ &:hover {
+ background-position: -22px -110px; } }
+
+#nav-home-link {
+ background-position: -44px -132px;
+ &:hover {
+ background-position: -66px -132px; } }
+
+#nav-intro-link {
+ background-position: 0px -190px;
+ &:hover {
+ background-position: -44px -190px; } }
+
+#nav-login-link, #nav-logout-link {
+ background-position: 0 -88px;
+ &:hover {
+ background-position: -22px -88px; } }
+
+#nav-messages-link {
+ background-position: -44px -88px;
+ &:hover {
+ background-position: -66px -88px; } }
+
+#nav-notify-link, #nav-notifications-linkmenu {
+ background-position: -44px -110px; }
+
+#nav-notify-link:hover {
+ background-position: -66px -110px; }
+
+#nav-network-link {
+ background-position: 0px -177px;
+ &:hover {
+ background-position: -22px -177px; } }
+
+#nav-search-link {
+ background-position: 0 -44px;
+ &:hover {
+ background-position: -22px -44px; } }
+
+#profile-link, #profile-title, #wall-image-upload, #wall-file-upload, #profile-attach-wrapper, #profile-audio, #profile-link, #profile-location, #profile-nolocation, #profile-title, #jot-title, #profile-upload-wrapper, #profile-video, #profile-jot-submit, #wall-image-upload-div, #wall-file-upload-div, .icon, .hover, .focus, .pointer {
+ cursor: pointer; }
+
+/* popup notifications */
+
+div.jGrowl div {
+ &.notice {
+ background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
+ color: #ffffff;
+ padding-left: 58px; }
+ &.info {
+ background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
+ color: #ffffff;
+ padding-left: 58px; } }
+
+#nav-notifications-menu {
+ margin: 30px 0 0 -20px;
+ width: 275px;
+ max-height: 300px;
+ overflow-y: auto;
+ font-size: 9pt;
+ .contactname {
+ font-weight: bold;
+ font-size: 0.9em; }
+ img {
+ float: left;
+ margin-right: 5px; }
+ .notif-when {
+ font-size: 0.8em;
+ display: block; }
+ li {
+ word-wrap: normal;
+ border-bottom: 1px solid #000;
+ &:hover {
+ color: black; } }
+ a:hover {
+ color: black;
+ text-decoration: underline; } }
+
+nav #nav-notifications-linkmenu {
+ &.on .icon.s22.notify, &.selected .icon.s22.notify {
+ background-image: url("../../../images/icons/22/notify_on.png"); } }
+
+.show {
+ display: block; }
+
+#notifications {
+ height: 20px;
+ width: 170px;
+ position: absolute;
+ top: -19px;
+ left: 4px; }
+
+#nav-floater {
+ position: fixed;
+ top: 20px;
+ right: 1%;
+ padding: 5px;
+ background: #1d1f1d;
+ color: transparent;
+ border-radius: 5px;
+ z-index: 100;
+ width: 300px;
+ height: 60px; }
+
+#nav-buttons {
+ clear: both;
+ list-style: none;
+ padding: 0px;
+ margin: 0px;
+ height: 25px;
+ > li {
+ padding: 0;
+ display: inline-block;
+ margin: 0px -4px 0px 0px; } }
+
+.floaterflip {
+ display: block;
+ position: fixed;
+ z-index: 110;
+ top: 56px;
+ right: 19px;
+ width: 22px;
+ height: 22px;
+ overflow: hidden;
+ margin: 0px;
+ background: transparent url(dark/icons.png) -190px -60px no-repeat; }
+
+.search-box {
+ display: inline-block;
+ margin: 5px;
+ position: fixed;
+ right: 0px;
+ bottom: 0px;
+ z-index: 100;
+ background: #1d1f1d;
+ border-radius: 5px; }
+
+#search-text {
+ border: 1px #eec solid;
+ background: #2e2f2e;
+ color: #eec; }
+
+.search-box #search-text {
+ margin: 8px;
+ width: 10em;
+ height: 14px;
+ color: #eec; }
+
+#scrollup {
+ position: fixed;
+ right: 5px;
+ bottom: 40px;
+ z-index: 100;
+ a:hover {
+ text-decoration: none;
+ border: 0; } }
+
+#user-menu {
+ box-shadow: 5px 0 10px 0 #111;
+ display: block;
+ width: 75%;
+ margin: 3px 0 0 0;
+ position: relative;
+ background-color: #555753;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ background: #555753 url("dark/menu-user-pin.jpg") 98% center no-repeat;
+ clear: both;
+ top: 4px;
+ left: 10px;
+ padding: 2px;
+ > a {
+ vertical-align: top; } }
+
+#user-menu-label {
+ font-size: 12px;
+ padding: 3px 20px 9px 5px;
+ height: 10px; }
+
+.nav-ajax-update, .nav-ajax-left {
+ width: 30px;
+ height: 19px;
+ background: transparent url(dark/notifications.png) 0 0 no-repeat;
+ color: #222;
+ font-weight: bold;
+ font-size: 0.8em;
+ padding-top: 0.2em;
+ text-align: center;
+ float: left;
+ margin: 0 -1px 0 3px;
+ display: block;
+ visibility: hidden; }
+
+.nav-ajax-update.show, .nav-ajax-left.show {
+ visibility: visible; }
+
+#net-update {
+ background-position: 0px 0px; }
+
+#mail-update {
+ background-position: -30px 0; }
+
+#notify-update {
+ background-position: -60px 0px; }
+
+#home-update {
+ background-position: -90px 0px; }
+
+#intro-update {
+ background-position: -120px 0px; }
+
+#lang-select-icon {
+ cursor: pointer;
+ position: fixed;
+ left: 28px;
+ bottom: 6px;
+ z-index: 10; }
+
+#language-selector {
+ position: fixed;
+ bottom: 2px;
+ left: 52px;
+ z-index: 10; }
+
+.menu-popup {
+ position: absolute;
+ display: none;
+ width: 11em;
+ background: #ffffff;
+ color: #2d2d2d;
+ margin: 0px;
+ padding: 0px;
+ list-style: none;
+ border: 3px solid #364e59;
+ z-index: 100000;
+ -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ a {
+ display: block;
+ color: #2d2d2d;
+ padding: 5px 10px;
+ text-decoration: none;
+ &:hover {
+ background-color: #bdcdd4; } }
+ .menu-sep {
+ border-top: 1px solid #9eabb0; }
+ li {
+ float: none;
+ overflow: auto;
+ height: auto;
+ display: block;
+ img {
+ float: left;
+ width: 16px;
+ height: 16px;
+ padding-right: 5px; } }
+ .empty {
+ padding: 5px;
+ text-align: center;
+ color: #9eabb0; } }
+
+.notif-item {
+ font-size: small;
+ a {
+ vertical-align: middle; } }
+
+.notif-image {
+ width: 32px;
+ height: 32px;
+ padding: 7px 7px 0px 0px; }
+
+.notify-seen {
+ background: #ddd; }
+
+/**
+ * sysmsg
+ */
+
+#sysmsg_info {
+ position: fixed;
+ bottom: 0;
+ -moz-box-shadow: 3px 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ padding: 10px;
+ background-color: #fcaf3e;
+ border: 2px solid #f8911b;
+ border-bottom: 0;
+ padding-bottom: 50px;
+ z-index: 1000; }
+
+#sysmsg {
+ position: fixed;
+ bottom: 0;
+ -moz-box-shadow: 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ padding: 10px;
+ background-color: #fcaf3e;
+ border: 2px solid #f8911b;
+ border-bottom: 0;
+ padding-bottom: 50px;
+ z-index: 1000; }
+
+#sysmsg_info br, #sysmsg br {
+ display: block;
+ margin: 2px 0px;
+ border-top: 1px solid #ccccce; }
+
+/**
+ * aside
+ */
+
+#asidemain {
+ float: left;
+ font-size: smaller;
+ margin: 20px 0 20px 35px;
+ width: 25%;
+ display: inline; }
+
+/* for now, disappear these */
+
+#asideright, #asideleft {
+ display: none; }
+
+.vcard {
+ .fn {
+ font-size: 1.7em;
+ font-weight: bold;
+ border-bottom: 1px solid #729fcf;
+ padding-bottom: 3px; }
+ #profile-photo-wrapper {
+ margin: 20px;
+ img {
+ box-shadow: 3px 3px 10px 0 #000; } } }
+
+/* http://css-tricks.com/snippets/css/css-box-shadow/
+* box-shadow:
+* 1. The horizontal offset of the shadow, positive means
+* the shadow will be on the right of the box, a negative
+* offset will put the shadow on the left of the box.
+* 2. The vertical offset of the shadow, a negative one
+* means the box-shadow will be above the box, a
+* positive one means the shadow will be below the box.
+* 3. The blur radius (optional), if set to 0 the shadow
+* will be sharp, the higher the number, the more blurred
+* it will be.
+* 4. The spread radius (optional), positive values increase
+* the size of the shadow, negative values decrease the size.
+* Default is 0 (the shadow is same size as blur).
+* 5. Colo[u]r
+*/
+
+#asidemain {
+ h4 {
+ font-size: 1.2em; }
+ #viewcontacts {
+ text-align: right; } }
+
+.aprofile dt {
+ background: #eec;
+ color: #2e2f2e;
+ font-weight: bold;
+ box-shadow: 1px 1px 5px 0 #000;
+ margin: 15px 0 5px;
+ padding-left: 5px; }
+
+#profile-extra-links ul {
+ margin-left: 0px;
+ padding-left: 0px;
+ list-style: none; }
+
+#dfrn-request-link {
+ background: #3465a4 url(dark/connect.png) no-repeat 95% center;
+ border-radius: 5px 5px 5px 5px;
+ color: #eec;
+ display: block;
+ font-size: 1.2em;
+ padding: 0.2em 0.5em; }
+
+#wallmessage-link {
+ /*background: #3465A4 url(dark/connect.png) no-repeat 95% center;*/
+ /*border-radius: 5px 5px 5px 5px;*/
+ color: #eee;
+ display: block;
+ font-size: 1.2em;
+ padding: 0.2em 0.5em; }
+
+#netsearch-box {
+ margin: 20px 0px 30px;
+ width: 150px;
+ #search-submit {
+ margin: 5px 5px 0px 0px; } }
+
+.ttright {
+ margin: 0px 0px 0px 0px; }
+
+/**
+ * contacts block
+ */
+
+.contact-block-div {
+ width: 50px;
+ height: 50px;
+ float: left; }
+
+.contact-block-textdiv {
+ width: 150px;
+ height: 34px;
+ float: left; }
+
+#contact-block-end {
+ clear: both; }
+
+/**
+ * jot
+ */
+
+#jot {
+ /*width: 785px;*/
+ margin: 10px 0 20px 0px;
+ width: 100%;
+ #jot-tools {
+ margin: 0px;
+ padding: 0px;
+ height: 35px;
+ overflow: none;
+ width: 100%;
+ /*background-color: #0e232e;*/
+ /*border-bottom: 2px solid #9eabb0;*/
+ span {
+ float: left;
+ margin: 10px 20px 2px 0px;
+ a {
+ display: block; } }
+ .perms {
+ float: right;
+ width: 40px; }
+ li.loading {
+ float: right;
+ background-color: #ffffff;
+ width: 20px;
+ vertical-align: center;
+ text-align: center;
+ border-top: 2px solid #9eabb0;
+ height: 38px;
+ img {
+ margin-top: 10px; } } }
+ #jot-title {
+ border: 1px solid #ccc;
+ margin: 0 0 5px;
+ height: 20px;
+ width: 90%;
+ font-weight: bold;
+ border-radius: 5px;
+ vertical-align: middle; } }
+
+#jot-category {
+ margin: 5px 0;
+ border-radius: 5px;
+ border: 1px #999 solid;
+ color: #aaa;
+ font-size: smaller;
+ &:focus {
+ color: #eee; } }
+
+#jot #character-counter {
+ width: 6%;
+ float: right;
+ text-align: right;
+ height: 15px;
+ line-height: 20px;
+ padding: 2px 20px 5px 0; }
+
+#profile-jot-text_parent {
+ box-shadow: 5px 0 10px 0 #111; }
+
+#profile-jot-text_tbl {
+ margin-bottom: 10px;
+ background: #777; }
+
+#profile-jot-text_ifr {
+ width: 99.900002% !important; }
+
+#profile-jot-text_toolbargroup, .mceCenter tr {
+ background: #777; }
+
+[id$="jot-text_ifr"] {
+ width: 99.900002% !important;
+ color: #2e2f2e;
+ background: #eec;
+ .mceContentBody {
+ color: #2e2f2e;
+ background: #eec; } }
+
+.defaultSkin {
+ tr.mceFirst {
+ background: #777; }
+ td {
+ &.mceFirst, &.mceLast {
+ background-color: #eec; } }
+ span.mceIcon, img.mceIcon, .mceButtonDisabled .mceIcon {
+ background-color: #eec; } }
+
+#profile-attach-wrapper, #profile-audio-wrapper, #profile-link-wrapper, #profile-location-wrapper, #profile-nolocation-wrapper, #profile-title-wrapper, #profile-upload-wrapper, #profile-video-wrapper {
+ float: left;
+ margin: 0 20px 0 0; }
+
+#profile-rotator-wrapper {
+ float: right; }
+
+#profile-jot-tools-end, #profile-jot-banner-end {
+ clear: both; }
+
+#profile-jot-email-wrapper {
+ margin: 10px 10% 0;
+ border: 1px solid #555753;
+ border-bottom: 0; }
+
+#profile-jot-email-label {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px; }
+
+#profile-jot-email {
+ width: 90%;
+ margin: 5px; }
+
+#profile-jot-networks {
+ margin: 0 10%;
+ border: 1px solid #555753;
+ border-top: 0;
+ border-bottom: 0;
+ padding: 5px; }
+
+#profile-jot-net {
+ margin: 5px 0; }
+
+#jot-preview-link {
+ margin: 0 0 0 10px;
+ border: 0;
+ text-decoration: none;
+ float: right; }
+
+.icon-text-preview {
+ margin: 0 0 -18px 0;
+ display: block;
+ width: 20px;
+ height: 20px;
+ background: url(dark/icons.png) no-repeat -128px -40px;
+ border: 0;
+ text-decoration: none;
+ float: right;
+ cursor: pointer; }
+
+#profile-jot-perms {
+ float: right;
+ background-color: #555753;
+ height: 22px;
+ width: 20px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+ border: 0px;
+ margin: 0 10px 0 10px; }
+
+#profile-jot-plugin-wrapper {
+ width: 1px;
+ margin: 10px 0 0 0;
+ float: right; }
+
+#profile-jot-submit-wrapper {
+ float: right;
+ width: 100%;
+ list-style: none;
+ margin: 10px 0 0 0;
+ padding: 0; }
+
+#profile-jot-submit {
+ height: auto;
+ background-color: #555753;
+ color: #eeeeec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 2px outset #222420;
+ margin: 0;
+ float: right;
+ text-shadow: 1px 1px #111;
+ width: auto;
+ &:active {
+ box-shadow: 0 0 0 0; } }
+
+#jot-perms-icon {
+ height: 22px;
+ width: 20px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+ border: 0; }
+
+#profile-jot-acl-wrapper {
+ margin: 0 10px;
+ border: 1px solid #555753;
+ border-top: 0;
+ display: block !important; }
+
+#group_allow_wrapper, #group_deny_wrapper, #acl-permit-outer-wrapper {
+ width: 47%;
+ float: left; }
+
+#contact_allow_wrapper, #contact_deny_wrapper, #acl-deny-outer-wrapper {
+ width: 47%;
+ float: right; }
+
+#acl-permit-text {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px;
+ float: left; }
+
+#jot-public {
+ background-color: #555753;
+ color: #ff0000;
+ padding: 5px;
+ float: left; }
+
+#acl-deny-text {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px;
+ float: left; }
+
+#acl-permit-text-end, #acl-deny-text-end {
+ clear: both; }
+
+#jot-title-desc {
+ color: #ccc; }
+
+#profile-jot-desc {
+ color: #ff2000;
+ margin: 5px 0; }
+
+#jot-title-wrapper {
+ margin-bottom: 5px; }
+
+#jot-title-display {
+ font-weight: bold; }
+
+.jothidden {
+ display: none; }
+
+#jot-preview-content {
+ background-color: #3e3f3e;
+ color: #eec;
+ border: 1px #eec solid;
+ border-radius: 5px;
+ padding: 3px 3px 6px 10px;
+ .wall-item-outside-wrapper {
+ border: 0;
+ border-radius: 0px; } }
+
+/**
+ * section
+ */
+
+#sectionmain {
+ margin: 20px;
+ font-size: 0.8em;
+ min-width: 475px;
+ width: 67%;
+ float: left;
+ display: inline; }
+
+/**
+ * tabs
+ */
+
+.tabs {
+ list-style: none;
+ margin: 10px 0;
+ padding: 0;
+ li {
+ display: inline;
+ font-size: smaller;
+ font-weight: bold; } }
+
+.tab {
+ border: 1px solid #729fcf;
+ padding: 4px;
+ &:hover, &.active:hover, &:active {
+ background: #88a9d2;
+ color: #2e2f2e; }
+ &.active {
+ background: #88a9d2;
+ color: #2e2f2e;
+ a {
+ color: #2e2f2e; } }
+ a {
+ border: 0;
+ text-decoration: none; } }
+
+/**
+ * items
+ */
+
+.wall-item-outside-wrapper {
+ border: 1px solid #aaa;
+ border-radius: 5px;
+ box-shadow: 5px 0 10px 0 #111;
+ &.comment {
+ margin-top: 5px; } }
+
+.wall-item-outside-wrapper-end {
+ clear: both; }
+
+.wall-item-content-wrapper {
+ position: relative;
+ padding: 10px;
+ width: auto; }
+
+.wall-item-outside-wrapper .wall-item-comment-wrapper {
+ /*margin-left: 90px;*/ }
+
+.shiny {
+ background: #2e3436;
+ border-radius: 5px; }
+
+.wall-outside-wrapper .shiny {
+ border-radius: 5px; }
+
+.heart {
+ color: red; }
+
+.wall-item-content {
+ overflow-x: auto;
+ margin: 0px 15px 0px 5px; }
+
+/* removing it from here, vs. putting it in .wall-item-content
+* might break things for people. we shall see ;) */
+
+[id^="tread-wrapper"], [class^="tread-wrapper"] {
+ margin: 15px 0 0 0;
+ padding: 0px;
+ /*overflow-x: auto;*/ }
+
+.wall-item-photo-menu {
+ display: none; }
+
+.wall-item-photo-menu-button {
+ display: none;
+ text-indent: -99999px;
+ background: #555753 url(dark/menu-user-pin.jpg) no-repeat 75px center;
+ position: absolute;
+ overflow: hidden;
+ height: 20px;
+ width: 90px;
+ top: 85px;
+ left: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px; }
+
+.wall-item-info {
+ float: left;
+ width: 110px; }
+
+.wall-item-photo-wrapper {
+ width: 80px;
+ height: 80px;
+ position: relative;
+ padding: 5px;
+ background-color: #555753;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px; }
+
+[class^="wall-item-tools"] * {
+ /*margin: 0 0 5px 0;*/
+ > * {
+ /*margin: 0 0 5px 0;*/ } }
+
+.wall-item-tools {
+ float: right;
+ opacity: 0.4;
+ -webkit-transition: all 1s ease-in-out;
+ -moz-transition: all 1s ease-in-out;
+ -o-transition: all 1s ease-in-out;
+ -ms-transition: all 1s ease-in-out;
+ transition: all 1s ease-in-out;
+ &:hover {
+ opacity: 1;
+ -webkit-transition: all 1s ease-in-out;
+ -moz-transition: all 1s ease-in-out;
+ -o-transition: all 1s ease-in-out;
+ -ms-transition: all 1s ease-in-out;
+ transition: all 1s ease-in-out; } }
+
+.wall-item-subtools1 {
+ height: 30px;
+ list-style: none outside none;
+ margin: 20px 0 30px -20px;
+ padding: 0;
+ width: 30px; }
+
+.wall-item-subtools2 {
+ height: 25px;
+ list-style: none outside none;
+ margin: -75px 0 0 5px;
+ padding: 0;
+ width: 25px; }
+
+.wall-item-title {
+ font-size: 1.2em;
+ font-weight: bold;
+ margin-bottom: 1em; }
+
+.wall-item-body {
+ margin: 20px 20px 10px 0px;
+ text-align: left;
+ overflow-x: auto; }
+
+.wall-item-lock-wrapper {
+ float: right;
+ height: 22px;
+ margin: 0 -5px 0 0;
+ width: 22px;
+ opacity: 1; }
+
+.wall-item-dislike, .wall-item-like {
+ clear: left;
+ font-size: 0.8em;
+ color: #878883;
+ margin: 5px 0 5px 120px; }
+
+.wall-item-author, .wall-item-actions-author {
+ clear: left;
+ font-size: 0.8em;
+ color: #878883;
+ margin: 20px 20px 0 110px; }
+
+.wall-item-ago {
+ display: inline;
+ padding-left: 10px; }
+
+.wall-item-wrapper-end {
+ clear: both; }
+
+.wall-item-location {
+ margin-top: 15px;
+ width: 100px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ .icon {
+ float: left; }
+ > a, .smalltext {
+ margin-left: 25px;
+ font-size: 0.7em;
+ display: block; }
+ > br {
+ display: none; } }
+
+.wallwall {
+ .wwto {
+ left: 5px;
+ margin: 0;
+ position: absolute;
+ top: 75px;
+ width: 30px;
+ z-index: 10001;
+ width: 30px;
+ height: 30px;
+ img {
+ width: 30px !important;
+ height: 30px !important; } }
+ .wall-item-photo-end {
+ clear: both; } }
+
+.wall-item-arrowphoto-wrapper {
+ position: absolute;
+ left: 35px;
+ top: 80px;
+ z-index: 10002; }
+
+.wall-item-photo-menu {
+ min-width: 92px;
+ border: 2px solid #FFFFFF;
+ border-top: 0px;
+ background: #555753;
+ position: absolute;
+ left: -2px;
+ top: 101px;
+ display: none;
+ z-index: 10003;
+ -webkit-border-radius: 0px 5px 5px 5px;
+ -moz-border-radius: 0px 5px 5px 5px;
+ border-radius: 0px 5px 5px 5px;
+ ul {
+ margin: 0px;
+ padding: 0px;
+ list-style: none; }
+ li a {
+ white-space: nowrap;
+ display: block;
+ padding: 5px 2px;
+ color: #eeeeec;
+ &:hover {
+ color: #555753;
+ background: #eeeeec; } } }
+
+#item-delete-selected {
+ overflow: auto;
+ width: 100%; }
+
+#connect-services-header, #connect-services, #extra-help-header, #extra-help, #postit-header, #postit {
+ margin: 5px 0 0 0; }
+
+/**
+ * comment
+ */
+
+.ccollapse-wrapper {
+ font-size: 0.9em;
+ margin-left: 80px; }
+
+.wall-item-outside-wrapper.comment {
+ margin-left: 80px;
+ .wall-item-photo {
+ width: 40px!important;
+ height: 40px!important; }
+ .wall-item-photo-wrapper {
+ width: 40px;
+ height: 40px; }
+ .wall-item-photo-menu-button {
+ width: 50px;
+ top: 45px;
+ background-position: 35px center; }
+ .wall-item-info {
+ width: 60px; }
+ .wall-item-body {
+ margin-left: 10px; }
+ .wall-item-author {
+ margin-left: 50px; }
+ .wall-item-photo-menu {
+ min-width: 50px;
+ top: 60px; } }
+
+.comment-wwedit-wrapper {
+ /*margin: 30px 0px 0px 80px;*/ }
+
+.comment-edit-wrapper {
+ border-top: 1px #aaa solid; }
+
+[class^="comment-edit-bb"] {
+ list-style: none;
+ display: none;
+ margin: -40px 0 5px 60px;
+ width: 75%;
+ > li {
+ display: inline-block;
+ margin: 0 10px 0 0;
+ visibility: none; } }
+
+.comment-wwedit-wrapper img, .comment-edit-wrapper img {
+ width: 20px;
+ height: 20px; }
+
+.comment-edit-photo-link, .comment-edit-photo {
+ margin-left: 10px; }
+
+.my-comment-photo {
+ width: 40px;
+ height: 40px;
+ padding: 5px; }
+
+[class^="comment-edit-text"] {
+ margin: 5px 0 10px 20px;
+ width: 84.5%; }
+
+.comment-edit-text-empty {
+ height: 20px;
+ border: 2px #c8bebe solid;
+ border-radius: 5px;
+ color: #c8bebe;
+ -webkit-transition: all 0.5s ease-in-out;
+ -moz-transition: all 0.5s ease-in-out;
+ -o-transition: all 0.5s ease-in-out;
+ -ms-transition: all 0.5s ease-in-out;
+ transition: all 0.5s ease-in-out;
+ &:hover {
+ color: #999999; } }
+
+.comment-edit-text-full {
+ height: 10em;
+ border-radius: 5px;
+ -webkit-transition: all 0.5s ease-in-out;
+ -moz-transition: all 0.5s ease-in-out;
+ -o-transition: all 0.5s ease-in-out;
+ -ms-transition: all 0.5s ease-in-out;
+ transition: all 0.5s ease-in-out; }
+
+.comment-edit-submit-wrapper {
+ width: 90%;
+ margin: 5px 5px 10px 50px;
+ text-align: right; }
+
+.comment-edit-submit {
+ height: 22px;
+ background-color: #555753;
+ color: #eeeeec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 0; }
+
+/**
+ * item text style
+ */
+
+.wall-item-body code {
+ display: block;
+ padding: 0 0 10px 5px;
+ border-color: #ccc;
+ border-style: solid;
+ border-width: 1px 1px 1px 10px;
+ background: #eee;
+ color: #2e2f2e;
+ width: 95%; }
+
+/**
+ * profile
+ */
+
+div {
+ &[id$="text"] {
+ font-weight: bold;
+ border-bottom: 1px solid #ccc; }
+ &[id$="wrapper"] {
+ height: 100%;
+ margin-bottom: 1em;
+ br {
+ clear: left; } } }
+
+[id$="-end"], [class$="end"] {
+ clear: both;
+ margin: 0 0 10px 0; }
+
+#advanced-profile-with {
+ margin-left: 200px; }
+
+/**
+ * photos
+ */
+
+.photos {
+ height: auto;
+ overflow: auto; }
+
+#photo-top-links {
+ margin-bottom: 30px; }
+
+.photo-album-image-wrapper, .photo-top-image-wrapper {
+ float: left;
+ -moz-box-shadow: 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ background-color: #222;
+ color: #2e2f2e;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ padding-bottom: 30px;
+ position: relative;
+ margin: 0 10px 10px 0; }
+
+#photo-photo {
+ max-width: 100%;
+ img {
+ max-width: 100%; } }
+
+.photo-top-image-wrapper a:hover, #photo-photo a:hover, .photo-album-image-wrapper a:hover {
+ border-bottom: 0; }
+
+.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-top-album-name {
+ position: absolute;
+ bottom: 0;
+ padding: 0 5px; }
+
+.caption {
+ position: absolute;
+ bottom: 0;
+ margin: 0 5px; }
+
+#photo-photo {
+ position: relative;
+ float: left; }
+
+#photo-prev-link, #photo-next-link {
+ position: absolute;
+ width: 30%;
+ height: 100%;
+ background-color: rgba(255, 255, 255, 0.5);
+ opacity: 0;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out;
+ background-position: center center;
+ background-repeat: no-repeat; }
+
+#photo-prev-link {
+ left: 0;
+ top: 0;
+ background-image: url(dark/prev.png); }
+
+#photo-next-link {
+ right: 0;
+ top: 0;
+ background-image: url(dark/next.png); }
+
+#photo-prev-link a, #photo-next-link a {
+ display: block;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ text-indent: -900000px; }
+
+#photo-prev-link:hover {
+ opacity: 1;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out; }
+
+#photo-next-link {
+ &:hover {
+ opacity: 1;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out; }
+ .icon {
+ display: none; } }
+
+#photo-prev-link .icon {
+ display: none; }
+
+#photos-upload-spacer, #photos-upload-new-wrapper, #photos-upload-exist-wrapper {
+ margin-bottom: 1em; }
+
+#photos-upload-existing-album-text, #photos-upload-newalbum-div {
+ background-color: #555753;
+ color: #eeeeec;
+ padding: 1px; }
+
+#photos-upload-album-select, #photos-upload-newalbum {
+ width: 99%; }
+
+#photos-upload-perms-menu {
+ text-align: right; }
+
+#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
+ float: left;
+ margin-bottom: 25px; }
+
+#photo-edit-link-wrap {
+ margin-bottom: 15px; }
+
+#photo-edit-caption, #photo-edit-newtag {
+ width: 100%; }
+
+#photo-like-div {
+ margin-bottom: 25px; }
+
+#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
+ clear: both; }
+
+#photo-edit-delete-button {
+ margin-left: 200px; }
+
+#photo-edit-end {
+ margin-bottom: 35px; }
+
+#photo-caption {
+ font-size: 110%;
+ font-weight: bold;
+ margin-top: 15px;
+ margin-bottom: 15px; }
+
+/**
+ * message
+ */
+
+.prvmail-text {
+ width: 100%; }
+
+#prvmail-subject {
+ width: 100%;
+ color: #2e2f2e;
+ background: #eec; }
+
+#prvmail-submit-wrapper {
+ margin-top: 10px; }
+
+#prvmail-submit {
+ float: right;
+ margin-top: 0; }
+
+#prvmail-submit-wrapper div {
+ margin-right: 5px;
+ float: left; }
+
+.mail-list-outside-wrapper {
+ margin-top: 20px; }
+
+.mail-list-sender {
+ float: left; }
+
+.mail-list-detail {
+ margin-left: 90px; }
+
+.mail-list-sender-name {
+ display: inline;
+ font-size: 1.1em; }
+
+.mail-list-date {
+ display: inline;
+ font-size: 0.9em;
+ padding-left: 10px; }
+
+.mail-list-sender-name, .mail-list-date {
+ font-style: italic; }
+
+.mail-list-subject {
+ font-size: 1.2em; }
+
+.mail-list-delete-wrapper {
+ float: right; }
+
+.mail-list-outside-wrapper-end {
+ clear: both;
+ border-bottom: 1px #eec dotted; }
+
+.mail-conv-sender {
+ float: left;
+ margin: 0px 5px 5px 0px; }
+
+.mail-conv-sender-photo {
+ width: 32px;
+ height: 32px; }
+
+.mail-conv-sender-name {
+ float: left; }
+
+.mail-conv-date {
+ float: right; }
+
+.mail-conv-subject {
+ clear: right;
+ font-weight: bold;
+ font-size: 1.2em; }
+
+.mail-conv-body {
+ clear: both; }
+
+.mail-conv-delete-wrapper {
+ margin-top: 5px; }
+
+/**
+ * contacts
+ */
+
+.view-contact-wrapper, .contact-entry-wrapper {
+ float: left;
+ margin: 0 5px 40px 0;
+ width: 120px;
+ height: 120px;
+ padding: 3px;
+ position: relative; }
+
+.contact-direction-wrapper {
+ position: absolute;
+ top: 20px; }
+
+.contact-edit-links {
+ position: absolute;
+ top: 60px; }
+
+.contact-entry-photo-wrapper {}
+
+.contact-entry-photo {
+ margin-left: 20px; }
+
+.contact-entry-name {
+ width: 120px;
+ font-weight: bold;
+ /*overflow: hidden;*/ }
+
+.contact-entry-photo {
+ position: relative; }
+
+.contact-entry-edit-links .icon {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ background-color: #fff; }
+
+#contact-entry-url, [id^="contact-entry-url"] {
+ font-size: smaller;
+ /*overflow: scroll;*/ }
+
+#contact-entry-network, [id^="contact-entry-network"] {
+ font-size: smaller;
+ font-style: italic; }
+
+#contact-edit-banner-name {
+ font-size: 1.5em; }
+
+#contact-edit-photo-wrapper {
+ position: relative;
+ float: left;
+ padding: 20px; }
+
+#contact-edit-direction-icon {
+ position: absolute;
+ top: 60px;
+ left: 0; }
+
+#contact-edit-nav-wrapper {
+ margin-left: 0px; }
+
+#contact-edit-links {
+ margin-top: 23px;
+ ul {
+ list-style-type: none; } }
+
+#contact-drop-links {
+ margin-left: 5px; }
+
+#contact-edit-nav-wrapper .icon {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px; }
+
+#contact-edit-poll-wrapper {
+ margin-left: 0px; }
+
+#contact-edit-last-update-text {
+ margin-bottom: 15px; }
+
+#contact-edit-last-updated {
+ font-weight: bold; }
+
+#contact-edit-poll-text {
+ display: inline; }
+
+#contact-edit-info_tbl, #contact-edit-info_parent, .mceLayout {
+ width: 100%; }
+
+#contact-edit-end {
+ clear: both;
+ margin-bottom: 65px; }
+
+.contact-photo-menu-button {
+ position: absolute;
+ background-image: url("dark/photo-menu.jpg");
+ background-position: top left;
+ background-repeat: no-repeat;
+ margin: 0px;
+ padding: 0px;
+ width: 16px;
+ height: 16px;
+ top: 64px;
+ left: 0px;
+ overflow: hidden;
+ text-indent: 40px;
+ display: none; }
+
+.contact-photo-menu {
+ width: auto;
+ border: 2px solid #444;
+ background: #2e2f2e;
+ color: #eec;
+ position: absolute;
+ left: 0px;
+ top: 90px;
+ display: none;
+ z-index: 10000;
+ ul {
+ margin: 0px;
+ padding: 0px;
+ list-style: none; }
+ li a {
+ display: block;
+ padding: 2px;
+ &:hover {
+ color: #fff;
+ background: #3465A4;
+ text-decoration: none; } } }
+
+/**
+ * register, settings & profile forms
+ */
+
+.openid {}
+
+#id_openid_url {
+ background: url(dark/login-bg.gif) no-repeat;
+ background-position: 0 50%;
+ padding-left: 18px; }
+
+#settings-nickname-desc {
+ background-color: #eec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ padding: 5px;
+ color: #111; }
+
+#settings-default-perms {
+ margin-bottom: 20px; }
+
+#register-form div, #profile-edit-form div {
+ clear: both; }
+
+.settings-block {
+ label {
+ clear: left; }
+ input {
+ margin: 10px 5px; } }
+
+/*#register-form label, */
+/*#profile-edit-form label {*/
+/* width: 300px; */
+/* float: left; */
+/*} */
+
+/*#register-form span, */
+/*#profile-edit-form span {*/
+/* color: #555753; */
+/* display: block; */
+/* margin-bottom: 20px; */
+/*} */
+
+#profile-edit-marital-label span {
+ margin: -4px; }
+
+.settings-submit-wrapper, .profile-edit-submit-wrapper {
+ margin: 0 0 30px -3px; }
+
+.profile-edit-side-div {
+ display: none; }
+
+/*.profile-edit-side-div:hover {
+ display: block;
+}
+.profile-edit-side-link {
+ margin: 3px 0px 0px 70px;
+}*/
+
+#profiles-menu-trigger {
+ margin: 0px 0px 0px 25px; }
+
+.profile-listing {
+ float: left;
+ margin: 20px 20px 0px 0px; }
+
+.icon-profile-edit {
+ background: url("dark/icons.png") -150px 0px no-repeat;
+ border: 0;
+ cursor: pointer;
+ display: block;
+ float: right;
+ width: 20px;
+ height: 20px;
+ margin: 0 0 -18px;
+ position: absolute;
+ text-decoration: none;
+ top: 113px;
+ right: 260px; }
+
+#profile-edit-links ul {
+ margin: 20px 0;
+ padding: 0;
+ list-style: none; }
+
+.marital {
+ margin-top: 5px; }
+
+#register-sitename {
+ display: inline;
+ font-weight: bold; }
+
+#advanced-expire-popup {
+ background: #2e2f2e;
+ color: #eec; }
+
+#id_ssl_policy {
+ width: 374px; }
+
+#theme-preview img {
+ margin: 10px 10px 10px 288px; }
+
+/**
+ * contacts selector
+ */
+
+.group-delete-wrapper {
+ margin: -31px 50px 0 0;
+ float: right; }
+
+/*.group-delete-icon {
+ margin: 0 0 0 10px;
+}*/
+
+#group-edit-submit-wrapper {
+ margin: 0 0 10px 0;
+ display: inline; }
+
+#group-edit-desc {
+ margin: 10px 0px; }
+
+#group-members, #prof-members {
+ height: 200px;
+ overflow: auto;
+ border: 1px solid #555753;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0; }
+
+#group-all-contacts, #prof-all-contacts {
+ height: 200px;
+ overflow: auto;
+ border: 1px solid #555753;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px; }
+
+#group-members h3, #group-all-contacts h3, #prof-members h3, #prof-all-contacts h3 {
+ color: #eeeeec;
+ background-color: #555753;
+ margin: 0;
+ padding: 5px; }
+
+#group-separator, #prof-separator {
+ display: none; }
+
+/**
+ * profile
+ */
+
+#cropimage-wrapper {
+ float: left; }
+
+#crop-image-form {
+ clear: both; }
+
+/**
+ * intros
+ */
+
+.intro-wrapper {
+ margin-top: 20px; }
+
+.intro-fullname {
+ font-size: 1.1em;
+ font-weight: bold; }
+
+.intro-desc {
+ margin-bottom: 20px;
+ font-weight: bold; }
+
+.intro-note {
+ padding: 10px; }
+
+.intro-end {
+ padding: 30px; }
+
+.intro-form {
+ float: left; }
+
+.intro-approve-form, .intro-approve-as-friend-end {
+ clear: both; }
+
+.intro-submit-approve, .intro-submit-ignore {
+ margin-right: 20px; }
+
+.intro-submit-approve {
+ margin-top: 15px; }
+
+.intro-approve-as-friend-label, .intro-approve-as-fan-label, .intro-approve-as-friend, .intro-approve-as-fan {
+ float: left; }
+
+.intro-form-end {
+ clear: both;
+ margin-bottom: 10px; }
+
+.intro-approve-as-friend-desc {
+ margin-top: 10px; }
+
+.intro-approve-as-end {
+ clear: both;
+ margin-bottom: 10px; }
+
+.intro-end, .clear {
+ clear: both; }
+
+/**
+ * events
+ */
+
+.eventcal {
+ float: left;
+ font-size: 20px; }
+
+.event {
+ background: #2e2f2e; }
+
+.vevent {
+ border: 1px solid #ccc;
+ .event-description, .event-location, .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;
+ font-size: smaller; }
+
+.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: monospace; }
+
+.today {
+ font-weight: bold;
+ color: #FF0000; }
+
+#event-start-text, #event-finish-text {
+ margin-top: 10px;
+ margin-bottom: 5px; }
+
+#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text, #event-share-checkbox {
+ float: left; }
+
+#event-datetime-break {
+ margin-bottom: 10px; }
+
+#event-nofinish-break, #event-adjust-break, #event-share-break {
+ clear: both; }
+
+#event-desc-text, #event-location-text {
+ margin-top: 10px;
+ margin-bottom: 5px; }
+
+#event-submit {
+ margin-top: 10px; }
+
+.body-tag {
+ margin: 10px 0;
+ opacity: 0.5;
+ &:hover {
+ opacity: 1.0 !important; } }
+
+.filesavetags, .categorytags {
+ margin: 20px 0;
+ opacity: 0.5; }
+
+.filesavetags:hover, .categorytags:hover {
+ margin: 20px 0;
+ opacity: 1.0 !important; }
+
+.item-select {
+ opacity: 0.1;
+ margin: 5px 0 0 6px !important;
+ &:hover {
+ opacity: 1; } }
+
+.checkeditem {
+ opacity: 1; }
+
+#item-delete-selected {
+ margin-top: 30px; }
+
+/* was tired of having no way of moving it around, so
+* here's a little 'hook' to do so */
+
+.delete-checked {
+ position: absolute;
+ left: 35px;
+ margin-top: 20px; }
+
+#item-delete-selected-end {
+ clear: both; }
+
+#item-delete-selected-icon {
+ float: left;
+ margin-right: 5px; }
+
+#item-delete-selected-desc {
+ float: left;
+ margin-right: 5px;
+ &:hover {
+ text-decoration: underline; } }
+
+.fc-state-highlight {
+ background: #eec;
+ color: #2e2f2e; }
+
+/**
+ * directory
+ */
+
+.directory-item {
+ float: left;
+ margin: 0 5px 4px 0;
+ padding: 3px;
+ width: 180px;
+ height: 250px;
+ position: relative; }
+
+/**
+ * sidebar
+ */
+
+#group-sidebar {
+ margin-bottom: 10px; }
+
+.group-selected, .nets-selected, .fileas-selected {
+ padding: 3px;
+ color: #2e2f2e;
+ background: #88a9d2;
+ font-weight: bold; }
+
+.group-selected:hover, .nets-selected:hover, .fileas-selected:hover {
+ color: #2e2f2e; }
+
+.groupsideedit {
+ margin-right: 10px; }
+
+#sidebar-group-ul {
+ padding-left: 0; }
+
+#sidebar-group-list {
+ margin: 0 0 5px 0;
+ ul {
+ list-style-type: none;
+ list-style-position: inside; }
+ li {
+ margin-top: 10px; }
+ .icon {
+ display: inline-block;
+ height: 12px;
+ width: 12px; } }
+
+#sidebar-new-group {
+ margin: auto;
+ display: inline-block;
+ color: #efefef;
+ text-decoration: none;
+ text-align: center; }
+
+#peoplefind-sidebar form {
+ margin-bottom: 10px; }
+
+#sidebar-new-group {
+ &:hover {
+ /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
+ /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
+ /*background-color: #b20202;*/ }
+ &:active {
+ position: relative;
+ top: 1px; } }
+
+#side-peoplefind-url {
+ background-color: #2e2f2e;
+ color: #eec;
+ border: 1px 999 solid;
+ margin-right: 3px;
+ width: 75%;
+ &:hover, &:focus {
+ background-color: #efefef;
+ color: #222;
+ border: 1px 333 solid; } }
+
+.nets-ul {
+ list-style-type: none;
+ padding-left: 0px;
+ li {
+ margin: 10px 0 0; } }
+
+.nets-link, .nets-all {
+ margin-left: 0px; }
+
+#netsearch-box {
+ margin-top: 20px;
+ width: 150px;
+ #search-submit {
+ margin: 5px 0px 0px 0px; } }
+
+/**
+ * admin
+ */
+
+#pending-update {
+ float: right;
+ color: #fff;
+ font-weight: bold;
+ background-color: #ff0000;
+ padding: 0 .3em; }
+
+.admin {
+ &.linklist {
+ border: 0;
+ padding: 0; }
+ &.link {
+ list-style-position: inside; } }
+
+#adminpage {
+ color: #eec;
+ background: #2e2f2e;
+ margin: 5px;
+ padding: 10px;
+ dl {
+ clear: left;
+ margin-bottom: 2px;
+ padding-bottom: 2px;
+ border-bottom: 1px solid #000; }
+ dt {
+ width: 250px;
+ float: left;
+ font-weight: bold; }
+ dd {
+ margin-left: 250px; }
+ h3 {
+ border-bottom: 1px solid #ccc; }
+ .submit {
+ clear: left; }
+ #pluginslist {
+ margin: 0;
+ padding: 0; }
+ .plugin {
+ list-style: none;
+ display: block;
+ border: 1px solid #888;
+ padding: 1em;
+ margin-bottom: 5px;
+ clear: left; }
+ .toggleplugin {
+ float: left;
+ margin-right: 1em; }
+ table {
+ width: 100%;
+ border-bottom: 1px solid #000;
+ margin: 5px 0;
+ th {
+ text-align: left; } }
+ td .icon {
+ float: left; }
+ table {
+ users img {
+ width: 16px;
+ height: 16px; }
+ tr:hover {
+ color: #2e2f2e;
+ background-color: #eec; } }
+ .selectall {
+ text-align: right; }
+ #users a {
+ color: #eec;
+ text-decoration: underline; } }
+
+#users .name {
+ color: #eec; }
+
+/**
+ * form fields
+ */
+
+.field {
+ /*margin-bottom: 10px;*/
+ /*padding-bottom: 10px;*/
+ overflow: auto;
+ /* width: 100%;*/
+ label {
+ width: 38%;
+ display: inline-block;
+ font-size: 1.077em;
+ margin: 0 10px 1em 0;
+ border: 1px #2e2f2e solid;
+ padding: 5px;
+ background: #eec;
+ color: #111; } }
+
+.field .onoff {
+ float: right;
+ margin: 0 330px 0 auto;
+ width: 80px;
+ a {
+ display: block;
+ border: 1px solid #666;
+ padding: 3px 6px 4px 10px;
+ height: 16px;
+ text-decoration: none; }
+ .on {
+ background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999999;
+ color: #111;
+ text-align: left; }
+ .off {
+ background: url("../../../images/onoff.jpg") no-repeat 2px 1px #cccccc;
+ color: #333;
+ text-align: right; } }
+
+.hidden {
+ display: none !important; }
+
+.field textarea {
+ width: 80%;
+ height: 100px; }
+
+.field_help {
+ display: block;
+ margin-left: 297px;
+ color: #aaa; }
+
+.field.radio .field_help {
+ margin-left: 297px; }
+
+label {
+ width: 38%;
+ display: inline-block;
+ font-size: 1.077em;
+ margin: 0 10px 1em 0;
+ border: 1px #2e2f2e solid;
+ padding: 5px;
+ background: #eec;
+ color: #111; }
+
+input {
+ width: 250px;
+ height: 25px;
+ border: 1px #999 solid;
+ &[type="text"], &[type="password"], &[type="search"] {
+ width: 250px;
+ height: 25px;
+ border: 1px #999 solid; }
+ &[type="checkbox"], &[type="radio"] {
+ border: 1px #999 solid;
+ margin: 0 0 0 0;
+ height: 15px;
+ width: 15px; }
+ &[type="submit"], &[type="button"] {
+ background-color: #eee;
+ border: 2px outset #aaa;
+ border-radius: 5px;
+ box-shadow: 1px 3px 4px 0 #111;
+ color: #2e302e;
+ cursor: pointer;
+ font-weight: bold;
+ width: auto;
+ text-shadow: 1px 1px #000;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px; }
+ &[type="submit"]:active, &[type="button"]:active {
+ box-shadow: 0 0 0 0; } }
+
+
+/*
+ * update
+ */
+
+.popup {
+ width: 100%;
+ height: 100%;
+ top: 0px;
+ left: 0px;
+ position: absolute;
+ display: none;
+ .background {
+ background-color: #000;
+ opacity: 0.5;
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0px;
+ left: 0px; }
+ .panel {
+ top: 25%;
+ left: 25%;
+ width: 50%;
+ height: 50%;
+ padding: 1em;
+ position: absolute;
+ border: 4px solid #000000;
+ background-color: #FFFFFF; } }
+
+#panel {
+ z-index: 100; }
+
+.grey {
+ color: grey; }
+
+.orange {
+ color: orange; }
+
+.red {
+ color: red; }
+
+.popup .panel {
+ .panel_text {
+ display: block;
+ overflow: auto;
+ height: 80%; }
+ .panel_in {
+ width: 100%;
+ height: 100%;
+ position: relative; }
+ .panel_actions {
+ width: 100%;
+ bottom: 4px;
+ left: 0px;
+ position: absolute; } }
+
+.panel_text .progress {
+ width: 50%;
+ overflow: hidden;
+ height: auto;
+ border: 1px solid #cccccc;
+ margin-bottom: 5px;
+ span {
+ float: right;
+ display: block;
+ width: 25%;
+ background-color: #eeeeee;
+ text-align: right; } }
+
+/**
+ * OAuth
+ */
+
+.oauthapp {
+ height: auto;
+ overflow: auto;
+ border-bottom: 2px solid #cccccc;
+ padding-bottom: 1em;
+ margin-bottom: 1em;
+ img {
+ float: left;
+ width: 48px;
+ height: 48px;
+ margin: 10px;
+ &.noicon {
+ background-image: url("../../../images/icons/48/plugin.png");
+ background-position: center center;
+ background-repeat: no-repeat; } }
+ a {
+ float: left; } }
+
+/**
+ * icons
+ */
+
+.iconspacer {
+ display: block;
+ width: 16px;
+ height: 16px; }
+
+.icon {
+ display: block;
+ width: 20px;
+ height: 20px;
+ background: url(dark/icons.png) no-repeat;
+ border: 0;
+ text-decoration: none;
+ border-radius: 5px;
+ &:hover {
+ border: 0;
+ text-decoration: none; } }
+
+.editicon {
+ display: inline-block;
+ width: 21px;
+ height: 21px;
+ background: url(dark/editicons.png) no-repeat;
+ border: 0;
+ text-decoration: none; }
+
+.shadow {
+ box-shadow: 2px 2px 5px 2px #111;
+ &:active, &:focus, &:hover {
+ box-shadow: 0 0 0 0; } }
+
+.editicon:hover {
+ border: 0; }
+
+.boldbb {
+ background-position: 0px 0px;
+ &:hover {
+ background-position: -22px 0px; } }
+
+.italicbb {
+ background-position: 0px -22px;
+ &:hover {
+ background-position: -22px -22px; } }
+
+.underlinebb {
+ background-position: 0px -44px;
+ &:hover {
+ background-position: -22px -44px; } }
+
+.quotebb {
+ background-position: 0px -66px;
+ &:hover {
+ background-position: -22px -66px; } }
+
+.codebb {
+ background-position: 0px -88px;
+ &:hover {
+ background-position: -22px -88px; } }
+
+.imagebb {
+ background-position: -44px 0px;
+ &:hover {
+ background-position: -66px 0px; } }
+
+.urlbb {
+ background-position: -44px -22px;
+ &:hover {
+ background-position: -66px -22px; } }
+
+.videobb {
+ background-position: -44px -44px;
+ &:hover {
+ background-position: -66px -44px; } }
+
+.icon {
+ &.drop, &.drophide, &.delete {
+ float: left;
+ margin: 0 2px; }
+ &.s22 {
+ &.delete {
+ display: block;
+ background-position: -110px 0; }
+ &.text {
+ padding: 10px 0px 0px 25px;
+ width: 200px; } }
+ &.text {
+ text-indent: 0px; }
+ &.s16 {
+ min-width: 16px;
+ height: 16px; } }
+
+.s16 .add {
+ background: url("../../../images/icons/16/add.png") no-repeat; }
+
+.add {
+ margin: 0px 5px; }
+
+.article {
+ background-position: -50px 0; }
+
+.audio {
+ background-position: -70px 0; }
+
+.block {
+ background-position: -90px 0px; }
+
+.drop, .delete {
+ background-position: -110px 0; }
+
+.drophide {
+ background-position: -130px 0; }
+
+.edit {
+ background-position: -150px 0; }
+
+.camera {
+ background-position: -170px 0; }
+
+.dislike {
+ background-position: -190px 0; }
+
+.file-as {
+ background-position: -230px -60px; }
+
+.like {
+ background-position: -211px 0; }
+
+.link {
+ background-position: -230px 0; }
+
+.globe, .location {
+ background-position: -50px -20px; }
+
+.noglobe, .nolocation {
+ background-position: -70px -20px; }
+
+.no {
+ background-position: -90px -20px; }
+
+.pause {
+ background-position: -110px -20px; }
+
+.play {
+ background-position: -130px -20px; }
+
+.pencil {
+ background-position: -151px -18px; }
+
+.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; }
+
+.unlock {
+ background-position: -88px -40px; }
+
+.video {
+ background-position: -110px -40px; }
+
+.attach {
+ background-position: -190px -40px; }
+
+.language {
+ background-position: -210px -40px; }
+
+.starred {
+ background-position: -130px -60px; }
+
+.unstarred {
+ background-position: -150px -60px; }
+
+.tagged {
+ background-position: -170px -60px; }
+
+.on {
+ background-position: -50px -60px; }
+
+.off {
+ background-position: -70px -60px; }
+
+.prev {
+ background-position: -90px -60px; }
+
+.next {
+ background-position: -110px -60px; }
+
+.icon.dim {
+ opacity: 0.3; }
+
+#pause {
+ position: fixed;
+ bottom: 40px;
+ right: 30px; }
+
+.border {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ &:hover {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px; } }
+
+.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 0; }
+
+.type-audio {
+ background-position: -40px 0; }
+
+.type-text {
+ background-position: -60px 0px; }
+
+.type-unkn {
+ background-position: -80px 0; }
+
+/**
+ * footer
+ */
+
+.cc-license {
+ margin-top: 100px;
+ font-size: 0.7em; }
+
+footer {
+ display: block;
+ /*margin: 50px 20%;*/
+ clear: both; }
+
+#profile-jot-text {
+ height: 20px;
+ color: #eec;
+ border: 1px solid #eec;
+ border-radius: 5px;
+ width: 99.5%; }
+
+/**
+ * acl
+ */
+
+#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
+ display: block !important;
+ background: #2e2f2e;
+ color: #eec; }
+
+#acl-wrapper {
+ width: 660px;
+ margin: 0 auto; }
+
+#acl-search {
+ float: right;
+ background: white url("../../../images/search_18.png") no-repeat right center;
+ padding-right: 20px;
+ margin: 6px;
+ color: #111; }
+
+#acl-showall {
+ float: left;
+ display: block;
+ width: auto;
+ height: 18px;
+ background: #eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;
+ padding: 7px 10px 7px 30px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ color: #999;
+ margin: 5px 0;
+ &.selected {
+ color: #000;
+ background: #ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat; } }
+
+#acl-list {
+ height: 210px;
+ border: 1px solid #ccc;
+ clear: both;
+ margin-top: 30px;
+ overflow: auto; }
+
+/*#acl-list-content {
+}*/
+
+.acl-list-item {
+ border: 1px solid #eec;
+ display: block;
+ float: left;
+ height: 110px;
+ margin: 3px 0 5px 5px;
+ width: 120px;
+ img {
+ width: 22px;
+ height: 22px;
+ float: left;
+ margin: 5px 5px 20px; }
+ p {
+ height: 12px;
+ font-size: 10px;
+ margin: 0 0 22px;
+ padding: 2px 0 1px; }
+ a {
+ background: #eeeecc 3px 3px no-repeat;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 2px;
+ border-radius: 2px;
+ clear: both;
+ font-size: 10px;
+ display: block;
+ width: 55px;
+ height: 20px;
+ color: #2e2f2e;
+ margin: 5px auto 0;
+ padding: 0 3px;
+ text-align: center;
+ vertical-align: middle; } }
+
+#acl-wrapper a:hover {
+ text-decoration: none;
+ color: #2e2f2e;
+ border: 0; }
+
+.acl-button-show {
+ background-image: url('../../../images/show_off.png');
+ margin: 0 auto; }
+
+.acl-button-hide {
+ background-image: url('../../../images/hide_off.png');
+ margin: 0 auto; }
+
+.acl-button-show.selected {
+ color: #2e2f2e;
+ background-color: #9ade00;
+ background-image: url(../../../images/show_on.png); }
+
+.acl-button-hide.selected {
+ color: #2e2f2e;
+ background-color: #ff4141;
+ background-image: url(../../../images/hide_on.png); }
+
+.acl-list-item {
+ &.groupshow {
+ border-color: #9ade00; }
+ &.grouphide {
+ border-color: #ff4141; } }
+
+/** /acl **/
+
+/* autocomplete popup */
+
+.acpopup {
+ max-height: 175px;
+ max-width: 42%;
+ background-color: #555753;
+ color: #fff;
+ overflow: auto;
+ z-index: 100000;
+ border: 1px solid #cccccc; }
+
+.acpopupitem {
+ background-color: #555753;
+ padding: 4px;
+ clear: left;
+ img {
+ float: left;
+ margin-right: 4px; }
+ &.selected {
+ color: #2e302e;
+ background-color: #eeeeec; } }
+
+.qcomment-wrapper {
+ padding: 0px;
+ margin: 5px 5px 5px 81%; }
+
+.qcomment {
+ opacity: 0.5;
+ &:hover {
+ opacity: 1.0; } }
+
+#network-star-link {
+ margin-top: 10px; }
+
+.network-star {
+ float: left;
+ margin-right: 5px;
+ &.icon.starred {
+ display: inline-block; } }
+
+#fileas-sidebar {}
+
+.fileas-ul {
+ padding: 0; }
+
+/*
+ * addons theming
+ */
+
+#sidebar-page-list {
+ ul {
+ padding: 0;
+ margin: 5px 0; }
+ li {
+ list-style: none; } }
+
+#jappix_mini {
+ margin-left: 130px;
+ position: fixed;
+ bottom: 0;
+ right: 175px !important;
+ /* override the jappix css */
+ z-index: 999; }
+
+/* media stuff */
+@media handheld {
+ body {
+ font-size: 15pt; } }
diff --git a/view/theme/dispy-dark/tag.png b/view/theme/dispy/dark/tag.png
similarity index 100%
rename from view/theme/dispy-dark/tag.png
rename to view/theme/dispy/dark/tag.png
diff --git a/view/theme/dispy/dark/theme.php b/view/theme/dispy/dark/theme.php
new file mode 100644
index 000000000..339c477a0
--- /dev/null
+++ b/view/theme/dispy/dark/theme.php
@@ -0,0 +1,31 @@
+
+* Maintainer: Simon
+* Screenshot: Screenshot
+*/
+
+$a = get_app();
+$a->theme_info = array(
+ 'family' => 'dispy',
+ 'name' => 'dark',
+ 'version' => '1.2'
+);
+
+function dispy_dark_init(&$a) {
+ /** @purpose set some theme defaults
+ */
+ $cssFile = null;
+ $colour = 'dark';
+ $colour_path = "/dark/";
+
+ // set css
+ if (!is_null($cssFile)) {
+ $a->page['htmlhead'] .= sprintf(' ', $cssFile);
+ }
+}
+
diff --git a/view/theme/dispy/connect.png b/view/theme/dispy/light/connect.png
similarity index 100%
rename from view/theme/dispy/connect.png
rename to view/theme/dispy/light/connect.png
diff --git a/view/theme/dispy/editicons.png b/view/theme/dispy/light/editicons.png
similarity index 100%
rename from view/theme/dispy/editicons.png
rename to view/theme/dispy/light/editicons.png
diff --git a/view/theme/dispy/editicons.svg b/view/theme/dispy/light/editicons.svg
similarity index 100%
rename from view/theme/dispy/editicons.svg
rename to view/theme/dispy/light/editicons.svg
diff --git a/view/theme/dispy/icons.png b/view/theme/dispy/light/icons.png
similarity index 100%
rename from view/theme/dispy/icons.png
rename to view/theme/dispy/light/icons.png
diff --git a/view/theme/dispy/icons.svg b/view/theme/dispy/light/icons.svg
similarity index 100%
rename from view/theme/dispy/icons.svg
rename to view/theme/dispy/light/icons.svg
diff --git a/view/theme/dispy/login-bg.gif b/view/theme/dispy/light/login-bg.gif
similarity index 100%
rename from view/theme/dispy/login-bg.gif
rename to view/theme/dispy/light/login-bg.gif
diff --git a/view/theme/dispy/menu-user-pin.jpg b/view/theme/dispy/light/menu-user-pin.jpg
similarity index 100%
rename from view/theme/dispy/menu-user-pin.jpg
rename to view/theme/dispy/light/menu-user-pin.jpg
diff --git a/view/theme/dispy/next.png b/view/theme/dispy/light/next.png
similarity index 100%
rename from view/theme/dispy/next.png
rename to view/theme/dispy/light/next.png
diff --git a/view/theme/dispy/notifications.png b/view/theme/dispy/light/notifications.png
similarity index 100%
rename from view/theme/dispy/notifications.png
rename to view/theme/dispy/light/notifications.png
diff --git a/view/theme/dispy/notifications.svg b/view/theme/dispy/light/notifications.svg
similarity index 100%
rename from view/theme/dispy/notifications.svg
rename to view/theme/dispy/light/notifications.svg
diff --git a/view/theme/dispy/photo-menu.jpg b/view/theme/dispy/light/photo-menu.jpg
similarity index 100%
rename from view/theme/dispy/photo-menu.jpg
rename to view/theme/dispy/light/photo-menu.jpg
diff --git a/view/theme/dispy/premium.png b/view/theme/dispy/light/premium.png
similarity index 100%
rename from view/theme/dispy/premium.png
rename to view/theme/dispy/light/premium.png
diff --git a/view/theme/dispy/prev.png b/view/theme/dispy/light/prev.png
similarity index 100%
rename from view/theme/dispy/prev.png
rename to view/theme/dispy/light/prev.png
diff --git a/view/theme/dispy/screenshot.jpg b/view/theme/dispy/light/screenshot.jpg
similarity index 100%
rename from view/theme/dispy/screenshot.jpg
rename to view/theme/dispy/light/screenshot.jpg
diff --git a/view/theme/dispy/star.png b/view/theme/dispy/light/star.png
similarity index 100%
rename from view/theme/dispy/star.png
rename to view/theme/dispy/light/star.png
diff --git a/view/theme/dispy/light/style.css b/view/theme/dispy/light/style.css
new file mode 100644
index 000000000..7c996f6f9
--- /dev/null
+++ b/view/theme/dispy/light/style.css
@@ -0,0 +1,518 @@
+article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
+audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;}
+audio:not([controls]),[hidden]{display:none;}
+html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
+body{margin:0;font-size:16px;line-height:1.1em;font-family:sans-serif;color:#222;background-color:#e8e8e8;}
+button,input,select,textarea{font-family:sans-serif;color:#222;background-color:#e8e8e8;}
+select{border:1px #555 dotted;padding:3px;margin:3px;color:#222;background:#e8e8e8;}
+option{padding:3px;color:#222;background:#e8e8e8;}option[selected="selected"]{color:#111;background:#cca;}
+ul,ol{padding:0;}
+:focus{outline:0;}
+[disabled="disabled"]{background:#ddd;color:#333;}
+ins{background-color:#ff9;color:#000;text-decoration:none;}
+mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
+pre,code,kbd,samp,.wall-item-body code{font-family:monospace, monospace;_font-family:monospace;font-size:1em;}
+pre,.wall-item-body code{white-space:pre;white-space:pre-wrap;word-wrap:break-word;}
+q{quotes:none;}q:before,q:after{content:"";content:none;}
+small{font-size:85%;}
+sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
+sub{bottom:-0.25em;}
+sup{top:-0.5em;}
+img{border:0 none;}
+a{color:#3465a4;text-decoration:none;margin-bottom:1px;}a:hover img{text-decoration:none;}
+blockquote{background:#eee;color:#111;text-indent:5px;padding:5px;border:1px #aaa solid;border-radius:5px;}
+a:hover{color:#729fcf;border-bottom:1px dotted #729fcf;}
+.required{display:inline;color:#f00;font-size:16px;font-weight:bold;margin:3px;}
+.fakelink,.lockview{color:#3465a4;cursor:pointer;}
+.fakelink:hover{color:#729fcf;}
+.smalltext{font-size:0.7em;}
+#panel{position:absolute;font-size:0.8em;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #fff;background-color:#2e3436;color:#eeeeec;padding:1em;}
+.pager{margin-top:60px;display:block;clear:both;text-align:center;}.pager span{padding:4px;margin:4px;}
+.pager_current{background-color:#729fcf;color:#fff;}
+.action{margin:5px 0;}
+.tool{margin:5px 0;list-style:none;}
+#articlemain{width:100%;height:100%;margin:0 auto;}
+#asidemain .field{overflow:hidden;width:200px;}
+#login-extra-links{overflow:auto !important;padding-top:60px !important;width:100% !important;}#login-extra-links a{margin-right:20px;}
+#login_standard{display:block !important;float:none !important;height:100% !important;position:relative !important;width:100% !important;}#login_standard .field label{width:200px !important;}
+#login_standard input{margin:0 0 8px !important;width:210px !important;}#login_standard input[type="text"]{margin:0 0 8px !important;width:210px !important;}
+#login-submit-wrapper{margin:0 !important;}
+#login-submit-button{margin-left:0px !important;}
+#asidemain #login_openid{position:relative !important;float:none !important;margin-left:0px !important;height:auto !important;width:200px !important;}
+#login_openid #id_openid_url{width:180px !important;overflow:hidden !important;}
+#login_openid label{width:180px !important;}
+nav{height:60px;background-color:#2e3436;color:#eeeeec;position:relative;padding:20px 20px 10px 95px;}nav a{text-decoration:none;color:#eeeeec;border:0px;}nav a:hover{text-decoration:none;color:#eeeeec;border:0px;}
+nav #banner{display:block;position:absolute;left:51px;top:25px;}nav #banner #logo-text a{font-size:40px;font-weight:bold;margin-left:3px;}
+ul#user-menu-popup{display:none;position:absolute;background-color:#555753;width:100%;padding:10px 0px;margin:0px;top:20px;left:0;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;box-shadow:5px 10px 10px 0 #111;z-index:10000;}ul#user-menu-popup li{display:block;}ul#user-menu-popup li a{display:block;padding:5px;}ul#user-menu-popup li a:hover{color:#2e3436;background-color:#eeeeec;}
+ul#user-menu-popup li a.nav-sep{border-top:1px solid #eeeeec;}
+nav .nav-link{display:inline-block;width:22px;height:22px;overflow:hidden;margin:0px 5px 5px;text-indent:50px;background:transparent url(light/icons.png) 0 0 no-repeat;}
+#nav-apps-link{background-position:0 -66px;}#nav-apps-link:hover{background-position:-22px -66px;}
+#nav-community-link,#nav-contacts-link{background-position:0 -22px;}#nav-community-link:hover,#nav-contacts-link:hover{background-position:-22px -22px;}
+#nav-directory-link{background-position:-44px -154px;}#nav-directory-link:hover{background-position:-66px -154px;}
+#nav-help-link{background-position:0 -110px;}#nav-help-link:hover{background-position:-22px -110px;}
+#nav-home-link{background-position:-44px -132px;}#nav-home-link:hover{background-position:-66px -132px;}
+#nav-intro-link{background-position:0px -190px;}#nav-intro-link:hover{background-position:-44px -190px;}
+#nav-login-link,#nav-logout-link{background-position:0 -88px;}#nav-login-link:hover,#nav-logout-link:hover{background-position:-22px -88px;}
+#nav-messages-link{background-position:-44px -88px;}#nav-messages-link:hover{background-position:-66px -88px;}
+#nav-notify-link,#nav-notifications-linkmenu{background-position:-44px -110px;}
+#nav-notify-link:hover{background-position:-66px -110px;}
+#nav-network-link{background-position:0px -177px;}#nav-network-link:hover{background-position:-22px -177px;}
+#nav-search-link{background-position:0 -44px;}#nav-search-link:hover{background-position:-22px -44px;}
+#profile-link,#profile-title,#wall-image-upload,#wall-file-upload,#profile-attach-wrapper,#profile-audio,#profile-link,#profile-location,#profile-nolocation,#profile-title,#jot-title,#profile-upload-wrapper,#profile-video,#profile-jot-submit,#wall-image-upload-div,#wall-file-upload-div,.icon,.hover,.focus,.pointer{cursor:pointer;}
+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;}
+#nav-notifications-menu{margin:30px 0 0 -20px;width:275px;max-height:300px;overflow-y:auto;font-size:9pt;}#nav-notifications-menu .contactname{font-weight:bold;font-size:0.9em;}
+#nav-notifications-menu img{float:left;margin-right:5px;}
+#nav-notifications-menu .notif-when{font-size:0.8em;display:block;}
+#nav-notifications-menu li{word-wrap:normal;border-bottom:1px solid #000;}#nav-notifications-menu li:hover{color:black;}
+#nav-notifications-menu a:hover{color:black;text-decoration:underline;}
+nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkmenu.selected .icon.s22.notify{background-image:url("../../../images/icons/22/notify_on.png");}
+.show{display:block;}
+#notifications{height:20px;width:170px;position:absolute;top:-19px;left:4px;}
+#nav-floater{position:fixed;top:20px;right:1%;padding:5px;background:#2e3436;color:transparent;border-radius:5px;z-index:100;width:300px;height:60px;}
+#nav-buttons{clear:both;list-style:none;padding:0px;margin:0px;height:25px;}#nav-buttons>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;}
+.floaterflip{display:block;position:fixed;z-index:110;top:56px;right:19px;width:22px;height:22px;overflow:hidden;margin:0px;background:transparent url(light/icons.png) -190px -60px no-repeat;}
+.search-box{display:inline-block;margin:5px;position:fixed;right:0px;bottom:0px;z-index:100;background:#1d1f1d;border-radius:5px;}
+#search-text{border:1px #eec solid;background:#2e3436;color:#eec;}
+.search-box #search-text{margin:8px;width:10em;height:14px;color:#eec;}
+#scrollup{position:fixed;right:5px;bottom:40px;z-index:100;}#scrollup a:hover{text-decoration:none;border:0;}
+#user-menu{box-shadow:5px 0 10px 0 #111;display:block;width:75%;margin:3px 0 0 0;position:relative;background-color:#555753;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:#555753 url("light/menu-user-pin.jpg") 98% center no-repeat;clear:both;top:4px;left:10px;padding:2px;}#user-menu>a{vertical-align:top;}
+#user-menu-label{font-size:12px;padding:3px 20px 9px 5px;height:10px;}
+.nav-ajax-update,.nav-ajax-left{width:30px;height:19px;background:transparent url(light/notifications.png) 0 0 no-repeat;color:#222;font-weight:bold;font-size:0.8em;padding-top:0.2em;text-align:center;float:left;margin:0 -1px 0 3px;display:block;visibility:hidden;}
+.nav-ajax-update.show,.nav-ajax-left.show{visibility:visible;}
+#net-update{background-position:0px 0px;}
+#mail-update{background-position:-30px 0;}
+#notify-update{background-position:-60px 0px;}
+#home-update{background-position:-90px 0px;}
+#intro-update{background-position:-120px 0px;}
+#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;}
+#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;}
+.menu-popup{position:absolute;display:none;width:11em;background:#ffffff;color:#2d2d2d;margin:0px;padding:0px;list-style:none;border:3px solid #364e59;z-index:100000;-webkit-box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);-moz-box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);}.menu-popup a{display:block;color:#2d2d2d;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{background-color:#bdcdd4;}
+.menu-popup .menu-sep{border-top:1px solid #9eabb0;}
+.menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;}
+.menu-popup .empty{padding:5px;text-align:center;color:#9eabb0;}
+.notif-item{font-size:small;}.notif-item a{vertical-align:middle;}
+.notif-image{width:32px;height:32px;padding:7px 7px 0px 0px;}
+.notify-seen{background:#ddd;}
+#sysmsg_info{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;}
+#sysmsg{position:fixed;bottom:0;-moz-box-shadow:3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;}
+#sysmsg_info br,#sysmsg br{display:block;margin:2px 0px;border-top:1px solid #ccccce;}
+#asidemain{float:left;font-size:smaller;margin:20px 0 20px 35px;width:25%;display:inline;}
+#asideright,#asideleft{display:none;}
+.vcard .fn{font-size:1.7em;font-weight:bold;border-bottom:1px solid #729fcf;padding-bottom:3px;}
+.vcard #profile-photo-wrapper{margin:20px;}.vcard #profile-photo-wrapper img{box-shadow:3px 3px 10px 0 #000;}
+#asidemain h4{font-size:1.2em;}
+#asidemain #viewcontacts{text-align:right;}
+.aprofile dt{background:transparent;color:#666666;font-weight:bold;box-shadow:1px 1px 5px 0 #000;margin:15px 0 5px;padding-left:5px;}
+#profile-extra-links ul{margin-left:0px;padding-left:0px;list-style:none;}
+#dfrn-request-link{background:#3465a4 url(light/connect.png) no-repeat 95% center;border-radius:5px 5px 5px 5px;color:#fff;display:block;font-size:1.2em;padding:0.2em 0.5em;}
+#wallmessage-link{color:#eee;display:block;font-size:1.2em;padding:0.2em 0.5em;}
+#netsearch-box{margin:20px 0px 30px;width:150px;}#netsearch-box #search-submit{margin:5px 5px 0px 0px;}
+.ttright{margin:0px 0px 0px 0px;}
+.contact-block-div{width:50px;height:50px;float:left;}
+.contact-block-textdiv{width:150px;height:34px;float:left;}
+#contact-block-end{clear:both;}
+#jot{margin:10px 0 20px 0px;width:100%;}#jot #jot-tools{margin:0px;padding:0px;height:35px;overflow:none;width:100%;}#jot #jot-tools span{float:left;margin:10px 20px 2px 0px;}#jot #jot-tools span a{display:block;}
+#jot #jot-tools .perms{float:right;width:40px;}
+#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;}
+#jot #jot-title{border:1px solid #ccc;margin:0 0 5px;height:20px;width:90%;font-weight:bold;border-radius:5px;vertical-align:middle;}
+#jot-category{margin:5px 0;border-radius:5px;border:1px #ccc solid;color:#666;font-size:smaller;}#jot-category:focus{color:#111;}
+#jot #character-counter{width:6%;float:right;text-align:right;height:15px;line-height:20px;padding:2px 20px 5px 0;}
+#profile-jot-text_parent{box-shadow:5px 0 10px 0 #111;}
+#profile-jot-text_tbl{margin-bottom:10px;background:#777;}
+#profile-jot-text_ifr{width:99.900002% !important;}
+#profile-jot-text_toolbargroup,.mceCenter tr{background:#777;}
+[id$="jot-text_ifr"]{width:99.900002% !important;color:#2e2f2e;background:#eec;}[id$="jot-text_ifr"] .mceContentBody{color:#2e2f2e;background:#eec;}
+.defaultSkin tr.mceFirst{background:#777;}
+.defaultSkin td.mceFirst,.defaultSkin td.mceLast{background-color:#eec;}
+.defaultSkin span.mceIcon,.defaultSkin img.mceIcon,.defaultSkin .mceButtonDisabled .mceIcon{background-color:#eec;}
+#profile-attach-wrapper,#profile-audio-wrapper,#profile-link-wrapper,#profile-location-wrapper,#profile-nolocation-wrapper,#profile-title-wrapper,#profile-upload-wrapper,#profile-video-wrapper{float:left;margin:0 20px 0 0;}
+#profile-rotator-wrapper{float:right;}
+#profile-jot-tools-end,#profile-jot-banner-end{clear:both;}
+#profile-jot-email-wrapper{margin:10px 10% 0;border:1px solid #555753;border-bottom:0;}
+#profile-jot-email-label{background-color:#555753;color:#ccccce;padding:5px;}
+#profile-jot-email{width:90%;margin:5px;}
+#profile-jot-networks{margin:0 10%;border:1px solid #555753;border-top:0;border-bottom:0;padding:5px;}
+#profile-jot-net{margin:5px 0;}
+#jot-preview-link{margin:0 0 0 10px;border:0;text-decoration:none;float:right;}
+.icon-text-preview{margin:0 0 -18px 0;display:block;width:20px;height:20px;background:url(light/icons.png) no-repeat -128px -40px;border:0;text-decoration:none;float:right;cursor:pointer;}
+#profile-jot-perms{float:right;background-color:#555753;height:22px;width:20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;border:0px;margin:0 10px 0 10px;}
+#profile-jot-plugin-wrapper{width:1px;margin:10px 0 0 0;float:right;}
+#profile-jot-submit-wrapper{float:right;width:100%;list-style:none;margin:10px 0 0 0;padding:0;}
+#profile-jot-submit{height:auto;background-color:#555753;color:#eeeeec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:2px outset #222420;margin:0;float:right;text-shadow:1px 1px #111;width:auto;}#profile-jot-submit:active{box-shadow:0 0 0 0;}
+#jot-perms-icon{height:22px;width:20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;border:0;}
+#profile-jot-acl-wrapper{margin:0 10px;border:1px solid #555753;border-top:0;display:block !important;}
+#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper{width:47%;float:left;}
+#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{width:47%;float:right;}
+#acl-permit-text{background-color:#555753;color:#ccccce;padding:5px;float:left;}
+#jot-public{background-color:#555753;color:#ff0000;padding:5px;float:left;}
+#acl-deny-text{background-color:#555753;color:#ccccce;padding:5px;float:left;}
+#acl-permit-text-end,#acl-deny-text-end{clear:both;}
+#jot-title-desc{color:#ccc;}
+#profile-jot-desc{color:#a00;margin:5px 0;}
+#jot-title-wrapper{margin-bottom:5px;}
+#jot-title-display{font-weight:bold;}
+.jothidden{display:none;}
+#jot-preview-content{background-color:#ffffe0;color:#111;border:1px #aa0 solid;border-radius:5px;padding:3px 3px 6px 10px;}#jot-preview-content .wall-item-outside-wrapper{border:0;border-radius:0px;}
+#sectionmain{margin:20px;font-size:0.8em;min-width:475px;width:67%;float:left;display:inline;}
+.tabs{list-style:none;margin:10px 0;padding:0;}.tabs li{display:inline;font-size:smaller;font-weight:bold;}
+.tab{border:1px solid #729fcf;padding:4px;}.tab:hover,.tab.active:hover,.tab:active{background:#729fcf;color:#eeeeec;}
+.tab.active{background:#729fcf;color:#eeeeec;}.tab.active a{color:#729fcf;}
+.tab a{border:0;text-decoration:none;}
+.wall-item-outside-wrapper{border:1px solid #aaa;border-radius:5px;box-shadow:5px 0 10px 0 #888;}.wall-item-outside-wrapper.comment{margin-top:5px;}
+.wall-item-outside-wrapper-end{clear:both;}
+.wall-item-content-wrapper{position:relative;padding:10px;width:auto;}
+.wall-item-outside-wrapper .wall-item-comment-wrapper{}
+.shiny{background:#efefdf;border-radius:5px;}
+.wall-outside-wrapper .shiny{border-radius:5px;}
+.heart{color:red;}
+.wall-item-content{overflow-x:auto;margin:0px 15px 0px 5px;}
+[id^="tread-wrapper"],[class^="tread-wrapper"]{margin:15px 0 0 0;padding:0px;}
+.wall-item-photo-menu{display:none;}
+.wall-item-photo-menu-button{display:none;text-indent:-99999px;background:#555753 url(light/menu-user-pin.jpg) no-repeat 75px center;position:absolute;overflow:hidden;height:20px;width:90px;top:85px;left:0;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;}
+.wall-item-info{float:left;width:110px;}
+.wall-item-photo-wrapper{width:80px;height:80px;position:relative;padding:5px;background-color:#555753;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+[class^="wall-item-tools"] *{}[class^="wall-item-tools"] *>*{}
+.wall-item-tools{float:right;opacity:0.4;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out;}.wall-item-tools:hover{opacity:1;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out;}
+.wall-item-subtools1{height:30px;list-style:none outside none;margin:20px 0 30px -20px;padding:0;width:30px;}
+.wall-item-subtools2{height:25px;list-style:none outside none;margin:-75px 0 0 5px;padding:0;width:25px;}
+.wall-item-title{font-size:1.2em;font-weight:bold;margin-bottom:1em;}
+.wall-item-body{margin:20px 20px 10px 0px;text-align:left;overflow-x:auto;}
+.wall-item-lock-wrapper{float:right;height:22px;margin:0 -5px 0 0;width:22px;opacity:1;}
+.wall-item-dislike,.wall-item-like{clear:left;font-size:0.8em;color:#878883;margin:5px 0 5px 120px;}
+.wall-item-author,.wall-item-actions-author{clear:left;font-size:0.8em;color:#878883;margin:20px 20px 0 110px;}
+.wall-item-ago{display:inline;padding-left:10px;}
+.wall-item-wrapper-end{clear:both;}
+.wall-item-location{margin-top:15px;width:100px;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;}.wall-item-location .icon{float:left;}
+.wall-item-location>a,.wall-item-location .smalltext{margin-left:25px;font-size:0.7em;display:block;}
+.wall-item-location>br{display:none;}
+.wallwall .wwto{left:5px;margin:0;position:absolute;top:75px;width:30px;z-index:10001;width:30px;height:30px;}.wallwall .wwto img{width:30px !important;height:30px !important;}
+.wallwall .wall-item-photo-end{clear:both;}
+.wall-item-arrowphoto-wrapper{position:absolute;left:35px;top:80px;z-index:10002;}
+.wall-item-photo-menu{min-width:92px;border:2px solid #FFFFFF;border-top:0px;background:#555753;position:absolute;left:-2px;top:101px;display:none;z-index:10003;-webkit-border-radius:0px 5px 5px 5px;-moz-border-radius:0px 5px 5px 5px;border-radius:0px 5px 5px 5px;}.wall-item-photo-menu ul{margin:0px;padding:0px;list-style:none;}
+.wall-item-photo-menu li a{white-space:nowrap;display:block;padding:5px 2px;color:#eeeeec;}.wall-item-photo-menu li a:hover{color:#555753;background:#eeeeec;}
+#item-delete-selected{overflow:auto;width:100%;}
+#connect-services-header,#connect-services,#extra-help-header,#extra-help,#postit-header,#postit{margin:5px 0 0 0;}
+.ccollapse-wrapper{font-size:0.9em;margin-left:80px;}
+.wall-item-outside-wrapper.comment{margin-left:80px;}.wall-item-outside-wrapper.comment .wall-item-photo{width:40px!important;height:40px!important;}
+.wall-item-outside-wrapper.comment .wall-item-photo-wrapper{width:40px;height:40px;}
+.wall-item-outside-wrapper.comment .wall-item-photo-menu-button{width:50px;top:45px;background-position:35px center;}
+.wall-item-outside-wrapper.comment .wall-item-info{width:60px;}
+.wall-item-outside-wrapper.comment .wall-item-body{margin-left:10px;}
+.wall-item-outside-wrapper.comment .wall-item-author{margin-left:50px;}
+.wall-item-outside-wrapper.comment .wall-item-photo-menu{min-width:50px;top:60px;}
+.comment-wwedit-wrapper{}
+.comment-edit-wrapper{border-top:1px #aaa solid;}
+[class^="comment-edit-bb"]{list-style:none;display:none;margin:-40px 0 5px 60px;width:75%;}[class^="comment-edit-bb"]>li{display:inline-block;margin:0 10px 0 0;visibility:none;}
+.comment-wwedit-wrapper img,.comment-edit-wrapper img{width:20px;height:20px;}
+.comment-edit-photo-link,.comment-edit-photo{margin-left:10px;}
+.my-comment-photo{width:40px;height:40px;padding:5px;}
+[class^="comment-edit-text"]{margin:5px 0 10px 20px;width:84.5%;}
+.comment-edit-text-empty{height:20px;border:2px #babdd6 solid;border-radius:5px;color:#babdb6;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.comment-edit-text-empty:hover{color:#999999;}
+.comment-edit-text-full{height:10em;border-radius:5px;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}
+.comment-edit-submit-wrapper{width:90%;margin:5px 5px 10px 50px;text-align:right;}
+.comment-edit-submit{height:22px;background-color:#555753;color:#eeeeec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:0;}
+.wall-item-body code{display:block;padding:0 0 10px 5px;border-color:#ccc;border-style:solid;border-width:1px 1px 1px 10px;background:#eee;color:#444;width:95%;}
+div[id$="text"]{font-weight:bold;border-bottom:1px solid #ccc;}
+div[id$="wrapper"]{height:100%;margin-bottom:1em;}div[id$="wrapper"] br{clear:left;}
+[id$="-end"],[class$="end"]{clear:both;margin:0 0 10px 0;}
+#advanced-profile-with{margin-left:200px;}
+.photos{height:auto;overflow:auto;}
+#photo-top-links{margin-bottom:30px;}
+.photo-album-image-wrapper,.photo-top-image-wrapper{float:left;-moz-box-shadow:3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;background-color:#eee;color:#111;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding-bottom:30px;position:relative;margin:0 10px 10px 0;}
+#photo-photo{max-width:100%;}#photo-photo img{max-width:100%;}
+.photo-top-image-wrapper a:hover,#photo-photo a:hover,.photo-album-image-wrapper a:hover{border-bottom:0;}
+.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-top-album-name{position:absolute;bottom:0;padding:0 5px;}
+.caption{position:absolute;bottom:0;margin:0 5px;}
+#photo-photo{position:relative;float:left;}
+#photo-prev-link,#photo-next-link{position:absolute;width:30%;height:100%;background-color:rgba(255, 255, 255, 0.5);opacity:0;-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;background-position:center center;background-repeat:no-repeat;}
+#photo-prev-link{left:0;top:0;background-image:url(light/prev.png);}
+#photo-next-link{right:0;top:0;background-image:url(light/next.png);}
+#photo-prev-link a,#photo-next-link a{display:block;width:100%;height:100%;overflow:hidden;text-indent:-900000px;}
+#photo-prev-link: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;}
+#photo-next-link: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;}
+#photo-next-link .icon{display:none;}
+#photo-prev-link .icon{display:none;}
+#photos-upload-spacer,#photos-upload-new-wrapper,#photos-upload-exist-wrapper{margin-bottom:1em;}
+#photos-upload-existing-album-text,#photos-upload-newalbum-div{background-color:#555753;color:#eeeeec;padding:1px;}
+#photos-upload-album-select,#photos-upload-newalbum{width:99%;}
+#photos-upload-perms-menu{text-align:right;}
+#photo-edit-caption,#photo-edit-newtag,#photo-edit-albumname{float:left;margin-bottom:25px;}
+#photo-edit-link-wrap{margin-bottom:15px;}
+#photo-edit-caption,#photo-edit-newtag{width:100%;}
+#photo-like-div{margin-bottom:25px;}
+#photo-edit-caption-end,#photo-edit-tags-end,#photo-edit-albumname-end{clear:both;}
+#photo-edit-delete-button{margin-left:200px;}
+#photo-edit-end{margin-bottom:35px;}
+#photo-caption{font-size:110%;font-weight:bold;margin-top:15px;margin-bottom:15px;}
+.prvmail-text{width:100%;}
+#prvmail-subject{width:100%;color:#eec;background:#444;}
+#prvmail-submit-wrapper{margin-top:10px;}
+#prvmail-submit{float:right;margin-top:0;}
+#prvmail-submit-wrapper div{margin-right:5px;float:left;}
+.mail-list-outside-wrapper{margin-top:20px;}
+.mail-list-sender{float:left;}
+.mail-list-detail{margin-left:90px;}
+.mail-list-sender-name{display:inline;font-size:1.1em;}
+.mail-list-date{display:inline;font-size:0.9em;padding-left:10px;}
+.mail-list-sender-name,.mail-list-date{font-style:italic;}
+.mail-list-subject{font-size:1.2em;}
+.mail-list-delete-wrapper{float:right;}
+.mail-list-outside-wrapper-end{clear:both;border-bottom:1px #eec dotted;}
+.mail-conv-sender{float:left;margin:0px 5px 5px 0px;}
+.mail-conv-sender-photo{width:32px;height:32px;}
+.mail-conv-sender-name{float:left;}
+.mail-conv-date{float:right;}
+.mail-conv-subject{clear:right;font-weight:bold;font-size:1.2em;}
+.mail-conv-body{clear:both;}
+.mail-conv-delete-wrapper{margin-top:5px;}
+.view-contact-wrapper,.contact-entry-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:120px;padding:3px;position:relative;}
+.contact-direction-wrapper{position:absolute;top:20px;}
+.contact-edit-links{position:absolute;top:60px;}
+.contact-entry-photo{margin-left:20px;}
+.contact-entry-name{width:120px;font-weight:bold;}
+.contact-entry-photo{position:relative;}
+.contact-entry-edit-links .icon{border:1px solid #babdb6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:#fff;}
+#contact-entry-url,[id^="contact-entry-url"]{font-size:smaller;}
+#contact-entry-network,[id^="contact-entry-network"]{font-size:smaller;font-style:italic;}
+#contact-edit-banner-name{font-size:1.5em;}
+#contact-edit-photo-wrapper{position:relative;float:left;padding:20px;}
+#contact-edit-direction-icon{position:absolute;top:60px;left:0;}
+#contact-edit-nav-wrapper{margin-left:0px;}
+#contact-edit-links{margin-top:23px;}#contact-edit-links ul{list-style-type:none;}
+#contact-drop-links{margin-left:5px;}
+#contact-edit-nav-wrapper .icon{border:1px solid #babdb6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
+#contact-edit-poll-wrapper{margin-left:0px;}
+#contact-edit-last-update-text{margin-bottom:15px;}
+#contact-edit-last-updated{font-weight:bold;}
+#contact-edit-poll-text{display:inline;}
+#contact-edit-info_tbl,#contact-edit-info_parent,.mceLayout{width:100%;}
+#contact-edit-end{clear:both;margin-bottom:65px;}
+.contact-photo-menu-button{position:absolute;background-image:url("light/photo-menu.jpg");background-position:top left;background-repeat:no-repeat;margin:0px;padding:0px;width:16px;height:16px;top:64px;left:0px;overflow:hidden;text-indent:40px;display:none;}
+.contact-photo-menu{width:auto;border:2px solid #444;background:#eee;color:#111;position:absolute;left:0px;top:90px;display:none;z-index:10000;}.contact-photo-menu ul{margin:0px;padding:0px;list-style:none;}
+.contact-photo-menu li a{display:block;padding:2px;}.contact-photo-menu li a:hover{color:#fff;background:#3465A4;text-decoration:none;}
+#id_openid_url{background:url(light/login-bg.gif) no-repeat;background-position:0 50%;padding-left:18px;}
+#settings-nickname-desc{background-color:#eee;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:5px;color:#111;}
+#settings-default-perms{margin-bottom:20px;}
+#register-form div,#profile-edit-form div{clear:both;}
+.settings-block label{clear:left;}
+.settings-block input{margin:10px 5px;}
+#profile-edit-marital-label span{margin:-4px;}
+.settings-submit-wrapper,.profile-edit-submit-wrapper{margin:0 0 30px -3px;}
+.profile-edit-side-div{display:none;}
+#profiles-menu-trigger{margin:0px 0px 0px 25px;}
+.profile-listing{float:left;margin:20px 20px 0px 0px;}
+.icon-profile-edit{background:url("light/icons.png") -150px 0px no-repeat;border:0;cursor:pointer;display:block;float:right;width:20px;height:20px;margin:0 0 -18px;position:absolute;text-decoration:none;top:113px;right:260px;}
+#profile-edit-links ul{margin:20px 0;padding:0;list-style:none;}
+.marital{margin-top:5px;}
+#register-sitename{display:inline;font-weight:bold;}
+#advanced-expire-popup{background:#2e2f2e;color:#eec;}
+#id_ssl_policy{width:374px;}
+#theme-preview img{margin:10px 10px 10px 288px;}
+.group-delete-wrapper{margin:-31px 50px 0 0;float:right;}
+#group-edit-submit-wrapper{margin:0 0 10px 0;display:inline;}
+#group-edit-desc{margin:10px 0px;}
+#group-members,#prof-members{height:200px;overflow:auto;border:1px solid #555753;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}
+#group-all-contacts,#prof-all-contacts{height:200px;overflow:auto;border:1px solid #555753;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;}
+#group-members h3,#group-all-contacts h3,#prof-members h3,#prof-all-contacts h3{color:#eeeeec;background-color:#555753;margin:0;padding:5px;}
+#group-separator,#prof-separator{display:none;}
+#cropimage-wrapper{float:left;}
+#crop-image-form{clear:both;}
+.intro-wrapper{margin-top:20px;}
+.intro-fullname{font-size:1.1em;font-weight:bold;}
+.intro-desc{margin-bottom:20px;font-weight:bold;}
+.intro-note{padding:10px;}
+.intro-end{padding:30px;}
+.intro-form{float:left;}
+.intro-approve-form,.intro-approve-as-friend-end{clear:both;}
+.intro-submit-approve,.intro-submit-ignore{margin-right:20px;}
+.intro-submit-approve{margin-top:15px;}
+.intro-approve-as-friend-label,.intro-approve-as-fan-label,.intro-approve-as-friend,.intro-approve-as-fan{float:left;}
+.intro-form-end{clear:both;margin-bottom:10px;}
+.intro-approve-as-friend-desc{margin-top:10px;}
+.intro-approve-as-end{clear:both;margin-bottom:10px;}
+.intro-end,.clear{clear:both;}
+.eventcal{float:left;font-size:20px;}
+.event{background:#2e2f2e;}
+.vevent{border:1px solid #ccc;}.vevent .event-description,.vevent .event-location,.vevent .event-start{margin-left:10px;margin-right:10px;}
+#new-event-link{margin-bottom:10px;}
+.edit-event-link,.plink-event-link{}
+.event-description:before{content:url('../../../images/calendar.png');margin-right:15px;}
+.event-start,.event-end{margin-left:10px;width:330px;font-size:smaller;}
+.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:monospace;}
+.today{font-weight:bold;color:#FF0000;}
+#event-start-text,#event-finish-text{margin-top:10px;margin-bottom:5px;}
+#event-nofinish-checkbox,#event-nofinish-text,#event-adjust-checkbox,#event-adjust-text,#event-share-checkbox{float:left;}
+#event-datetime-break{margin-bottom:10px;}
+#event-nofinish-break,#event-adjust-break,#event-share-break{clear:both;}
+#event-desc-text,#event-location-text{margin-top:10px;margin-bottom:5px;}
+#event-submit{margin-top:10px;}
+.body-tag{margin:10px 0;opacity:0.5;}.body-tag:hover{opacity:1.0 !important;}
+.filesavetags,.categorytags{margin:20px 0;opacity:0.5;}
+.filesavetags:hover,.categorytags:hover{margin:20px 0;opacity:1.0 !important;}
+.item-select{opacity:0.1;margin:5px 0 0 6px !important;}.item-select:hover{opacity:1;}
+.checkeditem{opacity:1;}
+#item-delete-selected{margin-top:30px;}
+.delete-checked{position:absolute;left:35px;margin-top:20px;}
+#item-delete-selected-end{clear:both;}
+#item-delete-selected-icon{float:left;margin-right:5px;}
+#item-delete-selected-desc{float:left;margin-right:5px;}#item-delete-selected-desc:hover{text-decoration:underline;}
+.fc-state-highlight{background:#eec;color:#2e2f2e;}
+.directory-item{float:left;margin:0 5px 4px 0;padding:3px;width:180px;height:250px;position:relative;}
+#group-sidebar{margin-bottom:10px;}
+.group-selected,.nets-selected,.fileas-selected{padding:3px;color:#111;background:#f8f8f8;font-weight:bold;}
+.group-selected:hover,.nets-selected:hover,.fileas-selected:hover{color:#111;}
+.groupsideedit{margin-right:10px;}
+#sidebar-group-ul{padding-left:0;}
+#sidebar-group-list{margin:0 0 5px 0;}#sidebar-group-list ul{list-style-type:none;list-style-position:inside;}
+#sidebar-group-list li{margin-top:10px;}
+#sidebar-group-list .icon{display:inline-block;height:12px;width:12px;}
+#sidebar-new-group{margin:auto;display:inline-block;color:#efefef;text-decoration:none;text-align:center;}
+#peoplefind-sidebar form{margin-bottom:10px;}
+#sidebar-new-group:hover{}
+#sidebar-new-group:active{position:relative;top:1px;}
+#side-peoplefind-url{background-color:#e5e0cf;color:#666;border:1px 666 solid;margin-right:3px;width:75%;}#side-peoplefind-url:hover,#side-peoplefind-url:focus{background-color:#efefef;color:#222;border:1px 333 solid;}
+.nets-ul{list-style-type:none;padding-left:0px;}.nets-ul li{margin:10px 0 0;}
+.nets-link,.nets-all{margin-left:0px;}
+#netsearch-box{margin-top:20px;width:150px;}#netsearch-box #search-submit{margin:5px 0px 0px 0px;}
+#pending-update{float:right;color:#fff;font-weight:bold;background-color:#ff0000;padding:0 .3em;}
+.admin.linklist{border:0;padding:0;}
+.admin.link{list-style-position:inside;}
+#adminpage{color:#111;background:transparent;margin:5px;padding:10px;}#adminpage dl{clear:left;margin-bottom:2px;padding-bottom:2px;border-bottom:1px solid #000;}
+#adminpage dt{width:250px;float:left;font-weight:bold;}
+#adminpage dd{margin-left:250px;}
+#adminpage h3{border-bottom:1px solid #ccc;}
+#adminpage .submit{clear:left;}
+#adminpage #pluginslist{margin:0;padding:0;}
+#adminpage .plugin{list-style:none;display:block;border:1px solid #888;padding:1em;margin-bottom:5px;clear:left;}
+#adminpage .toggleplugin{float:left;margin-right:1em;}
+#adminpage table{width:100%;border-bottom:1px solid #000;margin:5px 0;}#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:#bbc7d7;}
+#adminpage .selectall{text-align:right;}
+#adminpage #users a{text-decoration:underline;}
+#users .name{color:#eec;}
+.field{overflow:auto;}.field label{width:38%;display:inline-block;font-size:1.077em;margin:0 10px 1em 0;border:1px #999 solid;padding:5px;background:#ccc;color:#111;}
+.field .onoff{float:right;margin:0 330px 0 auto;width:80px;}.field .onoff a{display:block;border:1px solid #666;padding:3px 6px 4px 10px;height:16px;text-decoration:none;}
+.field .onoff .on{background:url("../../../images/onoff.jpg") no-repeat 42px 1px #999999;color:#111;text-align:left;}
+.field .onoff .off{background:url("../../../images/onoff.jpg") no-repeat 2px 1px #cccccc;color:#333;text-align:right;}
+.hidden{display:none !important;}
+.field textarea{width:80%;height:100px;}
+.field_help{display:block;margin-left:297px;color:#666;}
+.field.radio .field_help{margin-left:297px;}
+label{width:38%;display:inline-block;font-size:1.077em;margin:0 10px 1em 0;border:1px #999 solid;padding:5px;background:#ccc;color:#111;}
+input{width:250px;height:25px;border:1px #999 solid;}input[type="text"],input[type="password"],input[type="search"]{width:250px;height:25px;border:1px #999 solid;}
+input[type="checkbox"],input[type="radio"]{border:1px #999 solid;margin:0 0 0 0;height:15px;width:15px;}
+input[type="submit"],input[type="button"]{background-color:#555753;border:2px outset #444;border-radius:5px;box-shadow:1px 3px 4px 0 #111;color:#eeeeec;cursor:pointer;font-weight:bold;width:auto;text-shadow:1px 1px #111;-webkit-border-radius:5px;-moz-border-radius:5px;}
+input[type="submit"]:active,input[type="button"]:active{box-shadow:0 0 0 0;}
+.popup{width:100%;height:100%;top:0px;left:0px;position:absolute;display:none;}.popup .background{background-color:#000;opacity:0.5;width:100%;height:100%;position:absolute;top:0px;left:0px;}
+.popup .panel{top:25%;left:25%;width:50%;height:50%;padding:1em;position:absolute;border:4px solid #000000;background-color:#FFFFFF;}
+#panel{z-index:100;}
+.grey{color:grey;}
+.orange{color:orange;}
+.red{color:red;}
+.popup .panel .panel_text{display:block;overflow:auto;height:80%;}
+.popup .panel .panel_in{width:100%;height:100%;position:relative;}
+.popup .panel .panel_actions{width:100%;bottom:4px;left:0px;position:absolute;}
+.panel_text .progress{width:50%;overflow:hidden;height:auto;border:1px solid #cccccc;margin-bottom:5px;}.panel_text .progress span{float:right;display:block;width:25%;background-color:#eeeeee;text-align:right;}
+.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;}
+.iconspacer{display:block;width:16px;height:16px;}
+.icon{display:block;width:20px;height:20px;background:url(light/icons.png) no-repeat;border:0;text-decoration:none;border-radius:5px;}.icon:hover{border:0;text-decoration:none;}
+.editicon{display:inline-block;width:21px;height:21px;background:url(light/editicons.png) no-repeat;border:0;text-decoration:none;}
+.shadow{box-shadow:2px 2px 5px 2px #111;}.shadow:active,.shadow:focus,.shadow:hover{box-shadow:0 0 0 0;}
+.editicon:hover{border:0;}
+.boldbb{background-position:0px 0px;}.boldbb:hover{background-position:-22px 0px;}
+.italicbb{background-position:0px -22px;}.italicbb:hover{background-position:-22px -22px;}
+.underlinebb{background-position:0px -44px;}.underlinebb:hover{background-position:-22px -44px;}
+.quotebb{background-position:0px -66px;}.quotebb:hover{background-position:-22px -66px;}
+.codebb{background-position:0px -88px;}.codebb:hover{background-position:-22px -88px;}
+.imagebb{background-position:-44px 0px;}.imagebb:hover{background-position:-66px 0px;}
+.urlbb{background-position:-44px -22px;}.urlbb:hover{background-position:-66px -22px;}
+.videobb{background-position:-44px -44px;}.videobb:hover{background-position:-66px -44px;}
+.icon.drop,.icon.drophide,.icon.delete{float:left;margin:0 2px;}
+.icon.s22.delete{display:block;background-position:-110px 0;}
+.icon.s22.text{padding:10px 0px 0px 25px;width:200px;}
+.icon.text{text-indent:0px;}
+.icon.s16{min-width:16px;height:16px;}
+.s16 .add{background:url("../../../images/icons/16/add.png") no-repeat;}
+.add{margin:0px 5px;}
+.article{background-position:-50px 0;}
+.audio{background-position:-70px 0;}
+.block{background-position:-90px 0px;}
+.drop,.delete{background-position:-110px 0;}
+.drophide{background-position:-130px 0;}
+.edit{background-position:-150px 0;}
+.camera{background-position:-170px 0;}
+.dislike{background-position:-190px 0;}
+.file-as{background-position:-230px -60px;}
+.like{background-position:-211px 0;}
+.link{background-position:-230px 0;}
+.globe,.location{background-position:-50px -20px;}
+.noglobe,.nolocation{background-position:-70px -20px;}
+.no{background-position:-90px -20px;}
+.pause{background-position:-110px -20px;}
+.play{background-position:-130px -20px;}
+.pencil{background-position:-151px -18px;}
+.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;}
+.unlock{background-position:-88px -40px;}
+.video{background-position:-110px -40px;}
+.attach{background-position:-190px -40px;}
+.language{background-position:-210px -40px;}
+.starred{background-position:-130px -60px;}
+.unstarred{background-position:-150px -60px;}
+.tagged{background-position:-170px -60px;}
+.on{background-position:-50px -60px;}
+.off{background-position:-70px -60px;}
+.prev{background-position:-90px -60px;}
+.next{background-position:-110px -60px;}
+.icon.dim{opacity:0.3;}
+#pause{position:fixed;bottom:40px;right:30px;}
+.border{border:1px solid #babdb6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+.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 0;}
+.type-audio{background-position:-40px 0;}
+.type-text{background-position:-60px 0px;}
+.type-unkn{background-position:-80px 0;}
+.cc-license{margin-top:100px;font-size:0.7em;}
+footer{display:block;clear:both;}
+#profile-jot-text{height:20px;color:#666;border:1px solid #ccc;border-radius:5px;width:99.5%;}
+#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#eec;color:#2e2f2e;}
+#acl-wrapper{width:660px;margin:0 auto;}
+#acl-search{float:right;background:#ffffff url("../../../images/search_18.png") no-repeat right center;padding-right:20px;margin:6px;color:#111;}
+#acl-showall{float:left;display:block;width:auto;height:18px;background:#eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;padding:7px 10px 7px 30px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:#999;margin:5px 0;}#acl-showall.selected{color:#000;background:#ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat;}
+#acl-list{height:210px;border:1px solid #ccc;clear:both;margin-top:30px;overflow:auto;}
+.acl-list-item{border:1px solid #ccc;display:block;float:left;height:110px;margin:3px 0 5px 5px;width:120px;}.acl-list-item img{width:22px;height:22px;float:left;margin:5px 5px 20px;}
+.acl-list-item p{height:12px;font-size:10px;margin:0 0 22px;padding:2px 0 1px;}
+.acl-list-item a{background:#cccccc 3px 3px no-repeat;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;clear:both;font-size:10px;display:block;width:55px;height:20px;color:#999;margin:5px auto 0;padding:0 3px;text-align:center;vertical-align:middle;}
+#acl-wrapper a:hover{text-decoration:none;color:#000;border:0;}
+.acl-button-show{background-image:url('../../../images/show_off.png');margin:0 auto;}
+.acl-button-hide{background-image:url('../../../images/hide_off.png');margin:0 auto;}
+.acl-button-show.selected{color:#000;background-color:#9ade00;background-image:url(../../../images/show_on.png);}
+.acl-button-hide.selected{color:#000;background-color:#ff4141;background-image:url(../../../images/hide_on.png);}
+.acl-list-item.groupshow{border-color:#9ade00;}
+.acl-list-item.grouphide{border-color:#ff4141;}
+.acpopup{max-height:175px;max-width:42%;background-color:#555753;color:#fff;overflow:auto;z-index:100000;border:1px solid #cccccc;}
+.acpopupitem{background-color:#555753;padding:4px;clear:left;}.acpopupitem img{float:left;margin-right:4px;}
+.acpopupitem.selected{color:#2e3436;background-color:#eeeeec;}
+.qcomment-wrapper{padding:0px;margin:5px 5px 5px 81%;}
+.qcomment{opacity:0.5;}.qcomment:hover{opacity:1.0;}
+#network-star-link{margin-top:10px;}
+.network-star{float:left;margin-right:5px;}.network-star.icon.starred{display:inline-block;}
+.fileas-ul{padding:0;}
+#sidebar-page-list ul{padding:0;margin:5px 0;}
+#sidebar-page-list li{list-style:none;}
+#jappix_mini{margin-left:130px;position:fixed;bottom:0;right:175px !important;z-index:999;}
+@media handheld{body{font-size:15pt;}}
diff --git a/view/theme/dispy/light/style.less b/view/theme/dispy/light/style.less
new file mode 100644
index 000000000..141ff731b
--- /dev/null
+++ b/view/theme/dispy/light/style.less
@@ -0,0 +1,2879 @@
+/*
+ * dispy
+ *
+ * maintainer: simon
+ * author: unknown
+ *
+ * Author's notes:
+ * A few things of note here. The less file is our working copy,
+ * and the CSS is *generated* from it. The CSS is the one that's
+ * included in the HTML, and not the less one. This is to save
+ * bandwidth and processing time.
+ */
+/* from html5boilerplate */
+/* these are to tell browsers they should be displayed a certain way */
+
+article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
+ display: block; }
+
+audio, canvas, video, time {
+ display: inline-block;
+ *display: inline;
+ *zoom: 1; }
+
+audio:not([controls]), [hidden] {
+ display: none; }
+
+/*
+ * Base
+ */
+/*
+ * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
+ * 2. Force vertical scrollbar in non-IE
+ * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
+ */
+
+html {
+ font-size: 100%;
+ overflow-y: scroll;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%; }
+
+body {
+ margin: 0;
+ font-size: 16px;
+ line-height: 1.1em;
+ font-family: sans-serif;
+ color: #222;
+ background-color: #e8e8e8; }
+
+button, input, select, textarea {
+ font-family: sans-serif;
+ color: #222;
+ background-color: #e8e8e8; }
+
+select {
+ border: 1px #555 dotted;
+ padding: 3px;
+ margin: 3px;
+ color: #222;
+ background: #e8e8e8; }
+
+option {
+ padding: 3px;
+ color: #222;
+ background: #e8e8e8;
+ &[selected="selected"] {
+ color: #111;
+ background: #cca; } }
+
+ul, ol {
+ padding: 0; }
+
+/* remember to define focus styles! */
+
+:focus {
+ outline: 0; }
+
+[disabled="disabled"] {
+ background: #ddd;
+ color: #333; }
+
+/* remember to highlight inserts somehow! */
+
+ins {
+ background-color: #ff9;
+ color: #000;
+ text-decoration: none; }
+
+mark {
+ background-color: #ff9;
+ color: #000;
+ font-style: italic;
+ font-weight: bold; }
+
+/* Redeclare monospace font family: h5bp.com/j */
+
+pre, code, kbd, samp, .wall-item-body code {
+ font-family: monospace, monospace;
+ _font-family: monospace;
+ font-size: 1em; }
+
+/* Improve readability of pre-formatted text in all browsers */
+
+pre, .wall-item-body code {
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word; }
+
+q {
+ quotes: none;
+ &:before, &:after {
+ content: "";
+ content: none; } }
+
+small {
+ font-size: 85%; }
+
+/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
+
+sub, sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline; }
+
+sub {
+ bottom: -0.25em; }
+
+sup {
+ top: -0.5em; }
+
+img {
+ border: 0 none; }
+
+a {
+ color: #3465a4;
+ text-decoration: none;
+ margin-bottom: 1px;
+ &:hover img {
+ text-decoration: none; } }
+
+blockquote {
+ background: #eee;
+ color: #111;
+ text-indent: 5px;
+ padding: 5px;
+ border: 1px #aaa solid;
+ border-radius: 5px; }
+
+a:hover {
+ color: #729fcf;
+ border-bottom: 1px dotted #729fcf; }
+
+.required {
+ display: inline;
+ color: #f00;
+ font-size: 16px;
+ font-weight: bold;
+ margin: 3px; }
+
+.fakelink, .lockview {
+ color: #3465a4;
+ cursor: pointer; }
+
+.fakelink:hover {
+ color: #729fcf; }
+
+.smalltext {
+ font-size: 0.7em; }
+
+#panel {
+ position: absolute;
+ font-size: 0.8em;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #fff;
+ background-color: #2e3436;
+ color: #eeeeec;
+ padding: 1em; }
+
+.pager {
+ margin-top: 60px;
+ display: block;
+ clear: both;
+ text-align: center;
+ span {
+ padding: 4px;
+ margin: 4px; } }
+
+.pager_current {
+ background-color: #729fcf;
+ color: #fff; }
+
+/**
+ * global
+ */
+/* .tool .action */
+
+.action {
+ margin: 5px 0; }
+
+.tool {
+ margin: 5px 0;
+ list-style: none; }
+
+#articlemain {
+ width: 100%;
+ height: 100%;
+ margin: 0 auto; }
+
+/**
+ * login
+ */
+
+#asidemain .field {
+ overflow: hidden;
+ width: 200px; }
+
+#login-extra-links {
+ overflow: auto !important;
+ padding-top: 60px !important;
+ width: 100% !important;
+ a {
+ margin-right: 20px; } }
+
+#login_standard {
+ display: block !important;
+ float: none !important;
+ height: 100% !important;
+ position: relative !important;
+ width: 100% !important;
+ .field label {
+ width: 200px !important; }
+ input {
+ margin: 0 0 8px !important;
+ width: 210px !important;
+ &[type="text"] {
+ margin: 0 0 8px !important;
+ width: 210px !important; } } }
+
+#login-submit-wrapper {
+ margin: 0 !important; }
+
+#login-submit-button {
+ margin-left: 0px !important; }
+
+#asidemain #login_openid {
+ position: relative !important;
+ float: none !important;
+ margin-left: 0px !important;
+ height: auto !important;
+ width: 200px !important; }
+
+#login_openid {
+ #id_openid_url {
+ width: 180px !important;
+ overflow: hidden !important; }
+ label {
+ width: 180px !important; } }
+
+/**
+ * nav
+ */
+
+nav {
+ height: 60px;
+ background-color: #2e3436;
+ color: #eeeeec;
+ position: relative;
+ padding: 20px 20px 10px 95px;
+ a {
+ text-decoration: none;
+ color: #eeeeec;
+ border: 0px;
+ &:hover {
+ text-decoration: none;
+ color: #eeeeec;
+ border: 0px; } }
+ #banner {
+ display: block;
+ position: absolute;
+ left: 51px;
+ top: 25px;
+ #logo-text a {
+ font-size: 40px;
+ font-weight: bold;
+ margin-left: 3px; } } }
+
+ul#user-menu-popup {
+ display: none;
+ position: absolute;
+ background-color: #555753;
+ width: 100%;
+ padding: 10px 0px;
+ margin: 0px;
+ top: 20px;
+ left: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ box-shadow: 5px 10px 10px 0 #111;
+ z-index: 10000;
+ li {
+ display: block;
+ a {
+ display: block;
+ padding: 5px;
+ &:hover {
+ color: #2e3436;
+ background-color: #eeeeec; }
+ &.nav-sep {
+ border-top: 1px solid #eeeeec; } } } }
+
+nav .nav-link {
+ display: inline-block;
+ width: 22px;
+ height: 22px;
+ overflow: hidden;
+ margin: 0px 5px 5px;
+ text-indent: 50px;
+ background: transparent url(light/icons.png) 0 0 no-repeat; }
+
+#nav-apps-link {
+ background-position: 0 -66px;
+ &:hover {
+ background-position: -22px -66px; } }
+
+#nav-community-link, #nav-contacts-link {
+ background-position: 0 -22px;
+ &:hover {
+ background-position: -22px -22px; } }
+
+#nav-directory-link {
+ background-position: -44px -154px;
+ &:hover {
+ background-position: -66px -154px; } }
+
+#nav-help-link {
+ background-position: 0 -110px;
+ &:hover {
+ background-position: -22px -110px; } }
+
+#nav-home-link {
+ background-position: -44px -132px;
+ &:hover {
+ background-position: -66px -132px; } }
+
+#nav-intro-link {
+ background-position: 0px -190px;
+ &:hover {
+ background-position: -44px -190px; } }
+
+#nav-login-link, #nav-logout-link {
+ background-position: 0 -88px;
+ &:hover {
+ background-position: -22px -88px; } }
+
+#nav-messages-link {
+ background-position: -44px -88px;
+ &:hover {
+ background-position: -66px -88px; } }
+
+#nav-notify-link, #nav-notifications-linkmenu {
+ background-position: -44px -110px; }
+
+#nav-notify-link:hover {
+ background-position: -66px -110px; }
+
+#nav-network-link {
+ background-position: 0px -177px;
+ &:hover {
+ background-position: -22px -177px; } }
+
+#nav-search-link {
+ background-position: 0 -44px;
+ &:hover {
+ background-position: -22px -44px; } }
+
+#profile-link, #profile-title, #wall-image-upload, #wall-file-upload, #profile-attach-wrapper, #profile-audio, #profile-link, #profile-location, #profile-nolocation, #profile-title, #jot-title, #profile-upload-wrapper, #profile-video, #profile-jot-submit, #wall-image-upload-div, #wall-file-upload-div, .icon, .hover, .focus, .pointer {
+ cursor: pointer; }
+
+/* popup notifications */
+
+div.jGrowl div {
+ &.notice {
+ background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
+ color: #ffffff;
+ padding-left: 58px; }
+ &.info {
+ background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
+ color: #ffffff;
+ padding-left: 58px; } }
+
+#nav-notifications-menu {
+ margin: 30px 0 0 -20px;
+ width: 275px;
+ max-height: 300px;
+ overflow-y: auto;
+ font-size: 9pt;
+ .contactname {
+ font-weight: bold;
+ font-size: 0.9em; }
+ img {
+ float: left;
+ margin-right: 5px; }
+ .notif-when {
+ font-size: 0.8em;
+ display: block; }
+ li {
+ word-wrap: normal;
+ border-bottom: 1px solid #000;
+ &:hover {
+ color: black; } }
+ a:hover {
+ color: black;
+ text-decoration: underline; } }
+
+nav #nav-notifications-linkmenu {
+ &.on .icon.s22.notify, &.selected .icon.s22.notify {
+ background-image: url("../../../images/icons/22/notify_on.png"); } }
+
+.show {
+ display: block; }
+
+#notifications {
+ height: 20px;
+ width: 170px;
+ position: absolute;
+ top: -19px;
+ left: 4px; }
+
+#nav-floater {
+ position: fixed;
+ top: 20px;
+ right: 1%;
+ padding: 5px;
+ background: #2e3436;
+ color: transparent;
+ border-radius: 5px;
+ z-index: 100;
+ width: 300px;
+ height: 60px; }
+
+#nav-buttons {
+ clear: both;
+ list-style: none;
+ padding: 0px;
+ margin: 0px;
+ height: 25px;
+ > li {
+ padding: 0;
+ display: inline-block;
+ margin: 0px -4px 0px 0px; } }
+
+.floaterflip {
+ display: block;
+ position: fixed;
+ z-index: 110;
+ top: 56px;
+ right: 19px;
+ width: 22px;
+ height: 22px;
+ overflow: hidden;
+ margin: 0px;
+ background: transparent url(light/icons.png) -190px -60px no-repeat; }
+
+.search-box {
+ display: inline-block;
+ margin: 5px;
+ position: fixed;
+ right: 0px;
+ bottom: 0px;
+ z-index: 100;
+ background: #1d1f1d;
+ border-radius: 5px; }
+
+#search-text {
+ border: 1px #eec solid;
+ background: #2e3436;
+ color: #eec; }
+
+.search-box #search-text {
+ margin: 8px;
+ width: 10em;
+ height: 14px;
+ color: #eec; }
+
+#scrollup {
+ position: fixed;
+ right: 5px;
+ bottom: 40px;
+ z-index: 100;
+ a:hover {
+ text-decoration: none;
+ border: 0; } }
+
+#user-menu {
+ box-shadow: 5px 0 10px 0 #111;
+ display: block;
+ width: 75%;
+ margin: 3px 0 0 0;
+ position: relative;
+ background-color: #555753;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ background: #555753 url("light/menu-user-pin.jpg") 98% center no-repeat;
+ clear: both;
+ top: 4px;
+ left: 10px;
+ padding: 2px;
+ > a {
+ vertical-align: top; } }
+
+#user-menu-label {
+ font-size: 12px;
+ padding: 3px 20px 9px 5px;
+ height: 10px; }
+
+.nav-ajax-update, .nav-ajax-left {
+ width: 30px;
+ height: 19px;
+ background: transparent url(light/notifications.png) 0 0 no-repeat;
+ color: #222;
+ font-weight: bold;
+ font-size: 0.8em;
+ padding-top: 0.2em;
+ text-align: center;
+ float: left;
+ margin: 0 -1px 0 3px;
+ display: block;
+ visibility: hidden; }
+
+.nav-ajax-update.show, .nav-ajax-left.show {
+ visibility: visible; }
+
+#net-update {
+ background-position: 0px 0px; }
+
+#mail-update {
+ background-position: -30px 0; }
+
+#notify-update {
+ background-position: -60px 0px; }
+
+#home-update {
+ background-position: -90px 0px; }
+
+#intro-update {
+ background-position: -120px 0px; }
+
+#lang-select-icon {
+ cursor: pointer;
+ position: fixed;
+ left: 28px;
+ bottom: 6px;
+ z-index: 10; }
+
+#language-selector {
+ position: fixed;
+ bottom: 2px;
+ left: 52px;
+ z-index: 10; }
+
+.menu-popup {
+ position: absolute;
+ display: none;
+ width: 11em;
+ background: #ffffff;
+ color: #2d2d2d;
+ margin: 0px;
+ padding: 0px;
+ list-style: none;
+ border: 3px solid #364e59;
+ z-index: 100000;
+ -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ a {
+ display: block;
+ color: #2d2d2d;
+ padding: 5px 10px;
+ text-decoration: none;
+ &:hover {
+ background-color: #bdcdd4; } }
+ .menu-sep {
+ border-top: 1px solid #9eabb0; }
+ li {
+ float: none;
+ overflow: auto;
+ height: auto;
+ display: block;
+ img {
+ float: left;
+ width: 16px;
+ height: 16px;
+ padding-right: 5px; } }
+ .empty {
+ padding: 5px;
+ text-align: center;
+ color: #9eabb0; } }
+
+.notif-item {
+ font-size: small;
+ a {
+ vertical-align: middle; } }
+
+.notif-image {
+ width: 32px;
+ height: 32px;
+ padding: 7px 7px 0px 0px; }
+
+.notify-seen {
+ background: #ddd; }
+
+/**
+ * sysmsg
+ */
+
+#sysmsg_info {
+ position: fixed;
+ bottom: 0;
+ -moz-box-shadow: 3px 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ padding: 10px;
+ background-color: #fcaf3e;
+ border: 2px solid #f8911b;
+ border-bottom: 0;
+ padding-bottom: 50px;
+ z-index: 1000; }
+
+#sysmsg {
+ position: fixed;
+ bottom: 0;
+ -moz-box-shadow: 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ padding: 10px;
+ background-color: #fcaf3e;
+ border: 2px solid #f8911b;
+ border-bottom: 0;
+ padding-bottom: 50px;
+ z-index: 1000; }
+
+#sysmsg_info br, #sysmsg br {
+ display: block;
+ margin: 2px 0px;
+ border-top: 1px solid #ccccce; }
+
+/**
+ * aside
+ */
+
+#asidemain {
+ float: left;
+ font-size: smaller;
+ margin: 20px 0 20px 35px;
+ width: 25%;
+ display: inline; }
+
+/* for now, disappear these */
+
+#asideright, #asideleft {
+ display: none; }
+
+.vcard {
+ .fn {
+ font-size: 1.7em;
+ font-weight: bold;
+ border-bottom: 1px solid #729fcf;
+ padding-bottom: 3px; }
+ #profile-photo-wrapper {
+ margin: 20px;
+ img {
+ box-shadow: 3px 3px 10px 0 #000; } } }
+
+/* http://css-tricks.com/snippets/css/css-box-shadow/
+* box-shadow:
+* 1. The horizontal offset of the shadow, positive means
+* the shadow will be on the right of the box, a negative
+* offset will put the shadow on the left of the box.
+* 2. The vertical offset of the shadow, a negative one
+* means the box-shadow will be above the box, a
+* positive one means the shadow will be below the box.
+* 3. The blur radius (optional), if set to 0 the shadow
+* will be sharp, the higher the number, the more blurred
+* it will be.
+* 4. The spread radius (optional), positive values increase
+* the size of the shadow, negative values decrease the size.
+* Default is 0 (the shadow is same size as blur).
+* 5. Colo[u]r
+*/
+
+#asidemain {
+ h4 {
+ font-size: 1.2em; }
+ #viewcontacts {
+ text-align: right; } }
+
+.aprofile dt {
+ background: transparent;
+ color: #666666;
+ font-weight: bold;
+ box-shadow: 1px 1px 5px 0 #000;
+ margin: 15px 0 5px;
+ padding-left: 5px; }
+
+#profile-extra-links ul {
+ margin-left: 0px;
+ padding-left: 0px;
+ list-style: none; }
+
+#dfrn-request-link {
+ background: #3465a4 url(light/connect.png) no-repeat 95% center;
+ border-radius: 5px 5px 5px 5px;
+ color: #fff;
+ display: block;
+ font-size: 1.2em;
+ padding: 0.2em 0.5em; }
+
+#wallmessage-link {
+ /*background: #3465A4 url(light/connect.png) no-repeat 95% center;*/
+ /*border-radius: 5px 5px 5px 5px;*/
+ color: #eee;
+ display: block;
+ font-size: 1.2em;
+ padding: 0.2em 0.5em; }
+
+#netsearch-box {
+ margin: 20px 0px 30px;
+ width: 150px;
+ #search-submit {
+ margin: 5px 5px 0px 0px; } }
+
+.ttright {
+ margin: 0px 0px 0px 0px; }
+
+/**
+ * contacts block
+ */
+
+.contact-block-div {
+ width: 50px;
+ height: 50px;
+ float: left; }
+
+.contact-block-textdiv {
+ width: 150px;
+ height: 34px;
+ float: left; }
+
+#contact-block-end {
+ clear: both; }
+
+/**
+ * jot
+ */
+
+#jot {
+ /*width: 785px;*/
+ margin: 10px 0 20px 0px;
+ width: 100%;
+ #jot-tools {
+ margin: 0px;
+ padding: 0px;
+ height: 35px;
+ overflow: none;
+ width: 100%;
+ /*background-color: #0e232e;*/
+ /*border-bottom: 2px solid #9eabb0;*/
+ span {
+ float: left;
+ margin: 10px 20px 2px 0px;
+ a {
+ display: block; } }
+ .perms {
+ float: right;
+ width: 40px; }
+ li.loading {
+ float: right;
+ background-color: #ffffff;
+ width: 20px;
+ vertical-align: center;
+ text-align: center;
+ border-top: 2px solid #9eabb0;
+ height: 38px;
+ img {
+ margin-top: 10px; } } }
+ #jot-title {
+ border: 1px solid #ccc;
+ margin: 0 0 5px;
+ height: 20px;
+ width: 90%;
+ font-weight: bold;
+ border-radius: 5px;
+ vertical-align: middle; } }
+
+#jot-category {
+ margin: 5px 0;
+ border-radius: 5px;
+ border: 1px #ccc solid;
+ color: #666;
+ font-size: smaller;
+ &:focus {
+ color: #111; } }
+
+#jot #character-counter {
+ width: 6%;
+ float: right;
+ text-align: right;
+ height: 15px;
+ line-height: 20px;
+ padding: 2px 20px 5px 0; }
+
+#profile-jot-text_parent {
+ box-shadow: 5px 0 10px 0 #111; }
+
+#profile-jot-text_tbl {
+ margin-bottom: 10px;
+ background: #777; }
+
+#profile-jot-text_ifr {
+ width: 99.900002% !important; }
+
+#profile-jot-text_toolbargroup, .mceCenter tr {
+ background: #777; }
+
+[id$="jot-text_ifr"] {
+ width: 99.900002% !important;
+ color: #2e2f2e;
+ background: #eec;
+ .mceContentBody {
+ color: #2e2f2e;
+ background: #eec; } }
+
+.defaultSkin {
+ tr.mceFirst {
+ background: #777; }
+ td {
+ &.mceFirst, &.mceLast {
+ background-color: #eec; } }
+ span.mceIcon, img.mceIcon, .mceButtonDisabled .mceIcon {
+ background-color: #eec; } }
+
+#profile-attach-wrapper, #profile-audio-wrapper, #profile-link-wrapper, #profile-location-wrapper, #profile-nolocation-wrapper, #profile-title-wrapper, #profile-upload-wrapper, #profile-video-wrapper {
+ float: left;
+ margin: 0 20px 0 0; }
+
+#profile-rotator-wrapper {
+ float: right; }
+
+#profile-jot-tools-end, #profile-jot-banner-end {
+ clear: both; }
+
+#profile-jot-email-wrapper {
+ margin: 10px 10% 0;
+ border: 1px solid #555753;
+ border-bottom: 0; }
+
+#profile-jot-email-label {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px; }
+
+#profile-jot-email {
+ width: 90%;
+ margin: 5px; }
+
+#profile-jot-networks {
+ margin: 0 10%;
+ border: 1px solid #555753;
+ border-top: 0;
+ border-bottom: 0;
+ padding: 5px; }
+
+#profile-jot-net {
+ margin: 5px 0; }
+
+#jot-preview-link {
+ margin: 0 0 0 10px;
+ border: 0;
+ text-decoration: none;
+ float: right; }
+
+.icon-text-preview {
+ margin: 0 0 -18px 0;
+ display: block;
+ width: 20px;
+ height: 20px;
+ background: url(light/icons.png) no-repeat -128px -40px;
+ border: 0;
+ text-decoration: none;
+ float: right;
+ cursor: pointer; }
+
+#profile-jot-perms {
+ float: right;
+ background-color: #555753;
+ height: 22px;
+ width: 20px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+ border: 0px;
+ margin: 0 10px 0 10px; }
+
+#profile-jot-plugin-wrapper {
+ width: 1px;
+ margin: 10px 0 0 0;
+ float: right; }
+
+#profile-jot-submit-wrapper {
+ float: right;
+ width: 100%;
+ list-style: none;
+ margin: 10px 0 0 0;
+ padding: 0; }
+
+#profile-jot-submit {
+ height: auto;
+ background-color: #555753;
+ color: #eeeeec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 2px outset #222420;
+ margin: 0;
+ float: right;
+ text-shadow: 1px 1px #111;
+ width: auto;
+ &:active {
+ box-shadow: 0 0 0 0; } }
+
+#jot-perms-icon {
+ height: 22px;
+ width: 20px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+ border: 0; }
+
+#profile-jot-acl-wrapper {
+ margin: 0 10px;
+ border: 1px solid #555753;
+ border-top: 0;
+ display: block !important; }
+
+#group_allow_wrapper, #group_deny_wrapper, #acl-permit-outer-wrapper {
+ width: 47%;
+ float: left; }
+
+#contact_allow_wrapper, #contact_deny_wrapper, #acl-deny-outer-wrapper {
+ width: 47%;
+ float: right; }
+
+#acl-permit-text {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px;
+ float: left; }
+
+#jot-public {
+ background-color: #555753;
+ color: #ff0000;
+ padding: 5px;
+ float: left; }
+
+#acl-deny-text {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px;
+ float: left; }
+
+#acl-permit-text-end, #acl-deny-text-end {
+ clear: both; }
+
+#jot-title-desc {
+ color: #ccc; }
+
+#profile-jot-desc {
+ color: #a00;
+ margin: 5px 0; }
+
+#jot-title-wrapper {
+ margin-bottom: 5px; }
+
+#jot-title-display {
+ font-weight: bold; }
+
+.jothidden {
+ display: none; }
+
+#jot-preview-content {
+ background-color: #ffffe0;
+ color: #111;
+ border: 1px #aa0 solid;
+ border-radius: 5px;
+ padding: 3px 3px 6px 10px;
+ .wall-item-outside-wrapper {
+ border: 0;
+ border-radius: 0px; } }
+
+/**
+ * section
+ */
+
+#sectionmain {
+ margin: 20px;
+ font-size: 0.8em;
+ min-width: 475px;
+ width: 67%;
+ float: left;
+ display: inline; }
+
+/**
+ * tabs
+ */
+
+.tabs {
+ list-style: none;
+ margin: 10px 0;
+ padding: 0;
+ li {
+ display: inline;
+ font-size: smaller;
+ font-weight: bold; } }
+
+.tab {
+ border: 1px solid #729fcf;
+ padding: 4px;
+ &:hover, &.active:hover, &:active {
+ background: #729fcf;
+ color: #eeeeec; }
+ &.active {
+ background: #729fcf;
+ color: #eeeeec;
+ a {
+ color: #729fcf; } }
+ a {
+ border: 0;
+ text-decoration: none; } }
+
+/**
+ * items
+ */
+
+.wall-item-outside-wrapper {
+ border: 1px solid #aaa;
+ border-radius: 5px;
+ box-shadow: 5px 0 10px 0 #888;
+ &.comment {
+ margin-top: 5px; } }
+
+.wall-item-outside-wrapper-end {
+ clear: both; }
+
+.wall-item-content-wrapper {
+ position: relative;
+ padding: 10px;
+ width: auto; }
+
+.wall-item-outside-wrapper .wall-item-comment-wrapper {
+ /*margin-left: 90px;*/ }
+
+.shiny {
+ background: #efefdf;
+ border-radius: 5px; }
+
+.wall-outside-wrapper .shiny {
+ border-radius: 5px; }
+
+.heart {
+ color: red; }
+
+.wall-item-content {
+ overflow-x: auto;
+ margin: 0px 15px 0px 5px; }
+
+/* removing it from here, vs. putting it in .wall-item-content
+* might break things for people. we shall see ;) */
+
+[id^="tread-wrapper"], [class^="tread-wrapper"] {
+ margin: 15px 0 0 0;
+ padding: 0px;
+ /*overflow-x: auto;*/ }
+
+.wall-item-photo-menu {
+ display: none; }
+
+.wall-item-photo-menu-button {
+ display: none;
+ text-indent: -99999px;
+ background: #555753 url(light/menu-user-pin.jpg) no-repeat 75px center;
+ position: absolute;
+ overflow: hidden;
+ height: 20px;
+ width: 90px;
+ top: 85px;
+ left: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px; }
+
+.wall-item-info {
+ float: left;
+ width: 110px; }
+
+.wall-item-photo-wrapper {
+ width: 80px;
+ height: 80px;
+ position: relative;
+ padding: 5px;
+ background-color: #555753;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px; }
+
+[class^="wall-item-tools"] * {
+ /*margin: 0 0 5px 0;*/
+ > * {
+ /*margin: 0 0 5px 0;*/ } }
+
+.wall-item-tools {
+ float: right;
+ opacity: 0.4;
+ -webkit-transition: all 1s ease-in-out;
+ -moz-transition: all 1s ease-in-out;
+ -o-transition: all 1s ease-in-out;
+ -ms-transition: all 1s ease-in-out;
+ transition: all 1s ease-in-out;
+ &:hover {
+ opacity: 1;
+ -webkit-transition: all 1s ease-in-out;
+ -moz-transition: all 1s ease-in-out;
+ -o-transition: all 1s ease-in-out;
+ -ms-transition: all 1s ease-in-out;
+ transition: all 1s ease-in-out; } }
+
+.wall-item-subtools1 {
+ height: 30px;
+ list-style: none outside none;
+ margin: 20px 0 30px -20px;
+ padding: 0;
+ width: 30px; }
+
+.wall-item-subtools2 {
+ height: 25px;
+ list-style: none outside none;
+ margin: -75px 0 0 5px;
+ padding: 0;
+ width: 25px; }
+
+.wall-item-title {
+ font-size: 1.2em;
+ font-weight: bold;
+ margin-bottom: 1em; }
+
+.wall-item-body {
+ margin: 20px 20px 10px 0px;
+ text-align: left;
+ overflow-x: auto; }
+
+.wall-item-lock-wrapper {
+ float: right;
+ height: 22px;
+ margin: 0 -5px 0 0;
+ width: 22px;
+ opacity: 1; }
+
+.wall-item-dislike, .wall-item-like {
+ clear: left;
+ font-size: 0.8em;
+ color: #878883;
+ margin: 5px 0 5px 120px; }
+
+.wall-item-author, .wall-item-actions-author {
+ clear: left;
+ font-size: 0.8em;
+ color: #878883;
+ margin: 20px 20px 0 110px; }
+
+.wall-item-ago {
+ display: inline;
+ padding-left: 10px; }
+
+.wall-item-wrapper-end {
+ clear: both; }
+
+.wall-item-location {
+ margin-top: 15px;
+ width: 100px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ .icon {
+ float: left; }
+ > a, .smalltext {
+ margin-left: 25px;
+ font-size: 0.7em;
+ display: block; }
+ > br {
+ display: none; } }
+
+.wallwall {
+ .wwto {
+ left: 5px;
+ margin: 0;
+ position: absolute;
+ top: 75px;
+ width: 30px;
+ z-index: 10001;
+ width: 30px;
+ height: 30px;
+ img {
+ width: 30px !important;
+ height: 30px !important; } }
+ .wall-item-photo-end {
+ clear: both; } }
+
+.wall-item-arrowphoto-wrapper {
+ position: absolute;
+ left: 35px;
+ top: 80px;
+ z-index: 10002; }
+
+.wall-item-photo-menu {
+ min-width: 92px;
+ border: 2px solid #FFFFFF;
+ border-top: 0px;
+ background: #555753;
+ position: absolute;
+ left: -2px;
+ top: 101px;
+ display: none;
+ z-index: 10003;
+ -webkit-border-radius: 0px 5px 5px 5px;
+ -moz-border-radius: 0px 5px 5px 5px;
+ border-radius: 0px 5px 5px 5px;
+ ul {
+ margin: 0px;
+ padding: 0px;
+ list-style: none; }
+ li a {
+ white-space: nowrap;
+ display: block;
+ padding: 5px 2px;
+ color: #eeeeec;
+ &:hover {
+ color: #555753;
+ background: #eeeeec; } } }
+
+#item-delete-selected {
+ overflow: auto;
+ width: 100%; }
+
+#connect-services-header, #connect-services, #extra-help-header, #extra-help, #postit-header, #postit {
+ margin: 5px 0 0 0; }
+
+/**
+ * comment
+ */
+
+.ccollapse-wrapper {
+ font-size: 0.9em;
+ margin-left: 80px; }
+
+.wall-item-outside-wrapper.comment {
+ margin-left: 80px;
+ .wall-item-photo {
+ width: 40px!important;
+ height: 40px!important; }
+ .wall-item-photo-wrapper {
+ width: 40px;
+ height: 40px; }
+ .wall-item-photo-menu-button {
+ width: 50px;
+ top: 45px;
+ background-position: 35px center; }
+ .wall-item-info {
+ width: 60px; }
+ .wall-item-body {
+ margin-left: 10px; }
+ .wall-item-author {
+ margin-left: 50px; }
+ .wall-item-photo-menu {
+ min-width: 50px;
+ top: 60px; } }
+
+.comment-wwedit-wrapper {
+ /*margin: 30px 0px 0px 80px;*/ }
+
+.comment-edit-wrapper {
+ border-top: 1px #aaa solid; }
+
+[class^="comment-edit-bb"] {
+ list-style: none;
+ display: none;
+ margin: -40px 0 5px 60px;
+ width: 75%;
+ > li {
+ display: inline-block;
+ margin: 0 10px 0 0;
+ visibility: none; } }
+
+.comment-wwedit-wrapper img, .comment-edit-wrapper img {
+ width: 20px;
+ height: 20px; }
+
+.comment-edit-photo-link, .comment-edit-photo {
+ margin-left: 10px; }
+
+.my-comment-photo {
+ width: 40px;
+ height: 40px;
+ padding: 5px; }
+
+[class^="comment-edit-text"] {
+ margin: 5px 0 10px 20px;
+ width: 84.5%; }
+
+.comment-edit-text-empty {
+ height: 20px;
+ border: 2px #babdd6 solid;
+ border-radius: 5px;
+ color: #babdb6;
+ -webkit-transition: all 0.5s ease-in-out;
+ -moz-transition: all 0.5s ease-in-out;
+ -o-transition: all 0.5s ease-in-out;
+ -ms-transition: all 0.5s ease-in-out;
+ transition: all 0.5s ease-in-out;
+ &:hover {
+ color: #999999; } }
+
+.comment-edit-text-full {
+ height: 10em;
+ border-radius: 5px;
+ -webkit-transition: all 0.5s ease-in-out;
+ -moz-transition: all 0.5s ease-in-out;
+ -o-transition: all 0.5s ease-in-out;
+ -ms-transition: all 0.5s ease-in-out;
+ transition: all 0.5s ease-in-out; }
+
+.comment-edit-submit-wrapper {
+ width: 90%;
+ margin: 5px 5px 10px 50px;
+ text-align: right; }
+
+.comment-edit-submit {
+ height: 22px;
+ background-color: #555753;
+ color: #eeeeec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 0; }
+
+/**
+ * item text style
+ */
+
+.wall-item-body code {
+ display: block;
+ padding: 0 0 10px 5px;
+ border-color: #ccc;
+ border-style: solid;
+ border-width: 1px 1px 1px 10px;
+ background: #eee;
+ color: #444;
+ width: 95%; }
+
+/**
+ * profile
+ */
+
+div {
+ &[id$="text"] {
+ font-weight: bold;
+ border-bottom: 1px solid #ccc; }
+ &[id$="wrapper"] {
+ height: 100%;
+ margin-bottom: 1em;
+ br {
+ clear: left; } } }
+
+[id$="-end"], [class$="end"] {
+ clear: both;
+ margin: 0 0 10px 0; }
+
+#advanced-profile-with {
+ margin-left: 200px; }
+
+/**
+ * photos
+ */
+
+.photos {
+ height: auto;
+ overflow: auto; }
+
+#photo-top-links {
+ margin-bottom: 30px; }
+
+.photo-album-image-wrapper, .photo-top-image-wrapper {
+ float: left;
+ -moz-box-shadow: 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ background-color: #eee;
+ color: #111;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ padding-bottom: 30px;
+ position: relative;
+ margin: 0 10px 10px 0; }
+
+#photo-photo {
+ max-width: 100%;
+ img {
+ max-width: 100%; } }
+
+.photo-top-image-wrapper a:hover, #photo-photo a:hover, .photo-album-image-wrapper a:hover {
+ border-bottom: 0; }
+
+.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-top-album-name {
+ position: absolute;
+ bottom: 0;
+ padding: 0 5px; }
+
+.caption {
+ position: absolute;
+ bottom: 0;
+ margin: 0 5px; }
+
+#photo-photo {
+ position: relative;
+ float: left; }
+
+#photo-prev-link, #photo-next-link {
+ position: absolute;
+ width: 30%;
+ height: 100%;
+ background-color: rgba(255, 255, 255, 0.5);
+ opacity: 0;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out;
+ background-position: center center;
+ background-repeat: no-repeat; }
+
+#photo-prev-link {
+ left: 0;
+ top: 0;
+ background-image: url(light/prev.png); }
+
+#photo-next-link {
+ right: 0;
+ top: 0;
+ background-image: url(light/next.png); }
+
+#photo-prev-link a, #photo-next-link a {
+ display: block;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ text-indent: -900000px; }
+
+#photo-prev-link:hover {
+ opacity: 1;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out; }
+
+#photo-next-link {
+ &:hover {
+ opacity: 1;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out; }
+ .icon {
+ display: none; } }
+
+#photo-prev-link .icon {
+ display: none; }
+
+#photos-upload-spacer, #photos-upload-new-wrapper, #photos-upload-exist-wrapper {
+ margin-bottom: 1em; }
+
+#photos-upload-existing-album-text, #photos-upload-newalbum-div {
+ background-color: #555753;
+ color: #eeeeec;
+ padding: 1px; }
+
+#photos-upload-album-select, #photos-upload-newalbum {
+ width: 99%; }
+
+#photos-upload-perms-menu {
+ text-align: right; }
+
+#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
+ float: left;
+ margin-bottom: 25px; }
+
+#photo-edit-link-wrap {
+ margin-bottom: 15px; }
+
+#photo-edit-caption, #photo-edit-newtag {
+ width: 100%; }
+
+#photo-like-div {
+ margin-bottom: 25px; }
+
+#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
+ clear: both; }
+
+#photo-edit-delete-button {
+ margin-left: 200px; }
+
+#photo-edit-end {
+ margin-bottom: 35px; }
+
+#photo-caption {
+ font-size: 110%;
+ font-weight: bold;
+ margin-top: 15px;
+ margin-bottom: 15px; }
+
+/**
+ * message
+ */
+
+.prvmail-text {
+ width: 100%; }
+
+#prvmail-subject {
+ width: 100%;
+ color: #eec;
+ background: #444; }
+
+#prvmail-submit-wrapper {
+ margin-top: 10px; }
+
+#prvmail-submit {
+ float: right;
+ margin-top: 0; }
+
+#prvmail-submit-wrapper div {
+ margin-right: 5px;
+ float: left; }
+
+.mail-list-outside-wrapper {
+ margin-top: 20px; }
+
+.mail-list-sender {
+ float: left; }
+
+.mail-list-detail {
+ margin-left: 90px; }
+
+.mail-list-sender-name {
+ display: inline;
+ font-size: 1.1em; }
+
+.mail-list-date {
+ display: inline;
+ font-size: 0.9em;
+ padding-left: 10px; }
+
+.mail-list-sender-name, .mail-list-date {
+ font-style: italic; }
+
+.mail-list-subject {
+ font-size: 1.2em; }
+
+.mail-list-delete-wrapper {
+ float: right; }
+
+.mail-list-outside-wrapper-end {
+ clear: both;
+ border-bottom: 1px #eec dotted; }
+
+.mail-conv-sender {
+ float: left;
+ margin: 0px 5px 5px 0px; }
+
+.mail-conv-sender-photo {
+ width: 32px;
+ height: 32px; }
+
+.mail-conv-sender-name {
+ float: left; }
+
+.mail-conv-date {
+ float: right; }
+
+.mail-conv-subject {
+ clear: right;
+ font-weight: bold;
+ font-size: 1.2em; }
+
+.mail-conv-body {
+ clear: both; }
+
+.mail-conv-delete-wrapper {
+ margin-top: 5px; }
+
+/**
+ * contacts
+ */
+
+.view-contact-wrapper, .contact-entry-wrapper {
+ float: left;
+ margin: 0 5px 40px 0;
+ width: 120px;
+ height: 120px;
+ padding: 3px;
+ position: relative; }
+
+.contact-direction-wrapper {
+ position: absolute;
+ top: 20px; }
+
+.contact-edit-links {
+ position: absolute;
+ top: 60px; }
+
+.contact-entry-photo-wrapper {}
+
+.contact-entry-photo {
+ margin-left: 20px; }
+
+.contact-entry-name {
+ width: 120px;
+ font-weight: bold;
+ /*overflow: hidden;*/ }
+
+.contact-entry-photo {
+ position: relative; }
+
+.contact-entry-edit-links .icon {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ background-color: #fff; }
+
+#contact-entry-url, [id^="contact-entry-url"] {
+ font-size: smaller;
+ /*overflow: scroll;*/ }
+
+#contact-entry-network, [id^="contact-entry-network"] {
+ font-size: smaller;
+ font-style: italic; }
+
+#contact-edit-banner-name {
+ font-size: 1.5em; }
+
+#contact-edit-photo-wrapper {
+ position: relative;
+ float: left;
+ padding: 20px; }
+
+#contact-edit-direction-icon {
+ position: absolute;
+ top: 60px;
+ left: 0; }
+
+#contact-edit-nav-wrapper {
+ margin-left: 0px; }
+
+#contact-edit-links {
+ margin-top: 23px;
+ ul {
+ list-style-type: none; } }
+
+#contact-drop-links {
+ margin-left: 5px; }
+
+#contact-edit-nav-wrapper .icon {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px; }
+
+#contact-edit-poll-wrapper {
+ margin-left: 0px; }
+
+#contact-edit-last-update-text {
+ margin-bottom: 15px; }
+
+#contact-edit-last-updated {
+ font-weight: bold; }
+
+#contact-edit-poll-text {
+ display: inline; }
+
+#contact-edit-info_tbl, #contact-edit-info_parent, .mceLayout {
+ width: 100%; }
+
+#contact-edit-end {
+ clear: both;
+ margin-bottom: 65px; }
+
+.contact-photo-menu-button {
+ position: absolute;
+ background-image: url("light/photo-menu.jpg");
+ background-position: top left;
+ background-repeat: no-repeat;
+ margin: 0px;
+ padding: 0px;
+ width: 16px;
+ height: 16px;
+ top: 64px;
+ left: 0px;
+ overflow: hidden;
+ text-indent: 40px;
+ display: none; }
+
+.contact-photo-menu {
+ width: auto;
+ border: 2px solid #444;
+ background: #eee;
+ color: #111;
+ position: absolute;
+ left: 0px;
+ top: 90px;
+ display: none;
+ z-index: 10000;
+ ul {
+ margin: 0px;
+ padding: 0px;
+ list-style: none; }
+ li a {
+ display: block;
+ padding: 2px;
+ &:hover {
+ color: #fff;
+ background: #3465A4;
+ text-decoration: none; } } }
+
+/**
+ * register, settings & profile forms
+ */
+
+.openid {}
+
+#id_openid_url {
+ background: url(light/login-bg.gif) no-repeat;
+ background-position: 0 50%;
+ padding-left: 18px; }
+
+#settings-nickname-desc {
+ background-color: #eee;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ padding: 5px;
+ color: #111; }
+
+#settings-default-perms {
+ margin-bottom: 20px; }
+
+#register-form div, #profile-edit-form div {
+ clear: both; }
+
+.settings-block {
+ label {
+ clear: left; }
+ input {
+ margin: 10px 5px; } }
+
+/*#register-form label, */
+/*#profile-edit-form label {*/
+/* width: 300px; */
+/* float: left; */
+/*} */
+
+/*#register-form span, */
+/*#profile-edit-form span {*/
+/* color: #555753; */
+/* display: block; */
+/* margin-bottom: 20px; */
+/*} */
+
+#profile-edit-marital-label span {
+ margin: -4px; }
+
+.settings-submit-wrapper, .profile-edit-submit-wrapper {
+ margin: 0 0 30px -3px; }
+
+.profile-edit-side-div {
+ display: none; }
+
+/*.profile-edit-side-div:hover {
+ display: block;
+}
+.profile-edit-side-link {
+ margin: 3px 0px 0px 70px;
+}*/
+
+#profiles-menu-trigger {
+ margin: 0px 0px 0px 25px; }
+
+.profile-listing {
+ float: left;
+ margin: 20px 20px 0px 0px; }
+
+.icon-profile-edit {
+ background: url("light/icons.png") -150px 0px no-repeat;
+ border: 0;
+ cursor: pointer;
+ display: block;
+ float: right;
+ width: 20px;
+ height: 20px;
+ margin: 0 0 -18px;
+ position: absolute;
+ text-decoration: none;
+ top: 113px;
+ right: 260px; }
+
+#profile-edit-links ul {
+ margin: 20px 0;
+ padding: 0;
+ list-style: none; }
+
+.marital {
+ margin-top: 5px; }
+
+#register-sitename {
+ display: inline;
+ font-weight: bold; }
+
+#advanced-expire-popup {
+ background: #2e2f2e;
+ color: #eec; }
+
+#id_ssl_policy {
+ width: 374px; }
+
+#theme-preview img {
+ margin: 10px 10px 10px 288px; }
+
+/**
+ * contacts selector
+ */
+
+.group-delete-wrapper {
+ margin: -31px 50px 0 0;
+ float: right; }
+
+/*.group-delete-icon {
+ margin: 0 0 0 10px;
+}*/
+
+#group-edit-submit-wrapper {
+ margin: 0 0 10px 0;
+ display: inline; }
+
+#group-edit-desc {
+ margin: 10px 0px; }
+
+#group-members, #prof-members {
+ height: 200px;
+ overflow: auto;
+ border: 1px solid #555753;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0; }
+
+#group-all-contacts, #prof-all-contacts {
+ height: 200px;
+ overflow: auto;
+ border: 1px solid #555753;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px; }
+
+#group-members h3, #group-all-contacts h3, #prof-members h3, #prof-all-contacts h3 {
+ color: #eeeeec;
+ background-color: #555753;
+ margin: 0;
+ padding: 5px; }
+
+#group-separator, #prof-separator {
+ display: none; }
+
+/**
+ * profile
+ */
+
+#cropimage-wrapper {
+ float: left; }
+
+#crop-image-form {
+ clear: both; }
+
+/**
+ * intros
+ */
+
+.intro-wrapper {
+ margin-top: 20px; }
+
+.intro-fullname {
+ font-size: 1.1em;
+ font-weight: bold; }
+
+.intro-desc {
+ margin-bottom: 20px;
+ font-weight: bold; }
+
+.intro-note {
+ padding: 10px; }
+
+.intro-end {
+ padding: 30px; }
+
+.intro-form {
+ float: left; }
+
+.intro-approve-form, .intro-approve-as-friend-end {
+ clear: both; }
+
+.intro-submit-approve, .intro-submit-ignore {
+ margin-right: 20px; }
+
+.intro-submit-approve {
+ margin-top: 15px; }
+
+.intro-approve-as-friend-label, .intro-approve-as-fan-label, .intro-approve-as-friend, .intro-approve-as-fan {
+ float: left; }
+
+.intro-form-end {
+ clear: both;
+ margin-bottom: 10px; }
+
+.intro-approve-as-friend-desc {
+ margin-top: 10px; }
+
+.intro-approve-as-end {
+ clear: both;
+ margin-bottom: 10px; }
+
+.intro-end, .clear {
+ clear: both; }
+
+/**
+ * events
+ */
+
+.eventcal {
+ float: left;
+ font-size: 20px; }
+
+.event {
+ background: #2e2f2e; }
+
+.vevent {
+ border: 1px solid #ccc;
+ .event-description, .event-location, .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;
+ font-size: smaller; }
+
+.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: monospace; }
+
+.today {
+ font-weight: bold;
+ color: #FF0000; }
+
+#event-start-text, #event-finish-text {
+ margin-top: 10px;
+ margin-bottom: 5px; }
+
+#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text, #event-share-checkbox {
+ float: left; }
+
+#event-datetime-break {
+ margin-bottom: 10px; }
+
+#event-nofinish-break, #event-adjust-break, #event-share-break {
+ clear: both; }
+
+#event-desc-text, #event-location-text {
+ margin-top: 10px;
+ margin-bottom: 5px; }
+
+#event-submit {
+ margin-top: 10px; }
+
+.body-tag {
+ margin: 10px 0;
+ opacity: 0.5;
+ &:hover {
+ opacity: 1.0 !important; } }
+
+.filesavetags, .categorytags {
+ margin: 20px 0;
+ opacity: 0.5; }
+
+.filesavetags:hover, .categorytags:hover {
+ margin: 20px 0;
+ opacity: 1.0 !important; }
+
+.item-select {
+ opacity: 0.1;
+ margin: 5px 0 0 6px !important;
+ &:hover {
+ opacity: 1; } }
+
+.checkeditem {
+ opacity: 1; }
+
+#item-delete-selected {
+ margin-top: 30px; }
+
+/* was tired of having no way of moving it around, so
+* here's a little 'hook' to do so */
+
+.delete-checked {
+ position: absolute;
+ left: 35px;
+ margin-top: 20px; }
+
+#item-delete-selected-end {
+ clear: both; }
+
+#item-delete-selected-icon {
+ float: left;
+ margin-right: 5px; }
+
+#item-delete-selected-desc {
+ float: left;
+ margin-right: 5px;
+ &:hover {
+ text-decoration: underline; } }
+
+.fc-state-highlight {
+ background: #eec;
+ color: #2e2f2e; }
+
+/**
+ * directory
+ */
+
+.directory-item {
+ float: left;
+ margin: 0 5px 4px 0;
+ padding: 3px;
+ width: 180px;
+ height: 250px;
+ position: relative; }
+
+/**
+ * sidebar
+ */
+
+#group-sidebar {
+ margin-bottom: 10px; }
+
+.group-selected, .nets-selected, .fileas-selected {
+ padding: 3px;
+ color: #111;
+ background: #f8f8f8;
+ font-weight: bold; }
+
+.group-selected:hover, .nets-selected:hover, .fileas-selected:hover {
+ color: #111; }
+
+.groupsideedit {
+ margin-right: 10px; }
+
+#sidebar-group-ul {
+ padding-left: 0; }
+
+#sidebar-group-list {
+ margin: 0 0 5px 0;
+ ul {
+ list-style-type: none;
+ list-style-position: inside; }
+ li {
+ margin-top: 10px; }
+ .icon {
+ display: inline-block;
+ height: 12px;
+ width: 12px; } }
+
+#sidebar-new-group {
+ margin: auto;
+ display: inline-block;
+ color: #efefef;
+ text-decoration: none;
+ text-align: center; }
+
+#peoplefind-sidebar form {
+ margin-bottom: 10px; }
+
+#sidebar-new-group {
+ &:hover {
+ /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
+ /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
+ /*background-color: #b20202;*/ }
+ &:active {
+ position: relative;
+ top: 1px; } }
+
+#side-peoplefind-url {
+ background-color: #e5e0cf;
+ color: #666;
+ border: 1px 666 solid;
+ margin-right: 3px;
+ width: 75%;
+ &:hover, &:focus {
+ background-color: #efefef;
+ color: #222;
+ border: 1px 333 solid; } }
+
+.nets-ul {
+ list-style-type: none;
+ padding-left: 0px;
+ li {
+ margin: 10px 0 0; } }
+
+.nets-link, .nets-all {
+ margin-left: 0px; }
+
+#netsearch-box {
+ margin-top: 20px;
+ width: 150px;
+ #search-submit {
+ margin: 5px 0px 0px 0px; } }
+
+/**
+ * admin
+ */
+
+#pending-update {
+ float: right;
+ color: #fff;
+ font-weight: bold;
+ background-color: #ff0000;
+ padding: 0 .3em; }
+
+.admin {
+ &.linklist {
+ border: 0;
+ padding: 0; }
+ &.link {
+ list-style-position: inside; } }
+
+#adminpage {
+ color: #111;
+ background: transparent;
+ margin: 5px;
+ padding: 10px;
+ dl {
+ clear: left;
+ margin-bottom: 2px;
+ padding-bottom: 2px;
+ border-bottom: 1px solid #000; }
+ dt {
+ width: 250px;
+ float: left;
+ font-weight: bold; }
+ dd {
+ margin-left: 250px; }
+ h3 {
+ border-bottom: 1px solid #ccc; }
+ .submit {
+ clear: left; }
+ #pluginslist {
+ margin: 0;
+ padding: 0; }
+ .plugin {
+ list-style: none;
+ display: block;
+ border: 1px solid #888;
+ padding: 1em;
+ margin-bottom: 5px;
+ clear: left; }
+ .toggleplugin {
+ float: left;
+ margin-right: 1em; }
+ table {
+ width: 100%;
+ border-bottom: 1px solid #000;
+ margin: 5px 0;
+ th {
+ text-align: left; } }
+ td .icon {
+ float: left; }
+ table {
+ users img {
+ width: 16px;
+ height: 16px; }
+ tr:hover {
+ /*color: ;*/
+ background-color: #bbc7d7; } }
+ .selectall {
+ text-align: right; }
+ #users a {
+ /*color: #;*/
+ text-decoration: underline; } }
+
+#users .name {
+ color: #eec; }
+
+/**
+ * form fields
+ */
+
+.field {
+ /*margin-bottom: 10px;*/
+ /*padding-bottom: 10px;*/
+ overflow: auto;
+ /* width: 100%;*/
+ label {
+ width: 38%;
+ display: inline-block;
+ font-size: 1.077em;
+ margin: 0 10px 1em 0;
+ border: 1px #999 solid;
+ padding: 5px;
+ background: #ccc;
+ color: #111; } }
+
+.field .onoff {
+ float: right;
+ margin: 0 330px 0 auto;
+ width: 80px;
+ a {
+ display: block;
+ border: 1px solid #666;
+ padding: 3px 6px 4px 10px;
+ height: 16px;
+ text-decoration: none; }
+ .on {
+ background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999999;
+ color: #111;
+ text-align: left; }
+ .off {
+ background: url("../../../images/onoff.jpg") no-repeat 2px 1px #cccccc;
+ color: #333;
+ text-align: right; } }
+
+.hidden {
+ display: none !important; }
+
+.field textarea {
+ width: 80%;
+ height: 100px; }
+
+.field_help {
+ display: block;
+ margin-left: 297px;
+ color: #666; }
+
+.field.radio .field_help {
+ margin-left: 297px; }
+
+label {
+ width: 38%;
+ display: inline-block;
+ font-size: 1.077em;
+ margin: 0 10px 1em 0;
+ border: 1px #999 solid;
+ padding: 5px;
+ background: #ccc;
+ color: #111; }
+
+input {
+ width: 250px;
+ height: 25px;
+ border: 1px #999 solid;
+ &[type="text"], &[type="password"], &[type="search"] {
+ width: 250px;
+ height: 25px;
+ border: 1px #999 solid; }
+ &[type="checkbox"], &[type="radio"] {
+ border: 1px #999 solid;
+ margin: 0 0 0 0;
+ height: 15px;
+ width: 15px; }
+ &[type="submit"], &[type="button"] {
+ background-color: #555753;
+ border: 2px outset #444;
+ border-radius: 5px;
+ box-shadow: 1px 3px 4px 0 #111;
+ color: #eeeeec;
+ cursor: pointer;
+ font-weight: bold;
+ width: auto;
+ text-shadow: 1px 1px #111;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px; }
+ &[type="submit"]:active, &[type="button"]:active {
+ box-shadow: 0 0 0 0; } }
+
+
+/*
+ * update
+ */
+
+.popup {
+ width: 100%;
+ height: 100%;
+ top: 0px;
+ left: 0px;
+ position: absolute;
+ display: none;
+ .background {
+ background-color: #000;
+ opacity: 0.5;
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0px;
+ left: 0px; }
+ .panel {
+ top: 25%;
+ left: 25%;
+ width: 50%;
+ height: 50%;
+ padding: 1em;
+ position: absolute;
+ border: 4px solid #000000;
+ background-color: #FFFFFF; } }
+
+#panel {
+ z-index: 100; }
+
+.grey {
+ color: grey; }
+
+.orange {
+ color: orange; }
+
+.red {
+ color: red; }
+
+.popup .panel {
+ .panel_text {
+ display: block;
+ overflow: auto;
+ height: 80%; }
+ .panel_in {
+ width: 100%;
+ height: 100%;
+ position: relative; }
+ .panel_actions {
+ width: 100%;
+ bottom: 4px;
+ left: 0px;
+ position: absolute; } }
+
+.panel_text .progress {
+ width: 50%;
+ overflow: hidden;
+ height: auto;
+ border: 1px solid #cccccc;
+ margin-bottom: 5px;
+ span {
+ float: right;
+ display: block;
+ width: 25%;
+ background-color: #eeeeee;
+ text-align: right; } }
+
+/**
+ * OAuth
+ */
+
+.oauthapp {
+ height: auto;
+ overflow: auto;
+ border-bottom: 2px solid #cccccc;
+ padding-bottom: 1em;
+ margin-bottom: 1em;
+ img {
+ float: left;
+ width: 48px;
+ height: 48px;
+ margin: 10px;
+ &.noicon {
+ background-image: url("../../../images/icons/48/plugin.png");
+ background-position: center center;
+ background-repeat: no-repeat; } }
+ a {
+ float: left; } }
+
+/**
+ * icons
+ */
+
+.iconspacer {
+ display: block;
+ width: 16px;
+ height: 16px; }
+
+.icon {
+ display: block;
+ width: 20px;
+ height: 20px;
+ background: url(light/icons.png) no-repeat;
+ border: 0;
+ text-decoration: none;
+ border-radius: 5px;
+ &:hover {
+ border: 0;
+ text-decoration: none; } }
+
+.editicon {
+ display: inline-block;
+ width: 21px;
+ height: 21px;
+ background: url(light/editicons.png) no-repeat;
+ border: 0;
+ text-decoration: none; }
+
+.shadow {
+ box-shadow: 2px 2px 5px 2px #111;
+ &:active, &:focus, &:hover {
+ box-shadow: 0 0 0 0; } }
+
+.editicon:hover {
+ border: 0; }
+
+.boldbb {
+ background-position: 0px 0px;
+ &:hover {
+ background-position: -22px 0px; } }
+
+.italicbb {
+ background-position: 0px -22px;
+ &:hover {
+ background-position: -22px -22px; } }
+
+.underlinebb {
+ background-position: 0px -44px;
+ &:hover {
+ background-position: -22px -44px; } }
+
+.quotebb {
+ background-position: 0px -66px;
+ &:hover {
+ background-position: -22px -66px; } }
+
+.codebb {
+ background-position: 0px -88px;
+ &:hover {
+ background-position: -22px -88px; } }
+
+.imagebb {
+ background-position: -44px 0px;
+ &:hover {
+ background-position: -66px 0px; } }
+
+.urlbb {
+ background-position: -44px -22px;
+ &:hover {
+ background-position: -66px -22px; } }
+
+.videobb {
+ background-position: -44px -44px;
+ &:hover {
+ background-position: -66px -44px; } }
+
+.icon {
+ &.drop, &.drophide, &.delete {
+ float: left;
+ margin: 0 2px; }
+ &.s22 {
+ &.delete {
+ display: block;
+ background-position: -110px 0; }
+ &.text {
+ padding: 10px 0px 0px 25px;
+ width: 200px; } }
+ &.text {
+ text-indent: 0px; }
+ &.s16 {
+ min-width: 16px;
+ height: 16px; } }
+
+.s16 .add {
+ background: url("../../../images/icons/16/add.png") no-repeat; }
+
+.add {
+ margin: 0px 5px; }
+
+.article {
+ background-position: -50px 0; }
+
+.audio {
+ background-position: -70px 0; }
+
+.block {
+ background-position: -90px 0px; }
+
+.drop, .delete {
+ background-position: -110px 0; }
+
+.drophide {
+ background-position: -130px 0; }
+
+.edit {
+ background-position: -150px 0; }
+
+.camera {
+ background-position: -170px 0; }
+
+.dislike {
+ background-position: -190px 0; }
+
+.file-as {
+ background-position: -230px -60px; }
+
+.like {
+ background-position: -211px 0; }
+
+.link {
+ background-position: -230px 0; }
+
+.globe, .location {
+ background-position: -50px -20px; }
+
+.noglobe, .nolocation {
+ background-position: -70px -20px; }
+
+.no {
+ background-position: -90px -20px; }
+
+.pause {
+ background-position: -110px -20px; }
+
+.play {
+ background-position: -130px -20px; }
+
+.pencil {
+ background-position: -151px -18px; }
+
+.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; }
+
+.unlock {
+ background-position: -88px -40px; }
+
+.video {
+ background-position: -110px -40px; }
+
+.attach {
+ background-position: -190px -40px; }
+
+.language {
+ background-position: -210px -40px; }
+
+.starred {
+ background-position: -130px -60px; }
+
+.unstarred {
+ background-position: -150px -60px; }
+
+.tagged {
+ background-position: -170px -60px; }
+
+.on {
+ background-position: -50px -60px; }
+
+.off {
+ background-position: -70px -60px; }
+
+.prev {
+ background-position: -90px -60px; }
+
+.next {
+ background-position: -110px -60px; }
+
+.icon.dim {
+ opacity: 0.3; }
+
+#pause {
+ position: fixed;
+ bottom: 40px;
+ right: 30px; }
+
+.border {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ &:hover {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px; } }
+
+.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 0; }
+
+.type-audio {
+ background-position: -40px 0; }
+
+.type-text {
+ background-position: -60px 0px; }
+
+.type-unkn {
+ background-position: -80px 0; }
+
+/**
+ * footer
+ */
+
+.cc-license {
+ margin-top: 100px;
+ font-size: 0.7em; }
+
+footer {
+ display: block;
+ /*margin: 50px 20%;*/
+ clear: both; }
+
+#profile-jot-text {
+ height: 20px;
+ color: #666;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ width: 99.5%; }
+
+/**
+ * acl
+ */
+
+#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
+ display: block !important;
+ background: #eec;
+ color: #2e2f2e; }
+
+#acl-wrapper {
+ width: 660px;
+ margin: 0 auto; }
+
+#acl-search {
+ float: right;
+ background: white url("../../../images/search_18.png") no-repeat right center;
+ padding-right: 20px;
+ margin: 6px;
+ color: #111; }
+
+#acl-showall {
+ float: left;
+ display: block;
+ width: auto;
+ height: 18px;
+ background: #eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;
+ padding: 7px 10px 7px 30px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ color: #999;
+ margin: 5px 0;
+ &.selected {
+ color: #000;
+ background: #ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat; } }
+
+#acl-list {
+ height: 210px;
+ border: 1px solid #ccc;
+ clear: both;
+ margin-top: 30px;
+ overflow: auto; }
+
+/*#acl-list-content {
+}*/
+
+.acl-list-item {
+ border: 1px solid #ccc;
+ display: block;
+ float: left;
+ height: 110px;
+ margin: 3px 0 5px 5px;
+ width: 120px;
+ img {
+ width: 22px;
+ height: 22px;
+ float: left;
+ margin: 5px 5px 20px; }
+ p {
+ height: 12px;
+ font-size: 10px;
+ margin: 0 0 22px;
+ padding: 2px 0 1px; }
+ a {
+ background: #ccc 3px 3px no-repeat;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 2px;
+ border-radius: 2px;
+ clear: both;
+ font-size: 10px;
+ display: block;
+ width: 55px;
+ height: 20px;
+ color: #999;
+ margin: 5px auto 0;
+ padding: 0 3px;
+ text-align: center;
+ vertical-align: middle; } }
+
+#acl-wrapper a:hover {
+ text-decoration: none;
+ color: #000;
+ border: 0; }
+
+.acl-button-show {
+ background-image: url('../../../images/show_off.png');
+ margin: 0 auto; }
+
+.acl-button-hide {
+ background-image: url('../../../images/hide_off.png');
+ margin: 0 auto; }
+
+.acl-button-show.selected {
+ color: #000;
+ background-color: #9ade00;
+ background-image: url(../../../images/show_on.png); }
+
+.acl-button-hide.selected {
+ color: #000;
+ background-color: #ff4141;
+ background-image: url(../../../images/hide_on.png); }
+
+.acl-list-item {
+ &.groupshow {
+ border-color: #9ade00; }
+ &.grouphide {
+ border-color: #ff4141; } }
+
+/** /acl **/
+
+/* autocomplete popup */
+
+.acpopup {
+ max-height: 175px;
+ max-width: 42%;
+ background-color: #555753;
+ color: #fff;
+ overflow: auto;
+ z-index: 100000;
+ border: 1px solid #cccccc; }
+
+.acpopupitem {
+ background-color: #555753;
+ padding: 4px;
+ clear: left;
+ img {
+ float: left;
+ margin-right: 4px; }
+ &.selected {
+ color: #2e3436;
+ background-color: #eeeeec; } }
+
+.qcomment-wrapper {
+ padding: 0px;
+ margin: 5px 5px 5px 81%; }
+
+.qcomment {
+ opacity: 0.5;
+ &:hover {
+ opacity: 1.0; } }
+
+#network-star-link {
+ margin-top: 10px; }
+
+.network-star {
+ float: left;
+ margin-right: 5px;
+ &.icon.starred {
+ display: inline-block; } }
+
+#fileas-sidebar {}
+
+.fileas-ul {
+ padding: 0; }
+
+/*
+ * addons theming
+ */
+
+#sidebar-page-list {
+ ul {
+ padding: 0;
+ margin: 5px 0; }
+ li {
+ list-style: none; } }
+
+#jappix_mini {
+ margin-left: 130px;
+ position: fixed;
+ bottom: 0;
+ right: 175px !important;
+ /* override the jappix css */
+ z-index: 999; }
+
+/* media stuff */
+@media handheld {
+ body {
+ font-size: 15pt; } }
diff --git a/view/theme/dispy/tag.png b/view/theme/dispy/light/tag.png
similarity index 100%
rename from view/theme/dispy/tag.png
rename to view/theme/dispy/light/tag.png
diff --git a/view/theme/dispy/light/theme.php b/view/theme/dispy/light/theme.php
new file mode 100644
index 000000000..2b37c0671
--- /dev/null
+++ b/view/theme/dispy/light/theme.php
@@ -0,0 +1,32 @@
+ Dispy: Light, Spartan, Sleek, and Functional Dispy Dark: Dark, Spartan, Sleek, and Functional
+ * Version: 1.2
+ * Author: Simon
+ * Maintainer: Simon
+ * Screenshot: Screenshot
+ */
+
+$a = get_app();
+$a->theme_info = array(
+ 'family' => 'dispy',
+ 'name' => 'light',
+ 'version' => '1.2'
+);
+
+function dispy_light_init(&$a) {
+
+ /** @purpose set some theme defaults
+ */
+ $cssFile = null;
+ $colour = false;
+ $colour = 'light';
+
+ // custom css
+ if (!is_null($cssFile)) {
+ $a->page['htmlhead'] .= sprintf(' ', $cssFile);
+ }
+}
+
diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css
index cf3b83cfa..3ae667003 100644
--- a/view/theme/dispy/style.css
+++ b/view/theme/dispy/style.css
@@ -1,3177 +1,518 @@
-/*
- * dispy
- *
- * maintainer: simon
- * author: unknown
- *
- */
-
-/* from html5boilerplate */
-
-/* these are to tell browsers they should be displayed a certain way */
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-audio,
-canvas,
-video,
-time {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-audio:not([controls]) {
- display: none;
-}
-[hidden] {
- display: none;
-}
-
-/*
- * Base
- */
-
-/*
- * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
- * 2. Force vertical scrollbar in non-IE
- * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
- */
-
-html {
- font-size: 100%;
- overflow-y: scroll;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-body {
- margin: 0;
- font-size: 16px;
- line-height: 1.1em;
-}
-body,
-button,
-input,
-select,
-textarea {
- font-family: sans-serif;
- color: #222;
- background-color: #e8e8e8;
-}
-select {
- border: 1px #555 dotted;
- padding: 3px;
- margin: 3px;
- color: #222;
- background: #e8e8e8;
-}
-option {
- padding: 3px;
- color: #222;
- background: #e8e8e8;
-}
-option[selected="selected"] {
- color: #111;
- background: #cca;
-}
-ul, ol {
- padding: 0;
-}
-/* remember to define focus styles! */
-:focus {
- outline: 0;
-}
-[disabled="disabled"] {
- background: #ddd;
- color: #333;
-}
-
-/* remember to highlight inserts somehow! */
-ins {
- background-color: #ff9;
- color: #000;
- text-decoration: none;
-}
-mark {
- background-color: #ff9;
- color: #000;
- font-style: italic;
- font-weight: bold;
-}
-/* Redeclare monospace font family: h5bp.com/j */
-pre, code, kbd, samp, .wall-item-body code {
- font-family: monospace, monospace;
- _font-family: monospace;
- font-size: 1em; }
-
-/* Improve readability of pre-formatted text in all browsers */
-pre, .wall-item-body code {
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-q {
- quotes: none;
-}
-q:before, q:after {
- content: "";
- content: none;
-}
-small {
- font-size: 85%;
-}
-
-/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
-sub, sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-img {
- border: 0 none;
- /*vertical-align: middle;*/
-}
-a {
- color: #3465a4;
- text-decoration: none;
- margin-bottom: 1px;
-}
-a:hover img {
- text-decoration: none;
-}
-blockquote {
- background: #eee;
- color: #111;
- text-indent: 5px;
- padding: 5px;
- border: 1px #aaa solid;
- border-radius: 5px;
-}
-a:hover {
- color: #729fcf;
- border-bottom: 1px dotted #729fcf;
-}
-.required {
- display: inline;
- color: #f00;
- font-size: 16px;
- font-weight: bold;
- margin: 3px;
-}
-.fakelink, .lockview {
- color: #3465a4;
- cursor: pointer;
-}
-.fakelink:hover {
- color: #729fcf;
-}
-.smalltext {
- font-size: 0.7em;
-}
-#panel {
- position: absolute;
- font-size: 0.8em;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 1px solid #fff;
- background-color: #2e3436;
- color: #eeeeec;
- padding: 1em;
-}
-.pager {
- margin-top: 60px;
- display: block;
- clear: both;
- text-align: center;
-}
-.pager span {
- padding: 4px;
- margin: 4px;
-}
-.pager_current {
- background-color: #729fcf;
- color: #fff;
-}
-
-
-/**
- * global
- */
-/* .tool .action */
-.action {
- margin: 5px 0;
-}
-.tool {
- margin: 5px 0;
- list-style: none;
-}
-#articlemain {
- width: 100%;
- height: 100%;
- margin: 0 auto;
-}
-
-
-/**
- * login
- */
-#asidemain .field {
- overflow: hidden;
- width: 200px;
-}
-#login-extra-links {
- overflow: auto !important;
- padding-top: 60px !important;
- width: 100% !important;
-}
-#login-extra-links a {
- margin-right: 20px;
-}
-#login_standard {
- display: block !important;
- float: none !important;
- height: 100% !important;
- position: relative !important;
- width: 100% !important;
-}
-#login_standard .field label {
- width: 200px !important;
-}
-#login_standard input, #login_standard input[type="text"] {
- margin: 0 0 8px !important;
- width: 210px !important;
-}
-#login-submit-wrapper {
- margin: 0 !important;
-}
-#login-submit-button {
- margin-left: 0px !important;
-}
-#asidemain #login_openid {
- position: relative !important;
- float: none !important;
- margin-left: 0px !important;
- height: auto !important;
- width: 200px !important;
-}
-#login_openid #id_openid_url {
- width: 180px !important;
- overflow: hidden !important;
-}
-#login_openid label {
- width: 180px !important;
-}
-
-
-/**
- * nav
- */
-nav {
- height: 60px;
- background-color: #2e3436;
- color: #eeeeec;
- position: relative;
- padding: 20px 20px 10px 95px;
-}
-nav a {
- text-decoration: none;
- color: #eeeeec;
- border: 0px;
-}
-nav a:hover {
- text-decoration: none;
- color: #eeeeec;
- border: 0px;
-}
-nav #banner {
- display: block;
- position: absolute;
- left: 51px;
- top: 25px;
-}
-nav #banner #logo-text a {
- font-size: 40px;
- font-weight: bold;
- margin-left: 3px;
-}
-ul#user-menu-popup {
- display: none;
- position: absolute;
- background-color: #555753;
- width: 100%;
- padding: 10px 0px;
- margin: 0px;
- top: 20px;
- left: 0;
- -webkit-border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- border-radius: 0 0 5px 5px;
- box-shadow: 5px 10px 10px 0 #111;
- z-index: 10000;
-}
-ul#user-menu-popup li {
- display: block;
-}
-ul#user-menu-popup li a {
- display: block;
- padding: 5px;
-}
-ul#user-menu-popup li a:hover {
- color: #2e3436;
- background-color: #eeeeec;
-}
-ul#user-menu-popup li a.nav-sep {
- border-top: 1px solid #eeeeec;
-}
-nav .nav-link {
- display: inline-block;
- width: 22px;
- height: 22px;
- overflow: hidden;
- margin: 0px 5px 5px;
- text-indent: 50px;
- background: transparent url(icons.png) 0 0 no-repeat;
-}
-#nav-apps-link {
- background-position: 0 -66px;
-}
-#nav-apps-link:hover {
- background-position: -22px -66px;
-}
-#nav-community-link {
- background-position: 0 -22px;
-}
-#nav-community-link:hover {
- background-position: -22px -22px;
-}
-#nav-contacts-link {
- background-position: 0 -22px;
-}
-#nav-contacts-link:hover {
- background-position: -22px -22px;
-}
-#nav-directory-link {
- background-position: -44px -154px;
-}
-#nav-directory-link:hover {
- background-position: -66px -154px;
-}
-#nav-help-link {
- background-position: 0 -110px;
-}
-#nav-help-link:hover {
- background-position: -22px -110px;
-}
-#nav-home-link {
- background-position: -44px -132px;
-}
-#nav-home-link:hover {
- background-position: -66px -132px;
-}
-#nav-intro-link {
- background-position: 0px -190px;
-}
-#nav-intro-link:hover {
- background-position: -44px -190px;
-}
-#nav-login-link {
- background-position: 0 -88px;
-}
-#nav-login-link:hover {
- background-position: -22px -88px;
-}
-#nav-logout-link {
- background-position: 0 -88px;
-}
-#nav-logout-link:hover {
- background-position: -22px -88px;
-}
-#nav-messages-link {
- background-position: -44px -88px;
-}
-#nav-messages-link:hover {
- background-position: -66px -88px;
-}
-#nav-notify-link, #nav-notifications-linkmenu {
- background-position: -44px -110px;
-}
-#nav-notify-link:hover {
- background-position: -66px -110px;
-}
-#nav-network-link {
- background-position: 0px -177px;
-}
-#nav-network-link:hover {
- background-position: -22px -177px;
-}
-#nav-search-link {
- background-position: 0 -44px;
-}
-#nav-search-link:hover {
- background-position: -22px -44px;
-}
-#profile-link,
-#profile-title,
-#wall-image-upload,
-#wall-file-upload,
-#profile-attach-wrapper,
-#profile-audio,
-#profile-link,
-#profile-location,
-#profile-nolocation,
-#profile-title,
-#jot-title,
-#profile-upload-wrapper,
-#profile-video,
-#profile-jot-submit,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.icon, .hover, .focus, .pointer {
- cursor: pointer;
-}
-
-
-/* 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;
-}
-#nav-notifications-menu {
- margin: 30px 0 0 -20px;
- width: 275px;
- max-height: 300px;
- overflow-y: auto;
- font-size: 9pt;
-}
-#nav-notifications-menu .contactname {
- font-weight: bold;
- font-size: 0.9em;
-}
-#nav-notifications-menu img {
- float: left;
- margin-right: 5px;
-}
-#nav-notifications-menu .notif-when {
- font-size: 0.8em;
- display: block;
-}
-#nav-notifications-menu li {
- word-wrap: normal;
- border-bottom: 1px solid #000;
-}
-#nav-notifications-menu li:hover {
- color: black;
-}
-#nav-notifications-menu a:hover {
- color: black;
- text-decoration: underline;
-}
-nav #nav-notifications-linkmenu.on .icon.s22.notify,
-nav #nav-notifications-linkmenu.selected .icon.s22.notify {
- background-image: url("../../../images/icons/22/notify_on.png");
-}
-.show {
- display: block;
-}
-#notifications {
- height: 20px;
- width: 170px;
- position: absolute;
- top: -19px;
- left: 4px;
-}
-#nav-floater {
- position: fixed;
- top: 20px;
- right: 1%;
- padding: 5px;
- background: #2e3436;
- color: transparent;
- border-radius: 5px;
- z-index: 100;
- width: 300px;
- height: 60px;
-}
-#nav-buttons {
- clear: both;
- list-style: none;
- padding: 0px;
- margin: 0px;
- height: 25px;
-}
-#nav-buttons > li {
- padding: 0;
- display: inline-block;
- margin: 0px -4px 0px 0px;
-}
-.floaterflip {
- display: block;
- position: fixed;
- z-index: 110;
- top: 56px;
- right: 19px;
- width: 22px;
- height: 22px;
- overflow: hidden;
- margin: 0px;
- background: transparent url(icons.png) -190px -60px no-repeat;
-}
-.search-box {
- display: inline-block;
- margin: 5px;
- position: fixed;
- right: 0px;
- bottom: 0px;
- z-index: 100;
- background: #1d1f1d;
- border-radius: 5px;
-}
-#search-text {
- border: 1px #eec solid;
- background: #2e3436;
- color: #eec;
-}
-.search-box #search-text {
- margin: 8px;
- width: 10em;
- height: 14px;
- color: #eec;
-}
-#scrollup {
- position: fixed;
- right: 5px;
- bottom: 40px;
- z-index: 100;
-}
-#scrollup a:hover {
- text-decoration: none;
- border: 0;
-}
-#user-menu {
- box-shadow: 5px 0 10px 0 #111;
- display: block;
- width: 75%;
- margin: 3px 0 0 0;
- position: relative;
- background-color: #555753;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- background: #555753 url("menu-user-pin.jpg") 98% center no-repeat;
- clear: both;
- top: 4px;
- left: 10px;
- padding: 2px;
-}
-#user-menu > a {
- vertical-align: top;
-}
-#user-menu-label {
- font-size: 12px;
- padding: 3px 20px 9px 5px;
- height: 10px;
-}
-.nav-ajax-update, .nav-ajax-left {
- width: 30px;
- height: 19px;
- background: transparent url(notifications.png) 0 0 no-repeat;
- color: #222;
- font-weight: bold;
- font-size: 0.8em;
- padding-top: 0.2em;
- text-align: center;
- float: left;
- margin: 0 -1px 0 3px;
- display: block;
- visibility: hidden;
-}
-.nav-ajax-update.show, .nav-ajax-left.show {
- visibility: visible;
-}
-#net-update {
- background-position: 0px 0px;
-}
-#mail-update {
- background-position: -30px 0;
-}
-#notify-update {
- background-position: -60px 0px;
-}
-#home-update {
- background-position: -90px 0px;
-}
-#intro-update {
- background-position: -120px 0px;
-}
-#lang-select-icon {
- cursor: pointer;
- position: fixed;
- left: 28px;
- bottom: 6px;
- z-index: 10;
-}
-#language-selector {
- position: fixed;
- bottom: 2px;
- left: 52px;
- z-index: 10;
-}
-.menu-popup {
- position: absolute;
- display: none;
- width: 11em;
- background: #ffffff;
- color: #2d2d2d;
- margin: 0px;
- padding: 0px;
- list-style: none;
- border: 3px solid #364e59;
- z-index: 100000;
- -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
- box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
-}
-.menu-popup a {
- display: block;
- color: #2d2d2d;
- padding: 5px 10px;
- text-decoration: none;
-}
-.menu-popup a:hover {
- background-color: #bdcdd4;
-}
-.menu-popup .menu-sep {
- border-top: 1px solid #9eabb0;
-}
-.menu-popup li {
- float: none;
- overflow: auto;
- height: auto;
- display: block;
-}
-.menu-popup li img {
- float: left;
- width: 16px;
- height: 16px;
- padding-right: 5px;
-}
-.menu-popup .empty {
- padding: 5px;
- text-align: center;
- color: #9eabb0;
-}
-.notif-item {
- font-size: small;
-}
-.notif-item a {
- vertical-align: middle;
-}
-.notif-image {
- width: 32px;
- height: 32px;
- padding: 7px 7px 0px 0px;
-}
-.notify-seen {
- background: #ddd;
-}
-
-
-/**
- * sysmsg
- */
-#sysmsg_info {
- position: fixed;
- bottom: 0;
- -moz-box-shadow: 3px 3px 3px 10px 0 #000;
- -webkit-box-shadow: 3px 3px 10px 0 #000;
- box-shadow: 3px 3px 10px 0 #000;
- padding: 10px;
- background-color: #fcaf3e;
- border:2px solid #f8911b;
- border-bottom: 0;
- padding-bottom: 50px;
- z-index: 1000;
-}
-#sysmsg {
- position: fixed;
- bottom: 0;
- -moz-box-shadow: 3px 3px 10px 0 #000;
- -webkit-box-shadow: 3px 3px 10px 0 #000;
- box-shadow: 3px 3px 10px 0 #000;
- padding: 10px;
- background-color: #fcaf3e;
- border: 2px solid #f8911b;
- border-bottom: 0;
- padding-bottom: 50px;
- z-index: 1000;
-}
-#sysmsg_info br,
-#sysmsg br {
- display: block;
- margin: 2px 0px;
- border-top: 1px solid #ccccce;
-}
-
-
-/**
- * aside
- */
-#asidemain {
- float: left;
- font-size: smaller;
- margin: 20px 0 20px 35px;
- width: 25%;
- display: inline;
-}
-/* for now, disappear these */
-#asideright, #asideleft {
- display: none;
-}
-.vcard .fn {
- font-size: 1.7em;
- font-weight: bold;
- border-bottom: 1px solid #729fcf;
- padding-bottom: 3px;
-}
-.vcard #profile-photo-wrapper {
- margin: 20px;
-}
-/* http://css-tricks.com/snippets/css/css-box-shadow/
-* box-shadow:
-* 1. The horizontal offset of the shadow, positive means
-* the shadow will be on the right of the box, a negative
-* offset will put the shadow on the left of the box.
-* 2. The vertical offset of the shadow, a negative one
-* means the box-shadow will be above the box, a
-* positive one means the shadow will be below the box.
-* 3. The blur radius (optional), if set to 0 the shadow
-* will be sharp, the higher the number, the more blurred
-* it will be.
-* 4. The spread radius (optional), positive values increase
-* the size of the shadow, negative values decrease the size.
-* Default is 0 (the shadow is same size as blur).
-* 5. Colo[u]r
-*/
-.vcard #profile-photo-wrapper img {
- box-shadow: 3px 3px 10px 0 #000;
-}
-#asidemain h4 {
- font-size: 1.2em;
-}
-#asidemain #viewcontacts {
- text-align: right;
-}
-.aprofile dt {
- background: transparent;
- color: #666666;
- font-weight: bold;
- box-shadow: 1px 1px 5px 0 #000;
- margin: 15px 0 5px;
- padding-left: 5px;
-}
-#profile-extra-links ul {
- margin-left: 0px;
- padding-left: 0px;
- list-style: none;
-}
-#dfrn-request-link {
- background: #3465A4 url(connect.png) no-repeat 95% center;
- border-radius: 5px 5px 5px 5px;
- color: #fff;
- display: block;
- font-size: 1.2em;
- padding: 0.2em 0.5em;
-}
-#wallmessage-link {
- /*background: #3465A4 url(connect.png) no-repeat 95% center;*/
- /*border-radius: 5px 5px 5px 5px;*/
- color: #eee;
- display: block;
- font-size: 1.2em;
- padding: 0.2em 0.5em;
-}
-#netsearch-box {
- margin: 20px 0px 30px;
- width: 150px;
-}
-#netsearch-box #search-submit {
- margin: 5px 5px 0px 0px;
-}
-.ttright {
- margin: 0px 0px 0px 0px;
-}
-
-
-/**
- * contacts block
- */
-.contact-block-div {
- width: 50px;
- height: 50px;
- float: left;
-}
-.contact-block-textdiv {
- width: 150px;
- height: 34px;
- float: left;
-}
-#contact-block-end {
- clear: both;
-}
-
-
-/**
- * jot
- */
-#jot {
-/*width: 785px;*/
-margin: 10px 0 20px 0px;
-width: 100%;
-}
-#jot #jot-tools {
-margin: 0px;
-padding: 0px;
-height: 35px;
-overflow: none;
-width: 100%;
-/*background-color: #0e232e;*/
-/*border-bottom: 2px solid #9eabb0;*/
-}
-#jot #jot-tools span {
- float: left;
- margin: 10px 20px 2px 0px;
-}
-#jot #jot-tools span a {
- display: block;
-}
-#jot #jot-tools .perms {
- float: right;
- width: 40px;
-}
-#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;
-}
-#jot #jot-title {
- border: 1px solid #ccc;
- margin: 0 0 5px;
- height: 20px;
- width: 90%;
- font-weight: bold;
- border-radius: 5px;
- vertical-align: middle;
-}
-#jot-category {
- margin: 5px 0;
- border-radius: 5px;
- border: 1px #ccc solid;
- color: #666;
- font-size: smaller;
-}
-#jot-category:focus {
- color: #111;
-}
-#jot #character-counter {
- width: 6%;
- float: right;
- text-align: right;
- height: 15px;
- line-height: 20px;
- padding: 2px 20px 5px 0;
-}
-#profile-jot-text_parent {
- box-shadow: 5px 0 10px 0 #111;
-}
-#profile-jot-text_tbl {
- margin-bottom: 10px;
- background: #777;
-}
-#profile-jot-text_ifr {
- width:99.900002% !important;
-}
-#profile-jot-text_toolbargroup {
- background: #777;
-}
-.mceCenter table tr {
- background: #777;
-}
-[id$="jot-text_ifr"] {
- width: 99.900002% !important;
- color: #2e2f2e;
- background: #eec;
-}
-[id$="jot-text_ifr"] .mceContentBody {
- color: #2e2f2e;
- background: #eec;
-}
-.defaultSkin tr.mceFirst {
- background: #777;
-}
-.defaultSkin td.mceFirst {
- background-color: #eec;
-}
-.defaultSkin td.mceLast {
- background-color: #eec;
-}
-.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {
- background-color: #eec;
-}
-.defaultSkin .mceButtonDisabled .mceIcon {
- background-color: #eec;
-}
-#profile-attach-wrapper,
-#profile-audio-wrapper,
-#profile-link-wrapper,
-#profile-location-wrapper,
-#profile-nolocation-wrapper,
-#profile-title-wrapper,
-#profile-upload-wrapper,
-#profile-video-wrapper {
- float: left;
- margin: 0 20px 0 0;
-}
-#profile-rotator-wrapper {
- float: right;
-}
-#profile-jot-tools-end,
-#profile-jot-banner-end {
- clear: both;
-}
-#profile-jot-email-wrapper {
- margin:10px 10% 0;
- border:1px solid #555753;
- border-bottom:0;
-}
-#profile-jot-email-label {
- background-color:#555753;
- color:#ccccce;
- padding:5px;
-}
-#profile-jot-email {
- width:90%;
- margin:5px;
-}
-#profile-jot-networks {
- margin: 0 10%;
- border: 1px solid #555753;
- border-top: 0;
- border-bottom: 0;
- padding: 5px;
-}
-#profile-jot-net {
- margin: 5px 0;
-}
-#jot-preview-link {
- margin: 0 0 0 10px;
- border: 0;
- text-decoration: none;
- float: right;
-}
-.icon-text-preview {
- margin: 0 0 -18px 0;
- display: block;
- width: 20px;
- height: 20px;
- background: url(icons.png) no-repeat -128px -40px;
- border: 0;
- text-decoration: none;
- float: right;
- cursor: pointer;
-}
-#profile-jot-perms {
- float: right;
- background-color: #555753;
- height: 22px;
- width: 20px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- overflow: hidden;
- border: 0px;
- margin: 0 10px 0 10px;
-}
-#profile-jot-plugin-wrapper {
- width: 1px;
- margin: 10px 0 0 0;
- float: right;
-}
-#profile-jot-submit-wrapper {
- float: right;
- width: 100%;
- list-style: none;
- margin: 10px 0 0 0;
- padding: 0;
-}
-#profile-jot-submit {
- height: auto;
- background-color: #555753;
- color: #eeeeec;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 2px outset #222420;
- margin: 0;
- float: right;
- text-shadow: 1px 1px #111;
- width: auto;
-}
-#profile-jot-submit:active {
- box-shadow: 0 0 0 0;
-}
-#jot-perms-icon {
- height: 22px;
- width: 20px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- overflow: hidden;
- border: 0;
-}
-#profile-jot-acl-wrapper {
- margin: 0 10px;
- border: 1px solid #555753;
- border-top: 0;
- display: block !important;
-}
-#group_allow_wrapper,
-#group_deny_wrapper,
-#acl-permit-outer-wrapper {
- width:47%;
- float:left;
-}
-#contact_allow_wrapper,
-#contact_deny_wrapper,
-#acl-deny-outer-wrapper {
- width:47%;
- float:right;
-}
-#acl-permit-text {
- background-color: #555753;
- color: #ccccce;
- padding: 5px;
- float: left;
-}
-#jot-public {
- background-color: #555753;
- color: #ff0000;
- padding: 5px;
- float: left;
-}
-#acl-deny-text {
- background-color: #555753;
- color: #ccccce;
- padding: 5px;
- float: left;
-}
-#acl-permit-text-end,
-#acl-deny-text-end {
- clear: both;
-}
-#jot-title-desc {
- color: #ccc;
-}
-#profile-jot-desc {
- color: #a00;
- margin: 5px 0;
-}
-#jot-title-wrapper {
- margin-bottom: 5px;
-}
-#jot-title-display {
- font-weight: bold;
-}
-.jothidden {
- display: none;
-}
-#jot-preview-content {
- background-color: #ffffe0;
- color: #111;
- border: 1px #aa0 solid;
- border-radius: 5px;
- padding: 3px 3px 6px 10px;
-}
-#jot-preview-content .wall-item-outside-wrapper {
- border: 0;
- border-radius: 0px;
-}
-
-
-/**
- * section
- */
-#sectionmain {
- margin: 20px;
- font-size: 0.8em;
- min-width: 475px;
- width: 67%;
- float: left;
- display: inline;
-}
-
-
-/**
- * tabs
- */
-.tabs {
- list-style: none;
- margin: 10px 0;
- padding: 0;
-}
-.tabs li {
- display: inline;
- font-size: smaller;
- font-weight: bold;
-}
-.tab {
- border: 1px solid #729fcf;
- padding: 4px;
-}
-.tab:hover, .tab.active:hover {
- background: #729fcf;
- color: #eeeeec;
-}
-.tab:active {
- background: #729fcf;
- color: #eeeeec;
-}
-.tab.active {
- background: #729fcf;
- color: #eeeeec;
-}
-.tab.active a {
- color: #729fcf;
-}
-.tab a {
- border: 0;
- text-decoration: none;
-}
-
-
-/**
- * items
- */
-.wall-item-outside-wrapper {
- border: 1px solid #aaa;
- border-radius: 5px;
- box-shadow: 5px 0 10px 0 #888;
-}
-.wall-item-outside-wrapper.comment {
- margin-top: 5px;
-}
-.wall-item-outside-wrapper-end {
- clear: both;
-}
-.wall-item-content-wrapper {
- position: relative;
- padding: 10px;
- width: auto;
-}
-.wall-item-outside-wrapper .wall-item-comment-wrapper {
- /*margin-left: 90px;*/
-}
-.shiny {
- background: #efefdf;
- border-radius: 5px;
-}
-.wall-outside-wrapper .shiny {
- border-radius: 5px;
-}
-.heart {
- color: red;
-}
-.wall-item-content {
- overflow-x: auto;
- margin: 0px 15px 0px 5px;
-}
-/* removing it from here, vs. putting it in .wall-item-content
-* might break things for people. we shall see ;) */
-[id^="tread-wrapper"], [class^="tread-wrapper"] {
- margin: 15px 0 0 0;
- padding: 0px;
- /*overflow-x: auto;*/
-}
-.wall-item-photo-menu {
- display: none;
-}
-.wall-item-photo-menu-button {
- display:none;
- text-indent:-99999px;
- background:#555753 url(menu-user-pin.jpg) no-repeat 75px center;
- position:absolute;
- overflow:hidden;
- height:20px;
- width:90px;
- top:85px;
- left:0;
- -webkit-border-radius:0 0 5px 5px;
- -moz-border-radius:0 0 5px 5px;
- border-radius:0 0 5px 5px;
-}
-.wall-item-info {
- float: left;
- width: 110px;
-}
-.wall-item-photo-wrapper {
- width: 80px;
- height: 80px;
- position: relative;
- padding: 5px;
- background-color: #555753;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-[class^="wall-item-tools"] > *, [class^="wall-item-tools"] > * > * {
- /*margin: 0 0 5px 0;*/
-}
-.wall-item-tools {
- float: right;
- filter: alpha(opacity=35);
- opacity: 0.4;
- -webkit-transition: all 1s ease-in-out;
- -moz-transition: all 1s ease-in-out;
- -o-transition: all 1s ease-in-out;
- -ms-transition: all 1s ease-in-out;
- transition: all 1s ease-in-out;
-}
-.wall-item-tools:hover {
- filter: alpha(opacity=100);
- opacity: 1;
- -webkit-transition: all 1s ease-in-out;
- -moz-transition: all 1s ease-in-out;
- -o-transition: all 1s ease-in-out;
- -ms-transition: all 1s ease-in-out;
- transition: all 1s ease-in-out;
-}
-.wall-item-subtools1 {
- height: 30px;
- list-style: none outside none;
- margin: 20px 0 30px -20px;
- padding: 0;
- width: 30px;
-}
-.wall-item-subtools2 {
- height: 25px;
- list-style: none outside none;
- margin: -75px 0 0 5px;
- padding: 0;
- width: 25px;
-}
-.wall-item-title {
- font-size: 1.2em;
- font-weight: bold;
- margin-bottom: 1em;
-}
-.wall-item-body {
- margin: 20px 20px 10px 0px;
- text-align: left;
- overflow-x: auto;
-}
-.wall-item-lock-wrapper {
- float: right;
- height: 22px;
- margin: 0 -5px 0 0;
- width: 22px;
- opacity: 1;
-}
-.wall-item-dislike,
-.wall-item-like {
- clear: left;
- font-size: 0.8em;
- color: #878883;
- margin: 5px 0 5px 120px;
-}
-.wall-item-author, .wall-item-actions-author {
- clear: left;
- font-size: 0.8em;
- color: #878883;
- margin: 20px 20px 0 110px;
-}
-.wall-item-ago {
- display: inline;
- padding-left: 10px;
-}
-.wall-item-wrapper-end {
- clear:both;
-}
-.wall-item-location {
- margin-top: 15px;
- width: 100px;
- overflow: hidden;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
-}
-.wall-item-location .icon {
- float: left;
-}
-.wall-item-location > a {
- margin-left: 25px;
- font-size: 0.7em;
- display: block;
-}
-.wall-item-location .smalltext {
- margin-left: 25px;
- font-size: 0.7em;
- display: block;
-}
-.wall-item-location > br {
- display: none;
-}
-.wallwall .wwto {
- left: 5px;
- margin: 0;
- position: absolute;
- top: 75px;
- width: 30px;
- z-index: 10001;
- width: 30px;
- height: 30px;
-}
-.wallwall .wwto img {
- width: 30px !important;
- height: 30px !important;
-}
-.wallwall .wall-item-photo-end {
- clear: both;
-}
-.wall-item-arrowphoto-wrapper {
- position: absolute;
- left: 35px;
- top: 80px;
- z-index: 10002;
-}
-.wall-item-photo-menu {
- min-width: 92px;
- border: 2px solid #FFFFFF;
- border-top: 0px;
- background: #555753;
- position: absolute;
- left: -2px; top: 101px;
- display: none;
- z-index: 10003;
- -webkit-border-radius: 0px 5px 5px 5px;
- -moz-border-radius: 0px 5px 5px 5px;
- border-radius: 0px 5px 5px 5px;
-}
-.wall-item-photo-menu ul {
- margin:0px;
- padding: 0px;
- list-style: none;
-}
-.wall-item-photo-menu li a {
- white-space: nowrap;
- display: block;
- padding: 5px 2px;
- color: #eeeeec;
-}
-.wall-item-photo-menu li a:hover {
- color: #555753;
- background: #eeeeec;
-}
-#item-delete-selected {
- overflow: auto;
- width: 100%;
-}
-#connect-services-header {
- margin: 5px 0 0 0;
-}
-#connect-services {
- margin: 5px 0 0 0;
-}
-#extra-help-header {
- margin: 5px 0 0 0;
-}
-#extra-help {
- margin: 5px 0 0 0;
-}
-#postit-header {
- margin: 5px 0 0 0;
-}
-#postit {
- margin: 5px 0 0 0;
-}
-
-
-/**
- * comment
- */
-.ccollapse-wrapper {
- font-size: 0.9em;
- margin-left: 80px;
-}
-
-.wall-item-outside-wrapper.comment {
- margin-left: 80px;
-}
-.wall-item-outside-wrapper.comment .wall-item-photo {
- width: 40px!important;
- height: 40px!important;
-}
-.wall-item-outside-wrapper.comment .wall-item-photo-wrapper {
- width: 40px;
- height: 40px;
-}
-.wall-item-outside-wrapper.comment .wall-item-photo-menu-button {
- width: 50px;
- top: 45px;
- background-position: 35px center;
-}
-.wall-item-outside-wrapper.comment .wall-item-info {
- width: 60px;
-}
-.wall-item-outside-wrapper.comment .wall-item-body {
- margin-left: 10px;
-}
-.wall-item-outside-wrapper.comment .wall-item-author {
- margin-left: 50px;
-}
-
-.wall-item-outside-wrapper.comment .wall-item-photo-menu {
- min-width: 50px;
- top: 60px;
-}
-.comment-wwedit-wrapper {
- /*margin: 30px 0px 0px 80px;*/
-}
-.comment-edit-wrapper {
- border-top: 1px #aaa solid;
-}
-[class^="comment-edit-bb"] {
- list-style: none;
- display: none;
- margin: -40px 0 5px 60px;
- width: 75%;
-}
-[class^="comment-edit-bb"] > li {
- display: inline-block;
- margin: 0 10px 0 0;
- visibility: none;
-}
-.comment-wwedit-wrapper img,
-.comment-edit-wrapper img {
- width: 20px;
- height: 20px;
-}
-.comment-edit-photo-link, .comment-edit-photo {
- margin-left: 10px;
-}
-.my-comment-photo {
- width: 40px;
- height: 40px;
- padding: 5px;
-}
-[class^="comment-edit-text"] {
- margin: 5px 0 10px 20px;
- width: 84.5%;
-}
-.comment-edit-text-empty {
- height: 20px;
- border: 2px #babdd6 solid;
- border-radius: 5px;
- color: #babdb6;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;
-}
-.comment-edit-text-empty:hover {
- color: #999999;
-}
-.comment-edit-text-full {
- height: 10em;
- border-radius: 5px;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;
-}
-.comment-edit-submit-wrapper {
- width: 90%;
- margin: 5px 5px 10px 50px;
- text-align: right;
-}
-.comment-edit-submit {
- height: 22px;
- background-color: #555753;
- color: #eeeeec;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 0;
-}
-
-
-/**
- * item text style
- */
-.wall-item-body code {
- display: block;
- padding: 0 0 10px 5px;
- border-color: #ccc;
- border-style: solid;
- border-width: 1px 1px 1px 10px;
- background: #eee;
- color: #444;
- width: 95%;
-}
-
-
-/**
- * profile
- */
-div[id$="text"] {
- font-weight: bold;
- border-bottom: 1px solid #ccc;
-}
-div[id$="wrapper"] {
- height: 100%;
- margin-bottom: 1em;
-}
-div[id$="wrapper"] br {
- clear: left;
-}
-[id$="-end"], [class$="end"] {
- clear: both;
- margin: 0 0 10px 0;
-}
-#advanced-profile-with {
- margin-left: 200px;
-}
-
-
-/**
- * photos
- */
-.photos {
- height: auto;
- overflow: auto;
-}
-#photo-top-links {
- margin-bottom: 30px;
-}
-.photo-album-image-wrapper,
-.photo-top-image-wrapper {
- float: left;
- -moz-box-shadow: 3px 3px 10px 0 #000;
- -webkit-box-shadow: 3px 3px 10px 0 #000;
- box-shadow: 3px 3px 10px 0 #000;
- background-color: #eee;
- color: #111;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- padding-bottom: 30px;
- position: relative;
- margin: 0 10px 10px 0;
-}
-
-#photo-photo {
- max-width: 100%;
-}
-#photo-photo img {
- max-width: 100%;
-}
-.photo-top-image-wrapper a:hover,
-#photo-photo a:hover,
-.photo-album-image-wrapper a:hover {
- border-bottom: 0;
-}
-.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-top-album-name {
- position: absolute;
- bottom: 0;
- padding: 0 5px;
-}
-.caption {
- position: absolute;
- bottom: 0;
- margin: 0 5px;
-}
-#photo-photo {
- position: relative;
- float:left;
-}
-#photo-prev-link,
-#photo-next-link {
- position:absolute;
- width:30%;
- height:100%;
- background-color:rgba(255,255,255,0.5);
- opacity:0;
- -webkit-transition:all .2s ease-in-out;
- -moz-transition:all .2s ease-in-out;
- -o-transition:all .2s ease-in-out;
- -ms-transition:all .2s ease-in-out;
- transition:all .2s ease-in-out;
- background-position:center center;
- background-repeat:no-repeat;
-}
-#photo-prev-link {
- left:0;
- top:0;
- background-image:url(prev.png);
-}
-#photo-next-link {
- right:0;
- top:0;
- background-image:url(next.png);
-}
-
-#photo-prev-link a,#photo-next-link a {
- display:block;
- width:100%;
- height:100%;
- overflow:hidden;
- text-indent:-900000px;
-}
-#photo-prev-link:hover,
-#photo-next-link:hover {
- opacity:1;
- -webkit-transition:all .2s ease-in-out;
- -moz-transition:all .2s ease-in-out;
- -o-transition:all .2s ease-in-out;
- -ms-transition:all .2s ease-in-out;
- transition:all .2s ease-in-out;
-}
-#photo-next-link .icon,
-#photo-prev-link .icon {
- display: none;
-}
-#photos-upload-spacer,
-#photos-upload-new-wrapper,
-#photos-upload-exist-wrapper {
- margin-bottom: 1em;
-}
-#photos-upload-existing-album-text,
-#photos-upload-newalbum-div {
- background-color:#555753;
- color:#eeeeec;
- padding:1px;
-}
-#photos-upload-album-select,
-#photos-upload-newalbum {
- width: 99%;
-}
-#photos-upload-perms-menu {
- text-align: right;
-}
-#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
- float: left;
- margin-bottom: 25px;
-}
-#photo-edit-link-wrap {
- margin-bottom: 15px;
-}
-#photo-edit-caption {
- width: 100%;
-}
-#photo-edit-newtag {
- width: 100%;
-}
-#photo-like-div {
- margin-bottom: 25px;
-}
-#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
- clear: both;
-}
-#photo-edit-delete-button {
- margin-left: 200px;
-}
-#photo-edit-end {
- margin-bottom: 35px;
-}
-#photo-caption {
- font-size: 110%;
- font-weight: bold;
- margin-top: 15px;
- margin-bottom: 15px;
-}
-
-/**
- * message
- */
-.prvmail-text {
- width: 100%;
-}
-#prvmail-subject {
- width: 100%;
- color: #eec;
- background: #444;
-}
-#prvmail-submit-wrapper {
- margin-top: 10px;
-}
-#prvmail-submit {
- float:right;
- margin-top: 0;
-}
-#prvmail-submit-wrapper > div {
- margin-right:5px;
- float:left;
-}
-.mail-list-outside-wrapper {
- margin-top: 20px;
-}
-.mail-list-sender {
- float: left;
-}
-.mail-list-detail {
- margin-left: 90px;
-}
-.mail-list-sender-name {
- display: inline;
- font-size: 1.1em;
-}
-.mail-list-date {
- display: inline;
- font-size: 0.9em;
- padding-left: 10px;
-}
-.mail-list-sender-name, .mail-list-date {
- font-style: italic;
-}
-.mail-list-subject {
- font-size: 1.2em;
-}
-.mail-list-delete-wrapper {
- float: right;
-}
-.mail-list-outside-wrapper-end {
- clear: both;
- border-bottom: 1px #eec dotted;
-}
-.mail-conv-sender {
- float: left;
- margin: 0px 5px 5px 0px;
-}
-.mail-conv-sender-photo {
- width: 32px;
- height: 32px;
-}
-.mail-conv-sender-name {
- float: left;
-}
-.mail-conv-date {
- float: right;
-}
-.mail-conv-subject {
- clear: right;
- font-weight: bold;
- font-size: 1.2em;
-}
-.mail-conv-body {
- clear: both;
-}
-.mail-conv-delete-wrapper {
- margin-top: 5px;
-}
-
-
-/**
- * contacts
- */
-.view-contact-wrapper,
-.contact-entry-wrapper {
- float: left;
- margin: 0 5px 40px 0;
- width: 120px;
- height: 120px;
- padding: 3px;
- position: relative;
-}
-.contact-direction-wrapper {
- position: absolute;
- top: 20px;
-}
-.contact-edit-links {
- position: absolute;
- top: 60px;
-}
-.contact-entry-photo-wrapper {
-
-}
-.contact-entry-photo {
- margin-left: 20px;
-}
-.contact-entry-name {
- width: 120px;
- font-weight: bold;
- /*overflow: hidden;*/
-}
-.contact-entry-photo {
- position: relative;
-}
-.contact-entry-edit-links .icon {
- border: 1px solid #babdb6;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- background-color: #fff;
-}
-#contact-entry-url, [id^="contact-entry-url"] {
- font-size: smaller;
- /*overflow: scroll;*/
-}
-#contact-entry-network, [id^="contact-entry-network"] {
- font-size: smaller;
- font-style: italic;
-}
-#contact-edit-banner-name {
- font-size: 1.5em;
-}
-#contact-edit-photo-wrapper {
- position: relative;
- float: left;
- padding: 20px;
-}
-#contact-edit-direction-icon {
- position:absolute;
- top:60px;
- left:0;
-}
-#contact-edit-nav-wrapper {
- margin-left: 0px;
-}
-#contact-edit-links {
- margin-top: 23px;
-}
-#contact-edit-links ul {
- list-style-type: none;
-}
-#contact-drop-links {
- margin-left:5px;
-}
-#contact-edit-nav-wrapper .icon {
- border: 1px solid #babdb6;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-#contact-edit-poll-wrapper {
- margin-left: 0px;
-}
-#contact-edit-last-update-text {
- margin-bottom: 15px;
-}
-#contact-edit-last-updated {
- font-weight: bold;
-}
-#contact-edit-poll-text {
- display: inline;
-}
-#contact-edit-info_tbl, #contact-edit-info_parent {
- width: 100%;
-}
-.mceLayout {
- width: 100%;
-}
-#contact-edit-end {
- clear: both;
- margin-bottom: 65px;
-}
-
-.contact-photo-menu-button {
- position: absolute;
- background-image: url("photo-menu.jpg");
- background-position: top left;
- background-repeat: no-repeat;
- margin: 0px; padding: 0px;
- width: 16px;
- height: 16px;
- top: 64px; left:0px;
- overflow: hidden;
- text-indent: 40px;
- display: none;
-}
-.contact-photo-menu {
- width: auto;
- border: 2px solid #444;
- background: #eee;
- color: #111;
- position: absolute;
- left: 0px; top: 90px;
- display: none;
- z-index: 10000;
-}
-.contact-photo-menu ul {
- margin:0px;
- padding: 0px;
- list-style: none;
-}
-.contact-photo-menu li a {
- display: block;
- padding: 2px;
-}
-.contact-photo-menu li a:hover {
- color: #fff;
- background: #3465A4;
- text-decoration: none;
-}
-
-
-/**
- * register, settings & profile forms
- */
-.openid {
-
-}
-#id_openid_url {
- background:url(login-bg.gif) no-repeat;
- background-position:0 50%;
- padding-left:18px;
-}
-
-#settings-nickname-desc {
- background-color: #eee;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- padding: 5px;
- color: #111;
-}
-#settings-default-perms {
- margin-bottom: 20px;
-}
-#register-form div,
-#profile-edit-form div {
- clear: both;
-}
-.settings-block {
-
-}
-.settings-block label {
- clear: left;
-}
-.settings-block input {
- margin: 10px 5px;
-}
-/*#register-form label, */
-/*#profile-edit-form label {*/
-/* width: 300px; */
-/* float: left; */
-/*} */
-
-/*#register-form span, */
-/*#profile-edit-form span {*/
-/* color: #555753; */
-/* display: block; */
-/* margin-bottom: 20px; */
-/*} */
-#profile-edit-marital-label span {
- margin: -4px;
-}
-.settings-submit-wrapper,
-.profile-edit-submit-wrapper {
- margin: 30px 0px;
-}
-.profile-edit-side-div {
- display: none;
-}
-/*.profile-edit-side-div:hover {
- display: block;
-}
-.profile-edit-side-link {
- margin: 3px 0px 0px 70px;
-}*/
-#profiles-menu-trigger {
- margin: 0px 0px 0px 25px;
-}
-.profile-listing {
- float: left;
- margin: 20px 20px 0px 0px;
-}
-.icon-profile-edit {
- background: url("icons.png") -150px 0px no-repeat;
- border: 0;
- cursor: pointer;
- display: block;
- float: right;
- width: 20px;
- height: 20px;
- margin: 0 0 -18px;
- position: absolute;
- text-decoration: none;
- top: 113px;
- right: 260px;
-}
-#profile-edit-links ul {
- margin: 20px 0;
- padding: 0;
- list-style: none;
-}
-.marital {
- margin-top: 5px;
-}
-#register-sitename {
- display: inline;
- font-weight: bold;
-}
-#advanced-expire-popup {
- background: #2e2f2e;
- color: #eec;
-}
-#id_ssl_policy {
- width: 374px;
-}
-#theme-preview {
-
-}
-#theme-preview img {
- margin: 10px 10px 10px 288px;
-}
-
-
-/**
- * contacts selector
- */
-.group-delete-wrapper {
- margin: -31px 50px 0 0;
- float: right;
-}
-/*.group-delete-icon {
- margin: 0 0 0 10px;
-}*/
-#group-edit-submit-wrapper {
- margin: 0 0 10px 0;
- display: inline;
-}
-#group-edit-desc {
- margin: 10px 0px;
-}
-#group-members,
-#prof-members {
- height:200px;
- overflow:auto;
- border:1px solid #555753;
- -webkit-border-radius:5px 5px 0 0;
- -moz-border-radius:5px 5px 0 0;
- border-radius:5px 5px 0 0;
-}
-#group-all-contacts,
-#prof-all-contacts {
- height:200px;
- overflow:auto;
- border:1px solid #555753;
- -webkit-border-radius:0 0 5px 5px;
- -moz-border-radius:0 0 5px 5px;
- border-radius:0 0 5px 5px;
-}
-#group-members h3,
-#group-all-contacts h3,
-#prof-members h3,
-#prof-all-contacts h3 {
- color:#eeeeec;
- background-color:#555753;
- margin:0;
- padding:5px;
-}
-#group-separator,
-#prof-separator {
- display: none;
-}
-
-
-/**
- * profile
- */
-#cropimage-wrapper {
- float:left;
-}
-#crop-image-form {
- clear:both;
-}
-
-
-/**
- * intros
- */
-.intro-wrapper {
- margin-top: 20px;
-}
-
-.intro-fullname {
- font-size: 1.1em;
- font-weight: bold;
-
-}
-.intro-desc {
- margin-bottom: 20px;
- font-weight: bold;
-}
-
-.intro-note {
- padding: 10px;
-}
-
-.intro-end {
- padding: 30px;
-}
-
-.intro-form {
- float: left;
-}
-.intro-approve-form {
- clear: both;
-}
-.intro-approve-as-friend-end {
- clear: both;
-}
-.intro-submit-approve, .intro-submit-ignore {
- margin-right: 20px;
-}
-.intro-submit-approve {
- margin-top: 15px;
-}
-
-.intro-approve-as-friend-label, .intro-approve-as-fan-label {
- float: left;
-}
-.intro-approve-as-friend, .intro-approve-as-fan {
- float: left;
-}
-.intro-form-end {
- clear: both;
- margin-bottom: 10px;
-}
-.intro-approve-as-friend-desc {
- margin-top: 10px;
-}
-.intro-approve-as-end {
- clear: both;
- margin-bottom: 10px;
-}
-
-.intro-end {
- clear: both;
-}
-
-
-/**
- * events
- */
-.clear { clear: both; }
-.eventcal {
- float:left;
- font-size:20px;
-}
-.event {
- background: #2e2f2e;
-}
-.vevent {
- border:1px solid #ccc;
-}
-.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;
- font-size: smaller;
-}
-.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: monospace;
-}
-.today {
- font-weight: bold;
- color: #FF0000;
-}
-#event-start-text,
-#event-finish-text {
- margin-top: 10px;
- margin-bottom: 5px;
-}
-#event-nofinish-checkbox,
-#event-nofinish-text,
-#event-adjust-checkbox,
-#event-adjust-text,
-#event-share-checkbox {
- float:left;
-}
-#event-datetime-break {
- margin-bottom: 10px;
-}
-#event-nofinish-break,
-#event-adjust-break,
-#event-share-break {
- clear: both;
-}
-#event-desc-text,
-#event-location-text {
- margin-top: 10px;
- margin-bottom: 5px;
-}
-#event-submit {
- margin-top: 10px;
-}
-.body-tag {
- margin: 10px 0;
- opacity: 0.5;
- filter:alpha(opacity=50);
-}
-.body-tag:hover {
- opacity: 1.0 !important;
- filter:alpha(opacity=100) !important;
-}
-.filesavetags, .categorytags {
- margin: 20px 0;
- opacity: 0.5;
- filter:alpha(opacity=50);
-}
-.filesavetags:hover, .categorytags:hover {
- margin: 20px 0;
- opacity: 1.0 !important;
- filter:alpha(opacity=100) !important;
-}
-.item-select {
- opacity: 0.1;
- filter:alpha(opacity=10);
- margin: 5px 0 0 6px !important;
-}
-.item-select:hover, .checkeditem {
- opacity: 1;
- filter:alpha(opacity=100);
-}
-#item-delete-selected {
- margin-top: 30px;
-}
-/* was tired of having no way of moving it around, so
-* here's a little 'hook' to do so */
-.delete-checked {
- position: absolute;
- left: 35px;
- margin-top: 20px;
-}
-#item-delete-selected-end {
- clear: both;
-}
-#item-delete-selected-icon, #item-delete-selected-desc {
- float: left;
- margin-right: 5px;
-}
-#item-delete-selected-desc:hover {
- text-decoration: underline;
-}
-.fc-state-highlight {
- background: #eec;
- color: #2e2f2e;
-}
-
-
-/**
- * directory
- */
-.directory-item {
- float: left;
- /*margin: 50px 50px 0px 0px;*/
- margin: 0 5px 4px 0;
- padding: 3px;
- width: 180px;
- height: 250px;
- position: relative;
-}
-
-
-/**
- * sidebar
- */
-#group-sidebar {
- margin-bottom: 10px;
-}
-.group-selected, .nets-selected, .fileas-selected {
- padding: 3px;
- color: #111;
- background: #f8f8f8;
- font-weight: bold;
-}
-.group-selected:hover, .nets-selected:hover, .fileas-selected:hover {
- color: #111;
-}
-.groupsideedit {
- margin-right: 10px;
-}
-#sidebar-group-ul {
- padding-left: 0;
-}
-#sidebar-group-list {
- margin: 0 0 5px 0;
-}
-#sidebar-group-list ul {
- list-style-type: none;
- list-style-position: inside;
-}
-#sidebar-group-list li {
- margin-top: 10px;
-}
-#sidebar-group-list .icon {
- display: inline-block;
- height: 12px;
- width: 12px;
-}
-#sidebar-new-group {
- margin: auto;
- display: inline-block;
- color: #efefef;
- text-decoration: none;
- text-align: center;
-}
-#peoplefind-sidebar form {
- margin-bottom: 10px;
-}
-#sidebar-new-group:hover {
- /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
- /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
- /*background-color: #b20202;*/
-}
-
-#sidebar-new-group:active {
- position: relative;
- top: 1px;
-}
-#side-peoplefind-url {
- background-color: #e5e0cf;
- color: #666;
- border: 1px 666 solid;
- margin-right: 3px;
- width: 75%;
-}
-#side-peoplefind-url:hover, #side-peoplefind-url:focus {
- background-color: #efefef;
- color: #222;
- border: 1px 333 solid;
-}
-.nets-ul {
- list-style-type: none;
- padding-left: 0px;
-}
-.nets-ul li {
- margin: 10px 0 0;
-}
-
-.nets-link {
- margin-left: 0px;
-}
-.nets-all {
- margin-left: 0px;
-}
-#netsearch-box {
- margin-top: 20px;
- width: 150px;
-}
-#netsearch-box #search-submit {
- margin: 5px 0px 0px 0px;
-}
-
-
-/**
- * admin
- */
-#pending-update {
- float:right;
- color: #fff;
- font-weight: bold;
- background-color: #ff0000;
- padding: 0 .3em;
-}
-.admin.linklist {
- border: 0; padding: 0;
-}
-.admin.link {
- list-style-position: inside;
-}
-#adminpage {
- color: #111;
- background: transparent;
- margin: 5px;
- padding: 10px;
-}
-#adminpage dl {
- clear:left;
- margin-bottom: 2px;
- padding-bottom: 2px;
- border-bottom: 1px solid #000;
-}
-#adminpage dt {
- width: 250px;
- float: left;
- font-weight: bold;
-}
-#adminpage dd {
- margin-left: 250px;
-}
-#adminpage h3 {
- border-bottom:1px solid #ccc;
-}
-
-#adminpage .submit {
- clear:left;
-}
-#adminpage #pluginslist {
- margin: 0;
- padding: 0;
-}
-#adminpage .plugin {
- list-style: none;
- display: block;
- border: 1px solid #888;
- padding: 1em;
- margin-bottom: 5px;
- clear: left;
-}
-#adminpage .toggleplugin {
- float:left;
- margin-right: 1em;
-}
-#adminpage table {
- width: 100%;
- border-bottom: 1px solid #000;
- margin: 5px 0;
-}
-#adminpage table th {
- text-align: left;
-}
-#adminpage td .icon {
- float: left;
-}
-#adminpage table#users img {
- width: 16px; height: 16px;
-}
-#adminpage table tr:hover {
-/* color: ;*/
- background-color: #bbc7d7;
-}
-#adminpage .selectall {
- text-align: right;
-}
-#adminpage #users a {
-/* color: #;*/
- text-decoration: underline;
-}
-#users .name {
- color: #eec;
-}
-
-
-/**
- * form fields
- */
-.field {
- /*margin-bottom: 10px;*/
- /*padding-bottom: 10px;*/
- overflow: auto;
- width: 100%;
-}
-.field label, label {
- width: 38%;
- display: inline-block;
- font-size: 1.077em;
- margin: 0 10px 1em 0;
- border: 1px #999 solid;
- padding: 5px;
- background: #ccc;
- color: #111;
-}
-input,
-input[type="text"],
-input[type="password"],
-input[type="search"] {
- width: 250px;
- height: 25px;
- border: 1px #999 solid;
-}
-input[type="checkbox"], input[type="radio"] {
- border: 1px #999 solid;
- margin: 0 0 0 0;
- height: 15px;
- width: 15px;
-}
-input[type="submit"], input[type="button"] {
- background-color: #555753;
- border: 2px outset #444;
- border-radius: 5px;
- box-shadow: 1px 3px 4px 0 #111;
- color: #eeeeec;
- cursor: pointer;
- font-weight: bold;
- width: auto;
- text-shadow: 1px 1px #111;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
-}
-input[type="submit"]:active, input[type="button"]:active {
- box-shadow: 0 0 0 0;
-}
-.field textarea {
- width: 80%;
- height: 100px;
-}
-.field_help {
- display: block;
- margin-left: 297px;
- color: #666;
-}
-.field .onoff {
- float: left;
- width: 80px;
-}
-.field .onoff a {
- display: block;
- border: 1px solid #666;
- padding: 3px 6px 4px 10px;
- height: 16px;
- text-decoration: none;
-}
-.field .onoff .on {
- background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999;
- color: #111;
- text-align: left;
-}
-.field .onoff .off {
- background: url("../../../images/onoff.jpg") no-repeat 2px 1px #ccc;
- color: #333;
- text-align: right;
-}
-.hidden {
- display:none !important;
-}
-.field.radio .field_help {
- margin-left: 297px;
-}
-
-
-/*
- * update
- */
-.popup {
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- position: absolute;
- display: none;
-}
-.popup .background {
- background-color: rgba(0,0,0,128);
- opacity: 0.5;
- width: 100%;
- height: 100%;
- position: absolute;
- top:0px;
- left:0px;
-}
-.popup .panel {
- top: 25%;
- left: 25%;
- width: 50%;
- height: 50%;
- padding: 1em;
- position: absolute;
- border: 4px solid #000000;
- background-color: #FFFFFF;
-}
-#panel {
- z-index: 100;
-}
-.grey {
- color: grey;
-}
-.orange {
- color: orange;
-}
-.red {
- color: red;
-}
-.popup .panel .panel_text {
- display: block;
- overflow: auto;
- height: 80%;
-}
-.popup .panel .panel_in {
- width: 100%;
- height: 100%;
- position: relative;
-}
-.popup .panel .panel_actions {
- width: 100%;
- bottom: 4px;
- left: 0px;
- position: absolute;
-}
-.panel_text .progress {
- width: 50%;
- overflow: hidden;
- height: auto;
- border: 1px solid #cccccc;
- margin-bottom: 5px;
-}
-.panel_text .progress span {
- float: right;
- display: block;
- width: 25%;
- background-color: #eeeeee;
- text-align: right;
-}
-
-/**
- * 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;
-}
-
-
-/**
- * icons
- */
-.iconspacer {
- display: block;
- width: 16px;
- height: 16px;
-}
-.icon {
- display: block;
- width: 20px;
- height: 20px;
- background: url(icons.png) no-repeat;
- border: 0;
- text-decoration: none;
- border-radius: 5px;
-}
-.icon:hover {
- border: 0;
- text-decoration: none;
-}
-.editicon {
- display: inline-block;
- width: 21px;
- height: 21px;
- background: url(editicons.png) no-repeat;
- border: 0;
- text-decoration: none;
-}
-.shadow {
- box-shadow: 2px 2px 5px 2px #111;
-}
-.shadow:active, .shadow:focus, .shadow:hover {
- box-shadow: 0 0 0 0;
-}
-.editicon:hover {
- border: 0;
-}
-.boldbb {
- background-position: 0px 0px;
-}
-.boldbb:hover {
- background-position: -22px 0px;
-}
-.italicbb {
- background-position: 0px -22px;
-}
-.italicbb:hover {
- background-position: -22px -22px;
-}
-.underlinebb {
- background-position: 0px -44px;
-}
-.underlinebb:hover {
- background-position: -22px -44px;
-}
-.quotebb {
- background-position: 0px -66px;
-}
-.quotebb:hover {
- background-position: -22px -66px;
-}
-.codebb {
- background-position: 0px -88px;
-}
-.codebb:hover {
- background-position: -22px -88px;
-}
-.imagebb {
- background-position: -44px 0px;
-}
-.imagebb:hover {
- background-position: -66px 0px;
-}
-.urlbb {
- background-position: -44px -22px;
-}
-.urlbb:hover {
- background-position: -66px -22px;
-}
-.videobb {
- background-position: -44px -44px;
-}
-.videobb:hover {
- background-position: -66px -44px;
-}
-.icon.drop,
-.icon.drophide, .icon.delete {
- float: left;
- margin: 0 2px;
-}
-.icon.s22.delete {
- display: block;
- background-position: -110px 0;
-}
-.icon.s22.text {
- padding: 10px 0px 0px 25px;
- width: 200px;
-}
-.icon.text {
- text-indent: 0px;
-}
-.icon.s16 {
- min-width: 16px;
- height: 16px;
-}
-.s16 .add {
- background: url("../../../images/icons/16/add.png") no-repeat;
-}
-.add {
- margin: 0px 5px;
-}
-.article {
- background-position: -50px 0;
-}
-.audio {
- background-position: -70px 0;
-}
-.block {
- background-position: -90px 0px;
-}
-.drop, .delete {
- background-position: -110px 0;
-}
-.drophide {
- background-position: -130px 0;
-}
-.edit {
- background-position: -150px 0;
-}
-.camera {
- background-position: -170px 0;
-}
-.dislike {
- background-position: -190px 0;
-}
-.file-as {
- background-position: -230px -60px;
-}
-.like {
- background-position: -211px 0;
-}
-.link {
- background-position: -230px 0;
-}
-.globe, .location {
- background-position: -50px -20px;
-}
-.noglobe, .nolocation {
- background-position: -70px -20px;
-}
-.no {
- background-position: -90px -20px;
-}
-.pause {
- background-position: -110px -20px;
-}
-.play {
- background-position: -130px -20px;
-}
-.pencil {
- background-position: -151px -18px;
-}
-.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;
-}
-.unlock {
- background-position: -88px -40px;
-}
-.video {
- background-position: -110px -40px;
-}
-.attach {
- background-position: -190px -40px;
-}
-.language {
- background-position: -210px -40px;
-}
-.starred {
- background-position: -130px -60px;
-}
-.unstarred {
- background-position: -150px -60px;
-}
-.tagged {
- background-position: -170px -60px;
-}
-.on {
- background-position: -50px -60px;
-}
-.off {
- background-position: -70px -60px;
-}
-.prev {
- background-position: -90px -60px;
-}
-.next {
- background-position: -110px -60px;
-}
-.icon.dim {
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-#pause {
- position: fixed;
- bottom: 40px;
- right: 30px;
-}
-.border, .border:hover {
- border: 1px solid #babdb6;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.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 0;
-}
-.type-audio {
- background-position: -40px 0;
-}
-.type-text {
- background-position: -60px 0px;
-}
-.type-unkn {
- background-position: -80px 0;
-}
-
-
-/**
- * footer
- */
-.cc-license {
- margin-top: 100px;
- font-size: 0.7em;
-}
-footer {
- display: block;
- /*margin: 50px 20%;*/
- clear: both;
-}
-#profile-jot-text {
- height: 20px;
- color: #666;
- border: 1px solid #ccc;
- border-radius: 5px;
- width: 99.5%;
-}
-
-
-/**
- * acl
- */
-#photo-edit-perms-select,
-#photos-upload-permissions-wrapper,
-#profile-jot-acl-wrapper {
- display: block !important;
- background: #eec;
- color: #2e2f2e;
-}
-#acl-wrapper {
- width: 660px;
- margin: 0 auto;
-}
-#acl-search {
- float: right;
- background: #fff url("../../../images/search_18.png") no-repeat right center;
- padding-right: 20px;
- margin: 6px;
- color: #111;
-}
-#acl-showall {
- float: left;
- display: block;
- width: auto;
- height: 18px;
- background: #eec url("../../../images/show_all_off.png") 8px 8px no-repeat;
- padding: 7px 10px 7px 30px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- color: #999;
- margin: 5px 0;
-}
-#acl-showall.selected {
- color: #000;
- background: #f90 url(../../../images/show_all_on.png) 8px 8px no-repeat;
-}
-#acl-list {
- height: 210px;
- border: 1px solid #ccc;
- clear: both;
- margin-top: 30px;
- overflow: auto;
-}
-/*#acl-list-content {
-}*/
-.acl-list-item {
- border: 1px solid #ccc;
- display: block;
- float: left;
- height: 110px;
- margin: 3px 0 5px 5px;
- width: 120px;
-}
-.acl-list-item img {
- width: 22px;
- height: 22px;
- float: left;
- margin: 5px 5px 20px;
-}
-.acl-list-item p {
- height: 12px;
- font-size: 10px;
- margin: 0 0 22px;
- padding: 2px 0 1px;
-}
-.acl-list-item a {
- background: #ccc 3px 3px no-repeat;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- clear: both;
- font-size: 10px;
- display: block;
- width: 55px;
- height: 20px;
- color: #999;
- margin: 5px auto 0;
- padding: 0 3px;
- text-align: center;
- vertical-align: middle;
-}
-#acl-wrapper a:hover {
- text-decoration: none;
- color: #000;
- border: 0;
-}
-.acl-button-show {
- background-image: url('../../../images/show_off.png');
- margin: 0 auto;
-}
-.acl-button-hide {
- background-image: url('../../../images/hide_off.png');
- margin: 0 auto;
-}
-.acl-button-show.selected {
- color: #000;
- background-color: #9ade00;
- background-image: url(../../../images/show_on.png);
-}
-.acl-button-hide.selected {
- color: #000;
- 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 **/
-
-
-/* autocomplete popup */
-.acpopup {
- max-height: 175px;
- max-width: 42%;
- background-color: #555753;
- color: #fff;
- overflow: auto;
- z-index: 100000;
- border: 1px solid #cccccc;
-}
-.acpopupitem {
- background-color: #555753;
- padding: 4px;
- clear: left;
-}
-.acpopupitem img {
- float: left;
- margin-right: 4px;
-}
-.acpopupitem.selected {
- color: #2e3436;
- background-color: #eeeeec;
-}
-.qcomment-wrapper {
- padding: 0px;
- margin: 5px 5px 5px 81%;
-}
-.qcomment {
- opacity: 0.5;
- filter:alpha(opacity=50);
-}
-.qcomment:hover {
- opacity: 1.0;
- filter:alpha(opacity=100);
-}
-#network-star-link {
- margin-top: 10px;
-}
-.network-star {
- float: left;
- margin-right: 5px;
-}
-.network-star.icon.starred {
- display: inline-block;
-}
-#fileas-sidebar {
-
-}
-.fileas-ul {
- padding: 0;
-}
-
-
-
-/*
- * addons theming
- */
-
-#sidebar-page-list {
-
-}
-#sidebar-page-list ul {
- padding: 0;
- margin: 5px 0;
-}
-#sidebar-page-list li {
- list-style: none;
-}
-#jappix_mini {
- margin-left: 130px;
- position: fixed;
- bottom: 0;
- right: 175px !important; /* override the jappix css */
- z-index: 999;
-}
-
-@media handheld {
- body {
- font-size: 15pt;
- }
-}
+article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
+audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;}
+audio:not([controls]),[hidden]{display:none;}
+html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
+body{margin:0;font-size:16px;line-height:1.1em;font-family:sans-serif;color:#222;background-color:#e8e8e8;}
+button,input,select,textarea{font-family:sans-serif;color:#222;background-color:#e8e8e8;}
+select{border:1px #555 dotted;padding:3px;margin:3px;color:#222;background:#e8e8e8;}
+option{padding:3px;color:#222;background:#e8e8e8;}option[selected="selected"]{color:#111;background:#cca;}
+ul,ol{padding:0;}
+:focus{outline:0;}
+[disabled="disabled"]{background:#ddd;color:#333;}
+ins{background-color:#ff9;color:#000;text-decoration:none;}
+mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
+pre,code,kbd,samp,.wall-item-body code{font-family:monospace, monospace;_font-family:monospace;font-size:1em;}
+pre,.wall-item-body code{white-space:pre;white-space:pre-wrap;word-wrap:break-word;}
+q{quotes:none;}q:before,q:after{content:"";content:none;}
+small{font-size:85%;}
+sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
+sub{bottom:-0.25em;}
+sup{top:-0.5em;}
+img{border:0 none;}
+a{color:#3465a4;text-decoration:none;margin-bottom:1px;}a:hover img{text-decoration:none;}
+blockquote{background:#eee;color:#111;text-indent:5px;padding:5px;border:1px #aaa solid;border-radius:5px;}
+a:hover{color:#729fcf;border-bottom:1px dotted #729fcf;}
+.required{display:inline;color:#f00;font-size:16px;font-weight:bold;margin:3px;}
+.fakelink,.lockview{color:#3465a4;cursor:pointer;}
+.fakelink:hover{color:#729fcf;}
+.smalltext{font-size:0.7em;}
+#panel{position:absolute;font-size:0.8em;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:1px solid #fff;background-color:#2e3436;color:#eeeeec;padding:1em;}
+.pager{margin-top:60px;display:block;clear:both;text-align:center;}.pager span{padding:4px;margin:4px;}
+.pager_current{background-color:#729fcf;color:#fff;}
+.action{margin:5px 0;}
+.tool{margin:5px 0;list-style:none;}
+#articlemain{width:100%;height:100%;margin:0 auto;}
+#asidemain .field{overflow:hidden;width:200px;}
+#login-extra-links{overflow:auto !important;padding-top:60px !important;width:100% !important;}#login-extra-links a{margin-right:20px;}
+#login_standard{display:block !important;float:none !important;height:100% !important;position:relative !important;width:100% !important;}#login_standard .field label{width:200px !important;}
+#login_standard input{margin:0 0 8px !important;width:210px !important;}#login_standard input[type="text"]{margin:0 0 8px !important;width:210px !important;}
+#login-submit-wrapper{margin:0 !important;}
+#login-submit-button{margin-left:0px !important;}
+#asidemain #login_openid{position:relative !important;float:none !important;margin-left:0px !important;height:auto !important;width:200px !important;}
+#login_openid #id_openid_url{width:180px !important;overflow:hidden !important;}
+#login_openid label{width:180px !important;}
+nav{height:60px;background-color:#2e3436;color:#eeeeec;position:relative;padding:20px 20px 10px 95px;}nav a{text-decoration:none;color:#eeeeec;border:0px;}nav a:hover{text-decoration:none;color:#eeeeec;border:0px;}
+nav #banner{display:block;position:absolute;left:51px;top:25px;}nav #banner #logo-text a{font-size:40px;font-weight:bold;margin-left:3px;}
+ul#user-menu-popup{display:none;position:absolute;background-color:#555753;width:100%;padding:10px 0px;margin:0px;top:20px;left:0;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;box-shadow:5px 10px 10px 0 #111;z-index:10000;}ul#user-menu-popup li{display:block;}ul#user-menu-popup li a{display:block;padding:5px;}ul#user-menu-popup li a:hover{color:#2e3436;background-color:#eeeeec;}
+ul#user-menu-popup li a.nav-sep{border-top:1px solid #eeeeec;}
+nav .nav-link{display:inline-block;width:22px;height:22px;overflow:hidden;margin:0px 5px 5px;text-indent:50px;background:transparent url(icons.png) 0 0 no-repeat;}
+#nav-apps-link{background-position:0 -66px;}#nav-apps-link:hover{background-position:-22px -66px;}
+#nav-community-link,#nav-contacts-link{background-position:0 -22px;}#nav-community-link:hover,#nav-contacts-link:hover{background-position:-22px -22px;}
+#nav-directory-link{background-position:-44px -154px;}#nav-directory-link:hover{background-position:-66px -154px;}
+#nav-help-link{background-position:0 -110px;}#nav-help-link:hover{background-position:-22px -110px;}
+#nav-home-link{background-position:-44px -132px;}#nav-home-link:hover{background-position:-66px -132px;}
+#nav-intro-link{background-position:0px -190px;}#nav-intro-link:hover{background-position:-44px -190px;}
+#nav-login-link,#nav-logout-link{background-position:0 -88px;}#nav-login-link:hover,#nav-logout-link:hover{background-position:-22px -88px;}
+#nav-messages-link{background-position:-44px -88px;}#nav-messages-link:hover{background-position:-66px -88px;}
+#nav-notify-link,#nav-notifications-linkmenu{background-position:-44px -110px;}
+#nav-notify-link:hover{background-position:-66px -110px;}
+#nav-network-link{background-position:0px -177px;}#nav-network-link:hover{background-position:-22px -177px;}
+#nav-search-link{background-position:0 -44px;}#nav-search-link:hover{background-position:-22px -44px;}
+#profile-link,#profile-title,#wall-image-upload,#wall-file-upload,#profile-attach-wrapper,#profile-audio,#profile-link,#profile-location,#profile-nolocation,#profile-title,#jot-title,#profile-upload-wrapper,#profile-video,#profile-jot-submit,#wall-image-upload-div,#wall-file-upload-div,.icon,.hover,.focus,.pointer{cursor:pointer;}
+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;}
+#nav-notifications-menu{margin:30px 0 0 -20px;width:275px;max-height:300px;overflow-y:auto;font-size:9pt;}#nav-notifications-menu .contactname{font-weight:bold;font-size:0.9em;}
+#nav-notifications-menu img{float:left;margin-right:5px;}
+#nav-notifications-menu .notif-when{font-size:0.8em;display:block;}
+#nav-notifications-menu li{word-wrap:normal;border-bottom:1px solid #000;}#nav-notifications-menu li:hover{color:black;}
+#nav-notifications-menu a:hover{color:black;text-decoration:underline;}
+nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkmenu.selected .icon.s22.notify{background-image:url("../../../images/icons/22/notify_on.png");}
+.show{display:block;}
+#notifications{height:20px;width:170px;position:absolute;top:-19px;left:4px;}
+#nav-floater{position:fixed;top:20px;right:1%;padding:5px;background:#2e3436;color:transparent;border-radius:5px;z-index:100;width:300px;height:60px;}
+#nav-buttons{clear:both;list-style:none;padding:0px;margin:0px;height:25px;}#nav-buttons>li{padding:0;display:inline-block;margin:0px -4px 0px 0px;}
+.floaterflip{display:block;position:fixed;z-index:110;top:56px;right:19px;width:22px;height:22px;overflow:hidden;margin:0px;background:transparent url(icons.png) -190px -60px no-repeat;}
+.search-box{display:inline-block;margin:5px;position:fixed;right:0px;bottom:0px;z-index:100;background:#1d1f1d;border-radius:5px;}
+#search-text{border:1px #eec solid;background:#2e3436;color:#eec;}
+.search-box #search-text{margin:8px;width:10em;height:14px;color:#eec;}
+#scrollup{position:fixed;right:5px;bottom:40px;z-index:100;}#scrollup a:hover{text-decoration:none;border:0;}
+#user-menu{box-shadow:5px 0 10px 0 #111;display:block;width:75%;margin:3px 0 0 0;position:relative;background-color:#555753;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:#555753 url("menu-user-pin.jpg") 98% center no-repeat;clear:both;top:4px;left:10px;padding:2px;}#user-menu>a{vertical-align:top;}
+#user-menu-label{font-size:12px;padding:3px 20px 9px 5px;height:10px;}
+.nav-ajax-update,.nav-ajax-left{width:30px;height:19px;background:transparent url(notifications.png) 0 0 no-repeat;color:#222;font-weight:bold;font-size:0.8em;padding-top:0.2em;text-align:center;float:left;margin:0 -1px 0 3px;display:block;visibility:hidden;}
+.nav-ajax-update.show,.nav-ajax-left.show{visibility:visible;}
+#net-update{background-position:0px 0px;}
+#mail-update{background-position:-30px 0;}
+#notify-update{background-position:-60px 0px;}
+#home-update{background-position:-90px 0px;}
+#intro-update{background-position:-120px 0px;}
+#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;}
+#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;}
+.menu-popup{position:absolute;display:none;width:11em;background:#ffffff;color:#2d2d2d;margin:0px;padding:0px;list-style:none;border:3px solid #364e59;z-index:100000;-webkit-box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);-moz-box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);box-shadow:3px 3px 10px 0 rgba(0, 0, 0, 0.7);}.menu-popup a{display:block;color:#2d2d2d;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{background-color:#bdcdd4;}
+.menu-popup .menu-sep{border-top:1px solid #9eabb0;}
+.menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;}
+.menu-popup .empty{padding:5px;text-align:center;color:#9eabb0;}
+.notif-item{font-size:small;}.notif-item a{vertical-align:middle;}
+.notif-image{width:32px;height:32px;padding:7px 7px 0px 0px;}
+.notify-seen{background:#ddd;}
+#sysmsg_info{position:fixed;bottom:0;-moz-box-shadow:3px 3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;}
+#sysmsg{position:fixed;bottom:0;-moz-box-shadow:3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;padding:10px;background-color:#fcaf3e;border:2px solid #f8911b;border-bottom:0;padding-bottom:50px;z-index:1000;}
+#sysmsg_info br,#sysmsg br{display:block;margin:2px 0px;border-top:1px solid #ccccce;}
+#asidemain{float:left;font-size:smaller;margin:20px 0 20px 35px;width:25%;display:inline;}
+#asideright,#asideleft{display:none;}
+.vcard .fn{font-size:1.7em;font-weight:bold;border-bottom:1px solid #729fcf;padding-bottom:3px;}
+.vcard #profile-photo-wrapper{margin:20px;}.vcard #profile-photo-wrapper img{box-shadow:3px 3px 10px 0 #000;}
+#asidemain h4{font-size:1.2em;}
+#asidemain #viewcontacts{text-align:right;}
+.aprofile dt{background:transparent;color:#666666;font-weight:bold;box-shadow:1px 1px 5px 0 #000;margin:15px 0 5px;padding-left:5px;}
+#profile-extra-links ul{margin-left:0px;padding-left:0px;list-style:none;}
+#dfrn-request-link{background:#3465a4 url(connect.png) no-repeat 95% center;border-radius:5px 5px 5px 5px;color:#fff;display:block;font-size:1.2em;padding:0.2em 0.5em;}
+#wallmessage-link{color:#eee;display:block;font-size:1.2em;padding:0.2em 0.5em;}
+#netsearch-box{margin:20px 0px 30px;width:150px;}#netsearch-box #search-submit{margin:5px 5px 0px 0px;}
+.ttright{margin:0px 0px 0px 0px;}
+.contact-block-div{width:50px;height:50px;float:left;}
+.contact-block-textdiv{width:150px;height:34px;float:left;}
+#contact-block-end{clear:both;}
+#jot{margin:10px 0 20px 0px;width:100%;}#jot #jot-tools{margin:0px;padding:0px;height:35px;overflow:none;width:100%;}#jot #jot-tools span{float:left;margin:10px 20px 2px 0px;}#jot #jot-tools span a{display:block;}
+#jot #jot-tools .perms{float:right;width:40px;}
+#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;}
+#jot #jot-title{border:1px solid #ccc;margin:0 0 5px;height:20px;width:90%;font-weight:bold;border-radius:5px;vertical-align:middle;}
+#jot-category{margin:5px 0;border-radius:5px;border:1px #ccc solid;color:#666;font-size:smaller;}#jot-category:focus{color:#111;}
+#jot #character-counter{width:6%;float:right;text-align:right;height:15px;line-height:20px;padding:2px 20px 5px 0;}
+#profile-jot-text_parent{box-shadow:5px 0 10px 0 #111;}
+#profile-jot-text_tbl{margin-bottom:10px;background:#777;}
+#profile-jot-text_ifr{width:99.900002% !important;}
+#profile-jot-text_toolbargroup,.mceCenter tr{background:#777;}
+[id$="jot-text_ifr"]{width:99.900002% !important;color:#2e2f2e;background:#eec;}[id$="jot-text_ifr"] .mceContentBody{color:#2e2f2e;background:#eec;}
+.defaultSkin tr.mceFirst{background:#777;}
+.defaultSkin td.mceFirst,.defaultSkin td.mceLast{background-color:#eec;}
+.defaultSkin span.mceIcon,.defaultSkin img.mceIcon,.defaultSkin .mceButtonDisabled .mceIcon{background-color:#eec;}
+#profile-attach-wrapper,#profile-audio-wrapper,#profile-link-wrapper,#profile-location-wrapper,#profile-nolocation-wrapper,#profile-title-wrapper,#profile-upload-wrapper,#profile-video-wrapper{float:left;margin:0 20px 0 0;}
+#profile-rotator-wrapper{float:right;}
+#profile-jot-tools-end,#profile-jot-banner-end{clear:both;}
+#profile-jot-email-wrapper{margin:10px 10% 0;border:1px solid #555753;border-bottom:0;}
+#profile-jot-email-label{background-color:#555753;color:#ccccce;padding:5px;}
+#profile-jot-email{width:90%;margin:5px;}
+#profile-jot-networks{margin:0 10%;border:1px solid #555753;border-top:0;border-bottom:0;padding:5px;}
+#profile-jot-net{margin:5px 0;}
+#jot-preview-link{margin:0 0 0 10px;border:0;text-decoration:none;float:right;}
+.icon-text-preview{margin:0 0 -18px 0;display:block;width:20px;height:20px;background:url(icons.png) no-repeat -128px -40px;border:0;text-decoration:none;float:right;cursor:pointer;}
+#profile-jot-perms{float:right;background-color:#555753;height:22px;width:20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;border:0px;margin:0 10px 0 10px;}
+#profile-jot-plugin-wrapper{width:1px;margin:10px 0 0 0;float:right;}
+#profile-jot-submit-wrapper{float:right;width:100%;list-style:none;margin:10px 0 0 0;padding:0;}
+#profile-jot-submit{height:auto;background-color:#555753;color:#eeeeec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:2px outset #222420;margin:0;float:right;text-shadow:1px 1px #111;width:auto;}#profile-jot-submit:active{box-shadow:0 0 0 0;}
+#jot-perms-icon{height:22px;width:20px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;overflow:hidden;border:0;}
+#profile-jot-acl-wrapper{margin:0 10px;border:1px solid #555753;border-top:0;display:block !important;}
+#group_allow_wrapper,#group_deny_wrapper,#acl-permit-outer-wrapper{width:47%;float:left;}
+#contact_allow_wrapper,#contact_deny_wrapper,#acl-deny-outer-wrapper{width:47%;float:right;}
+#acl-permit-text{background-color:#555753;color:#ccccce;padding:5px;float:left;}
+#jot-public{background-color:#555753;color:#ff0000;padding:5px;float:left;}
+#acl-deny-text{background-color:#555753;color:#ccccce;padding:5px;float:left;}
+#acl-permit-text-end,#acl-deny-text-end{clear:both;}
+#jot-title-desc{color:#ccc;}
+#profile-jot-desc{color:#a00;margin:5px 0;}
+#jot-title-wrapper{margin-bottom:5px;}
+#jot-title-display{font-weight:bold;}
+.jothidden{display:none;}
+#jot-preview-content{background-color:#ffffe0;color:#111;border:1px #aa0 solid;border-radius:5px;padding:3px 3px 6px 10px;}#jot-preview-content .wall-item-outside-wrapper{border:0;border-radius:0px;}
+#sectionmain{margin:20px;font-size:0.8em;min-width:475px;width:67%;float:left;display:inline;}
+.tabs{list-style:none;margin:10px 0;padding:0;}.tabs li{display:inline;font-size:smaller;font-weight:bold;}
+.tab{border:1px solid #729fcf;padding:4px;}.tab:hover,.tab.active:hover,.tab:active{background:#729fcf;color:#eeeeec;}
+.tab.active{background:#729fcf;color:#eeeeec;}.tab.active a{color:#729fcf;}
+.tab a{border:0;text-decoration:none;}
+.wall-item-outside-wrapper{border:1px solid #aaa;border-radius:5px;box-shadow:5px 0 10px 0 #888;}.wall-item-outside-wrapper.comment{margin-top:5px;}
+.wall-item-outside-wrapper-end{clear:both;}
+.wall-item-content-wrapper{position:relative;padding:10px;width:auto;}
+.wall-item-outside-wrapper .wall-item-comment-wrapper{}
+.shiny{background:#efefdf;border-radius:5px;}
+.wall-outside-wrapper .shiny{border-radius:5px;}
+.heart{color:red;}
+.wall-item-content{overflow-x:auto;margin:0px 15px 0px 5px;}
+[id^="tread-wrapper"],[class^="tread-wrapper"]{margin:15px 0 0 0;padding:0px;}
+.wall-item-photo-menu{display:none;}
+.wall-item-photo-menu-button{display:none;text-indent:-99999px;background:#555753 url(menu-user-pin.jpg) no-repeat 75px center;position:absolute;overflow:hidden;height:20px;width:90px;top:85px;left:0;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;}
+.wall-item-info{float:left;width:110px;}
+.wall-item-photo-wrapper{width:80px;height:80px;position:relative;padding:5px;background-color:#555753;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+[class^="wall-item-tools"] *{}[class^="wall-item-tools"] *>*{}
+.wall-item-tools{float:right;opacity:0.4;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out;}.wall-item-tools:hover{opacity:1;-webkit-transition:all 1s ease-in-out;-moz-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out;}
+.wall-item-subtools1{height:30px;list-style:none outside none;margin:20px 0 30px -20px;padding:0;width:30px;}
+.wall-item-subtools2{height:25px;list-style:none outside none;margin:-75px 0 0 5px;padding:0;width:25px;}
+.wall-item-title{font-size:1.2em;font-weight:bold;margin-bottom:1em;}
+.wall-item-body{margin:20px 20px 10px 0px;text-align:left;overflow-x:auto;}
+.wall-item-lock-wrapper{float:right;height:22px;margin:0 -5px 0 0;width:22px;opacity:1;}
+.wall-item-dislike,.wall-item-like{clear:left;font-size:0.8em;color:#878883;margin:5px 0 5px 120px;}
+.wall-item-author,.wall-item-actions-author{clear:left;font-size:0.8em;color:#878883;margin:20px 20px 0 110px;}
+.wall-item-ago{display:inline;padding-left:10px;}
+.wall-item-wrapper-end{clear:both;}
+.wall-item-location{margin-top:15px;width:100px;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;}.wall-item-location .icon{float:left;}
+.wall-item-location>a,.wall-item-location .smalltext{margin-left:25px;font-size:0.7em;display:block;}
+.wall-item-location>br{display:none;}
+.wallwall .wwto{left:5px;margin:0;position:absolute;top:75px;width:30px;z-index:10001;width:30px;height:30px;}.wallwall .wwto img{width:30px !important;height:30px !important;}
+.wallwall .wall-item-photo-end{clear:both;}
+.wall-item-arrowphoto-wrapper{position:absolute;left:35px;top:80px;z-index:10002;}
+.wall-item-photo-menu{min-width:92px;border:2px solid #FFFFFF;border-top:0px;background:#555753;position:absolute;left:-2px;top:101px;display:none;z-index:10003;-webkit-border-radius:0px 5px 5px 5px;-moz-border-radius:0px 5px 5px 5px;border-radius:0px 5px 5px 5px;}.wall-item-photo-menu ul{margin:0px;padding:0px;list-style:none;}
+.wall-item-photo-menu li a{white-space:nowrap;display:block;padding:5px 2px;color:#eeeeec;}.wall-item-photo-menu li a:hover{color:#555753;background:#eeeeec;}
+#item-delete-selected{overflow:auto;width:100%;}
+#connect-services-header,#connect-services,#extra-help-header,#extra-help,#postit-header,#postit{margin:5px 0 0 0;}
+.ccollapse-wrapper{font-size:0.9em;margin-left:80px;}
+.wall-item-outside-wrapper.comment{margin-left:80px;}.wall-item-outside-wrapper.comment .wall-item-photo{width:40px!important;height:40px!important;}
+.wall-item-outside-wrapper.comment .wall-item-photo-wrapper{width:40px;height:40px;}
+.wall-item-outside-wrapper.comment .wall-item-photo-menu-button{width:50px;top:45px;background-position:35px center;}
+.wall-item-outside-wrapper.comment .wall-item-info{width:60px;}
+.wall-item-outside-wrapper.comment .wall-item-body{margin-left:10px;}
+.wall-item-outside-wrapper.comment .wall-item-author{margin-left:50px;}
+.wall-item-outside-wrapper.comment .wall-item-photo-menu{min-width:50px;top:60px;}
+.comment-wwedit-wrapper{}
+.comment-edit-wrapper{border-top:1px #aaa solid;}
+[class^="comment-edit-bb"]{list-style:none;display:none;margin:-40px 0 5px 60px;width:75%;}[class^="comment-edit-bb"]>li{display:inline-block;margin:0 10px 0 0;visibility:none;}
+.comment-wwedit-wrapper img,.comment-edit-wrapper img{width:20px;height:20px;}
+.comment-edit-photo-link,.comment-edit-photo{margin-left:10px;}
+.my-comment-photo{width:40px;height:40px;padding:5px;}
+[class^="comment-edit-text"]{margin:5px 0 10px 20px;width:84.5%;}
+.comment-edit-text-empty{height:20px;border:2px #babdd6 solid;border-radius:5px;color:#babdb6;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.comment-edit-text-empty:hover{color:#999999;}
+.comment-edit-text-full{height:10em;border-radius:5px;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}
+.comment-edit-submit-wrapper{width:90%;margin:5px 5px 10px 50px;text-align:right;}
+.comment-edit-submit{height:22px;background-color:#555753;color:#eeeeec;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;border:0;}
+.wall-item-body code{display:block;padding:0 0 10px 5px;border-color:#ccc;border-style:solid;border-width:1px 1px 1px 10px;background:#eee;color:#444;width:95%;}
+div[id$="text"]{font-weight:bold;border-bottom:1px solid #ccc;}
+div[id$="wrapper"]{height:100%;margin-bottom:1em;}div[id$="wrapper"] br{clear:left;}
+[id$="-end"],[class$="end"]{clear:both;margin:0 0 10px 0;}
+#advanced-profile-with{margin-left:200px;}
+.photos{height:auto;overflow:auto;}
+#photo-top-links{margin-bottom:30px;}
+.photo-album-image-wrapper,.photo-top-image-wrapper{float:left;-moz-box-shadow:3px 3px 10px 0 #000;-webkit-box-shadow:3px 3px 10px 0 #000;box-shadow:3px 3px 10px 0 #000;background-color:#eee;color:#111;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding-bottom:30px;position:relative;margin:0 10px 10px 0;}
+#photo-photo{max-width:100%;}#photo-photo img{max-width:100%;}
+.photo-top-image-wrapper a:hover,#photo-photo a:hover,.photo-album-image-wrapper a:hover{border-bottom:0;}
+.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-top-album-name{position:absolute;bottom:0;padding:0 5px;}
+.caption{position:absolute;bottom:0;margin:0 5px;}
+#photo-photo{position:relative;float:left;}
+#photo-prev-link,#photo-next-link{position:absolute;width:30%;height:100%;background-color:rgba(255, 255, 255, 0.5);opacity:0;-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;background-position:center center;background-repeat:no-repeat;}
+#photo-prev-link{left:0;top:0;background-image:url(prev.png);}
+#photo-next-link{right:0;top:0;background-image:url(next.png);}
+#photo-prev-link a,#photo-next-link a{display:block;width:100%;height:100%;overflow:hidden;text-indent:-900000px;}
+#photo-prev-link: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;}
+#photo-next-link: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;}
+#photo-next-link .icon{display:none;}
+#photo-prev-link .icon{display:none;}
+#photos-upload-spacer,#photos-upload-new-wrapper,#photos-upload-exist-wrapper{margin-bottom:1em;}
+#photos-upload-existing-album-text,#photos-upload-newalbum-div{background-color:#555753;color:#eeeeec;padding:1px;}
+#photos-upload-album-select,#photos-upload-newalbum{width:99%;}
+#photos-upload-perms-menu{text-align:right;}
+#photo-edit-caption,#photo-edit-newtag,#photo-edit-albumname{float:left;margin-bottom:25px;}
+#photo-edit-link-wrap{margin-bottom:15px;}
+#photo-edit-caption,#photo-edit-newtag{width:100%;}
+#photo-like-div{margin-bottom:25px;}
+#photo-edit-caption-end,#photo-edit-tags-end,#photo-edit-albumname-end{clear:both;}
+#photo-edit-delete-button{margin-left:200px;}
+#photo-edit-end{margin-bottom:35px;}
+#photo-caption{font-size:110%;font-weight:bold;margin-top:15px;margin-bottom:15px;}
+.prvmail-text{width:100%;}
+#prvmail-subject{width:100%;color:#eec;background:#444;}
+#prvmail-submit-wrapper{margin-top:10px;}
+#prvmail-submit{float:right;margin-top:0;}
+#prvmail-submit-wrapper div{margin-right:5px;float:left;}
+.mail-list-outside-wrapper{margin-top:20px;}
+.mail-list-sender{float:left;}
+.mail-list-detail{margin-left:90px;}
+.mail-list-sender-name{display:inline;font-size:1.1em;}
+.mail-list-date{display:inline;font-size:0.9em;padding-left:10px;}
+.mail-list-sender-name,.mail-list-date{font-style:italic;}
+.mail-list-subject{font-size:1.2em;}
+.mail-list-delete-wrapper{float:right;}
+.mail-list-outside-wrapper-end{clear:both;border-bottom:1px #eec dotted;}
+.mail-conv-sender{float:left;margin:0px 5px 5px 0px;}
+.mail-conv-sender-photo{width:32px;height:32px;}
+.mail-conv-sender-name{float:left;}
+.mail-conv-date{float:right;}
+.mail-conv-subject{clear:right;font-weight:bold;font-size:1.2em;}
+.mail-conv-body{clear:both;}
+.mail-conv-delete-wrapper{margin-top:5px;}
+.view-contact-wrapper,.contact-entry-wrapper{float:left;margin:0 5px 40px 0;width:120px;height:120px;padding:3px;position:relative;}
+.contact-direction-wrapper{position:absolute;top:20px;}
+.contact-edit-links{position:absolute;top:60px;}
+.contact-entry-photo{margin-left:20px;}
+.contact-entry-name{width:120px;font-weight:bold;}
+.contact-entry-photo{position:relative;}
+.contact-entry-edit-links .icon{border:1px solid #babdb6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:#fff;}
+#contact-entry-url,[id^="contact-entry-url"]{font-size:smaller;}
+#contact-entry-network,[id^="contact-entry-network"]{font-size:smaller;font-style:italic;}
+#contact-edit-banner-name{font-size:1.5em;}
+#contact-edit-photo-wrapper{position:relative;float:left;padding:20px;}
+#contact-edit-direction-icon{position:absolute;top:60px;left:0;}
+#contact-edit-nav-wrapper{margin-left:0px;}
+#contact-edit-links{margin-top:23px;}#contact-edit-links ul{list-style-type:none;}
+#contact-drop-links{margin-left:5px;}
+#contact-edit-nav-wrapper .icon{border:1px solid #babdb6;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
+#contact-edit-poll-wrapper{margin-left:0px;}
+#contact-edit-last-update-text{margin-bottom:15px;}
+#contact-edit-last-updated{font-weight:bold;}
+#contact-edit-poll-text{display:inline;}
+#contact-edit-info_tbl,#contact-edit-info_parent,.mceLayout{width:100%;}
+#contact-edit-end{clear:both;margin-bottom:65px;}
+.contact-photo-menu-button{position:absolute;background-image:url("photo-menu.jpg");background-position:top left;background-repeat:no-repeat;margin:0px;padding:0px;width:16px;height:16px;top:64px;left:0px;overflow:hidden;text-indent:40px;display:none;}
+.contact-photo-menu{width:auto;border:2px solid #444;background:#eee;color:#111;position:absolute;left:0px;top:90px;display:none;z-index:10000;}.contact-photo-menu ul{margin:0px;padding:0px;list-style:none;}
+.contact-photo-menu li a{display:block;padding:2px;}.contact-photo-menu li a:hover{color:#fff;background:#3465A4;text-decoration:none;}
+#id_openid_url{background:url(login-bg.gif) no-repeat;background-position:0 50%;padding-left:18px;}
+#settings-nickname-desc{background-color:#eee;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:5px;color:#111;}
+#settings-default-perms{margin-bottom:20px;}
+#register-form div,#profile-edit-form div{clear:both;}
+.settings-block label{clear:left;}
+.settings-block input{margin:10px 5px;}
+#profile-edit-marital-label span{margin:-4px;}
+.settings-submit-wrapper,.profile-edit-submit-wrapper{margin:0 0 30px -3px;}
+.profile-edit-side-div{display:none;}
+#profiles-menu-trigger{margin:0px 0px 0px 25px;}
+.profile-listing{float:left;margin:20px 20px 0px 0px;}
+.icon-profile-edit{background:url("icons.png") -150px 0px no-repeat;border:0;cursor:pointer;display:block;float:right;width:20px;height:20px;margin:0 0 -18px;position:absolute;text-decoration:none;top:113px;right:260px;}
+#profile-edit-links ul{margin:20px 0;padding:0;list-style:none;}
+.marital{margin-top:5px;}
+#register-sitename{display:inline;font-weight:bold;}
+#advanced-expire-popup{background:#2e2f2e;color:#eec;}
+#id_ssl_policy{width:374px;}
+#theme-preview img{margin:10px 10px 10px 288px;}
+.group-delete-wrapper{margin:-31px 50px 0 0;float:right;}
+#group-edit-submit-wrapper{margin:0 0 10px 0;display:inline;}
+#group-edit-desc{margin:10px 0px;}
+#group-members,#prof-members{height:200px;overflow:auto;border:1px solid #555753;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}
+#group-all-contacts,#prof-all-contacts{height:200px;overflow:auto;border:1px solid #555753;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;}
+#group-members h3,#group-all-contacts h3,#prof-members h3,#prof-all-contacts h3{color:#eeeeec;background-color:#555753;margin:0;padding:5px;}
+#group-separator,#prof-separator{display:none;}
+#cropimage-wrapper{float:left;}
+#crop-image-form{clear:both;}
+.intro-wrapper{margin-top:20px;}
+.intro-fullname{font-size:1.1em;font-weight:bold;}
+.intro-desc{margin-bottom:20px;font-weight:bold;}
+.intro-note{padding:10px;}
+.intro-end{padding:30px;}
+.intro-form{float:left;}
+.intro-approve-form,.intro-approve-as-friend-end{clear:both;}
+.intro-submit-approve,.intro-submit-ignore{margin-right:20px;}
+.intro-submit-approve{margin-top:15px;}
+.intro-approve-as-friend-label,.intro-approve-as-fan-label,.intro-approve-as-friend,.intro-approve-as-fan{float:left;}
+.intro-form-end{clear:both;margin-bottom:10px;}
+.intro-approve-as-friend-desc{margin-top:10px;}
+.intro-approve-as-end{clear:both;margin-bottom:10px;}
+.intro-end,.clear{clear:both;}
+.eventcal{float:left;font-size:20px;}
+.event{background:#2e2f2e;}
+.vevent{border:1px solid #ccc;}.vevent .event-description,.vevent .event-location,.vevent .event-start{margin-left:10px;margin-right:10px;}
+#new-event-link{margin-bottom:10px;}
+.edit-event-link,.plink-event-link{}
+.event-description:before{content:url('../../../images/calendar.png');margin-right:15px;}
+.event-start,.event-end{margin-left:10px;width:330px;font-size:smaller;}
+.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:monospace;}
+.today{font-weight:bold;color:#FF0000;}
+#event-start-text,#event-finish-text{margin-top:10px;margin-bottom:5px;}
+#event-nofinish-checkbox,#event-nofinish-text,#event-adjust-checkbox,#event-adjust-text,#event-share-checkbox{float:left;}
+#event-datetime-break{margin-bottom:10px;}
+#event-nofinish-break,#event-adjust-break,#event-share-break{clear:both;}
+#event-desc-text,#event-location-text{margin-top:10px;margin-bottom:5px;}
+#event-submit{margin-top:10px;}
+.body-tag{margin:10px 0;opacity:0.5;}.body-tag:hover{opacity:1.0 !important;}
+.filesavetags,.categorytags{margin:20px 0;opacity:0.5;}
+.filesavetags:hover,.categorytags:hover{margin:20px 0;opacity:1.0 !important;}
+.item-select{opacity:0.1;margin:5px 0 0 6px !important;}.item-select:hover{opacity:1;}
+.checkeditem{opacity:1;}
+#item-delete-selected{margin-top:30px;}
+.delete-checked{position:absolute;left:35px;margin-top:20px;}
+#item-delete-selected-end{clear:both;}
+#item-delete-selected-icon{float:left;margin-right:5px;}
+#item-delete-selected-desc{float:left;margin-right:5px;}#item-delete-selected-desc:hover{text-decoration:underline;}
+.fc-state-highlight{background:#eec;color:#2e2f2e;}
+.directory-item{float:left;margin:0 5px 4px 0;padding:3px;width:180px;height:250px;position:relative;}
+#group-sidebar{margin-bottom:10px;}
+.group-selected,.nets-selected,.fileas-selected{padding:3px;color:#111;background:#f8f8f8;font-weight:bold;}
+.group-selected:hover,.nets-selected:hover,.fileas-selected:hover{color:#111;}
+.groupsideedit{margin-right:10px;}
+#sidebar-group-ul{padding-left:0;}
+#sidebar-group-list{margin:0 0 5px 0;}#sidebar-group-list ul{list-style-type:none;list-style-position:inside;}
+#sidebar-group-list li{margin-top:10px;}
+#sidebar-group-list .icon{display:inline-block;height:12px;width:12px;}
+#sidebar-new-group{margin:auto;display:inline-block;color:#efefef;text-decoration:none;text-align:center;}
+#peoplefind-sidebar form{margin-bottom:10px;}
+#sidebar-new-group:hover{}
+#sidebar-new-group:active{position:relative;top:1px;}
+#side-peoplefind-url{background-color:#e5e0cf;color:#666;border:1px 666 solid;margin-right:3px;width:75%;}#side-peoplefind-url:hover,#side-peoplefind-url:focus{background-color:#efefef;color:#222;border:1px 333 solid;}
+.nets-ul{list-style-type:none;padding-left:0px;}.nets-ul li{margin:10px 0 0;}
+.nets-link,.nets-all{margin-left:0px;}
+#netsearch-box{margin-top:20px;width:150px;}#netsearch-box #search-submit{margin:5px 0px 0px 0px;}
+#pending-update{float:right;color:#fff;font-weight:bold;background-color:#ff0000;padding:0 .3em;}
+.admin.linklist{border:0;padding:0;}
+.admin.link{list-style-position:inside;}
+#adminpage{color:#111;background:transparent;margin:5px;padding:10px;}#adminpage dl{clear:left;margin-bottom:2px;padding-bottom:2px;border-bottom:1px solid #000;}
+#adminpage dt{width:250px;float:left;font-weight:bold;}
+#adminpage dd{margin-left:250px;}
+#adminpage h3{border-bottom:1px solid #ccc;}
+#adminpage .submit{clear:left;}
+#adminpage #pluginslist{margin:0;padding:0;}
+#adminpage .plugin{list-style:none;display:block;border:1px solid #888;padding:1em;margin-bottom:5px;clear:left;}
+#adminpage .toggleplugin{float:left;margin-right:1em;}
+#adminpage table{width:100%;border-bottom:1px solid #000;margin:5px 0;}#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:#bbc7d7;}
+#adminpage .selectall{text-align:right;}
+#adminpage #users a{text-decoration:underline;}
+#users .name{color:#eec;}
+.field{overflow:auto;}.field label{width:38%;display:inline-block;font-size:1.077em;margin:0 10px 1em 0;border:1px #999 solid;padding:5px;background:#ccc;color:#111;}
+.field .onoff{float:right;margin:0 330px 0 auto;width:80px;}.field .onoff a{display:block;border:1px solid #666;padding:3px 6px 4px 10px;height:16px;text-decoration:none;}
+.field .onoff .on{background:url("../../../images/onoff.jpg") no-repeat 42px 1px #999999;color:#111;text-align:left;}
+.field .onoff .off{background:url("../../../images/onoff.jpg") no-repeat 2px 1px #cccccc;color:#333;text-align:right;}
+.hidden{display:none !important;}
+.field textarea{width:80%;height:100px;}
+.field_help{display:block;margin-left:297px;color:#666;}
+.field.radio .field_help{margin-left:297px;}
+label{width:38%;display:inline-block;font-size:1.077em;margin:0 10px 1em 0;border:1px #999 solid;padding:5px;background:#ccc;color:#111;}
+input{width:250px;height:25px;border:1px #999 solid;}input[type="text"],input[type="password"],input[type="search"]{width:250px;height:25px;border:1px #999 solid;}
+input[type="checkbox"],input[type="radio"]{border:1px #999 solid;margin:0 0 0 0;height:15px;width:15px;}
+input[type="submit"],input[type="button"]{background-color:#555753;border:2px outset #444;border-radius:5px;box-shadow:1px 3px 4px 0 #111;color:#eeeeec;cursor:pointer;font-weight:bold;width:auto;text-shadow:1px 1px #111;-webkit-border-radius:5px;-moz-border-radius:5px;}
+input[type="submit"]:active,input[type="button"]:active{box-shadow:0 0 0 0;}
+.popup{width:100%;height:100%;top:0px;left:0px;position:absolute;display:none;}.popup .background{background-color:#000;opacity:0.5;width:100%;height:100%;position:absolute;top:0px;left:0px;}
+.popup .panel{top:25%;left:25%;width:50%;height:50%;padding:1em;position:absolute;border:4px solid #000000;background-color:#FFFFFF;}
+#panel{z-index:100;}
+.grey{color:grey;}
+.orange{color:orange;}
+.red{color:red;}
+.popup .panel .panel_text{display:block;overflow:auto;height:80%;}
+.popup .panel .panel_in{width:100%;height:100%;position:relative;}
+.popup .panel .panel_actions{width:100%;bottom:4px;left:0px;position:absolute;}
+.panel_text .progress{width:50%;overflow:hidden;height:auto;border:1px solid #cccccc;margin-bottom:5px;}.panel_text .progress span{float:right;display:block;width:25%;background-color:#eeeeee;text-align:right;}
+.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;}
+.iconspacer{display:block;width:16px;height:16px;}
+.icon{display:block;width:20px;height:20px;background:url(icons.png) no-repeat;border:0;text-decoration:none;border-radius:5px;}.icon:hover{border:0;text-decoration:none;}
+.editicon{display:inline-block;width:21px;height:21px;background:url(editicons.png) no-repeat;border:0;text-decoration:none;}
+.shadow{box-shadow:2px 2px 5px 2px #111;}.shadow:active,.shadow:focus,.shadow:hover{box-shadow:0 0 0 0;}
+.editicon:hover{border:0;}
+.boldbb{background-position:0px 0px;}.boldbb:hover{background-position:-22px 0px;}
+.italicbb{background-position:0px -22px;}.italicbb:hover{background-position:-22px -22px;}
+.underlinebb{background-position:0px -44px;}.underlinebb:hover{background-position:-22px -44px;}
+.quotebb{background-position:0px -66px;}.quotebb:hover{background-position:-22px -66px;}
+.codebb{background-position:0px -88px;}.codebb:hover{background-position:-22px -88px;}
+.imagebb{background-position:-44px 0px;}.imagebb:hover{background-position:-66px 0px;}
+.urlbb{background-position:-44px -22px;}.urlbb:hover{background-position:-66px -22px;}
+.videobb{background-position:-44px -44px;}.videobb:hover{background-position:-66px -44px;}
+.icon.drop,.icon.drophide,.icon.delete{float:left;margin:0 2px;}
+.icon.s22.delete{display:block;background-position:-110px 0;}
+.icon.s22.text{padding:10px 0px 0px 25px;width:200px;}
+.icon.text{text-indent:0px;}
+.icon.s16{min-width:16px;height:16px;}
+.s16 .add{background:url("../../../images/icons/16/add.png") no-repeat;}
+.add{margin:0px 5px;}
+.article{background-position:-50px 0;}
+.audio{background-position:-70px 0;}
+.block{background-position:-90px 0px;}
+.drop,.delete{background-position:-110px 0;}
+.drophide{background-position:-130px 0;}
+.edit{background-position:-150px 0;}
+.camera{background-position:-170px 0;}
+.dislike{background-position:-190px 0;}
+.file-as{background-position:-230px -60px;}
+.like{background-position:-211px 0;}
+.link{background-position:-230px 0;}
+.globe,.location{background-position:-50px -20px;}
+.noglobe,.nolocation{background-position:-70px -20px;}
+.no{background-position:-90px -20px;}
+.pause{background-position:-110px -20px;}
+.play{background-position:-130px -20px;}
+.pencil{background-position:-151px -18px;}
+.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;}
+.unlock{background-position:-88px -40px;}
+.video{background-position:-110px -40px;}
+.attach{background-position:-190px -40px;}
+.language{background-position:-210px -40px;}
+.starred{background-position:-130px -60px;}
+.unstarred{background-position:-150px -60px;}
+.tagged{background-position:-170px -60px;}
+.on{background-position:-50px -60px;}
+.off{background-position:-70px -60px;}
+.prev{background-position:-90px -60px;}
+.next{background-position:-110px -60px;}
+.icon.dim{opacity:0.3;}
+#pause{position:fixed;bottom:40px;right:30px;}
+.border{border:1px solid #babdb6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+.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 0;}
+.type-audio{background-position:-40px 0;}
+.type-text{background-position:-60px 0px;}
+.type-unkn{background-position:-80px 0;}
+.cc-license{margin-top:100px;font-size:0.7em;}
+footer{display:block;clear:both;}
+#profile-jot-text{height:20px;color:#666;border:1px solid #ccc;border-radius:5px;width:99.5%;}
+#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#eec;color:#2e2f2e;}
+#acl-wrapper{width:660px;margin:0 auto;}
+#acl-search{float:right;background:#ffffff url("../../../images/search_18.png") no-repeat right center;padding-right:20px;margin:6px;color:#111;}
+#acl-showall{float:left;display:block;width:auto;height:18px;background:#eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;padding:7px 10px 7px 30px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;color:#999;margin:5px 0;}#acl-showall.selected{color:#000;background:#ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat;}
+#acl-list{height:210px;border:1px solid #ccc;clear:both;margin-top:30px;overflow:auto;}
+.acl-list-item{border:1px solid #ccc;display:block;float:left;height:110px;margin:3px 0 5px 5px;width:120px;}.acl-list-item img{width:22px;height:22px;float:left;margin:5px 5px 20px;}
+.acl-list-item p{height:12px;font-size:10px;margin:0 0 22px;padding:2px 0 1px;}
+.acl-list-item a{background:#cccccc 3px 3px no-repeat;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;clear:both;font-size:10px;display:block;width:55px;height:20px;color:#999;margin:5px auto 0;padding:0 3px;text-align:center;vertical-align:middle;}
+#acl-wrapper a:hover{text-decoration:none;color:#000;border:0;}
+.acl-button-show{background-image:url('../../../images/show_off.png');margin:0 auto;}
+.acl-button-hide{background-image:url('../../../images/hide_off.png');margin:0 auto;}
+.acl-button-show.selected{color:#000;background-color:#9ade00;background-image:url(../../../images/show_on.png);}
+.acl-button-hide.selected{color:#000;background-color:#ff4141;background-image:url(../../../images/hide_on.png);}
+.acl-list-item.groupshow{border-color:#9ade00;}
+.acl-list-item.grouphide{border-color:#ff4141;}
+.acpopup{max-height:175px;max-width:42%;background-color:#555753;color:#fff;overflow:auto;z-index:100000;border:1px solid #cccccc;}
+.acpopupitem{background-color:#555753;padding:4px;clear:left;}.acpopupitem img{float:left;margin-right:4px;}
+.acpopupitem.selected{color:#2e3436;background-color:#eeeeec;}
+.qcomment-wrapper{padding:0px;margin:5px 5px 5px 81%;}
+.qcomment{opacity:0.5;}.qcomment:hover{opacity:1.0;}
+#network-star-link{margin-top:10px;}
+.network-star{float:left;margin-right:5px;}.network-star.icon.starred{display:inline-block;}
+.fileas-ul{padding:0;}
+#sidebar-page-list ul{padding:0;margin:5px 0;}
+#sidebar-page-list li{list-style:none;}
+#jappix_mini{margin-left:130px;position:fixed;bottom:0;right:175px !important;z-index:999;}
+@media handheld{body{font-size:15pt;}}
diff --git a/view/theme/dispy/style.less b/view/theme/dispy/style.less
new file mode 100644
index 000000000..34830cf32
--- /dev/null
+++ b/view/theme/dispy/style.less
@@ -0,0 +1,2879 @@
+/*
+ * dispy
+ *
+ * maintainer: simon
+ * author: unknown
+ *
+ * Author's notes:
+ * A few things of note here. The less file is our working copy,
+ * and the CSS is *generated* from it. The CSS is the one that's
+ * included in the HTML, and not the less one. This is to save
+ * bandwidth and processing time.
+ */
+/* from html5boilerplate */
+/* these are to tell browsers they should be displayed a certain way */
+
+article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
+ display: block; }
+
+audio, canvas, video, time {
+ display: inline-block;
+ *display: inline;
+ *zoom: 1; }
+
+audio:not([controls]), [hidden] {
+ display: none; }
+
+/*
+ * Base
+ */
+/*
+ * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
+ * 2. Force vertical scrollbar in non-IE
+ * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
+ */
+
+html {
+ font-size: 100%;
+ overflow-y: scroll;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%; }
+
+body {
+ margin: 0;
+ font-size: 16px;
+ line-height: 1.1em;
+ font-family: sans-serif;
+ color: #222;
+ background-color: #e8e8e8; }
+
+button, input, select, textarea {
+ font-family: sans-serif;
+ color: #222;
+ background-color: #e8e8e8; }
+
+select {
+ border: 1px #555 dotted;
+ padding: 3px;
+ margin: 3px;
+ color: #222;
+ background: #e8e8e8; }
+
+option {
+ padding: 3px;
+ color: #222;
+ background: #e8e8e8;
+ &[selected="selected"] {
+ color: #111;
+ background: #cca; } }
+
+ul, ol {
+ padding: 0; }
+
+/* remember to define focus styles! */
+
+:focus {
+ outline: 0; }
+
+[disabled="disabled"] {
+ background: #ddd;
+ color: #333; }
+
+/* remember to highlight inserts somehow! */
+
+ins {
+ background-color: #ff9;
+ color: #000;
+ text-decoration: none; }
+
+mark {
+ background-color: #ff9;
+ color: #000;
+ font-style: italic;
+ font-weight: bold; }
+
+/* Redeclare monospace font family: h5bp.com/j */
+
+pre, code, kbd, samp, .wall-item-body code {
+ font-family: monospace, monospace;
+ _font-family: monospace;
+ font-size: 1em; }
+
+/* Improve readability of pre-formatted text in all browsers */
+
+pre, .wall-item-body code {
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word; }
+
+q {
+ quotes: none;
+ &:before, &:after {
+ content: "";
+ content: none; } }
+
+small {
+ font-size: 85%; }
+
+/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
+
+sub, sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline; }
+
+sub {
+ bottom: -0.25em; }
+
+sup {
+ top: -0.5em; }
+
+img {
+ border: 0 none; }
+
+a {
+ color: #3465a4;
+ text-decoration: none;
+ margin-bottom: 1px;
+ &:hover img {
+ text-decoration: none; } }
+
+blockquote {
+ background: #eee;
+ color: #111;
+ text-indent: 5px;
+ padding: 5px;
+ border: 1px #aaa solid;
+ border-radius: 5px; }
+
+a:hover {
+ color: #729fcf;
+ border-bottom: 1px dotted #729fcf; }
+
+.required {
+ display: inline;
+ color: #f00;
+ font-size: 16px;
+ font-weight: bold;
+ margin: 3px; }
+
+.fakelink, .lockview {
+ color: #3465a4;
+ cursor: pointer; }
+
+.fakelink:hover {
+ color: #729fcf; }
+
+.smalltext {
+ font-size: 0.7em; }
+
+#panel {
+ position: absolute;
+ font-size: 0.8em;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #fff;
+ background-color: #2e3436;
+ color: #eeeeec;
+ padding: 1em; }
+
+.pager {
+ margin-top: 60px;
+ display: block;
+ clear: both;
+ text-align: center;
+ span {
+ padding: 4px;
+ margin: 4px; } }
+
+.pager_current {
+ background-color: #729fcf;
+ color: #fff; }
+
+/**
+ * global
+ */
+/* .tool .action */
+
+.action {
+ margin: 5px 0; }
+
+.tool {
+ margin: 5px 0;
+ list-style: none; }
+
+#articlemain {
+ width: 100%;
+ height: 100%;
+ margin: 0 auto; }
+
+/**
+ * login
+ */
+
+#asidemain .field {
+ overflow: hidden;
+ width: 200px; }
+
+#login-extra-links {
+ overflow: auto !important;
+ padding-top: 60px !important;
+ width: 100% !important;
+ a {
+ margin-right: 20px; } }
+
+#login_standard {
+ display: block !important;
+ float: none !important;
+ height: 100% !important;
+ position: relative !important;
+ width: 100% !important;
+ .field label {
+ width: 200px !important; }
+ input {
+ margin: 0 0 8px !important;
+ width: 210px !important;
+ &[type="text"] {
+ margin: 0 0 8px !important;
+ width: 210px !important; } } }
+
+#login-submit-wrapper {
+ margin: 0 !important; }
+
+#login-submit-button {
+ margin-left: 0px !important; }
+
+#asidemain #login_openid {
+ position: relative !important;
+ float: none !important;
+ margin-left: 0px !important;
+ height: auto !important;
+ width: 200px !important; }
+
+#login_openid {
+ #id_openid_url {
+ width: 180px !important;
+ overflow: hidden !important; }
+ label {
+ width: 180px !important; } }
+
+/**
+ * nav
+ */
+
+nav {
+ height: 60px;
+ background-color: #2e3436;
+ color: #eeeeec;
+ position: relative;
+ padding: 20px 20px 10px 95px;
+ a {
+ text-decoration: none;
+ color: #eeeeec;
+ border: 0px;
+ &:hover {
+ text-decoration: none;
+ color: #eeeeec;
+ border: 0px; } }
+ #banner {
+ display: block;
+ position: absolute;
+ left: 51px;
+ top: 25px;
+ #logo-text a {
+ font-size: 40px;
+ font-weight: bold;
+ margin-left: 3px; } } }
+
+ul#user-menu-popup {
+ display: none;
+ position: absolute;
+ background-color: #555753;
+ width: 100%;
+ padding: 10px 0px;
+ margin: 0px;
+ top: 20px;
+ left: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px;
+ box-shadow: 5px 10px 10px 0 #111;
+ z-index: 10000;
+ li {
+ display: block;
+ a {
+ display: block;
+ padding: 5px;
+ &:hover {
+ color: #2e3436;
+ background-color: #eeeeec; }
+ &.nav-sep {
+ border-top: 1px solid #eeeeec; } } } }
+
+nav .nav-link {
+ display: inline-block;
+ width: 22px;
+ height: 22px;
+ overflow: hidden;
+ margin: 0px 5px 5px;
+ text-indent: 50px;
+ background: transparent url(icons.png) 0 0 no-repeat; }
+
+#nav-apps-link {
+ background-position: 0 -66px;
+ &:hover {
+ background-position: -22px -66px; } }
+
+#nav-community-link, #nav-contacts-link {
+ background-position: 0 -22px;
+ &:hover {
+ background-position: -22px -22px; } }
+
+#nav-directory-link {
+ background-position: -44px -154px;
+ &:hover {
+ background-position: -66px -154px; } }
+
+#nav-help-link {
+ background-position: 0 -110px;
+ &:hover {
+ background-position: -22px -110px; } }
+
+#nav-home-link {
+ background-position: -44px -132px;
+ &:hover {
+ background-position: -66px -132px; } }
+
+#nav-intro-link {
+ background-position: 0px -190px;
+ &:hover {
+ background-position: -44px -190px; } }
+
+#nav-login-link, #nav-logout-link {
+ background-position: 0 -88px;
+ &:hover {
+ background-position: -22px -88px; } }
+
+#nav-messages-link {
+ background-position: -44px -88px;
+ &:hover {
+ background-position: -66px -88px; } }
+
+#nav-notify-link, #nav-notifications-linkmenu {
+ background-position: -44px -110px; }
+
+#nav-notify-link:hover {
+ background-position: -66px -110px; }
+
+#nav-network-link {
+ background-position: 0px -177px;
+ &:hover {
+ background-position: -22px -177px; } }
+
+#nav-search-link {
+ background-position: 0 -44px;
+ &:hover {
+ background-position: -22px -44px; } }
+
+#profile-link, #profile-title, #wall-image-upload, #wall-file-upload, #profile-attach-wrapper, #profile-audio, #profile-link, #profile-location, #profile-nolocation, #profile-title, #jot-title, #profile-upload-wrapper, #profile-video, #profile-jot-submit, #wall-image-upload-div, #wall-file-upload-div, .icon, .hover, .focus, .pointer {
+ cursor: pointer; }
+
+/* popup notifications */
+
+div.jGrowl div {
+ &.notice {
+ background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
+ color: #ffffff;
+ padding-left: 58px; }
+ &.info {
+ background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
+ color: #ffffff;
+ padding-left: 58px; } }
+
+#nav-notifications-menu {
+ margin: 30px 0 0 -20px;
+ width: 275px;
+ max-height: 300px;
+ overflow-y: auto;
+ font-size: 9pt;
+ .contactname {
+ font-weight: bold;
+ font-size: 0.9em; }
+ img {
+ float: left;
+ margin-right: 5px; }
+ .notif-when {
+ font-size: 0.8em;
+ display: block; }
+ li {
+ word-wrap: normal;
+ border-bottom: 1px solid #000;
+ &:hover {
+ color: black; } }
+ a:hover {
+ color: black;
+ text-decoration: underline; } }
+
+nav #nav-notifications-linkmenu {
+ &.on .icon.s22.notify, &.selected .icon.s22.notify {
+ background-image: url("../../../images/icons/22/notify_on.png"); } }
+
+.show {
+ display: block; }
+
+#notifications {
+ height: 20px;
+ width: 170px;
+ position: absolute;
+ top: -19px;
+ left: 4px; }
+
+#nav-floater {
+ position: fixed;
+ top: 20px;
+ right: 1%;
+ padding: 5px;
+ background: #2e3436;
+ color: transparent;
+ border-radius: 5px;
+ z-index: 100;
+ width: 300px;
+ height: 60px; }
+
+#nav-buttons {
+ clear: both;
+ list-style: none;
+ padding: 0px;
+ margin: 0px;
+ height: 25px;
+ > li {
+ padding: 0;
+ display: inline-block;
+ margin: 0px -4px 0px 0px; } }
+
+.floaterflip {
+ display: block;
+ position: fixed;
+ z-index: 110;
+ top: 56px;
+ right: 19px;
+ width: 22px;
+ height: 22px;
+ overflow: hidden;
+ margin: 0px;
+ background: transparent url(icons.png) -190px -60px no-repeat; }
+
+.search-box {
+ display: inline-block;
+ margin: 5px;
+ position: fixed;
+ right: 0px;
+ bottom: 0px;
+ z-index: 100;
+ background: #1d1f1d;
+ border-radius: 5px; }
+
+#search-text {
+ border: 1px #eec solid;
+ background: #2e3436;
+ color: #eec; }
+
+.search-box #search-text {
+ margin: 8px;
+ width: 10em;
+ height: 14px;
+ color: #eec; }
+
+#scrollup {
+ position: fixed;
+ right: 5px;
+ bottom: 40px;
+ z-index: 100;
+ a:hover {
+ text-decoration: none;
+ border: 0; } }
+
+#user-menu {
+ box-shadow: 5px 0 10px 0 #111;
+ display: block;
+ width: 75%;
+ margin: 3px 0 0 0;
+ position: relative;
+ background-color: #555753;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ background: #555753 url("menu-user-pin.jpg") 98% center no-repeat;
+ clear: both;
+ top: 4px;
+ left: 10px;
+ padding: 2px;
+ > a {
+ vertical-align: top; } }
+
+#user-menu-label {
+ font-size: 12px;
+ padding: 3px 20px 9px 5px;
+ height: 10px; }
+
+.nav-ajax-update, .nav-ajax-left {
+ width: 30px;
+ height: 19px;
+ background: transparent url(notifications.png) 0 0 no-repeat;
+ color: #222;
+ font-weight: bold;
+ font-size: 0.8em;
+ padding-top: 0.2em;
+ text-align: center;
+ float: left;
+ margin: 0 -1px 0 3px;
+ display: block;
+ visibility: hidden; }
+
+.nav-ajax-update.show, .nav-ajax-left.show {
+ visibility: visible; }
+
+#net-update {
+ background-position: 0px 0px; }
+
+#mail-update {
+ background-position: -30px 0; }
+
+#notify-update {
+ background-position: -60px 0px; }
+
+#home-update {
+ background-position: -90px 0px; }
+
+#intro-update {
+ background-position: -120px 0px; }
+
+#lang-select-icon {
+ cursor: pointer;
+ position: fixed;
+ left: 28px;
+ bottom: 6px;
+ z-index: 10; }
+
+#language-selector {
+ position: fixed;
+ bottom: 2px;
+ left: 52px;
+ z-index: 10; }
+
+.menu-popup {
+ position: absolute;
+ display: none;
+ width: 11em;
+ background: #ffffff;
+ color: #2d2d2d;
+ margin: 0px;
+ padding: 0px;
+ list-style: none;
+ border: 3px solid #364e59;
+ z-index: 100000;
+ -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.7);
+ a {
+ display: block;
+ color: #2d2d2d;
+ padding: 5px 10px;
+ text-decoration: none;
+ &:hover {
+ background-color: #bdcdd4; } }
+ .menu-sep {
+ border-top: 1px solid #9eabb0; }
+ li {
+ float: none;
+ overflow: auto;
+ height: auto;
+ display: block;
+ img {
+ float: left;
+ width: 16px;
+ height: 16px;
+ padding-right: 5px; } }
+ .empty {
+ padding: 5px;
+ text-align: center;
+ color: #9eabb0; } }
+
+.notif-item {
+ font-size: small;
+ a {
+ vertical-align: middle; } }
+
+.notif-image {
+ width: 32px;
+ height: 32px;
+ padding: 7px 7px 0px 0px; }
+
+.notify-seen {
+ background: #ddd; }
+
+/**
+ * sysmsg
+ */
+
+#sysmsg_info {
+ position: fixed;
+ bottom: 0;
+ -moz-box-shadow: 3px 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ padding: 10px;
+ background-color: #fcaf3e;
+ border: 2px solid #f8911b;
+ border-bottom: 0;
+ padding-bottom: 50px;
+ z-index: 1000; }
+
+#sysmsg {
+ position: fixed;
+ bottom: 0;
+ -moz-box-shadow: 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ padding: 10px;
+ background-color: #fcaf3e;
+ border: 2px solid #f8911b;
+ border-bottom: 0;
+ padding-bottom: 50px;
+ z-index: 1000; }
+
+#sysmsg_info br, #sysmsg br {
+ display: block;
+ margin: 2px 0px;
+ border-top: 1px solid #ccccce; }
+
+/**
+ * aside
+ */
+
+#asidemain {
+ float: left;
+ font-size: smaller;
+ margin: 20px 0 20px 35px;
+ width: 25%;
+ display: inline; }
+
+/* for now, disappear these */
+
+#asideright, #asideleft {
+ display: none; }
+
+.vcard {
+ .fn {
+ font-size: 1.7em;
+ font-weight: bold;
+ border-bottom: 1px solid #729fcf;
+ padding-bottom: 3px; }
+ #profile-photo-wrapper {
+ margin: 20px;
+ img {
+ box-shadow: 3px 3px 10px 0 #000; } } }
+
+/* http://css-tricks.com/snippets/css/css-box-shadow/
+* box-shadow:
+* 1. The horizontal offset of the shadow, positive means
+* the shadow will be on the right of the box, a negative
+* offset will put the shadow on the left of the box.
+* 2. The vertical offset of the shadow, a negative one
+* means the box-shadow will be above the box, a
+* positive one means the shadow will be below the box.
+* 3. The blur radius (optional), if set to 0 the shadow
+* will be sharp, the higher the number, the more blurred
+* it will be.
+* 4. The spread radius (optional), positive values increase
+* the size of the shadow, negative values decrease the size.
+* Default is 0 (the shadow is same size as blur).
+* 5. Colo[u]r
+*/
+
+#asidemain {
+ h4 {
+ font-size: 1.2em; }
+ #viewcontacts {
+ text-align: right; } }
+
+.aprofile dt {
+ background: transparent;
+ color: #666666;
+ font-weight: bold;
+ box-shadow: 1px 1px 5px 0 #000;
+ margin: 15px 0 5px;
+ padding-left: 5px; }
+
+#profile-extra-links ul {
+ margin-left: 0px;
+ padding-left: 0px;
+ list-style: none; }
+
+#dfrn-request-link {
+ background: #3465a4 url(connect.png) no-repeat 95% center;
+ border-radius: 5px 5px 5px 5px;
+ color: #fff;
+ display: block;
+ font-size: 1.2em;
+ padding: 0.2em 0.5em; }
+
+#wallmessage-link {
+ /*background: #3465A4 url(connect.png) no-repeat 95% center;*/
+ /*border-radius: 5px 5px 5px 5px;*/
+ color: #eee;
+ display: block;
+ font-size: 1.2em;
+ padding: 0.2em 0.5em; }
+
+#netsearch-box {
+ margin: 20px 0px 30px;
+ width: 150px;
+ #search-submit {
+ margin: 5px 5px 0px 0px; } }
+
+.ttright {
+ margin: 0px 0px 0px 0px; }
+
+/**
+ * contacts block
+ */
+
+.contact-block-div {
+ width: 50px;
+ height: 50px;
+ float: left; }
+
+.contact-block-textdiv {
+ width: 150px;
+ height: 34px;
+ float: left; }
+
+#contact-block-end {
+ clear: both; }
+
+/**
+ * jot
+ */
+
+#jot {
+ /*width: 785px;*/
+ margin: 10px 0 20px 0px;
+ width: 100%;
+ #jot-tools {
+ margin: 0px;
+ padding: 0px;
+ height: 35px;
+ overflow: none;
+ width: 100%;
+ /*background-color: #0e232e;*/
+ /*border-bottom: 2px solid #9eabb0;*/
+ span {
+ float: left;
+ margin: 10px 20px 2px 0px;
+ a {
+ display: block; } }
+ .perms {
+ float: right;
+ width: 40px; }
+ li.loading {
+ float: right;
+ background-color: #ffffff;
+ width: 20px;
+ vertical-align: center;
+ text-align: center;
+ border-top: 2px solid #9eabb0;
+ height: 38px;
+ img {
+ margin-top: 10px; } } }
+ #jot-title {
+ border: 1px solid #ccc;
+ margin: 0 0 5px;
+ height: 20px;
+ width: 90%;
+ font-weight: bold;
+ border-radius: 5px;
+ vertical-align: middle; } }
+
+#jot-category {
+ margin: 5px 0;
+ border-radius: 5px;
+ border: 1px #ccc solid;
+ color: #666;
+ font-size: smaller;
+ &:focus {
+ color: #111; } }
+
+#jot #character-counter {
+ width: 6%;
+ float: right;
+ text-align: right;
+ height: 15px;
+ line-height: 20px;
+ padding: 2px 20px 5px 0; }
+
+#profile-jot-text_parent {
+ box-shadow: 5px 0 10px 0 #111; }
+
+#profile-jot-text_tbl {
+ margin-bottom: 10px;
+ background: #777; }
+
+#profile-jot-text_ifr {
+ width: 99.900002% !important; }
+
+#profile-jot-text_toolbargroup, .mceCenter tr {
+ background: #777; }
+
+[id$="jot-text_ifr"] {
+ width: 99.900002% !important;
+ color: #2e2f2e;
+ background: #eec;
+ .mceContentBody {
+ color: #2e2f2e;
+ background: #eec; } }
+
+.defaultSkin {
+ tr.mceFirst {
+ background: #777; }
+ td {
+ &.mceFirst, &.mceLast {
+ background-color: #eec; } }
+ span.mceIcon, img.mceIcon, .mceButtonDisabled .mceIcon {
+ background-color: #eec; } }
+
+#profile-attach-wrapper, #profile-audio-wrapper, #profile-link-wrapper, #profile-location-wrapper, #profile-nolocation-wrapper, #profile-title-wrapper, #profile-upload-wrapper, #profile-video-wrapper {
+ float: left;
+ margin: 0 20px 0 0; }
+
+#profile-rotator-wrapper {
+ float: right; }
+
+#profile-jot-tools-end, #profile-jot-banner-end {
+ clear: both; }
+
+#profile-jot-email-wrapper {
+ margin: 10px 10% 0;
+ border: 1px solid #555753;
+ border-bottom: 0; }
+
+#profile-jot-email-label {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px; }
+
+#profile-jot-email {
+ width: 90%;
+ margin: 5px; }
+
+#profile-jot-networks {
+ margin: 0 10%;
+ border: 1px solid #555753;
+ border-top: 0;
+ border-bottom: 0;
+ padding: 5px; }
+
+#profile-jot-net {
+ margin: 5px 0; }
+
+#jot-preview-link {
+ margin: 0 0 0 10px;
+ border: 0;
+ text-decoration: none;
+ float: right; }
+
+.icon-text-preview {
+ margin: 0 0 -18px 0;
+ display: block;
+ width: 20px;
+ height: 20px;
+ background: url(icons.png) no-repeat -128px -40px;
+ border: 0;
+ text-decoration: none;
+ float: right;
+ cursor: pointer; }
+
+#profile-jot-perms {
+ float: right;
+ background-color: #555753;
+ height: 22px;
+ width: 20px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+ border: 0px;
+ margin: 0 10px 0 10px; }
+
+#profile-jot-plugin-wrapper {
+ width: 1px;
+ margin: 10px 0 0 0;
+ float: right; }
+
+#profile-jot-submit-wrapper {
+ float: right;
+ width: 100%;
+ list-style: none;
+ margin: 10px 0 0 0;
+ padding: 0; }
+
+#profile-jot-submit {
+ height: auto;
+ background-color: #555753;
+ color: #eeeeec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 2px outset #222420;
+ margin: 0;
+ float: right;
+ text-shadow: 1px 1px #111;
+ width: auto;
+ &:active {
+ box-shadow: 0 0 0 0; } }
+
+#jot-perms-icon {
+ height: 22px;
+ width: 20px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ overflow: hidden;
+ border: 0; }
+
+#profile-jot-acl-wrapper {
+ margin: 0 10px;
+ border: 1px solid #555753;
+ border-top: 0;
+ display: block !important; }
+
+#group_allow_wrapper, #group_deny_wrapper, #acl-permit-outer-wrapper {
+ width: 47%;
+ float: left; }
+
+#contact_allow_wrapper, #contact_deny_wrapper, #acl-deny-outer-wrapper {
+ width: 47%;
+ float: right; }
+
+#acl-permit-text {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px;
+ float: left; }
+
+#jot-public {
+ background-color: #555753;
+ color: #ff0000;
+ padding: 5px;
+ float: left; }
+
+#acl-deny-text {
+ background-color: #555753;
+ color: #ccccce;
+ padding: 5px;
+ float: left; }
+
+#acl-permit-text-end, #acl-deny-text-end {
+ clear: both; }
+
+#jot-title-desc {
+ color: #ccc; }
+
+#profile-jot-desc {
+ color: #a00;
+ margin: 5px 0; }
+
+#jot-title-wrapper {
+ margin-bottom: 5px; }
+
+#jot-title-display {
+ font-weight: bold; }
+
+.jothidden {
+ display: none; }
+
+#jot-preview-content {
+ background-color: #ffffe0;
+ color: #111;
+ border: 1px #aa0 solid;
+ border-radius: 5px;
+ padding: 3px 3px 6px 10px;
+ .wall-item-outside-wrapper {
+ border: 0;
+ border-radius: 0px; } }
+
+/**
+ * section
+ */
+
+#sectionmain {
+ margin: 20px;
+ font-size: 0.8em;
+ min-width: 475px;
+ width: 67%;
+ float: left;
+ display: inline; }
+
+/**
+ * tabs
+ */
+
+.tabs {
+ list-style: none;
+ margin: 10px 0;
+ padding: 0;
+ li {
+ display: inline;
+ font-size: smaller;
+ font-weight: bold; } }
+
+.tab {
+ border: 1px solid #729fcf;
+ padding: 4px;
+ &:hover, &.active:hover, &:active {
+ background: #729fcf;
+ color: #eeeeec; }
+ &.active {
+ background: #729fcf;
+ color: #eeeeec;
+ a {
+ color: #729fcf; } }
+ a {
+ border: 0;
+ text-decoration: none; } }
+
+/**
+ * items
+ */
+
+.wall-item-outside-wrapper {
+ border: 1px solid #aaa;
+ border-radius: 5px;
+ box-shadow: 5px 0 10px 0 #888;
+ &.comment {
+ margin-top: 5px; } }
+
+.wall-item-outside-wrapper-end {
+ clear: both; }
+
+.wall-item-content-wrapper {
+ position: relative;
+ padding: 10px;
+ width: auto; }
+
+.wall-item-outside-wrapper .wall-item-comment-wrapper {
+ /*margin-left: 90px;*/ }
+
+.shiny {
+ background: #efefdf;
+ border-radius: 5px; }
+
+.wall-outside-wrapper .shiny {
+ border-radius: 5px; }
+
+.heart {
+ color: red; }
+
+.wall-item-content {
+ overflow-x: auto;
+ margin: 0px 15px 0px 5px; }
+
+/* removing it from here, vs. putting it in .wall-item-content
+* might break things for people. we shall see ;) */
+
+[id^="tread-wrapper"], [class^="tread-wrapper"] {
+ margin: 15px 0 0 0;
+ padding: 0px;
+ /*overflow-x: auto;*/ }
+
+.wall-item-photo-menu {
+ display: none; }
+
+.wall-item-photo-menu-button {
+ display: none;
+ text-indent: -99999px;
+ background: #555753 url(menu-user-pin.jpg) no-repeat 75px center;
+ position: absolute;
+ overflow: hidden;
+ height: 20px;
+ width: 90px;
+ top: 85px;
+ left: 0;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px; }
+
+.wall-item-info {
+ float: left;
+ width: 110px; }
+
+.wall-item-photo-wrapper {
+ width: 80px;
+ height: 80px;
+ position: relative;
+ padding: 5px;
+ background-color: #555753;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px; }
+
+[class^="wall-item-tools"] * {
+ /*margin: 0 0 5px 0;*/
+ > * {
+ /*margin: 0 0 5px 0;*/ } }
+
+.wall-item-tools {
+ float: right;
+ opacity: 0.4;
+ -webkit-transition: all 1s ease-in-out;
+ -moz-transition: all 1s ease-in-out;
+ -o-transition: all 1s ease-in-out;
+ -ms-transition: all 1s ease-in-out;
+ transition: all 1s ease-in-out;
+ &:hover {
+ opacity: 1;
+ -webkit-transition: all 1s ease-in-out;
+ -moz-transition: all 1s ease-in-out;
+ -o-transition: all 1s ease-in-out;
+ -ms-transition: all 1s ease-in-out;
+ transition: all 1s ease-in-out; } }
+
+.wall-item-subtools1 {
+ height: 30px;
+ list-style: none outside none;
+ margin: 20px 0 30px -20px;
+ padding: 0;
+ width: 30px; }
+
+.wall-item-subtools2 {
+ height: 25px;
+ list-style: none outside none;
+ margin: -75px 0 0 5px;
+ padding: 0;
+ width: 25px; }
+
+.wall-item-title {
+ font-size: 1.2em;
+ font-weight: bold;
+ margin-bottom: 1em; }
+
+.wall-item-body {
+ margin: 20px 20px 10px 0px;
+ text-align: left;
+ overflow-x: auto; }
+
+.wall-item-lock-wrapper {
+ float: right;
+ height: 22px;
+ margin: 0 -5px 0 0;
+ width: 22px;
+ opacity: 1; }
+
+.wall-item-dislike, .wall-item-like {
+ clear: left;
+ font-size: 0.8em;
+ color: #878883;
+ margin: 5px 0 5px 120px; }
+
+.wall-item-author, .wall-item-actions-author {
+ clear: left;
+ font-size: 0.8em;
+ color: #878883;
+ margin: 20px 20px 0 110px; }
+
+.wall-item-ago {
+ display: inline;
+ padding-left: 10px; }
+
+.wall-item-wrapper-end {
+ clear: both; }
+
+.wall-item-location {
+ margin-top: 15px;
+ width: 100px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ .icon {
+ float: left; }
+ > a, .smalltext {
+ margin-left: 25px;
+ font-size: 0.7em;
+ display: block; }
+ > br {
+ display: none; } }
+
+.wallwall {
+ .wwto {
+ left: 5px;
+ margin: 0;
+ position: absolute;
+ top: 75px;
+ width: 30px;
+ z-index: 10001;
+ width: 30px;
+ height: 30px;
+ img {
+ width: 30px !important;
+ height: 30px !important; } }
+ .wall-item-photo-end {
+ clear: both; } }
+
+.wall-item-arrowphoto-wrapper {
+ position: absolute;
+ left: 35px;
+ top: 80px;
+ z-index: 10002; }
+
+.wall-item-photo-menu {
+ min-width: 92px;
+ border: 2px solid #FFFFFF;
+ border-top: 0px;
+ background: #555753;
+ position: absolute;
+ left: -2px;
+ top: 101px;
+ display: none;
+ z-index: 10003;
+ -webkit-border-radius: 0px 5px 5px 5px;
+ -moz-border-radius: 0px 5px 5px 5px;
+ border-radius: 0px 5px 5px 5px;
+ ul {
+ margin: 0px;
+ padding: 0px;
+ list-style: none; }
+ li a {
+ white-space: nowrap;
+ display: block;
+ padding: 5px 2px;
+ color: #eeeeec;
+ &:hover {
+ color: #555753;
+ background: #eeeeec; } } }
+
+#item-delete-selected {
+ overflow: auto;
+ width: 100%; }
+
+#connect-services-header, #connect-services, #extra-help-header, #extra-help, #postit-header, #postit {
+ margin: 5px 0 0 0; }
+
+/**
+ * comment
+ */
+
+.ccollapse-wrapper {
+ font-size: 0.9em;
+ margin-left: 80px; }
+
+.wall-item-outside-wrapper.comment {
+ margin-left: 80px;
+ .wall-item-photo {
+ width: 40px!important;
+ height: 40px!important; }
+ .wall-item-photo-wrapper {
+ width: 40px;
+ height: 40px; }
+ .wall-item-photo-menu-button {
+ width: 50px;
+ top: 45px;
+ background-position: 35px center; }
+ .wall-item-info {
+ width: 60px; }
+ .wall-item-body {
+ margin-left: 10px; }
+ .wall-item-author {
+ margin-left: 50px; }
+ .wall-item-photo-menu {
+ min-width: 50px;
+ top: 60px; } }
+
+.comment-wwedit-wrapper {
+ /*margin: 30px 0px 0px 80px;*/ }
+
+.comment-edit-wrapper {
+ border-top: 1px #aaa solid; }
+
+[class^="comment-edit-bb"] {
+ list-style: none;
+ display: none;
+ margin: -40px 0 5px 60px;
+ width: 75%;
+ > li {
+ display: inline-block;
+ margin: 0 10px 0 0;
+ visibility: none; } }
+
+.comment-wwedit-wrapper img, .comment-edit-wrapper img {
+ width: 20px;
+ height: 20px; }
+
+.comment-edit-photo-link, .comment-edit-photo {
+ margin-left: 10px; }
+
+.my-comment-photo {
+ width: 40px;
+ height: 40px;
+ padding: 5px; }
+
+[class^="comment-edit-text"] {
+ margin: 5px 0 10px 20px;
+ width: 84.5%; }
+
+.comment-edit-text-empty {
+ height: 20px;
+ border: 2px #babdd6 solid;
+ border-radius: 5px;
+ color: #babdb6;
+ -webkit-transition: all 0.5s ease-in-out;
+ -moz-transition: all 0.5s ease-in-out;
+ -o-transition: all 0.5s ease-in-out;
+ -ms-transition: all 0.5s ease-in-out;
+ transition: all 0.5s ease-in-out;
+ &:hover {
+ color: #999999; } }
+
+.comment-edit-text-full {
+ height: 10em;
+ border-radius: 5px;
+ -webkit-transition: all 0.5s ease-in-out;
+ -moz-transition: all 0.5s ease-in-out;
+ -o-transition: all 0.5s ease-in-out;
+ -ms-transition: all 0.5s ease-in-out;
+ transition: all 0.5s ease-in-out; }
+
+.comment-edit-submit-wrapper {
+ width: 90%;
+ margin: 5px 5px 10px 50px;
+ text-align: right; }
+
+.comment-edit-submit {
+ height: 22px;
+ background-color: #555753;
+ color: #eeeeec;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ border: 0; }
+
+/**
+ * item text style
+ */
+
+.wall-item-body code {
+ display: block;
+ padding: 0 0 10px 5px;
+ border-color: #ccc;
+ border-style: solid;
+ border-width: 1px 1px 1px 10px;
+ background: #eee;
+ color: #444;
+ width: 95%; }
+
+/**
+ * profile
+ */
+
+div {
+ &[id$="text"] {
+ font-weight: bold;
+ border-bottom: 1px solid #ccc; }
+ &[id$="wrapper"] {
+ height: 100%;
+ margin-bottom: 1em;
+ br {
+ clear: left; } } }
+
+[id$="-end"], [class$="end"] {
+ clear: both;
+ margin: 0 0 10px 0; }
+
+#advanced-profile-with {
+ margin-left: 200px; }
+
+/**
+ * photos
+ */
+
+.photos {
+ height: auto;
+ overflow: auto; }
+
+#photo-top-links {
+ margin-bottom: 30px; }
+
+.photo-album-image-wrapper, .photo-top-image-wrapper {
+ float: left;
+ -moz-box-shadow: 3px 3px 10px 0 #000;
+ -webkit-box-shadow: 3px 3px 10px 0 #000;
+ box-shadow: 3px 3px 10px 0 #000;
+ background-color: #eee;
+ color: #111;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ padding-bottom: 30px;
+ position: relative;
+ margin: 0 10px 10px 0; }
+
+#photo-photo {
+ max-width: 100%;
+ img {
+ max-width: 100%; } }
+
+.photo-top-image-wrapper a:hover, #photo-photo a:hover, .photo-album-image-wrapper a:hover {
+ border-bottom: 0; }
+
+.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-top-album-name {
+ position: absolute;
+ bottom: 0;
+ padding: 0 5px; }
+
+.caption {
+ position: absolute;
+ bottom: 0;
+ margin: 0 5px; }
+
+#photo-photo {
+ position: relative;
+ float: left; }
+
+#photo-prev-link, #photo-next-link {
+ position: absolute;
+ width: 30%;
+ height: 100%;
+ background-color: rgba(255, 255, 255, 0.5);
+ opacity: 0;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out;
+ background-position: center center;
+ background-repeat: no-repeat; }
+
+#photo-prev-link {
+ left: 0;
+ top: 0;
+ background-image: url(prev.png); }
+
+#photo-next-link {
+ right: 0;
+ top: 0;
+ background-image: url(next.png); }
+
+#photo-prev-link a, #photo-next-link a {
+ display: block;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ text-indent: -900000px; }
+
+#photo-prev-link:hover {
+ opacity: 1;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out; }
+
+#photo-next-link {
+ &:hover {
+ opacity: 1;
+ -webkit-transition: all .2s ease-in-out;
+ -moz-transition: all .2s ease-in-out;
+ -o-transition: all .2s ease-in-out;
+ -ms-transition: all .2s ease-in-out;
+ transition: all .2s ease-in-out; }
+ .icon {
+ display: none; } }
+
+#photo-prev-link .icon {
+ display: none; }
+
+#photos-upload-spacer, #photos-upload-new-wrapper, #photos-upload-exist-wrapper {
+ margin-bottom: 1em; }
+
+#photos-upload-existing-album-text, #photos-upload-newalbum-div {
+ background-color: #555753;
+ color: #eeeeec;
+ padding: 1px; }
+
+#photos-upload-album-select, #photos-upload-newalbum {
+ width: 99%; }
+
+#photos-upload-perms-menu {
+ text-align: right; }
+
+#photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
+ float: left;
+ margin-bottom: 25px; }
+
+#photo-edit-link-wrap {
+ margin-bottom: 15px; }
+
+#photo-edit-caption, #photo-edit-newtag {
+ width: 100%; }
+
+#photo-like-div {
+ margin-bottom: 25px; }
+
+#photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
+ clear: both; }
+
+#photo-edit-delete-button {
+ margin-left: 200px; }
+
+#photo-edit-end {
+ margin-bottom: 35px; }
+
+#photo-caption {
+ font-size: 110%;
+ font-weight: bold;
+ margin-top: 15px;
+ margin-bottom: 15px; }
+
+/**
+ * message
+ */
+
+.prvmail-text {
+ width: 100%; }
+
+#prvmail-subject {
+ width: 100%;
+ color: #eec;
+ background: #444; }
+
+#prvmail-submit-wrapper {
+ margin-top: 10px; }
+
+#prvmail-submit {
+ float: right;
+ margin-top: 0; }
+
+#prvmail-submit-wrapper div {
+ margin-right: 5px;
+ float: left; }
+
+.mail-list-outside-wrapper {
+ margin-top: 20px; }
+
+.mail-list-sender {
+ float: left; }
+
+.mail-list-detail {
+ margin-left: 90px; }
+
+.mail-list-sender-name {
+ display: inline;
+ font-size: 1.1em; }
+
+.mail-list-date {
+ display: inline;
+ font-size: 0.9em;
+ padding-left: 10px; }
+
+.mail-list-sender-name, .mail-list-date {
+ font-style: italic; }
+
+.mail-list-subject {
+ font-size: 1.2em; }
+
+.mail-list-delete-wrapper {
+ float: right; }
+
+.mail-list-outside-wrapper-end {
+ clear: both;
+ border-bottom: 1px #eec dotted; }
+
+.mail-conv-sender {
+ float: left;
+ margin: 0px 5px 5px 0px; }
+
+.mail-conv-sender-photo {
+ width: 32px;
+ height: 32px; }
+
+.mail-conv-sender-name {
+ float: left; }
+
+.mail-conv-date {
+ float: right; }
+
+.mail-conv-subject {
+ clear: right;
+ font-weight: bold;
+ font-size: 1.2em; }
+
+.mail-conv-body {
+ clear: both; }
+
+.mail-conv-delete-wrapper {
+ margin-top: 5px; }
+
+/**
+ * contacts
+ */
+
+.view-contact-wrapper, .contact-entry-wrapper {
+ float: left;
+ margin: 0 5px 40px 0;
+ width: 120px;
+ height: 120px;
+ padding: 3px;
+ position: relative; }
+
+.contact-direction-wrapper {
+ position: absolute;
+ top: 20px; }
+
+.contact-edit-links {
+ position: absolute;
+ top: 60px; }
+
+.contact-entry-photo-wrapper {}
+
+.contact-entry-photo {
+ margin-left: 20px; }
+
+.contact-entry-name {
+ width: 120px;
+ font-weight: bold;
+ /*overflow: hidden;*/ }
+
+.contact-entry-photo {
+ position: relative; }
+
+.contact-entry-edit-links .icon {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ background-color: #fff; }
+
+#contact-entry-url, [id^="contact-entry-url"] {
+ font-size: smaller;
+ /*overflow: scroll;*/ }
+
+#contact-entry-network, [id^="contact-entry-network"] {
+ font-size: smaller;
+ font-style: italic; }
+
+#contact-edit-banner-name {
+ font-size: 1.5em; }
+
+#contact-edit-photo-wrapper {
+ position: relative;
+ float: left;
+ padding: 20px; }
+
+#contact-edit-direction-icon {
+ position: absolute;
+ top: 60px;
+ left: 0; }
+
+#contact-edit-nav-wrapper {
+ margin-left: 0px; }
+
+#contact-edit-links {
+ margin-top: 23px;
+ ul {
+ list-style-type: none; } }
+
+#contact-drop-links {
+ margin-left: 5px; }
+
+#contact-edit-nav-wrapper .icon {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px; }
+
+#contact-edit-poll-wrapper {
+ margin-left: 0px; }
+
+#contact-edit-last-update-text {
+ margin-bottom: 15px; }
+
+#contact-edit-last-updated {
+ font-weight: bold; }
+
+#contact-edit-poll-text {
+ display: inline; }
+
+#contact-edit-info_tbl, #contact-edit-info_parent, .mceLayout {
+ width: 100%; }
+
+#contact-edit-end {
+ clear: both;
+ margin-bottom: 65px; }
+
+.contact-photo-menu-button {
+ position: absolute;
+ background-image: url("photo-menu.jpg");
+ background-position: top left;
+ background-repeat: no-repeat;
+ margin: 0px;
+ padding: 0px;
+ width: 16px;
+ height: 16px;
+ top: 64px;
+ left: 0px;
+ overflow: hidden;
+ text-indent: 40px;
+ display: none; }
+
+.contact-photo-menu {
+ width: auto;
+ border: 2px solid #444;
+ background: #eee;
+ color: #111;
+ position: absolute;
+ left: 0px;
+ top: 90px;
+ display: none;
+ z-index: 10000;
+ ul {
+ margin: 0px;
+ padding: 0px;
+ list-style: none; }
+ li a {
+ display: block;
+ padding: 2px;
+ &:hover {
+ color: #fff;
+ background: #3465A4;
+ text-decoration: none; } } }
+
+/**
+ * register, settings & profile forms
+ */
+
+.openid {}
+
+#id_openid_url {
+ background: url(login-bg.gif) no-repeat;
+ background-position: 0 50%;
+ padding-left: 18px; }
+
+#settings-nickname-desc {
+ background-color: #eee;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ padding: 5px;
+ color: #111; }
+
+#settings-default-perms {
+ margin-bottom: 20px; }
+
+#register-form div, #profile-edit-form div {
+ clear: both; }
+
+.settings-block {
+ label {
+ clear: left; }
+ input {
+ margin: 10px 5px; } }
+
+/*#register-form label, */
+/*#profile-edit-form label {*/
+/* width: 300px; */
+/* float: left; */
+/*} */
+
+/*#register-form span, */
+/*#profile-edit-form span {*/
+/* color: #555753; */
+/* display: block; */
+/* margin-bottom: 20px; */
+/*} */
+
+#profile-edit-marital-label span {
+ margin: -4px; }
+
+.settings-submit-wrapper, .profile-edit-submit-wrapper {
+ margin: 0 0 30px -3px; }
+
+.profile-edit-side-div {
+ display: none; }
+
+/*.profile-edit-side-div:hover {
+ display: block;
+}
+.profile-edit-side-link {
+ margin: 3px 0px 0px 70px;
+}*/
+
+#profiles-menu-trigger {
+ margin: 0px 0px 0px 25px; }
+
+.profile-listing {
+ float: left;
+ margin: 20px 20px 0px 0px; }
+
+.icon-profile-edit {
+ background: url("icons.png") -150px 0px no-repeat;
+ border: 0;
+ cursor: pointer;
+ display: block;
+ float: right;
+ width: 20px;
+ height: 20px;
+ margin: 0 0 -18px;
+ position: absolute;
+ text-decoration: none;
+ top: 113px;
+ right: 260px; }
+
+#profile-edit-links ul {
+ margin: 20px 0;
+ padding: 0;
+ list-style: none; }
+
+.marital {
+ margin-top: 5px; }
+
+#register-sitename {
+ display: inline;
+ font-weight: bold; }
+
+#advanced-expire-popup {
+ background: #2e2f2e;
+ color: #eec; }
+
+#id_ssl_policy {
+ width: 374px; }
+
+#theme-preview img {
+ margin: 10px 10px 10px 288px; }
+
+/**
+ * contacts selector
+ */
+
+.group-delete-wrapper {
+ margin: -31px 50px 0 0;
+ float: right; }
+
+/*.group-delete-icon {
+ margin: 0 0 0 10px;
+}*/
+
+#group-edit-submit-wrapper {
+ margin: 0 0 10px 0;
+ display: inline; }
+
+#group-edit-desc {
+ margin: 10px 0px; }
+
+#group-members, #prof-members {
+ height: 200px;
+ overflow: auto;
+ border: 1px solid #555753;
+ -webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0; }
+
+#group-all-contacts, #prof-all-contacts {
+ height: 200px;
+ overflow: auto;
+ border: 1px solid #555753;
+ -webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius: 0 0 5px 5px;
+ border-radius: 0 0 5px 5px; }
+
+#group-members h3, #group-all-contacts h3, #prof-members h3, #prof-all-contacts h3 {
+ color: #eeeeec;
+ background-color: #555753;
+ margin: 0;
+ padding: 5px; }
+
+#group-separator, #prof-separator {
+ display: none; }
+
+/**
+ * profile
+ */
+
+#cropimage-wrapper {
+ float: left; }
+
+#crop-image-form {
+ clear: both; }
+
+/**
+ * intros
+ */
+
+.intro-wrapper {
+ margin-top: 20px; }
+
+.intro-fullname {
+ font-size: 1.1em;
+ font-weight: bold; }
+
+.intro-desc {
+ margin-bottom: 20px;
+ font-weight: bold; }
+
+.intro-note {
+ padding: 10px; }
+
+.intro-end {
+ padding: 30px; }
+
+.intro-form {
+ float: left; }
+
+.intro-approve-form, .intro-approve-as-friend-end {
+ clear: both; }
+
+.intro-submit-approve, .intro-submit-ignore {
+ margin-right: 20px; }
+
+.intro-submit-approve {
+ margin-top: 15px; }
+
+.intro-approve-as-friend-label, .intro-approve-as-fan-label, .intro-approve-as-friend, .intro-approve-as-fan {
+ float: left; }
+
+.intro-form-end {
+ clear: both;
+ margin-bottom: 10px; }
+
+.intro-approve-as-friend-desc {
+ margin-top: 10px; }
+
+.intro-approve-as-end {
+ clear: both;
+ margin-bottom: 10px; }
+
+.intro-end, .clear {
+ clear: both; }
+
+/**
+ * events
+ */
+
+.eventcal {
+ float: left;
+ font-size: 20px; }
+
+.event {
+ background: #2e2f2e; }
+
+.vevent {
+ border: 1px solid #ccc;
+ .event-description, .event-location, .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;
+ font-size: smaller; }
+
+.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: monospace; }
+
+.today {
+ font-weight: bold;
+ color: #FF0000; }
+
+#event-start-text, #event-finish-text {
+ margin-top: 10px;
+ margin-bottom: 5px; }
+
+#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text, #event-share-checkbox {
+ float: left; }
+
+#event-datetime-break {
+ margin-bottom: 10px; }
+
+#event-nofinish-break, #event-adjust-break, #event-share-break {
+ clear: both; }
+
+#event-desc-text, #event-location-text {
+ margin-top: 10px;
+ margin-bottom: 5px; }
+
+#event-submit {
+ margin-top: 10px; }
+
+.body-tag {
+ margin: 10px 0;
+ opacity: 0.5;
+ &:hover {
+ opacity: 1.0 !important; } }
+
+.filesavetags, .categorytags {
+ margin: 20px 0;
+ opacity: 0.5; }
+
+.filesavetags:hover, .categorytags:hover {
+ margin: 20px 0;
+ opacity: 1.0 !important; }
+
+.item-select {
+ opacity: 0.1;
+ margin: 5px 0 0 6px !important;
+ &:hover {
+ opacity: 1; } }
+
+.checkeditem {
+ opacity: 1; }
+
+#item-delete-selected {
+ margin-top: 30px; }
+
+/* was tired of having no way of moving it around, so
+* here's a little 'hook' to do so */
+
+.delete-checked {
+ position: absolute;
+ left: 35px;
+ margin-top: 20px; }
+
+#item-delete-selected-end {
+ clear: both; }
+
+#item-delete-selected-icon {
+ float: left;
+ margin-right: 5px; }
+
+#item-delete-selected-desc {
+ float: left;
+ margin-right: 5px;
+ &:hover {
+ text-decoration: underline; } }
+
+.fc-state-highlight {
+ background: #eec;
+ color: #2e2f2e; }
+
+/**
+ * directory
+ */
+
+.directory-item {
+ float: left;
+ margin: 0 5px 4px 0;
+ padding: 3px;
+ width: 180px;
+ height: 250px;
+ position: relative; }
+
+/**
+ * sidebar
+ */
+
+#group-sidebar {
+ margin-bottom: 10px; }
+
+.group-selected, .nets-selected, .fileas-selected {
+ padding: 3px;
+ color: #111;
+ background: #f8f8f8;
+ font-weight: bold; }
+
+.group-selected:hover, .nets-selected:hover, .fileas-selected:hover {
+ color: #111; }
+
+.groupsideedit {
+ margin-right: 10px; }
+
+#sidebar-group-ul {
+ padding-left: 0; }
+
+#sidebar-group-list {
+ margin: 0 0 5px 0;
+ ul {
+ list-style-type: none;
+ list-style-position: inside; }
+ li {
+ margin-top: 10px; }
+ .icon {
+ display: inline-block;
+ height: 12px;
+ width: 12px; } }
+
+#sidebar-new-group {
+ margin: auto;
+ display: inline-block;
+ color: #efefef;
+ text-decoration: none;
+ text-align: center; }
+
+#peoplefind-sidebar form {
+ margin-bottom: 10px; }
+
+#sidebar-new-group {
+ &:hover {
+ /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
+ /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
+ /*background-color: #b20202;*/ }
+ &:active {
+ position: relative;
+ top: 1px; } }
+
+#side-peoplefind-url {
+ background-color: #e5e0cf;
+ color: #666;
+ border: 1px 666 solid;
+ margin-right: 3px;
+ width: 75%;
+ &:hover, &:focus {
+ background-color: #efefef;
+ color: #222;
+ border: 1px 333 solid; } }
+
+.nets-ul {
+ list-style-type: none;
+ padding-left: 0px;
+ li {
+ margin: 10px 0 0; } }
+
+.nets-link, .nets-all {
+ margin-left: 0px; }
+
+#netsearch-box {
+ margin-top: 20px;
+ width: 150px;
+ #search-submit {
+ margin: 5px 0px 0px 0px; } }
+
+/**
+ * admin
+ */
+
+#pending-update {
+ float: right;
+ color: #fff;
+ font-weight: bold;
+ background-color: #ff0000;
+ padding: 0 .3em; }
+
+.admin {
+ &.linklist {
+ border: 0;
+ padding: 0; }
+ &.link {
+ list-style-position: inside; } }
+
+#adminpage {
+ color: #111;
+ background: transparent;
+ margin: 5px;
+ padding: 10px;
+ dl {
+ clear: left;
+ margin-bottom: 2px;
+ padding-bottom: 2px;
+ border-bottom: 1px solid #000; }
+ dt {
+ width: 250px;
+ float: left;
+ font-weight: bold; }
+ dd {
+ margin-left: 250px; }
+ h3 {
+ border-bottom: 1px solid #ccc; }
+ .submit {
+ clear: left; }
+ #pluginslist {
+ margin: 0;
+ padding: 0; }
+ .plugin {
+ list-style: none;
+ display: block;
+ border: 1px solid #888;
+ padding: 1em;
+ margin-bottom: 5px;
+ clear: left; }
+ .toggleplugin {
+ float: left;
+ margin-right: 1em; }
+ table {
+ width: 100%;
+ border-bottom: 1px solid #000;
+ margin: 5px 0;
+ th {
+ text-align: left; } }
+ td .icon {
+ float: left; }
+ table {
+ users img {
+ width: 16px;
+ height: 16px; }
+ tr:hover {
+ /*color: ;*/
+ background-color: #bbc7d7; } }
+ .selectall {
+ text-align: right; }
+ #users a {
+ /*color: #;*/
+ text-decoration: underline; } }
+
+#users .name {
+ color: #eec; }
+
+/**
+ * form fields
+ */
+
+.field {
+ /*margin-bottom: 10px;*/
+ /*padding-bottom: 10px;*/
+ overflow: auto;
+ /* width: 100%;*/
+ label {
+ width: 38%;
+ display: inline-block;
+ font-size: 1.077em;
+ margin: 0 10px 1em 0;
+ border: 1px #999 solid;
+ padding: 5px;
+ background: #ccc;
+ color: #111; } }
+
+.field .onoff {
+ float: right;
+ margin: 0 330px 0 auto;
+ width: 80px;
+ a {
+ display: block;
+ border: 1px solid #666;
+ padding: 3px 6px 4px 10px;
+ height: 16px;
+ text-decoration: none; }
+ .on {
+ background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999999;
+ color: #111;
+ text-align: left; }
+ .off {
+ background: url("../../../images/onoff.jpg") no-repeat 2px 1px #cccccc;
+ color: #333;
+ text-align: right; } }
+
+.hidden {
+ display: none !important; }
+
+.field textarea {
+ width: 80%;
+ height: 100px; }
+
+.field_help {
+ display: block;
+ margin-left: 297px;
+ color: #666; }
+
+.field.radio .field_help {
+ margin-left: 297px; }
+
+label {
+ width: 38%;
+ display: inline-block;
+ font-size: 1.077em;
+ margin: 0 10px 1em 0;
+ border: 1px #999 solid;
+ padding: 5px;
+ background: #ccc;
+ color: #111; }
+
+input {
+ width: 250px;
+ height: 25px;
+ border: 1px #999 solid;
+ &[type="text"], &[type="password"], &[type="search"] {
+ width: 250px;
+ height: 25px;
+ border: 1px #999 solid; }
+ &[type="checkbox"], &[type="radio"] {
+ border: 1px #999 solid;
+ margin: 0 0 0 0;
+ height: 15px;
+ width: 15px; }
+ &[type="submit"], &[type="button"] {
+ background-color: #555753;
+ border: 2px outset #444;
+ border-radius: 5px;
+ box-shadow: 1px 3px 4px 0 #111;
+ color: #eeeeec;
+ cursor: pointer;
+ font-weight: bold;
+ width: auto;
+ text-shadow: 1px 1px #111;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px; }
+ &[type="submit"]:active, &[type="button"]:active {
+ box-shadow: 0 0 0 0; } }
+
+
+/*
+ * update
+ */
+
+.popup {
+ width: 100%;
+ height: 100%;
+ top: 0px;
+ left: 0px;
+ position: absolute;
+ display: none;
+ .background {
+ background-color: #000;
+ opacity: 0.5;
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0px;
+ left: 0px; }
+ .panel {
+ top: 25%;
+ left: 25%;
+ width: 50%;
+ height: 50%;
+ padding: 1em;
+ position: absolute;
+ border: 4px solid #000000;
+ background-color: #FFFFFF; } }
+
+#panel {
+ z-index: 100; }
+
+.grey {
+ color: grey; }
+
+.orange {
+ color: orange; }
+
+.red {
+ color: red; }
+
+.popup .panel {
+ .panel_text {
+ display: block;
+ overflow: auto;
+ height: 80%; }
+ .panel_in {
+ width: 100%;
+ height: 100%;
+ position: relative; }
+ .panel_actions {
+ width: 100%;
+ bottom: 4px;
+ left: 0px;
+ position: absolute; } }
+
+.panel_text .progress {
+ width: 50%;
+ overflow: hidden;
+ height: auto;
+ border: 1px solid #cccccc;
+ margin-bottom: 5px;
+ span {
+ float: right;
+ display: block;
+ width: 25%;
+ background-color: #eeeeee;
+ text-align: right; } }
+
+/**
+ * OAuth
+ */
+
+.oauthapp {
+ height: auto;
+ overflow: auto;
+ border-bottom: 2px solid #cccccc;
+ padding-bottom: 1em;
+ margin-bottom: 1em;
+ img {
+ float: left;
+ width: 48px;
+ height: 48px;
+ margin: 10px;
+ &.noicon {
+ background-image: url("../../../images/icons/48/plugin.png");
+ background-position: center center;
+ background-repeat: no-repeat; } }
+ a {
+ float: left; } }
+
+/**
+ * icons
+ */
+
+.iconspacer {
+ display: block;
+ width: 16px;
+ height: 16px; }
+
+.icon {
+ display: block;
+ width: 20px;
+ height: 20px;
+ background: url(icons.png) no-repeat;
+ border: 0;
+ text-decoration: none;
+ border-radius: 5px;
+ &:hover {
+ border: 0;
+ text-decoration: none; } }
+
+.editicon {
+ display: inline-block;
+ width: 21px;
+ height: 21px;
+ background: url(editicons.png) no-repeat;
+ border: 0;
+ text-decoration: none; }
+
+.shadow {
+ box-shadow: 2px 2px 5px 2px #111;
+ &:active, &:focus, &:hover {
+ box-shadow: 0 0 0 0; } }
+
+.editicon:hover {
+ border: 0; }
+
+.boldbb {
+ background-position: 0px 0px;
+ &:hover {
+ background-position: -22px 0px; } }
+
+.italicbb {
+ background-position: 0px -22px;
+ &:hover {
+ background-position: -22px -22px; } }
+
+.underlinebb {
+ background-position: 0px -44px;
+ &:hover {
+ background-position: -22px -44px; } }
+
+.quotebb {
+ background-position: 0px -66px;
+ &:hover {
+ background-position: -22px -66px; } }
+
+.codebb {
+ background-position: 0px -88px;
+ &:hover {
+ background-position: -22px -88px; } }
+
+.imagebb {
+ background-position: -44px 0px;
+ &:hover {
+ background-position: -66px 0px; } }
+
+.urlbb {
+ background-position: -44px -22px;
+ &:hover {
+ background-position: -66px -22px; } }
+
+.videobb {
+ background-position: -44px -44px;
+ &:hover {
+ background-position: -66px -44px; } }
+
+.icon {
+ &.drop, &.drophide, &.delete {
+ float: left;
+ margin: 0 2px; }
+ &.s22 {
+ &.delete {
+ display: block;
+ background-position: -110px 0; }
+ &.text {
+ padding: 10px 0px 0px 25px;
+ width: 200px; } }
+ &.text {
+ text-indent: 0px; }
+ &.s16 {
+ min-width: 16px;
+ height: 16px; } }
+
+.s16 .add {
+ background: url("../../../images/icons/16/add.png") no-repeat; }
+
+.add {
+ margin: 0px 5px; }
+
+.article {
+ background-position: -50px 0; }
+
+.audio {
+ background-position: -70px 0; }
+
+.block {
+ background-position: -90px 0px; }
+
+.drop, .delete {
+ background-position: -110px 0; }
+
+.drophide {
+ background-position: -130px 0; }
+
+.edit {
+ background-position: -150px 0; }
+
+.camera {
+ background-position: -170px 0; }
+
+.dislike {
+ background-position: -190px 0; }
+
+.file-as {
+ background-position: -230px -60px; }
+
+.like {
+ background-position: -211px 0; }
+
+.link {
+ background-position: -230px 0; }
+
+.globe, .location {
+ background-position: -50px -20px; }
+
+.noglobe, .nolocation {
+ background-position: -70px -20px; }
+
+.no {
+ background-position: -90px -20px; }
+
+.pause {
+ background-position: -110px -20px; }
+
+.play {
+ background-position: -130px -20px; }
+
+.pencil {
+ background-position: -151px -18px; }
+
+.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; }
+
+.unlock {
+ background-position: -88px -40px; }
+
+.video {
+ background-position: -110px -40px; }
+
+.attach {
+ background-position: -190px -40px; }
+
+.language {
+ background-position: -210px -40px; }
+
+.starred {
+ background-position: -130px -60px; }
+
+.unstarred {
+ background-position: -150px -60px; }
+
+.tagged {
+ background-position: -170px -60px; }
+
+.on {
+ background-position: -50px -60px; }
+
+.off {
+ background-position: -70px -60px; }
+
+.prev {
+ background-position: -90px -60px; }
+
+.next {
+ background-position: -110px -60px; }
+
+.icon.dim {
+ opacity: 0.3; }
+
+#pause {
+ position: fixed;
+ bottom: 40px;
+ right: 30px; }
+
+.border {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ &:hover {
+ border: 1px solid #babdb6;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px; } }
+
+.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 0; }
+
+.type-audio {
+ background-position: -40px 0; }
+
+.type-text {
+ background-position: -60px 0px; }
+
+.type-unkn {
+ background-position: -80px 0; }
+
+/**
+ * footer
+ */
+
+.cc-license {
+ margin-top: 100px;
+ font-size: 0.7em; }
+
+footer {
+ display: block;
+ /*margin: 50px 20%;*/
+ clear: both; }
+
+#profile-jot-text {
+ height: 20px;
+ color: #666;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ width: 99.5%; }
+
+/**
+ * acl
+ */
+
+#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
+ display: block !important;
+ background: #eec;
+ color: #2e2f2e; }
+
+#acl-wrapper {
+ width: 660px;
+ margin: 0 auto; }
+
+#acl-search {
+ float: right;
+ background: white url("../../../images/search_18.png") no-repeat right center;
+ padding-right: 20px;
+ margin: 6px;
+ color: #111; }
+
+#acl-showall {
+ float: left;
+ display: block;
+ width: auto;
+ height: 18px;
+ background: #eeeecc url("../../../images/show_all_off.png") 8px 8px no-repeat;
+ padding: 7px 10px 7px 30px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ color: #999;
+ margin: 5px 0;
+ &.selected {
+ color: #000;
+ background: #ff9900 url(../../../images/show_all_on.png) 8px 8px no-repeat; } }
+
+#acl-list {
+ height: 210px;
+ border: 1px solid #ccc;
+ clear: both;
+ margin-top: 30px;
+ overflow: auto; }
+
+/*#acl-list-content {
+}*/
+
+.acl-list-item {
+ border: 1px solid #ccc;
+ display: block;
+ float: left;
+ height: 110px;
+ margin: 3px 0 5px 5px;
+ width: 120px;
+ img {
+ width: 22px;
+ height: 22px;
+ float: left;
+ margin: 5px 5px 20px; }
+ p {
+ height: 12px;
+ font-size: 10px;
+ margin: 0 0 22px;
+ padding: 2px 0 1px; }
+ a {
+ background: #ccc 3px 3px no-repeat;
+ -webkit-border-radius: 2px;
+ -moz-border-radius: 2px;
+ border-radius: 2px;
+ clear: both;
+ font-size: 10px;
+ display: block;
+ width: 55px;
+ height: 20px;
+ color: #999;
+ margin: 5px auto 0;
+ padding: 0 3px;
+ text-align: center;
+ vertical-align: middle; } }
+
+#acl-wrapper a:hover {
+ text-decoration: none;
+ color: #000;
+ border: 0; }
+
+.acl-button-show {
+ background-image: url('../../../images/show_off.png');
+ margin: 0 auto; }
+
+.acl-button-hide {
+ background-image: url('../../../images/hide_off.png');
+ margin: 0 auto; }
+
+.acl-button-show.selected {
+ color: #000;
+ background-color: #9ade00;
+ background-image: url(../../../images/show_on.png); }
+
+.acl-button-hide.selected {
+ color: #000;
+ background-color: #ff4141;
+ background-image: url(../../../images/hide_on.png); }
+
+.acl-list-item {
+ &.groupshow {
+ border-color: #9ade00; }
+ &.grouphide {
+ border-color: #ff4141; } }
+
+/** /acl **/
+
+/* autocomplete popup */
+
+.acpopup {
+ max-height: 175px;
+ max-width: 42%;
+ background-color: #555753;
+ color: #fff;
+ overflow: auto;
+ z-index: 100000;
+ border: 1px solid #cccccc; }
+
+.acpopupitem {
+ background-color: #555753;
+ padding: 4px;
+ clear: left;
+ img {
+ float: left;
+ margin-right: 4px; }
+ &.selected {
+ color: #2e3436;
+ background-color: #eeeeec; } }
+
+.qcomment-wrapper {
+ padding: 0px;
+ margin: 5px 5px 5px 81%; }
+
+.qcomment {
+ opacity: 0.5;
+ &:hover {
+ opacity: 1.0; } }
+
+#network-star-link {
+ margin-top: 10px; }
+
+.network-star {
+ float: left;
+ margin-right: 5px;
+ &.icon.starred {
+ display: inline-block; } }
+
+#fileas-sidebar {}
+
+.fileas-ul {
+ padding: 0; }
+
+/*
+ * addons theming
+ */
+
+#sidebar-page-list {
+ ul {
+ padding: 0;
+ margin: 5px 0; }
+ li {
+ list-style: none; } }
+
+#jappix_mini {
+ margin-left: 130px;
+ position: fixed;
+ bottom: 0;
+ right: 175px !important;
+ /* override the jappix css */
+ z-index: 999; }
+
+/* media stuff */
+@media handheld {
+ body {
+ font-size: 15pt; } }
diff --git a/view/theme/dispy/style.php b/view/theme/dispy/style.php
new file mode 100644
index 000000000..f666e2768
--- /dev/null
+++ b/view/theme/dispy/style.php
@@ -0,0 +1,250 @@
+ Dispy: Light, Spartan, Sleek, and Functional Dispy Dark: Dark, Spartan, Sleek, and Functional
+ * Version: 1.2
+ * Author: Simon
* Maintainer: Simon
* Screenshot: Screenshot
*/
$a = get_app();
$a->theme_info = array(
- 'name' => 'dispy',
- 'version' => '1.1'
+ 'family' => 'dispy',
+ 'version' => '1.2'
);
function dispy_init(&$a) {
- // aside on profile page
+ /** @purpose set some theme defaults
+ */
+ $cssFile = null;
+ $colour = false;
+ $colour = get_pconfig(local_user(), "dispy", "colour");
+ if ($colour === false) { $colour = "light"; }
+ if ($colour == "light") {
+ $colour_path = "/light/";
+ require_once ('light/theme.php');
+ }
+ if ($colour == "dark") {
+ $colour_path = "/dark/";
+ require_once ('dark/theme.php');
+ }
+
+ /** @purpose aside on profile page
+ */
if (($a->argv[0] . $a->argv[1]) === ("profile" . $a->user['nickname'])) {
dispy_community_info();
}
@@ -139,10 +155,17 @@ function dispy_init(&$a) {
EOT;
+ // custom css
+ if (!is_null($cssFile)) {
+ $a->page['htmlhead'] .= sprintf(' ', $cssFile);
+ }
+
js_in_foot();
}
function dispy_community_info() {
+ /** @purpose some sidebar stuff for new users
+ */
$a = get_app();
$url = $a->get_baseurl($ssl_state);
$aside['$url'] = $url;
diff --git a/view/theme/dispy/theme_settings.tpl b/view/theme/dispy/theme_settings.tpl
new file mode 100644
index 000000000..9d250cb3a
--- /dev/null
+++ b/view/theme/dispy/theme_settings.tpl
@@ -0,0 +1,10 @@
+{{inc field_select.tpl with $field=$colour}}{{endinc}}
+
+{{inc field_select.tpl with $field=$font_size}}{{endinc}}
+
+{{inc field_select.tpl with $field=$line_height}}{{endinc}}
+
+
+
+
+
diff --git a/view/theme/duepuntozero/bbedit.png b/view/theme/duepuntozero/bbedit.png
new file mode 100644
index 000000000..b89f2f7a8
Binary files /dev/null and b/view/theme/duepuntozero/bbedit.png differ
diff --git a/view/theme/duepuntozero/comment_item.tpl b/view/theme/duepuntozero/comment_item.tpl
index 84b9597e8..ea24d95cc 100755
--- a/view/theme/duepuntozero/comment_item.tpl
+++ b/view/theme/duepuntozero/comment_item.tpl
@@ -13,28 +13,28 @@
diff --git a/view/theme/duepuntozero/nav.tpl b/view/theme/duepuntozero/nav.tpl
new file mode 100644
index 000000000..4dacf3858
--- /dev/null
+++ b/view/theme/duepuntozero/nav.tpl
@@ -0,0 +1,71 @@
+
+ $langselector
+
+ $sitelocation
+
+ {{ if $nav.logout }}$nav.logout.1 {{ endif }}
+ {{ if $nav.login }}$nav.login.1 {{ endif }}
+
+
+
+ {{ if $nav.register }}$nav.register.1 {{ endif }}
+
+ {{ if $nav.help }} $nav.help.1 {{ endif }}
+
+ {{ if $nav.apps }}$nav.apps.1 {{ endif }}
+
+ $nav.search.1
+ $nav.directory.1
+
+ {{ if $nav.admin }}$nav.admin.1 {{ endif }}
+
+ {{ if $nav.network }}
+ $nav.network.1
+
+ {{ endif }}
+ {{ if $nav.home }}
+ $nav.home.1
+
+ {{ endif }}
+
+ {{ if $nav.introductions }}
+ $nav.introductions.1
+
+ {{ endif }}
+ {{ if $nav.messages }}
+ $nav.messages.1
+
+ {{ endif }}
+
+
+
+
+
+ {{ if $nav.notifications }}
+
+
+
+ {{ endif }}
+
+ {{ if $nav.settings }}$nav.settings.1 {{ endif }}
+ {{ if $nav.profiles }}$nav.profiles.1 {{ endif }}
+
+ {{ if $nav.contacts }}$nav.contacts.1 {{ endif }}
+
+
+ {{ if $nav.manage }}$nav.manage.1 {{ endif }}
+ {{ if $nav.community }}
+
+ {{ endif }}
+
+
+ $banner
+
+
+
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index 8e131ad20..2667c4334 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -134,7 +134,8 @@ nav #banner #logo-text a:hover { text-decoration: none; }
height: 15px;
margin-top: 67px;
margin-right: 2px;
- padding: 6px 10px;
+ //padding: 6px 10px;
+ padding: 6px 3px;
float: left;
bottom: 140px;
border: 1px solid #babdb6;
@@ -232,10 +233,12 @@ section {
display:block;
float:left;
padding: 0.4em;
- margin-right: 1em;
+ //margin-right: 1em;
+ margin-right: 3px ;
}
.tab.active {
font-weight: bold;
+
}
@@ -2953,62 +2956,62 @@ aside input[type='text'] {
}
.editicon {
display: inline-block;
- width: 21px;
- height: 21px;
- background: url(editicons.png) no-repeat;
- border: 0;
+ width: 16px;
+ height: 16px;
+ background-image: url(bbedit.png);
+ background-color: #fff;
text-decoration: none;
}
.editicon:hover {
- border: 0;
+ background-color: #ccc;
}
.boldbb {
background-position: 0px 0px;
}
.boldbb:hover {
- background-position: -22px 0px;
+ background-position: 0px -16px;
}
.italicbb {
- background-position: 0px -22px;
+ background-position: -16px 0px;
}
.italicbb:hover {
- background-position: -22px -22px;
+ background-position: -16px -16px;
}
.underlinebb {
- background-position: 0px -44px;
+ background-position: -32px 0px;
}
.underlinebb:hover {
- background-position: -22px -44px;
+ background-position: -32px -16px;
}
.quotebb {
- background-position: 0px -66px;
+ background-position: -48px 0px;
}
.quotebb:hover {
- background-position: -22px -66px;
+ background-position: -48px -16px;
}
.codebb {
- background-position: 0px -88px;
+ background-position: -64px 0px;
}
.codebb:hover {
- background-position: -22px -88px;
+ background-position: -64px -16px;
}
.imagebb {
- background-position: -44px 0px;
+ background-position: -80px 0px;
}
.imagebb:hover {
- background-position: -66px 0px;
+ background-position: -80px -16px;
}
.urlbb {
- background-position: -44px -22px;
+ background-position: -96px 0px;
}
.urlbb:hover {
- background-position: -66px -22px;
+ background-position: -96px -16px;
}
.videobb {
- background-position: -44px -44px;
+ background-position: -112px 0px;
}
.videobb:hover {
- background-position: -66px -44px;
+ background-position: -112px -16px;
}
.attachtype {
diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php
index 8c7e6c607..2498852f9 100644
--- a/view/theme/duepuntozero/theme.php
+++ b/view/theme/duepuntozero/theme.php
@@ -12,7 +12,8 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
@@ -36,7 +37,7 @@ function insertFormatting(comment,BBcode,id) {
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
-function cmtBbClose(id) {
+function cmtBbClose(comment, id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() {
diff --git a/view/theme/greenzero/comment_item.tpl b/view/theme/greenzero/comment_item.tpl
deleted file mode 100755
index 84b9597e8..000000000
--- a/view/theme/greenzero/comment_item.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/view/theme/greenzero/theme.php b/view/theme/greenzero/theme.php
index af69b150a..a63d8a235 100644
--- a/view/theme/greenzero/theme.php
+++ b/view/theme/greenzero/theme.php
@@ -14,7 +14,8 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
diff --git a/view/theme/purplezero/comment_item.tpl b/view/theme/purplezero/comment_item.tpl
deleted file mode 100755
index 84b9597e8..000000000
--- a/view/theme/purplezero/comment_item.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/view/theme/purplezero/theme.php b/view/theme/purplezero/theme.php
index 9b483db62..4ae9d579f 100644
--- a/view/theme/purplezero/theme.php
+++ b/view/theme/purplezero/theme.php
@@ -14,7 +14,8 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
diff --git a/view/theme/slack-NS/comment_item.tpl b/view/theme/slack-NS/comment_item.tpl
deleted file mode 100755
index 84b9597e8..000000000
--- a/view/theme/slack-NS/comment_item.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/view/theme/slack-NS/theme.php b/view/theme/slack-NS/theme.php
index 68d579211..14d058c7d 100644
--- a/view/theme/slack-NS/theme.php
+++ b/view/theme/slack-NS/theme.php
@@ -14,7 +14,8 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
diff --git a/view/theme/slackr/comment_item.tpl b/view/theme/slackr/comment_item.tpl
deleted file mode 100755
index 84b9597e8..000000000
--- a/view/theme/slackr/comment_item.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/view/theme/slackr/theme.php b/view/theme/slackr/theme.php
index a5520fce5..99e061a2f 100644
--- a/view/theme/slackr/theme.php
+++ b/view/theme/slackr/theme.php
@@ -14,7 +14,9 @@ function insertFormatting(comment,BBcode,id) {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
- }
+ $("#comment-edit-text-" + id).val(tmpStr);
+
+ }
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {