aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/quattro
diff options
context:
space:
mode:
Diffstat (limited to 'view/theme/quattro')
-rw-r--r--view/theme/quattro/Makefile5
-rw-r--r--view/theme/quattro/TODO2
-rw-r--r--view/theme/quattro/config.php59
-rw-r--r--view/theme/quattro/dark/Makefile4
-rw-r--r--view/theme/quattro/dark/colors.less111
-rw-r--r--view/theme/quattro/dark/style.css2063
-rw-r--r--view/theme/quattro/dark/style.less14
-rw-r--r--view/theme/quattro/experimental0
-rw-r--r--view/theme/quattro/green/Makefile4
-rw-r--r--view/theme/quattro/green/colors.less109
-rw-r--r--view/theme/quattro/green/style.css2063
-rw-r--r--view/theme/quattro/green/style.less14
-rw-r--r--view/theme/quattro/icons.less83
-rw-r--r--view/theme/quattro/icons/addon_off.pngbin834 -> 0 bytes
-rw-r--r--view/theme/quattro/icons/addon_on.pngbin715 -> 0 bytes
-rw-r--r--view/theme/quattro/icons/dislike.pngbin386 -> 0 bytes
-rw-r--r--view/theme/quattro/icons/language.pngbin849 -> 0 bytes
-rw-r--r--view/theme/quattro/icons/like.pngbin388 -> 0 bytes
-rw-r--r--view/theme/quattro/icons/next.pngbin300 -> 0 bytes
-rw-r--r--view/theme/quattro/icons/prev.pngbin336 -> 0 bytes
-rw-r--r--view/theme/quattro/quattro.less1385
-rw-r--r--view/theme/quattro/screenshot.jpgbin69607 -> 0 bytes
-rw-r--r--view/theme/quattro/style.php30
-rw-r--r--view/theme/quattro/theme.php105
-rw-r--r--view/theme/quattro/tpl/birthdays_reminder.tpl1
-rw-r--r--view/theme/quattro/tpl/comment_item.tpl62
-rw-r--r--view/theme/quattro/tpl/contact_template.tpl26
-rw-r--r--view/theme/quattro/tpl/conversation.tpl48
-rw-r--r--view/theme/quattro/tpl/events_reminder.tpl39
-rw-r--r--view/theme/quattro/tpl/fileas_widget.tpl12
-rw-r--r--view/theme/quattro/tpl/generic_links_widget.tpl11
-rw-r--r--view/theme/quattro/tpl/group_side.tpl29
-rw-r--r--view/theme/quattro/tpl/jot.tpl52
-rw-r--r--view/theme/quattro/tpl/mail_conv.tpl60
-rw-r--r--view/theme/quattro/tpl/mail_display.tpl12
-rw-r--r--view/theme/quattro/tpl/mail_list.tpl8
-rw-r--r--view/theme/quattro/tpl/message_side.tpl10
-rw-r--r--view/theme/quattro/tpl/msg-header.tpl97
-rw-r--r--view/theme/quattro/tpl/nav.tpl95
-rw-r--r--view/theme/quattro/tpl/nets.tpl12
-rw-r--r--view/theme/quattro/tpl/photo_view.tpl37
-rw-r--r--view/theme/quattro/tpl/profile_vcard.tpl63
-rw-r--r--view/theme/quattro/tpl/saved_searches_aside.tpl15
-rw-r--r--view/theme/quattro/tpl/search_item.tpl91
-rw-r--r--view/theme/quattro/tpl/theme_settings.tpl8
-rw-r--r--view/theme/quattro/tpl/threaded_conversation.tpl37
-rw-r--r--view/theme/quattro/tpl/wall_item.tpl90
-rw-r--r--view/theme/quattro/tpl/wall_item_tag.tpl27
-rw-r--r--view/theme/quattro/tpl/wall_thread.tpl144
-rw-r--r--view/theme/quattro/tpl/wallwall_item.tpl96
-rw-r--r--view/theme/quattro/tpl/wallwall_thread.tpl151
51 files changed, 0 insertions, 7384 deletions
diff --git a/view/theme/quattro/Makefile b/view/theme/quattro/Makefile
deleted file mode 100644
index 5df58c821..000000000
--- a/view/theme/quattro/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-all:
- cd dark; make; cd ..
- cd green; make; cd ..
-
-
diff --git a/view/theme/quattro/TODO b/view/theme/quattro/TODO
deleted file mode 100644
index 12638551a..000000000
--- a/view/theme/quattro/TODO
+++ /dev/null
@@ -1,2 +0,0 @@
-jot.tpl: <!-- TODO: waiting for a better placement
-nav.tpl: <!-- TODO: better icons! -->
diff --git a/view/theme/quattro/config.php b/view/theme/quattro/config.php
deleted file mode 100644
index c261a78ec..000000000
--- a/view/theme/quattro/config.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-/**
- * Theme settings
- */
-
-
-
-function theme_content(&$a){
- if(!local_user())
- return;
-
- $align = get_pconfig(local_user(), 'quattro', 'align' );
- $color = get_pconfig(local_user(), 'quattro', 'color' );
-
- return quattro_form($a,$align, $color);
-}
-
-function theme_post(&$a){
- if(! local_user())
- return;
-
- if (isset($_POST['quattro-settings-submit'])){
- set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']);
- set_pconfig(local_user(), 'quattro', 'color', $_POST['quattro_color']);
- }
-}
-
-
-function theme_admin(&$a){
- $align = get_config('quattro', 'align' );
- $color = get_config('quattro', 'color' );
-
- return quattro_form($a,$align, $color);
-}
-
-function theme_admin_post(&$a){
- if (isset($_POST['quattro-settings-submit'])){
- set_config('quattro', 'align', $_POST['quattro_align']);
- set_config('quattro', 'color', $_POST['quattro_color']);
- }
-}
-
-
-function quattro_form(&$a, $align, $color){
- $colors = array(
- "dark"=>"Quattro",
- "green"=>"Green"
- );
-
- $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"),
- '$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
- '$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),
- ));
- return $o;
-}
diff --git a/view/theme/quattro/dark/Makefile b/view/theme/quattro/dark/Makefile
deleted file mode 100644
index 989da60c7..000000000
--- a/view/theme/quattro/dark/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
-##
-
-style.css : style.less colors.less ../icons.less ../quattro.less
- lessc style.less > style.css
diff --git a/view/theme/quattro/dark/colors.less b/view/theme/quattro/dark/colors.less
deleted file mode 100644
index 42fdd34bb..000000000
--- a/view/theme/quattro/dark/colors.less
+++ /dev/null
@@ -1,111 +0,0 @@
-// Quattro Theme LESS file
-
-// "Echo" palette from Inkscape
-@Yellow1 : #fce94f;
-@Blue1:rgb(25,174,255);
-@Blue2:rgb(0,132,200);
-@Blue3:rgb(0,92,148);
-@Red1:rgb(255,65,65);
-@Red2:rgb(220,0,0);
-@Red3:rgb(181,0,0);
-@Orange1:rgb(255,255,62);
-@Orange2:rgb(255,153,0);
-@Orange3:rgb(255,102,0);
-@Brown1:rgb(255,192,34);
-@Brown2:rgb(184,129,0);
-@Brown3:rgb(128,77,0);
-@Green1:rgb(204,255,66);
-@Green2:rgb(154,222,0);
-@Green3:rgb(0,145,0);
-@Purple1:rgb(241,202,255);
-@Purple2:rgb(215,108,255);
-@Purple3:rgb(186,0,255);
-@Metalic1:rgb(189,205,212);
-@Metalic2:rgb(158,171,176);
-@Metalic3:rgb(54,78,89);
-@Metalic4:rgb(14,35,46);
-@Grey1:rgb(255,255,255);
-@Grey2:rgb(204,204,204);
-@Grey3:rgb(153,153,153);
-@Grey4:rgb(102,102,102);
-@Grey5:rgb(45,45,45);
-
-
-// Theme colors
-@BodyBackground: @Grey1;
-@BodyColor: @Grey5;
-
-@Link: @Blue3;
-@LinkHover: @Blue3;
-@LinkVisited: @Blue3;
-@LinkDimmed: @Blue2;
-
-@ButtonColor: @Grey1;
-@ButtonBackgroundColor: @Grey5;
-
-@Banner: @Grey1;
-
-@NavbarBackground:@Metalic4;
-@NavbarSelectedBg:@Metalic3;
-@NavbarSelectedBorder: @Metalic2;
-@NavbarNotifBg: @Blue1;
-
-@Menu: @Grey5;
-@MenuBg: @Grey1;
-@MenuBorder: @Metalic3;
-@MenuItem: @Grey5;
-@MenuItemHoverBg: @Metalic1;
-@MenuItemSeparator: @Metalic2;
-@MenuEmpty: @Metalic2;
-@MenuItemDetail: @Metalic2;
-
-@AsideBorder: @Metalic1;
-@AsideConnect: @Grey1;
-@AsideConnectBg: @Blue3;
-@AsideConnectHoverBg: @Blue1;
-@VCardLabelColor: @Grey3;
-
-@InfoColor: @Grey1;
-@InfoBackgroundColor: @Metalic3;
-
-@NoticeColor: @Grey1;
-@NoticeBackgroundColor: #511919;
-
-@FieldHelpColor: @Grey3;
-
-@ThreadBackgroundColor: #eff0f1;
-@ThreadBottomBorderColor: @Grey2;
-@ShinyBorderColor: @Yellow1;
-
-@ItemColor: @Grey5;
-@ItemColorDimmed: @Grey3;
-
-@CommentBoxEmptyColor: @Grey3;
-@CommentBoxEmptyBorderColor: @Grey3;
-@CommentBoxFullColor: @Grey5;
-@CommentBoxFullBorderColor: @Grey5;
-
-@TagColor: @Grey1;
-
-@JotToolsBackgroundColor: @Metalic4;
-@JotToolsBorderColor: @Metalic2;
-@JotToolsOverBackgroundColor: @Metalic3;
-@JotToolsOverBorderColor: @Metalic1;
-@JotToolsText: @Grey2;
-@JotSubmitBackgroundColor: @Grey2;
-@JotSubmitText: @Grey4;
-@JotSubmitOverBackgroundColor: @Metalic1;
-@JotSubmitOverText: @Grey4;
-@JotPermissionUnlockBackgroundColor: @Grey2;
-@JotPermissionLockBackgroundColor: @Grey4;
-@JotLoadingBackgroundColor: @Grey1;
-@JotPreviewBackgroundColor: @Yellow1;
-
-@MessageNewBackgroundColor: @Blue1;
-@MessageNewBorderColor: @Blue3;
-@MessageNewColor: @Grey1;
-
-@MailListBackgroundColor: #f6f7f8;
-
-@MailDisplaySubjectColor: @Grey5;
-@MailDisplaySubjectBackgroundColor: #f6f7f8;
diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css
deleted file mode 100644
index 17ee6576d..000000000
--- a/view/theme/quattro/dark/style.css
+++ /dev/null
@@ -1,2063 +0,0 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- **/
-/* icons */
-.icon {
- background-color: transparent ;
- background-repeat: no-repeat;
- background-position: left center;
- display: block;
- overflow: hidden;
- text-indent: -9999px;
- padding: 1px;
- min-width: 22px;
- height: 22px;
-}
-.icon.text {
- text-indent: 0px;
-}
-.icon.notify {
- background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.gear {
- background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.like {
- background-image: url("icons/like.png");
-}
-.icon.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.add {
- background-image: url("../../../images/icons/22/add.png");
-}
-.icon.delete {
- background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.edit {
- background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.star {
- background-image: url("../../../images/icons/22/star.png");
-}
-.icon.menu {
- background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.link {
- background-image: url("../../../images/icons/22/link.png");
-}
-.icon.lock {
- background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.unlock {
- background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.plugin {
- background-image: url("../../../images/icons/22/plugin.png");
-}
-.icon.type-unkn {
- background-image: url("../../../images/icons/22/zip.png");
-}
-.icon.type-audio {
- background-image: url("../../../images/icons/22/audio.png");
-}
-.icon.type-video {
- background-image: url("../../../images/icons/22/video.png");
-}
-.icon.type-image {
- background-image: url("../../../images/icons/22/image.png");
-}
-.icon.type-text {
- background-image: url("../../../images/icons/22/text.png");
-}
-.icon.language {
- background-image: url("icons/language.png");
-}
-.icon.text {
- padding: 10px 0px 0px 25px;
-}
-.icon.s10 {
- min-width: 10px;
- height: 10px;
-}
-.icon.s10.notify {
- background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
- background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.like {
- background-image: url("icons/like.png");
-}
-.icon.s10.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s10.add {
- background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
- background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
- background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
- background-image: url("../../../images/icons/10/star.png");
-}
-.icon.s10.menu {
- background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
- background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
- background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
- background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.plugin {
- background-image: url("../../../images/icons/10/plugin.png");
-}
-.icon.s10.type-unkn {
- background-image: url("../../../images/icons/10/zip.png");
-}
-.icon.s10.type-audio {
- background-image: url("../../../images/icons/10/audio.png");
-}
-.icon.s10.type-video {
- background-image: url("../../../images/icons/10/video.png");
-}
-.icon.s10.type-image {
- background-image: url("../../../images/icons/10/image.png");
-}
-.icon.s10.type-text {
- background-image: url("../../../images/icons/10/text.png");
-}
-.icon.s10.language {
- background-image: url("icons/language.png");
-}
-.icon.s10.text {
- padding: 2px 0px 0px 15px;
-}
-.icon.s16 {
- min-width: 16px;
- height: 16px;
-}
-.icon.s16.notify {
- background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
- background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.like {
- background-image: url("icons/like.png");
-}
-.icon.s16.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s16.add {
- background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
- background-image: url("../../../images/icons/16/delete.png");
-}
-.icon.s16.edit {
- background-image: url("../../../images/icons/16/edit.png");
-}
-.icon.s16.star {
- background-image: url("../../../images/icons/16/star.png");
-}
-.icon.s16.menu {
- background-image: url("../../../images/icons/16/menu.png");
-}
-.icon.s16.link {
- background-image: url("../../../images/icons/16/link.png");
-}
-.icon.s16.lock {
- background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
- background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.plugin {
- background-image: url("../../../images/icons/16/plugin.png");
-}
-.icon.s16.type-unkn {
- background-image: url("../../../images/icons/16/zip.png");
-}
-.icon.s16.type-audio {
- background-image: url("../../../images/icons/16/audio.png");
-}
-.icon.s16.type-video {
- background-image: url("../../../images/icons/16/video.png");
-}
-.icon.s16.type-image {
- background-image: url("../../../images/icons/16/image.png");
-}
-.icon.s16.type-text {
- background-image: url("../../../images/icons/16/text.png");
-}
-.icon.s16.language {
- background-image: url("icons/language.png");
-}
-.icon.s16.text {
- padding: 4px 0px 0px 20px;
-}
-.icon.s22 {
- min-width: 22px;
- height: 22px;
-}
-.icon.s22.notify {
- background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
- background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.like {
- background-image: url("icons/like.png");
-}
-.icon.s22.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s22.add {
- background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
- background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
- background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
- background-image: url("../../../images/icons/22/star.png");
-}
-.icon.s22.menu {
- background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
- background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
- background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
- background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.plugin {
- background-image: url("../../../images/icons/22/plugin.png");
-}
-.icon.s22.type-unkn {
- background-image: url("../../../images/icons/22/zip.png");
-}
-.icon.s22.type-audio {
- background-image: url("../../../images/icons/22/audio.png");
-}
-.icon.s22.type-video {
- background-image: url("../../../images/icons/22/video.png");
-}
-.icon.s22.type-image {
- background-image: url("../../../images/icons/22/image.png");
-}
-.icon.s22.type-text {
- background-image: url("../../../images/icons/22/text.png");
-}
-.icon.s22.language {
- background-image: url("icons/language.png");
-}
-.icon.s22.text {
- padding: 10px 0px 0px 25px;
-}
-.icon.s48 {
- width: 48px;
- height: 48px;
-}
-.icon.s48.notify {
- background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
- background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.like {
- background-image: url("icons/like.png");
-}
-.icon.s48.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s48.add {
- background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
- background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
- background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
- background-image: url("../../../images/icons/48/star.png");
-}
-.icon.s48.menu {
- background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
- background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
- background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
- background-image: url("../../../images/icons/48/unlock.png");
-}
-.icon.s48.plugin {
- background-image: url("../../../images/icons/48/plugin.png");
-}
-.icon.s48.type-unkn {
- background-image: url("../../../images/icons/48/zip.png");
-}
-.icon.s48.type-audio {
- background-image: url("../../../images/icons/48/audio.png");
-}
-.icon.s48.type-video {
- background-image: url("../../../images/icons/48/video.png");
-}
-.icon.s48.type-image {
- background-image: url("../../../images/icons/48/image.png");
-}
-.icon.s48.type-text {
- background-image: url("../../../images/icons/48/text.png");
-}
-.icon.s48.language {
- background-image: url("icons/language.png");
-}
-.icon.on {
- background-image: url("icons/addon_on.png");
- min-width: 16px;
- height: 16px;
- background-position: 0px 0px;
-}
-.icon.off {
- background-image: url("icons/addon_off.png");
- width: 16px;
- height: 16px;
- background-position: 0px 0px;
-}
-/* global */
-body {
- font-family: Liberation Sans, helvetica, arial, clean, sans-serif;
- font-size: 11px;
- background-color: #ffffff;
- color: #2d2d2d;
- margin: 50px 0px 0px 0px;
- display: table;
-}
-h4 {
- font-size: 1.1em;
-}
-a,
-a:link {
- color: #005c94;
- text-decoration: none;
-}
-a:visited {
- color: #005c94;
- text-decoration: none;
-}
-a:hover {
- color: #005c94;
- text-decoration: underline;
-}
-.left {
- float: left;
-}
-.right {
- float: right;
-}
-.hidden {
- display: none;
-}
-.clear {
- clear: both;
-}
-.fakelink {
- color: #005c94;
- text-decoration: none;
- cursor: pointer;
-}
-.fakelink:hover {
- color: #005c94;
- text-decoration: underline;
-}
-code {
- font-family: Courier, monospace;
- white-space: pre;
- display: block;
- overflow: auto;
- border: 1px solid #444;
- background: #EEE;
- color: #444;
- padding: 10px;
- margin-top: 20px;
-}
-#panel {
- position: absolute;
- width: 10em;
- background: #ffffff;
- color: #2d2d2d;
- margin: 0px;
- padding: 1em;
- list-style: none;
- border: 3px solid #364e59;
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
- height: auto;
- overflow: auto;
-}
-.tool .label {
- float: left;
-}
-.tool .action {
- float: right;
-}
-.tool > img {
- float: left;
-}
-/* popup notifications */
-#jGrowl.top-right {
- top: 30px;
- right: 15px;
-}
-div.jGrowl div.notice {
- background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
- color: #ffffff;
- padding-left: 58px;
-}
-div.jGrowl div.info {
- background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
- color: #ffffff;
- padding-left: 58px;
-}
-/* header */
-header {
- position: fixed;
- left: 43%;
- right: 43%;
- top: 0px;
- margin: 0px;
- padding: 0px;
- /*width: 100%; height: 12px; */
-
- z-index: 110;
- color: #ffffff;
-}
-header #site-location {
- display: none;
-}
-header #banner {
- overflow: hidden;
- text-align: center;
- width: 100%;
-}
-header #banner a,
-header #banner a:active,
-header #banner a:visited,
-header #banner a:link,
-header #banner a:hover {
- color: #ffffff;
- text-decoration: none;
- outline: none;
- vertical-align: bottom;
-}
-header #banner #logo-img {
- height: 22px;
- margin-top: 5px;
-}
-header #banner #logo-text {
- font-size: 22px;
-}
-/* nav */
-nav {
- width: 100%;
- height: 32px;
- position: fixed;
- left: 0px;
- top: 0px;
- padding: 0px;
- background-color: #0e232e;
- color: #ffffff;
- z-index: 100;
- -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
- color: #ffffff;
- text-decoration: none;
- outline: none;
-}
-nav ul {
- margin: 0px;
- padding: 0px 20px;
-}
-nav ul li {
- list-style: none;
- margin: 0px;
- padding: 0px;
- float: left;
-}
-nav ul li .menu-popup {
- left: 0px;
- right: auto;
-}
-nav .nav-menu-icon {
- position: relative;
- height: 22px;
- padding: 5px;
- margin: 0px 10px;
- -moz-border-radius: 5px 5px 0 0;
- -webkit-border-radius: 5px 5px 0 0;
- border-radius: 5px 5px 0 0;
-}
-nav .nav-menu-icon.selected {
- background-color: #364e59;
-}
-nav .nav-menu-icon img {
- width: 22px;
- height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
- top: 3px;
-}
-nav .nav-menu {
- position: relative;
- height: 16px;
- padding: 5px;
- margin: 3px 15px 0px;
- font-size: 14px;
- border-bottom: 3px solid #0e232e;
-}
-nav .nav-menu.selected {
- border-bottom: 3px solid #9eabb0;
-}
-nav .nav-notify {
- display: none;
- position: absolute;
- background-color: #19aeff;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- font-size: 10px;
- padding: 1px 3px;
- top: 0px;
- right: -10px;
- min-width: 15px;
- text-align: right;
-}
-nav .nav-notify.show {
- display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu {
- float: right;
-}
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
- right: 0px;
- left: auto;
-}
-nav #nav-notifications-linkmenu.on .icon.s22.notify,
-nav #nav-notifications-linkmenu.selected .icon.s22.notify {
- background-image: url("../../../images/icons/22/notify_on.png");
-}
-nav #nav-apps-link.selected {
- background-color: #364e59;
-}
-ul.menu-popup {
- position: absolute;
- display: none;
- width: 10em;
- background: #ffffff;
- color: #2d2d2d;
- margin: 0px;
- padding: 0px;
- list-style: none;
- border: 3px solid #364e59;
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
- display: block;
- color: #2d2d2d;
- padding: 5px 10px;
- text-decoration: none;
-}
-ul.menu-popup a:hover {
- background-color: #bdcdd4;
-}
-ul.menu-popup .menu-sep {
- border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
- float: none;
- overflow: auto;
- height: auto;
- display: block;
-}
-ul.menu-popup li img {
- float: left;
- width: 16px;
- height: 16px;
- padding-right: 5px;
-}
-ul.menu-popup .empty {
- padding: 5px;
- text-align: center;
- color: #9eabb0;
-}
-ul.menu-popup .toolbar {
- background-color: #9eabb0;
- height: auto;
- overflow: auto;
-}
-ul.menu-popup .toolbar a {
- float: right;
-}
-ul.menu-popup .toolbar a:hover {
- background-color: #ffffff;
-}
-/* autocomplete popup */
-.acpopup {
- max-height: 150px;
- background-color: #ffffff;
- color: #2d2d2d;
- border: 1px solid #MenuBorder;
- overflow: auto;
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
- color: #2d2d2d;
- padding: 4px;
- clear: left;
-}
-.acpopupitem img {
- float: left;
- margin-right: 4px;
-}
-.acpopupitem.selected {
- background-color: #bdcdd4;
-}
-#nav-notifications-menu {
- width: 400px;
- max-height: 550px;
- overflow: auto;
-}
-#nav-notifications-menu img {
- float: left;
- margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
- font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
- font-size: 10px;
- color: #9eabb0;
- display: block;
-}
-/* aside 230px*/
-aside {
- display: table-cell;
- vertical-align: top;
- width: 200px;
- padding: 0px 10px 0px 20px;
- border-right: 1px solid #bdcdd4;
-}
-aside .profile-edit-side-div {
- display: none;
-}
-aside .vcard .fn {
- font-size: 16px;
- font-weight: bold;
- margin-bottom: 5px;
-}
-aside .vcard .title {
- margin-bottom: 5px;
-}
-aside .vcard dl {
- height: auto;
- overflow: auto;
-}
-aside .vcard dt {
- float: left;
- margin-left: 0px;
- width: 35%;
- text-align: right;
- color: #999999;
-}
-aside .vcard dd {
- float: left;
- margin-left: 4px;
- width: 60%;
-}
-aside #profile-extra-links ul {
- padding: 0px;
- margin: 0px;
-}
-aside #profile-extra-links li {
- padding: 0px;
- margin: 0px;
- list-style: none;
-}
-aside #dfrn-request-link {
- display: block;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- color: #ffffff;
- background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
- font-weight: bold;
- text-transform: uppercase;
- padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
- text-decoration: none;
- background-color: #19aeff;
-}
-aside #profiles-menu {
- width: 20em;
-}
-#contact-block {
- overflow: auto;
- height: auto;
- /*.contact-block-div { width:60px; height: 60px; }*/
-
-}
-#contact-block .contact-block-h4 {
- float: left;
- margin: 5px 0px;
-}
-#contact-block .allcontact-link {
- float: right;
- margin: 5px 0px;
-}
-#contact-block .contact-block-content {
- clear: both;
- overflow: hidden;
- height: auto;
-}
-#contact-block .contact-block-link {
- float: left;
- margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
- width: 48px;
- height: 48px;
-}
-/* group member */
-#contact-edit-drop-link,
-.mail-list-delete-wrapper,
-.group-delete-wrapper {
- float: right;
- margin-right: 50px;
-}
-#contact-edit-drop-link .drophide,
-.mail-list-delete-wrapper .drophide,
-.group-delete-wrapper .drophide {
- background-image: url('../../../images/icons/22/delete.png');
- display: block;
- width: 22px;
- height: 22px;
- opacity: 0.3;
- position: relative;
- top: -50px;
-}
-#contact-edit-drop-link .drop,
-.mail-list-delete-wrapper .drop,
-.group-delete-wrapper .drop {
- background-image: url('../../../images/icons/22/delete.png');
- display: block;
- width: 22px;
- height: 22px;
- position: relative;
- top: -50px;
-}
-/*
-#group-members {
- margin-top: 20px;
- padding: 10px;
- height: 250px;
- overflow: auto;
- border: 1px solid #ddd;
-}
-#group-members-end {
- clear: both;
-}
-#group-all-contacts {
- padding: 10px;
- height: 450px;
- overflow: auto;
- border: 1px solid #ddd;
-}
-#group-all-contacts-end {
- clear: both;
- margin-bottom: 10px;
-}
-.contact-block-div {
- float: left;
- width: 60px;
- height: 60px;
-}*/
-/* widget */
-.widget {
- margin-bottom: 2em;
- /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
- .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-
-}
-.widget h3 {
- padding: 0px;
- margin: 2px;
-}
-.widget .action {
- opacity: 0.1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget input.action {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget ul {
- padding: 0px;
-}
-.widget ul li {
- padding-left: 16px;
- min-height: 16px;
- list-style: none;
-}
-.widget .tool.selected {
- background: url('../../../images/selected.png') no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
- width: 200px;
- top: 18px;
-}
-/* section 800px */
-section {
- display: table-cell;
- vertical-align: top;
- width: 770px;
- padding: 0px 20px 0px 10px;
-}
-/* wall item */
-.thread-wrapper {
- background-color: #eff0f1;
- position: relative;
- padding: 10px;
- margin-bottom: 20px;
- width: 750px;
- border-bottom: 1px solid #cccccc;
-}
-.wall-item-decor {
- position: absolute;
- left: 97%;
- top: -10px;
- width: 16px;
-}
-.unstarred {
- display: none;
-}
-.wall-item-container {
- display: table;
- width: 750px;
-}
-.wall-item-container .wall-item-item,
-.wall-item-container .wall-item-bottom {
- display: table-row;
-}
-.wall-item-container .wall-item-bottom {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container:hover .wall-item-bottom {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-info {
- display: table-cell;
- vertical-align: top;
- text-align: left;
- width: 60px;
-}
-.wall-item-container .wall-item-location {
- word-wrap: break-word;
- width: 50px;
-}
-.wall-item-container .wall-item-content {
- display: table-cell;
- font-size: 12px;
- max-width: 720px;
- word-wrap: break-word;
-}
-.wall-item-container .wall-item-content img {
- max-width: 710px;
-}
-.wall-item-container .wall-item-links,
-.wall-item-container .wall-item-actions {
- display: table-cell;
- vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon,
-.wall-item-container .wall-item-actions .icon {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover,
-.wall-item-container .wall-item-actions .icon:hover {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-ago {
- padding-right: 40px;
-}
-.wall-item-container .wall-item-name {
- font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
- float: left;
- width: 20em;
- margin-top: 0.5em;
-}
-.wall-item-container .wall-item-actions-social {
- float: left;
- margin-top: 0.5em;
-}
-.wall-item-container .wall-item-actions-social a {
- margin-right: 3em;
-}
-.wall-item-container .wall-item-actions-tools {
- float: right;
- width: 15%;
-}
-.wall-item-container .wall-item-actions-tools a {
- float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
- float: right;
-}
-.wall-item-container.comment .contact-photo-wrapper {
- margin-left: 16px;
-}
-.wall-item-container.comment .contact-photo {
- width: 32px;
- height: 32px;
-}
-.wall-item-container.comment .contact-photo-menu-button {
- top: 15px !important;
- left: 0px !important;
-}
-.wall-item-container.comment .wall-item-links {
- padding-left: 12px;
-}
-/* 'tag' item type */
-.wall-item-container.item-tag .wall-item-content {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container.item-tag .contact-photo-wrapper {
- margin-left: 32px;
-}
-.wall-item-container.item-tag .contact-photo {
- width: 16px;
- height: 16px;
-}
-.wall-item-container.item-tag .contact-photo-menu-button {
- top: 15px !important;
- left: 15px !important;
-}
-.wall-item-comment-wrapper {
- margin: 1em 2em 1em 60px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
- display: none;
-}
-.wall-item-comment-wrapper textarea {
- height: 1em;
- width: 100%;
- font-size: 12px;
- color: #999999;
- border: 1px solid #999999;
- padding: 0.3em;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
- font-size: 14px;
- height: 4em;
- color: #2d2d2d;
- border: 1px solid #2d2d2d;
-}
-.threaded .wall-item-comment-wrapper {
- margin-left: 0px;
-}
-.comment-edit-preview {
- width: 710px;
- border: 1px solid #2d2d2d;
- margin-top: 10px;
- background-color: #fce94f;
-}
-.comment-edit-preview .contact-photo {
- width: 32px;
- height: 32px;
- margin-left: 16px;
- /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview .contact-photo-menu-button {
- top: 15px !important;
- left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
- padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
- width: 700px;
-}
-.comment-edit-preview .thread-wrapper {
- width: 700px;
- padding: 0;
- margin: 10px 0;
-}
-.shiny {
- border-right: 10px solid #fce94f;
-}
-#jot-preview-content .thread-wrapper {
- background-color: #fce94f;
-}
-.hide-comments-outer {
- margin-bottom: 0.8em;
-}
-.wall-item-tags {
- padding-top: 5px;
-}
-.tag {
- background: url("../../../images/tag_b.png") no-repeat center left;
- color: #ffffff;
- padding-left: 3px;
-}
-.tag a {
- padding-right: 8px;
- background: url("../../../images/tag.png") no-repeat center right;
- color: #ffffff;
-}
-.filesavetags {
- padding: 3px 0px 3px 0px;
- opacity: 0.5;
-}
-.wwto {
- background: #FFFFFF;
- border: 2px solid #364e59;
- height: 25px;
- width: 25px;
- overflow: hidden;
- padding: 1px;
- position: absolute !important;
- top: 40px;
- left: 30px;
- -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
- width: 25px;
- height: 25px;
-}
-#pause {
- position: fixed;
- bottom: 5px;
- right: 5px;
-}
-.contact-photo-wrapper {
- position: relative;
-}
-.contact-photo {
- width: 48px;
- height: 48px;
- overflow: hidden;
- display: block;
-}
-.contact-photo img {
- width: 48px;
- height: 48px;
-}
-.contact-photo-menu-button {
- display: none;
- position: absolute;
- left: -2px;
- top: 31px;
-}
-.contact-wrapper {
- float: left;
- width: 300px;
- height: 90px;
- padding-right: 10px;
- margin: 0 10px 10px 0px;
-}
-.contact-wrapper .contact-photo-wrapper {
- float: left;
- margin-right: 10px;
-}
-.contact-wrapper .contact-photo {
- width: 80px;
- height: 80px;
-}
-.contact-wrapper .contact-photo img {
- width: 80px;
- height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
- left: 0px;
- top: 63px;
-}
-.directory-item {
- float: left;
- width: 200px;
- height: 200px;
-}
-.directory-item .contact-photo {
- width: 175px;
- height: 175px;
-}
-.directory-item .contact-photo img {
- width: 175px;
- height: 175px;
-}
-.contact-name {
- font-weight: bold;
- padding-top: 15px;
-}
-.contact-details {
- color: #999999;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-/* editor */
-.jothidden {
- display: none;
-}
-#jot {
- width: 100%;
- margin: 0px 2em 20px 0px;
-}
-#jot .profile-jot-text {
- height: 1em;
- width: 99%;
- font-size: 12px;
- color: #999999;
- border: 1px solid #999999;
- padding: 0.3em;
-}
-#jot #jot-tools {
- margin: 0px;
- padding: 0px;
- height: 40px;
- overflow: none;
- width: 770px;
- background-color: #0e232e;
- border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li {
- list-style: none;
- float: left;
- width: 80px;
- height: 40px;
- border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
- display: block;
- color: #cccccc;
- width: 100%;
- height: 40px;
- text-align: center;
- line-height: 40px;
- overflow: hidden;
-}
-#jot #jot-tools li:hover {
- background-color: #364e59;
- border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
- float: right;
- width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
- width: 30px;
- border-left: 10px solid #cccccc;
- background-color: #cccccc;
-}
-#jot #jot-tools li.perms a.lock {
- width: 30px;
- border-left: 10px solid #666666;
- background-color: #666666;
-}
-#jot #jot-tools li.submit {
- float: right;
- background-color: #cccccc;
- border-bottom: 2px solid #cccccc;
- border-right: 1px solid #666666;
- border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
- border: 0px;
- margin: 0px;
- padding: 0px;
- background-color: #cccccc;
- color: #666666;
- width: 80px;
- height: 40px;
- line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
- background-color: #bdcdd4;
- color: #666666;
-}
-#jot #jot-tools li.loading {
- float: right;
- background-color: #ffffff;
- width: 20px;
- vertical-align: center;
- text-align: center;
- border-top: 2px solid #9eabb0;
- height: 38px;
-}
-#jot #jot-tools li.loading img {
- margin-top: 10px;
-}
-#jot #jot-title {
- border: 0px;
- margin: 0px;
- height: 20px;
- width: 500px;
- font-weight: bold;
- border: 1px solid #ffffff;
-}
-#jot #jot-title:-webkit-input-placeholder {
- font-weight: normal;
-}
-#jot #jot-title:-moz-placeholder {
- font-weight: normal;
-}
-#jot #jot-title:hover {
- border: 1px solid #999999;
-}
-#jot #jot-title:focus {
- border: 1px solid #999999;
-}
-#jot #character-counter {
- width: 40px;
- float: right;
- text-align: right;
- height: 20px;
- line-height: 20px;
- padding-right: 20px;
-}
-#jot #jot-category {
- border: 0px;
- margin: 0px;
- height: 20px;
- width: 200px;
- border: 1px solid #ffffff;
-}
-#jot #jot-category:hover {
- border: 1px solid #999999;
-}
-#jot #jot-category:focus {
- border: 1px solid #999999;
-}
-/** buttons **/
-/*input[type="submit"] {
- border: 0px;
- background-color: @ButtonBackgroundColor;
- color: @ButtonColor;
- padding: 0px 10px;
- .rounded(5px);
- height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select,
-#photos-upload-permissions-wrapper,
-#profile-jot-acl-wrapper {
- display: block!important;
-}
-#acl-wrapper {
- width: 690px;
- float: left;
-}
-#acl-search {
- float: right;
- background: #ffffff url("../../../images/search_18.png") no-repeat right center;
- padding-right: 20px;
-}
-#acl-showall {
- float: left;
- display: block;
- width: auto;
- height: 18px;
- background-color: #cccccc;
- background-image: url("../../../images/show_all_off.png");
- background-position: 7px 7px;
- background-repeat: no-repeat;
- padding: 7px 5px 0px 30px;
- color: #999999;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
- color: #000000;
- background-color: #ff9900;
- background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
- height: 210px;
- border: 1px solid #cccccc;
- clear: both;
- margin-top: 30px;
- overflow: auto;
-}
-.acl-list-item {
- display: block;
- width: 150px;
- height: 30px;
- border: 1px solid #cccccc;
- margin: 5px;
- float: left;
-}
-.acl-list-item img {
- width: 22px;
- height: 22px;
- float: left;
- margin: 4px;
-}
-.acl-list-item p {
- height: 12px;
- font-size: 10px;
- margin: 0px;
- padding: 2px 0px 1px;
- overflow: hidden;
-}
-.acl-list-item a {
- font-size: 8px;
- display: block;
- width: 40px;
- height: 10px;
- float: left;
- color: #999999;
- background-color: #cccccc;
- background-position: 3px 3px;
- background-repeat: no-repeat;
- margin-right: 5px;
- -webkit-border-radius: 2px ;
- -moz-border-radius: 2px;
- border-radius: 2px;
- padding-left: 15px;
-}
-#acl-wrapper a:hover {
- text-decoration: none;
- color: #000000;
-}
-.acl-button-show {
- background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
- background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
- color: #000000;
- background-color: #9ade00;
- background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
- color: #000000;
- background-color: #ff4141;
- background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
- border-color: #9ade00;
-}
-.acl-list-item.grouphide {
- border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons **/
-ul.tabs {
- list-style-type: none;
- padding-bottom: 10px;
-}
-ul.tabs li {
- float: left;
- margin-left: 20px;
-}
-ul.tabs li .active {
- border-bottom: 1px solid #005c94;
-}
-/** group editor **/
-#group-edit-desc {
- margin-top: 1em;
- color: #999999;
-}
-#group-update-wrapper {
- height: auto;
- overflow: auto;
-}
-#group-update-wrapper #group {
- width: 300px;
- float: left;
- margin-right: 20px;
-}
-#group-update-wrapper #contacts {
- width: 300px;
- float: left;
-}
-#group-update-wrapper #group-separator {
- display: none;
-}
-#group-update-wrapper .contact_list {
- height: 300px;
- border: 1px solid #364e59;
- overflow: auto;
-}
-#group-update-wrapper .contact_list .contact-block-div {
- width: 50px;
- height: 50px;
- float: left;
-}
-/**
- * Form fields
- */
-.field {
- margin-bottom: 10px;
- padding-bottom: 10px;
- overflow: auto;
- width: 100%;
-}
-.field label {
- float: left;
- width: 200px;
-}
-.field input,
-.field textarea {
- width: 400px;
-}
-.field input[type="checkbox"],
-.field input[type="radio"] {
- width: auto;
-}
-.field textarea {
- height: 100px;
-}
-.field .field_help {
- display: block;
- margin-left: 200px;
- color: #999999;
-}
-.field .onoff {
- float: left;
- width: 80px;
-}
-.field .onoff a {
- display: block;
- border: 1px solid #666666;
- background-image: url("../../../images/onoff.jpg");
- background-repeat: no-repeat;
- padding: 4px 2px 2px 2px;
- height: 16px;
- text-decoration: none;
-}
-.field .onoff .off {
- border-color: #666666;
- padding-left: 40px;
- background-position: left center;
- background-color: #cccccc;
- color: #666666;
- text-align: right;
-}
-.field .onoff .on {
- border-color: #204A87;
- padding-right: 40px;
- background-position: right center;
- background-color: #D7E3F1;
- color: #204A87;
- text-align: left;
-}
-.field .hidden {
- display: none!important;
-}
-.field.radio .field_help {
- margin-left: 0px;
-}
-#profile-edit-links li {
- list-style: none;
- margin-top: 10px;
-}
-#profile-edit-default-desc {
- color: #FF0000;
- border: 1px solid #FF8888;
- background-color: #FFEEEE;
- padding: 7px;
-}
-#profile-edit-profile-name-label,
-#profile-edit-name-label,
-#profile-edit-pdesc-label,
-#profile-edit-gender-label,
-#profile-edit-dob-label,
-#profile-edit-address-label,
-#profile-edit-locality-label,
-#profile-edit-region-label,
-#profile-edit-postal-code-label,
-#profile-edit-country-name-label,
-#profile-edit-marital-label,
-#profile-edit-with-label,
-#profile-edit-sexual-label,
-#profile-edit-politic-label,
-#profile-edit-religion-label,
-#profile-edit-pubkeywords-label,
-#profile-edit-prvkeywords-label,
-#profile-edit-gender-select,
-#profile-edit-homepage-label {
- float: left;
- width: 175px;
- padding-top: 7px;
-}
-#profile-edit-profile-name,
-#profile-edit-name,
-#gender-select,
-#profile-edit-pdesc,
-#profile-edit-gender,
-#profile-edit-dob,
-#profile-edit-address,
-#profile-edit-locality,
-#profile-edit-region,
-#profile-edit-postal-code,
-#profile-edit-country-name,
-#profile-edit-marital,
-#profile-edit-with,
-#profile-edit-sexual,
-#profile-edit-politic,
-#profile-edit-religion,
-#profile-edit-pubkeywords,
-#profile-edit-prvkeywords,
-#profile-edit-homepage {
- margin-top: 5px;
-}
-/* oauth */
-.oauthapp {
- height: auto;
- overflow: auto;
- border-bottom: 2px solid #cccccc;
- padding-bottom: 1em;
- margin-bottom: 1em;
-}
-.oauthapp img {
- float: left;
- width: 48px;
- height: 48px;
- margin: 10px;
-}
-.oauthapp img.noicon {
- background-image: url("../../../images/icons/48/plugin.png");
- background-position: center center;
- background-repeat: no-repeat;
-}
-.oauthapp a {
- float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
- width: 50px;
- float: left;
-}
-/* photo albums */
-#photo-edit-link-wrap {
- margin-bottom: 10px;
-}
-#album-edit-link {
- border-right: 1px solid #364e59;
- float: left;
- padding-right: 5px;
- margin-right: 5px;
-}
-#photo-edit-link,
-#album-edit-link a {
- background: url("../../../images/icons/16/edit.png") no-repeat left center;
- padding-left: 18px;
-}
-#photo-toprofile-link {
- background: url("../../../images/icons/16/user.png") no-repeat left center;
- padding-left: 18px;
-}
-.photos-upload-link a,
-#photo-top-upload-link {
- background: url("../../../images/icons/16/add.png") no-repeat left center;
- padding-left: 18px;
-}
-.photo-top-image-wrapper,
-.photo-album-image-wrapper {
- float: left;
- margin: 0px 10px 10px 0px;
- width: 150px;
- height: 150px;
- position: relative;
- overflow: hidden;
-}
-.photo-top-image-wrapper img,
-.photo-album-image-wrapper img {
- width: 150px;
-}
-.photo-top-image-wrapper .photo-top-album-name,
-.photo-album-image-wrapper .photo-top-album-name,
-.photo-top-image-wrapper .caption,
-.photo-album-image-wrapper .caption {
- position: absolute;
- color: #2d2d2d;
- background-color: #ffffff;
- width: 100%;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -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;
- bottom: -150px;
-}
-.photo-top-image-wrapper:hover .photo-top-album-name,
-.photo-album-image-wrapper:hover .photo-top-album-name,
-.photo-top-image-wrapper:hover .caption,
-.photo-album-image-wrapper:hover .caption {
- bottom: 0px;
- -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -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;
-}
-#photo-photo {
- display: block;
- width: 660px;
- padding: 50px;
- margin-bottom: 0px;
- text-align: center;
- background-color: #999999;
-}
-#photo-photo img {
- max-width: 560px;
-}
-#photo-album-title {
- background: url("../../../images/icons/22/image.png") no-repeat top left;
- padding-left: 23px;
- min-height: 22px;
-}
-#photo-album-title a {
- display: block;
- padding-top: 5px;
-}
-#photo-caption {
- display: block;
- width: 660px;
- min-height: 55px;
- background-color: #cccccc;
- padding: 0 50px 0 50px;
-}
-#photo-next-link > a > div {
- background: url("icons/next.png") no-repeat center center;
- float: right;
- width: 50px;
- height: 50px;
-}
-#photo-prev-link > a > div {
- background: url("icons/prev.png") no-repeat center center;
- float: left;
- width: 50px;
- height: 50px;
-}
-#photo-like-div {
- display: block;
- width: 660px;
- height: 30px;
- background-color: #cccccc;
- padding: 0 50px 0 50px;
-}
-#photo-like-div .icon {
- float: left;
-}
-#photo-like-div .like-rotator {
- float: right;
-}
-/* profile match wrapper */
-.profile-match-wrapper {
- float: left;
- width: 90px;
- height: 90px;
- margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
- width: 80px;
- height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
- width: 80px;
- height: 80px;
-}
-.profile-match-wrapper .contact-photo-menu-button {
- left: 0px;
- top: 63px;
-}
-/* messages */
-#message-new {
- background: #19aeff;
- border: 1px solid #005c94;
- width: 150px;
-}
-#message-new a {
- color: #ffffff;
- text-align: center;
- display: block;
- font-weight: bold;
- padding: 1em 0px;
-}
-.mail-list-wrapper {
- background-color: #f6f7f8;
- margin-bottom: 5px;
- width: 100%;
- height: auto;
- overflow: hidden;
-}
-.mail-list-wrapper span {
- display: block;
- float: left;
- width: 20%;
- overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
- width: 30%;
- padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
- display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
- font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
- padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
- padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
- padding: 4px 4px 0px 4px;
- text-align: right;
-}
-.mail-list-wrapper .mail-delete {
- float: right;
-}
-#mail-display-subject {
- background-color: #f6f7f8;
- color: #2d2d2d;
- margin-bottom: 10px;
- width: 100%;
- height: auto;
- overflow: hidden;
-}
-#mail-display-subject span {
- float: left;
- overflow: hidden;
- padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
- float: right;
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-#mail-display-subject:hover .mail-delete {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-/* theme screenshot */
-.screenshot,
-#theme-preview {
- position: absolute;
- width: 202px;
- left: 70%;
- top: 50px;
-}
-.screenshot img,
-#theme-preview img {
- width: 200px;
- height: 150px;
-}
-/* page footer */
-footer {
- height: 100px;
- display: table-row;
-}
-.pager {
- margin-top: 25px;
- clear: both;
-}
-/**
- * ADMIN
- */
-#pending-update {
- float: right;
- color: #ffffff;
- font-weight: bold;
- background-color: #FF0000;
- padding: 0em 0.3em;
-}
-#adminpage dl {
- clear: left;
- margin-bottom: 2px;
- padding-bottom: 2px;
- border-bottom: 1px solid black;
-}
-#adminpage dt {
- width: 200px;
- float: left;
- font-weight: bold;
-}
-#adminpage dd {
- margin-left: 200px;
-}
-#adminpage h3 {
- border-bottom: 1px solid #cccccc;
-}
-#adminpage .field label {
- font-weight: bold;
-}
-#adminpage .submit {
- clear: left;
- text-align: right;
-}
-#adminpage #pluginslist {
- margin: 0px;
- padding: 0px;
-}
-#adminpage .plugin {
- list-style: none;
- display: block;
- border: 1px solid #888888;
- padding: 1em;
- margin-bottom: 5px;
- clear: left;
-}
-#adminpage .plugin desc {
- margin-left: 2.5em;
-}
-#adminpage .toggleplugin {
- float: left;
- margin-right: 1em;
-}
-#adminpage table {
- width: 100%;
- border-bottom: 1px solid #000000;
- margin: 5px 0px;
-}
-#adminpage table th {
- text-align: left;
-}
-#adminpage table td .icon {
- float: left;
-}
-#adminpage table tr:hover {
- background-color: #bbc7d7;
-}
-#adminpage table#users img {
- width: 16px;
- height: 16px;
-}
-#adminpage .selectall {
- text-align: right;
-}
-/* edit buttons for comments */
-.icon.dim {
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-.comment-edit-bb {
- list-style: none;
- display: none;
- margin: 0px;
- padding: 0px;
- width: 75%;
-}
-.comment-edit-bb > li {
- display: inline-block;
- margin: 10px 10px 0 0;
- visibility: none;
-}
-.editicon {
- display: inline-block;
- width: 16px;
- height: 16px;
- background-image: url(icons/bbedit.png);
- text-decoration: none;
-}
-.editicon :hover {
- background-color: #ccc;
-}
-.boldbb {
- background-position: 0px 0px;
-}
-.boldbb:hover {
- background-position: 0px -16px;
-}
-.italicbb {
- background-position: -16px 0px;
-}
-.italicbb:hover {
- background-position: -16px -16px;
-}
-.underlinebb {
- background-position: -32px 0px;
-}
-.underlinebb:hover {
- background-position: -32px -16px;
-}
-.quotebb {
- background-position: -48px 0px;
-}
-.quotebb:hover {
- background-position: -48px -16px;
-}
-.codebb {
- background-position: -64px 0px;
-}
-.codebb:hover {
- background-position: -64px -16px;
-}
-.imagebb {
- background-position: -80px 0px;
-}
-.imagebb:hover {
- background-position: -80px -16px;
-}
-.urlbb {
- background-position: -96px 0px;
-}
-.urlbb:hover {
- background-position: -96px -16px;
-}
-.videobb {
- background-position: -112px 0px;
-}
-.videobb:hover {
- background-position: -112px -16px;
-}
-.attachtype {
- display: block;
- width: 20px;
- height: 23px;
- float: left;
- background-image: url('../../../images/content-types.png');
-}
-.body-attach {
- margin-top: 10px;
-}
-.type-video {
- background-position: 0px 0px;
-}
-.type-image {
- background-position: -20px 0px;
-}
-.type-audio {
- background-position: -40px 0px;
-}
-.type-text {
- background-position: -60px 0px;
-}
-.type-unkn {
- background-position: -80px 0px;
-}
diff --git a/view/theme/quattro/dark/style.less b/view/theme/quattro/dark/style.less
deleted file mode 100644
index 7d81e788a..000000000
--- a/view/theme/quattro/dark/style.less
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- **/
-// Less file http://lesscss.org/
-// compile with lessc
-// $ lessc style.less > style.css
-
-@import "colors";
-@import "../icons";
-@import "../quattro";
-
-
-
-
diff --git a/view/theme/quattro/experimental b/view/theme/quattro/experimental
deleted file mode 100644
index e69de29bb..000000000
--- a/view/theme/quattro/experimental
+++ /dev/null
diff --git a/view/theme/quattro/green/Makefile b/view/theme/quattro/green/Makefile
deleted file mode 100644
index 989da60c7..000000000
--- a/view/theme/quattro/green/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
-##
-
-style.css : style.less colors.less ../icons.less ../quattro.less
- lessc style.less > style.css
diff --git a/view/theme/quattro/green/colors.less b/view/theme/quattro/green/colors.less
deleted file mode 100644
index 1f1df4c55..000000000
--- a/view/theme/quattro/green/colors.less
+++ /dev/null
@@ -1,109 +0,0 @@
-// Quattro Theme LESS file
-
-// "Echo" palette from Inkscape
-@Yellow1 : #fce94f;
-@Blue1:rgb(25,174,255);
-@Blue2:rgb(0,132,200);
-@Blue3:rgb(0,92,148);
-@Red1:rgb(255,65,65);
-@Red2:rgb(220,0,0);
-@Red3:rgb(181,0,0);
-@Orange1:rgb(255,255,62);
-@Orange2:rgb(255,153,0);
-@Orange3:rgb(255,102,0);
-@Brown1:rgb(255,192,34);
-@Brown2:rgb(184,129,0);
-@Brown3:rgb(128,77,0);
-@Green1:rgb(204,255,66);
-@Green2:rgb(154,222,0);
-@Green3:rgb(0,145,0);
-@Green4:rgb(221,255,221);
-@Purple1:rgb(241,202,255);
-@Purple2:rgb(215,108,255);
-@Purple3:rgb(186,0,255);
-@Metalic1:rgb(189,205,212);
-@Metalic2:rgb(158,171,176);
-@Metalic3:rgb(54,78,89);
-@Metalic4:rgb(14,35,46);
-@Grey1:rgb(255,255,255);
-@Grey2:rgb(204,204,204);
-@Grey3:rgb(153,153,153);
-@Grey4:rgb(102,102,102);
-@Grey5:rgb(45,45,45);
-
-
-// Theme colors
-@BodyBackground: @Grey1;
-@BodyColor: @Grey5;
-
-@Link: @Green3;
-@LinkHover: @Green3;
-@LinkVisited: @Green3;
-
-
-@ButtonColor: @Grey1;
-@ButtonBackgroundColor: @Grey5;
-
-@Banner: @Grey1;
-
-@NavbarBackground:@Green3;
-@NavbarSelectedBg:@Metalic3;
-@NavbarSelectedBorder: @Metalic2;
-@NavbarNotifBg: @Red2;
-
-@Menu: @Grey5;
-@MenuBg: @Grey1;
-@MenuBorder: @Metalic3;
-@MenuItem: @Grey5;
-@MenuItemHoverBg: @Green1;
-@MenuItemSeparator: @Metalic2;
-@MenuEmpty: @Metalic2;
-@MenuItemDetail: @Metalic2;
-
-@AsideBorder: @Metalic1;
-@AsideConnect: @Grey1;
-@AsideConnectBg: @Green3;
-@AsideConnectHoverBg: @Green1;
-@VCardLabelColor: @Grey3;
-
-@InfoColor: @Grey1;
-@InfoBackgroundColor: @Metalic3;
-
-@NoticeColor: @Grey1;
-@NoticeBackgroundColor: #511919;
-
-@FieldHelpColor: @Grey3;
-
-@ThreadBackgroundColor: #eff0f1;
-@ThreadBottomBorderColor: @Grey2;
-@ShinyBorderColor: @Green4;
-
-@CommentBoxEmptyColor: @Grey3;
-@CommentBoxEmptyBorderColor: @Grey3;
-@CommentBoxFullColor: @Grey5;
-@CommentBoxFullBorderColor: @Grey5;
-
-@TagColor: @Grey1;
-
-@JotToolsBackgroundColor: @Green3;
-@JotToolsBorderColor: @Metalic2;
-@JotToolsOverBackgroundColor: @Green2;
-@JotToolsOverBorderColor: @Metalic1;
-@JotToolsText: @Grey5;
-@JotSubmitBackgroundColor: @Grey2;
-@JotSubmitText: @Grey4;
-@JotSubmitOverBackgroundColor: @Green1;
-@JotSubmitOverText: @Grey4;
-@JotPermissionUnlockBackgroundColor: @Grey2;
-@JotPermissionLockBackgroundColor: @Grey4;
-@JotLoadingBackgroundColor: @Grey1;
-@JotPreviewBackgroundColor: @Green4;
-
-@MessageNewBackgroundColor: @Blue1;
-@MessageNewBorderColor: @Blue3;
-@MessageNewColor: @Grey1;
-
-@MailListBackgroundColor: #f6f7f8;
-
-@MailDisplaySubjectColor: @Grey5;
-@MailDisplaySubjectBackgroundColor: #f6f7f8;
diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css
deleted file mode 100644
index 10cff53fd..000000000
--- a/view/theme/quattro/green/style.css
+++ /dev/null
@@ -1,2063 +0,0 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- **/
-/* icons */
-.icon {
- background-color: transparent ;
- background-repeat: no-repeat;
- background-position: left center;
- display: block;
- overflow: hidden;
- text-indent: -9999px;
- padding: 1px;
- min-width: 22px;
- height: 22px;
-}
-.icon.text {
- text-indent: 0px;
-}
-.icon.notify {
- background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.gear {
- background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.like {
- background-image: url("icons/like.png");
-}
-.icon.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.add {
- background-image: url("../../../images/icons/22/add.png");
-}
-.icon.delete {
- background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.edit {
- background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.star {
- background-image: url("../../../images/icons/22/star.png");
-}
-.icon.menu {
- background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.link {
- background-image: url("../../../images/icons/22/link.png");
-}
-.icon.lock {
- background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.unlock {
- background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.plugin {
- background-image: url("../../../images/icons/22/plugin.png");
-}
-.icon.type-unkn {
- background-image: url("../../../images/icons/22/zip.png");
-}
-.icon.type-audio {
- background-image: url("../../../images/icons/22/audio.png");
-}
-.icon.type-video {
- background-image: url("../../../images/icons/22/video.png");
-}
-.icon.type-image {
- background-image: url("../../../images/icons/22/image.png");
-}
-.icon.type-text {
- background-image: url("../../../images/icons/22/text.png");
-}
-.icon.language {
- background-image: url("icons/language.png");
-}
-.icon.text {
- padding: 10px 0px 0px 25px;
-}
-.icon.s10 {
- min-width: 10px;
- height: 10px;
-}
-.icon.s10.notify {
- background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
- background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.like {
- background-image: url("icons/like.png");
-}
-.icon.s10.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s10.add {
- background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
- background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
- background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
- background-image: url("../../../images/icons/10/star.png");
-}
-.icon.s10.menu {
- background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
- background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
- background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
- background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.plugin {
- background-image: url("../../../images/icons/10/plugin.png");
-}
-.icon.s10.type-unkn {
- background-image: url("../../../images/icons/10/zip.png");
-}
-.icon.s10.type-audio {
- background-image: url("../../../images/icons/10/audio.png");
-}
-.icon.s10.type-video {
- background-image: url("../../../images/icons/10/video.png");
-}
-.icon.s10.type-image {
- background-image: url("../../../images/icons/10/image.png");
-}
-.icon.s10.type-text {
- background-image: url("../../../images/icons/10/text.png");
-}
-.icon.s10.language {
- background-image: url("icons/language.png");
-}
-.icon.s10.text {
- padding: 2px 0px 0px 15px;
-}
-.icon.s16 {
- min-width: 16px;
- height: 16px;
-}
-.icon.s16.notify {
- background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
- background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.like {
- background-image: url("icons/like.png");
-}
-.icon.s16.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s16.add {
- background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
- background-image: url("../../../images/icons/16/delete.png");
-}
-.icon.s16.edit {
- background-image: url("../../../images/icons/16/edit.png");
-}
-.icon.s16.star {
- background-image: url("../../../images/icons/16/star.png");
-}
-.icon.s16.menu {
- background-image: url("../../../images/icons/16/menu.png");
-}
-.icon.s16.link {
- background-image: url("../../../images/icons/16/link.png");
-}
-.icon.s16.lock {
- background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
- background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.plugin {
- background-image: url("../../../images/icons/16/plugin.png");
-}
-.icon.s16.type-unkn {
- background-image: url("../../../images/icons/16/zip.png");
-}
-.icon.s16.type-audio {
- background-image: url("../../../images/icons/16/audio.png");
-}
-.icon.s16.type-video {
- background-image: url("../../../images/icons/16/video.png");
-}
-.icon.s16.type-image {
- background-image: url("../../../images/icons/16/image.png");
-}
-.icon.s16.type-text {
- background-image: url("../../../images/icons/16/text.png");
-}
-.icon.s16.language {
- background-image: url("icons/language.png");
-}
-.icon.s16.text {
- padding: 4px 0px 0px 20px;
-}
-.icon.s22 {
- min-width: 22px;
- height: 22px;
-}
-.icon.s22.notify {
- background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
- background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.like {
- background-image: url("icons/like.png");
-}
-.icon.s22.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s22.add {
- background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
- background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
- background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
- background-image: url("../../../images/icons/22/star.png");
-}
-.icon.s22.menu {
- background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
- background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
- background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
- background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.plugin {
- background-image: url("../../../images/icons/22/plugin.png");
-}
-.icon.s22.type-unkn {
- background-image: url("../../../images/icons/22/zip.png");
-}
-.icon.s22.type-audio {
- background-image: url("../../../images/icons/22/audio.png");
-}
-.icon.s22.type-video {
- background-image: url("../../../images/icons/22/video.png");
-}
-.icon.s22.type-image {
- background-image: url("../../../images/icons/22/image.png");
-}
-.icon.s22.type-text {
- background-image: url("../../../images/icons/22/text.png");
-}
-.icon.s22.language {
- background-image: url("icons/language.png");
-}
-.icon.s22.text {
- padding: 10px 0px 0px 25px;
-}
-.icon.s48 {
- width: 48px;
- height: 48px;
-}
-.icon.s48.notify {
- background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
- background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.like {
- background-image: url("icons/like.png");
-}
-.icon.s48.dislike {
- background-image: url("icons/dislike.png");
-}
-.icon.s48.add {
- background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
- background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
- background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
- background-image: url("../../../images/icons/48/star.png");
-}
-.icon.s48.menu {
- background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
- background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
- background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
- background-image: url("../../../images/icons/48/unlock.png");
-}
-.icon.s48.plugin {
- background-image: url("../../../images/icons/48/plugin.png");
-}
-.icon.s48.type-unkn {
- background-image: url("../../../images/icons/48/zip.png");
-}
-.icon.s48.type-audio {
- background-image: url("../../../images/icons/48/audio.png");
-}
-.icon.s48.type-video {
- background-image: url("../../../images/icons/48/video.png");
-}
-.icon.s48.type-image {
- background-image: url("../../../images/icons/48/image.png");
-}
-.icon.s48.type-text {
- background-image: url("../../../images/icons/48/text.png");
-}
-.icon.s48.language {
- background-image: url("icons/language.png");
-}
-.icon.on {
- background-image: url("icons/addon_on.png");
- min-width: 16px;
- height: 16px;
- background-position: 0px 0px;
-}
-.icon.off {
- background-image: url("icons/addon_off.png");
- width: 16px;
- height: 16px;
- background-position: 0px 0px;
-}
-/* global */
-body {
- font-family: Liberation Sans, helvetica, arial, clean, sans-serif;
- font-size: 11px;
- background-color: #ffffff;
- color: #2d2d2d;
- margin: 50px 0px 0px 0px;
- display: table;
-}
-h4 {
- font-size: 1.1em;
-}
-a,
-a:link {
- color: #009100;
- text-decoration: none;
-}
-a:visited {
- color: #009100;
- text-decoration: none;
-}
-a:hover {
- color: #009100;
- text-decoration: underline;
-}
-.left {
- float: left;
-}
-.right {
- float: right;
-}
-.hidden {
- display: none;
-}
-.clear {
- clear: both;
-}
-.fakelink {
- color: #009100;
- text-decoration: none;
- cursor: pointer;
-}
-.fakelink:hover {
- color: #009100;
- text-decoration: underline;
-}
-code {
- font-family: Courier, monospace;
- white-space: pre;
- display: block;
- overflow: auto;
- border: 1px solid #444;
- background: #EEE;
- color: #444;
- padding: 10px;
- margin-top: 20px;
-}
-#panel {
- position: absolute;
- width: 10em;
- background: #ffffff;
- color: #2d2d2d;
- margin: 0px;
- padding: 1em;
- list-style: none;
- border: 3px solid #364e59;
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
- height: auto;
- overflow: auto;
-}
-.tool .label {
- float: left;
-}
-.tool .action {
- float: right;
-}
-.tool > img {
- float: left;
-}
-/* popup notifications */
-#jGrowl.top-right {
- top: 30px;
- right: 15px;
-}
-div.jGrowl div.notice {
- background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
- color: #ffffff;
- padding-left: 58px;
-}
-div.jGrowl div.info {
- background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
- color: #ffffff;
- padding-left: 58px;
-}
-/* header */
-header {
- position: fixed;
- left: 43%;
- right: 43%;
- top: 0px;
- margin: 0px;
- padding: 0px;
- /*width: 100%; height: 12px; */
-
- z-index: 110;
- color: #ffffff;
-}
-header #site-location {
- display: none;
-}
-header #banner {
- overflow: hidden;
- text-align: center;
- width: 100%;
-}
-header #banner a,
-header #banner a:active,
-header #banner a:visited,
-header #banner a:link,
-header #banner a:hover {
- color: #ffffff;
- text-decoration: none;
- outline: none;
- vertical-align: bottom;
-}
-header #banner #logo-img {
- height: 22px;
- margin-top: 5px;
-}
-header #banner #logo-text {
- font-size: 22px;
-}
-/* nav */
-nav {
- width: 100%;
- height: 32px;
- position: fixed;
- left: 0px;
- top: 0px;
- padding: 0px;
- background-color: #009100;
- color: #ffffff;
- z-index: 100;
- -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
- color: #ffffff;
- text-decoration: none;
- outline: none;
-}
-nav ul {
- margin: 0px;
- padding: 0px 20px;
-}
-nav ul li {
- list-style: none;
- margin: 0px;
- padding: 0px;
- float: left;
-}
-nav ul li .menu-popup {
- left: 0px;
- right: auto;
-}
-nav .nav-menu-icon {
- position: relative;
- height: 22px;
- padding: 5px;
- margin: 0px 10px;
- -moz-border-radius: 5px 5px 0 0;
- -webkit-border-radius: 5px 5px 0 0;
- border-radius: 5px 5px 0 0;
-}
-nav .nav-menu-icon.selected {
- background-color: #364e59;
-}
-nav .nav-menu-icon img {
- width: 22px;
- height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
- top: 3px;
-}
-nav .nav-menu {
- position: relative;
- height: 16px;
- padding: 5px;
- margin: 3px 15px 0px;
- font-size: 14px;
- border-bottom: 3px solid #009100;
-}
-nav .nav-menu.selected {
- border-bottom: 3px solid #9eabb0;
-}
-nav .nav-notify {
- display: none;
- position: absolute;
- background-color: #dc0000;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- font-size: 10px;
- padding: 1px 3px;
- top: 0px;
- right: -10px;
- min-width: 15px;
- text-align: right;
-}
-nav .nav-notify.show {
- display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu {
- float: right;
-}
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
- right: 0px;
- left: auto;
-}
-nav #nav-notifications-linkmenu.on .icon.s22.notify,
-nav #nav-notifications-linkmenu.selected .icon.s22.notify {
- background-image: url("../../../images/icons/22/notify_on.png");
-}
-nav #nav-apps-link.selected {
- background-color: #364e59;
-}
-ul.menu-popup {
- position: absolute;
- display: none;
- width: 10em;
- background: #ffffff;
- color: #2d2d2d;
- margin: 0px;
- padding: 0px;
- list-style: none;
- border: 3px solid #364e59;
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
- display: block;
- color: #2d2d2d;
- padding: 5px 10px;
- text-decoration: none;
-}
-ul.menu-popup a:hover {
- background-color: #ccff42;
-}
-ul.menu-popup .menu-sep {
- border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
- float: none;
- overflow: auto;
- height: auto;
- display: block;
-}
-ul.menu-popup li img {
- float: left;
- width: 16px;
- height: 16px;
- padding-right: 5px;
-}
-ul.menu-popup .empty {
- padding: 5px;
- text-align: center;
- color: #9eabb0;
-}
-ul.menu-popup .toolbar {
- background-color: #9eabb0;
- height: auto;
- overflow: auto;
-}
-ul.menu-popup .toolbar a {
- float: right;
-}
-ul.menu-popup .toolbar a:hover {
- background-color: #ffffff;
-}
-/* autocomplete popup */
-.acpopup {
- max-height: 150px;
- background-color: #ffffff;
- color: #2d2d2d;
- border: 1px solid #MenuBorder;
- overflow: auto;
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
- color: #2d2d2d;
- padding: 4px;
- clear: left;
-}
-.acpopupitem img {
- float: left;
- margin-right: 4px;
-}
-.acpopupitem.selected {
- background-color: #ccff42;
-}
-#nav-notifications-menu {
- width: 400px;
- max-height: 550px;
- overflow: auto;
-}
-#nav-notifications-menu img {
- float: left;
- margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
- font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
- font-size: 10px;
- color: #9eabb0;
- display: block;
-}
-/* aside 230px*/
-aside {
- display: table-cell;
- vertical-align: top;
- width: 200px;
- padding: 0px 10px 0px 20px;
- border-right: 1px solid #bdcdd4;
-}
-aside .profile-edit-side-div {
- display: none;
-}
-aside .vcard .fn {
- font-size: 16px;
- font-weight: bold;
- margin-bottom: 5px;
-}
-aside .vcard .title {
- margin-bottom: 5px;
-}
-aside .vcard dl {
- height: auto;
- overflow: auto;
-}
-aside .vcard dt {
- float: left;
- margin-left: 0px;
- width: 35%;
- text-align: right;
- color: #999999;
-}
-aside .vcard dd {
- float: left;
- margin-left: 4px;
- width: 60%;
-}
-aside #profile-extra-links ul {
- padding: 0px;
- margin: 0px;
-}
-aside #profile-extra-links li {
- padding: 0px;
- margin: 0px;
- list-style: none;
-}
-aside #dfrn-request-link {
- display: block;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- color: #ffffff;
- background: #009100 url('../../../images/connect-bg.png') no-repeat left center;
- font-weight: bold;
- text-transform: uppercase;
- padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
- text-decoration: none;
- background-color: #ccff42;
-}
-aside #profiles-menu {
- width: 20em;
-}
-#contact-block {
- overflow: auto;
- height: auto;
- /*.contact-block-div { width:60px; height: 60px; }*/
-
-}
-#contact-block .contact-block-h4 {
- float: left;
- margin: 5px 0px;
-}
-#contact-block .allcontact-link {
- float: right;
- margin: 5px 0px;
-}
-#contact-block .contact-block-content {
- clear: both;
- overflow: hidden;
- height: auto;
-}
-#contact-block .contact-block-link {
- float: left;
- margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
- width: 48px;
- height: 48px;
-}
-/* group member */
-#contact-edit-drop-link,
-.mail-list-delete-wrapper,
-.group-delete-wrapper {
- float: right;
- margin-right: 50px;
-}
-#contact-edit-drop-link .drophide,
-.mail-list-delete-wrapper .drophide,
-.group-delete-wrapper .drophide {
- background-image: url('../../../images/icons/22/delete.png');
- display: block;
- width: 22px;
- height: 22px;
- opacity: 0.3;
- position: relative;
- top: -50px;
-}
-#contact-edit-drop-link .drop,
-.mail-list-delete-wrapper .drop,
-.group-delete-wrapper .drop {
- background-image: url('../../../images/icons/22/delete.png');
- display: block;
- width: 22px;
- height: 22px;
- position: relative;
- top: -50px;
-}
-/*
-#group-members {
- margin-top: 20px;
- padding: 10px;
- height: 250px;
- overflow: auto;
- border: 1px solid #ddd;
-}
-#group-members-end {
- clear: both;
-}
-#group-all-contacts {
- padding: 10px;
- height: 450px;
- overflow: auto;
- border: 1px solid #ddd;
-}
-#group-all-contacts-end {
- clear: both;
- margin-bottom: 10px;
-}
-.contact-block-div {
- float: left;
- width: 60px;
- height: 60px;
-}*/
-/* widget */
-.widget {
- margin-bottom: 2em;
- /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
- .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-
-}
-.widget h3 {
- padding: 0px;
- margin: 2px;
-}
-.widget .action {
- opacity: 0.1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget input.action {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.widget ul {
- padding: 0px;
-}
-.widget ul li {
- padding-left: 16px;
- min-height: 16px;
- list-style: none;
-}
-.widget .tool.selected {
- background: url('../../../images/selected.png') no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
- width: 200px;
- top: 18px;
-}
-/* section 800px */
-section {
- display: table-cell;
- vertical-align: top;
- width: 770px;
- padding: 0px 20px 0px 10px;
-}
-/* wall item */
-.thread-wrapper {
- background-color: #eff0f1;
- position: relative;
- padding: 10px;
- margin-bottom: 20px;
- width: 750px;
- border-bottom: 1px solid #cccccc;
-}
-.wall-item-decor {
- position: absolute;
- left: 97%;
- top: -10px;
- width: 16px;
-}
-.unstarred {
- display: none;
-}
-.wall-item-container {
- display: table;
- width: 750px;
-}
-.wall-item-container .wall-item-item,
-.wall-item-container .wall-item-bottom {
- display: table-row;
-}
-.wall-item-container .wall-item-bottom {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container:hover .wall-item-bottom {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-info {
- display: table-cell;
- vertical-align: top;
- text-align: left;
- width: 60px;
-}
-.wall-item-container .wall-item-location {
- word-wrap: break-word;
- width: 50px;
-}
-.wall-item-container .wall-item-content {
- display: table-cell;
- font-size: 12px;
- max-width: 720px;
- word-wrap: break-word;
-}
-.wall-item-container .wall-item-content img {
- max-width: 710px;
-}
-.wall-item-container .wall-item-links,
-.wall-item-container .wall-item-actions {
- display: table-cell;
- vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon,
-.wall-item-container .wall-item-actions .icon {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover,
-.wall-item-container .wall-item-actions .icon:hover {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-ago {
- padding-right: 40px;
-}
-.wall-item-container .wall-item-name {
- font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
- float: left;
- width: 20em;
- margin-top: 0.5em;
-}
-.wall-item-container .wall-item-actions-social {
- float: left;
- margin-top: 0.5em;
-}
-.wall-item-container .wall-item-actions-social a {
- margin-right: 3em;
-}
-.wall-item-container .wall-item-actions-tools {
- float: right;
- width: 15%;
-}
-.wall-item-container .wall-item-actions-tools a {
- float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
- float: right;
-}
-.wall-item-container.comment .contact-photo-wrapper {
- margin-left: 16px;
-}
-.wall-item-container.comment .contact-photo {
- width: 32px;
- height: 32px;
-}
-.wall-item-container.comment .contact-photo-menu-button {
- top: 15px !important;
- left: 0px !important;
-}
-.wall-item-container.comment .wall-item-links {
- padding-left: 12px;
-}
-/* 'tag' item type */
-.wall-item-container.item-tag .wall-item-content {
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-.wall-item-container.item-tag .contact-photo-wrapper {
- margin-left: 32px;
-}
-.wall-item-container.item-tag .contact-photo {
- width: 16px;
- height: 16px;
-}
-.wall-item-container.item-tag .contact-photo-menu-button {
- top: 15px !important;
- left: 15px !important;
-}
-.wall-item-comment-wrapper {
- margin: 1em 2em 1em 60px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
- display: none;
-}
-.wall-item-comment-wrapper textarea {
- height: 1em;
- width: 100%;
- font-size: 10px;
- color: #999999;
- border: 1px solid #999999;
- padding: 0.3em;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
- font-size: 14px;
- height: 4em;
- color: #2d2d2d;
- border: 1px solid #2d2d2d;
-}
-.threaded .wall-item-comment-wrapper {
- margin-left: 0px;
-}
-.comment-edit-preview {
- width: 710px;
- border: 1px solid #2d2d2d;
- margin-top: 10px;
- background-color: #ddffdd;
-}
-.comment-edit-preview .contact-photo {
- width: 32px;
- height: 32px;
- margin-left: 16px;
- /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview .contact-photo-menu-button {
- top: 15px !important;
- left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
- padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
- width: 700px;
-}
-.comment-edit-preview .thread-wrapper {
- width: 700px;
- padding: 0;
- margin: 10px 0;
-}
-.shiny {
- border-right: 10px solid #ddffdd;
-}
-#jot-preview-content .thread-wrapper {
- background-color: #ddffdd;
-}
-.hide-comments-outer {
- margin-bottom: 0.8em;
-}
-.wall-item-tags {
- padding-top: 5px;
-}
-.tag {
- background: url("../../../images/tag_b.png") no-repeat center left;
- color: #ffffff;
- padding-left: 3px;
-}
-.tag a {
- padding-right: 8px;
- background: url("../../../images/tag.png") no-repeat center right;
- color: #ffffff;
-}
-.filesavetags {
- padding: 3px 0px 3px 0px;
- opacity: 0.5;
-}
-.wwto {
- background: #FFFFFF;
- border: 2px solid #364e59;
- height: 25px;
- width: 25px;
- overflow: hidden;
- padding: 1px;
- position: absolute !important;
- top: 40px;
- left: 30px;
- -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
- width: 25px;
- height: 25px;
-}
-#pause {
- position: fixed;
- bottom: 5px;
- right: 5px;
-}
-.contact-photo-wrapper {
- position: relative;
-}
-.contact-photo {
- width: 48px;
- height: 48px;
- overflow: hidden;
- display: block;
-}
-.contact-photo img {
- width: 48px;
- height: 48px;
-}
-.contact-photo-menu-button {
- display: none;
- position: absolute;
- left: -2px;
- top: 31px;
-}
-.contact-wrapper {
- float: left;
- width: 300px;
- height: 90px;
- padding-right: 10px;
- margin: 0 10px 10px 0px;
-}
-.contact-wrapper .contact-photo-wrapper {
- float: left;
- margin-right: 10px;
-}
-.contact-wrapper .contact-photo {
- width: 80px;
- height: 80px;
-}
-.contact-wrapper .contact-photo img {
- width: 80px;
- height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
- left: 0px;
- top: 63px;
-}
-.directory-item {
- float: left;
- width: 200px;
- height: 200px;
-}
-.directory-item .contact-photo {
- width: 175px;
- height: 175px;
-}
-.directory-item .contact-photo img {
- width: 175px;
- height: 175px;
-}
-.contact-name {
- font-weight: bold;
- padding-top: 15px;
-}
-.contact-details {
- color: #999999;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-/* editor */
-.jothidden {
- display: none;
-}
-#jot {
- width: 100%;
- margin: 0px 2em 20px 0px;
-}
-#jot .profile-jot-text {
- height: 1em;
- width: 99%;
- font-size: 10px;
- color: #999999;
- border: 1px solid #999999;
- padding: 0.3em;
-}
-#jot #jot-tools {
- margin: 0px;
- padding: 0px;
- height: 40px;
- overflow: none;
- width: 770px;
- background-color: #009100;
- border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li {
- list-style: none;
- float: left;
- width: 80px;
- height: 40px;
- border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
- display: block;
- color: #2d2d2d;
- width: 100%;
- height: 40px;
- text-align: center;
- line-height: 40px;
- overflow: hidden;
-}
-#jot #jot-tools li:hover {
- background-color: #9ade00;
- border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
- float: right;
- width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
- width: 30px;
- border-left: 10px solid #cccccc;
- background-color: #cccccc;
-}
-#jot #jot-tools li.perms a.lock {
- width: 30px;
- border-left: 10px solid #666666;
- background-color: #666666;
-}
-#jot #jot-tools li.submit {
- float: right;
- background-color: #cccccc;
- border-bottom: 2px solid #cccccc;
- border-right: 1px solid #666666;
- border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
- border: 0px;
- margin: 0px;
- padding: 0px;
- background-color: #cccccc;
- color: #666666;
- width: 80px;
- height: 40px;
- line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
- background-color: #ccff42;
- color: #666666;
-}
-#jot #jot-tools li.loading {
- float: right;
- background-color: #ffffff;
- width: 20px;
- vertical-align: center;
- text-align: center;
- border-top: 2px solid #9eabb0;
- height: 38px;
-}
-#jot #jot-tools li.loading img {
- margin-top: 10px;
-}
-#jot #jot-title {
- border: 0px;
- margin: 0px;
- height: 20px;
- width: 500px;
- font-weight: bold;
- border: 1px solid #ffffff;
-}
-#jot #jot-title:-webkit-input-placeholder {
- font-weight: normal;
-}
-#jot #jot-title:-moz-placeholder {
- font-weight: normal;
-}
-#jot #jot-title:hover {
- border: 1px solid #999999;
-}
-#jot #jot-title:focus {
- border: 1px solid #999999;
-}
-#jot #character-counter {
- width: 40px;
- float: right;
- text-align: right;
- height: 20px;
- line-height: 20px;
- padding-right: 20px;
-}
-#jot #jot-category {
- border: 0px;
- margin: 0px;
- height: 20px;
- width: 200px;
- border: 1px solid #ffffff;
-}
-#jot #jot-category:hover {
- border: 1px solid #999999;
-}
-#jot #jot-category:focus {
- border: 1px solid #999999;
-}
-/** buttons **/
-/*input[type="submit"] {
- border: 0px;
- background-color: @ButtonBackgroundColor;
- color: @ButtonColor;
- padding: 0px 10px;
- .rounded(5px);
- height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select,
-#photos-upload-permissions-wrapper,
-#profile-jot-acl-wrapper {
- display: block!important;
-}
-#acl-wrapper {
- width: 690px;
- float: left;
-}
-#acl-search {
- float: right;
- background: #ffffff url("../../../images/search_18.png") no-repeat right center;
- padding-right: 20px;
-}
-#acl-showall {
- float: left;
- display: block;
- width: auto;
- height: 18px;
- background-color: #cccccc;
- background-image: url("../../../images/show_all_off.png");
- background-position: 7px 7px;
- background-repeat: no-repeat;
- padding: 7px 5px 0px 30px;
- color: #999999;
- -moz-border-radius: 5px 5px 5px 5px;
- -webkit-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
- color: #000000;
- background-color: #ff9900;
- background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
- height: 210px;
- border: 1px solid #cccccc;
- clear: both;
- margin-top: 30px;
- overflow: auto;
-}
-.acl-list-item {
- display: block;
- width: 150px;
- height: 30px;
- border: 1px solid #cccccc;
- margin: 5px;
- float: left;
-}
-.acl-list-item img {
- width: 22px;
- height: 22px;
- float: left;
- margin: 4px;
-}
-.acl-list-item p {
- height: 12px;
- font-size: 10px;
- margin: 0px;
- padding: 2px 0px 1px;
- overflow: hidden;
-}
-.acl-list-item a {
- font-size: 8px;
- display: block;
- width: 40px;
- height: 10px;
- float: left;
- color: #999999;
- background-color: #cccccc;
- background-position: 3px 3px;
- background-repeat: no-repeat;
- margin-right: 5px;
- -webkit-border-radius: 2px ;
- -moz-border-radius: 2px;
- border-radius: 2px;
- padding-left: 15px;
-}
-#acl-wrapper a:hover {
- text-decoration: none;
- color: #000000;
-}
-.acl-button-show {
- background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
- background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
- color: #000000;
- background-color: #9ade00;
- background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
- color: #000000;
- background-color: #ff4141;
- background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
- border-color: #9ade00;
-}
-.acl-list-item.grouphide {
- border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons **/
-ul.tabs {
- list-style-type: none;
- padding-bottom: 10px;
-}
-ul.tabs li {
- float: left;
- margin-left: 20px;
-}
-ul.tabs li .active {
- border-bottom: 1px solid #009100;
-}
-/** group editor **/
-#group-edit-desc {
- margin-top: 1em;
- color: #999999;
-}
-#group-update-wrapper {
- height: auto;
- overflow: auto;
-}
-#group-update-wrapper #group {
- width: 300px;
- float: left;
- margin-right: 20px;
-}
-#group-update-wrapper #contacts {
- width: 300px;
- float: left;
-}
-#group-update-wrapper #group-separator {
- display: none;
-}
-#group-update-wrapper .contact_list {
- height: 300px;
- border: 1px solid #364e59;
- overflow: auto;
-}
-#group-update-wrapper .contact_list .contact-block-div {
- width: 50px;
- height: 50px;
- float: left;
-}
-/**
- * Form fields
- */
-.field {
- margin-bottom: 10px;
- padding-bottom: 10px;
- overflow: auto;
- width: 100%;
-}
-.field label {
- float: left;
- width: 200px;
-}
-.field input,
-.field textarea {
- width: 400px;
-}
-.field input[type="checkbox"],
-.field input[type="radio"] {
- width: auto;
-}
-.field textarea {
- height: 100px;
-}
-.field .field_help {
- display: block;
- margin-left: 200px;
- color: #999999;
-}
-.field .onoff {
- float: left;
- width: 80px;
-}
-.field .onoff a {
- display: block;
- border: 1px solid #666666;
- background-image: url("../../../images/onoff.jpg");
- background-repeat: no-repeat;
- padding: 4px 2px 2px 2px;
- height: 16px;
- text-decoration: none;
-}
-.field .onoff .off {
- border-color: #666666;
- padding-left: 40px;
- background-position: left center;
- background-color: #cccccc;
- color: #666666;
- text-align: right;
-}
-.field .onoff .on {
- border-color: #204A87;
- padding-right: 40px;
- background-position: right center;
- background-color: #D7E3F1;
- color: #204A87;
- text-align: left;
-}
-.field .hidden {
- display: none!important;
-}
-.field.radio .field_help {
- margin-left: 0px;
-}
-#profile-edit-links li {
- list-style: none;
- margin-top: 10px;
-}
-#profile-edit-default-desc {
- color: #FF0000;
- border: 1px solid #FF8888;
- background-color: #FFEEEE;
- padding: 7px;
-}
-#profile-edit-profile-name-label,
-#profile-edit-name-label,
-#profile-edit-pdesc-label,
-#profile-edit-gender-label,
-#profile-edit-dob-label,
-#profile-edit-address-label,
-#profile-edit-locality-label,
-#profile-edit-region-label,
-#profile-edit-postal-code-label,
-#profile-edit-country-name-label,
-#profile-edit-marital-label,
-#profile-edit-with-label,
-#profile-edit-sexual-label,
-#profile-edit-politic-label,
-#profile-edit-religion-label,
-#profile-edit-pubkeywords-label,
-#profile-edit-prvkeywords-label,
-#profile-edit-gender-select,
-#profile-edit-homepage-label {
- float: left;
- width: 175px;
- padding-top: 7px;
-}
-#profile-edit-profile-name,
-#profile-edit-name,
-#gender-select,
-#profile-edit-pdesc,
-#profile-edit-gender,
-#profile-edit-dob,
-#profile-edit-address,
-#profile-edit-locality,
-#profile-edit-region,
-#profile-edit-postal-code,
-#profile-edit-country-name,
-#profile-edit-marital,
-#profile-edit-with,
-#profile-edit-sexual,
-#profile-edit-politic,
-#profile-edit-religion,
-#profile-edit-pubkeywords,
-#profile-edit-prvkeywords,
-#profile-edit-homepage {
- margin-top: 5px;
-}
-/* oauth */
-.oauthapp {
- height: auto;
- overflow: auto;
- border-bottom: 2px solid #cccccc;
- padding-bottom: 1em;
- margin-bottom: 1em;
-}
-.oauthapp img {
- float: left;
- width: 48px;
- height: 48px;
- margin: 10px;
-}
-.oauthapp img.noicon {
- background-image: url("../../../images/icons/48/plugin.png");
- background-position: center center;
- background-repeat: no-repeat;
-}
-.oauthapp a {
- float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
- width: 50px;
- float: left;
-}
-/* photo albums */
-#photo-edit-link-wrap {
- margin-bottom: 10px;
-}
-#album-edit-link {
- border-right: 1px solid #364e59;
- float: left;
- padding-right: 5px;
- margin-right: 5px;
-}
-#photo-edit-link,
-#album-edit-link a {
- background: url("../../../images/icons/16/edit.png") no-repeat left center;
- padding-left: 18px;
-}
-#photo-toprofile-link {
- background: url("../../../images/icons/16/user.png") no-repeat left center;
- padding-left: 18px;
-}
-.photos-upload-link a,
-#photo-top-upload-link {
- background: url("../../../images/icons/16/add.png") no-repeat left center;
- padding-left: 18px;
-}
-.photo-top-image-wrapper,
-.photo-album-image-wrapper {
- float: left;
- margin: 0px 10px 10px 0px;
- width: 150px;
- height: 150px;
- position: relative;
- overflow: hidden;
-}
-.photo-top-image-wrapper img,
-.photo-album-image-wrapper img {
- width: 150px;
-}
-.photo-top-image-wrapper .photo-top-album-name,
-.photo-album-image-wrapper .photo-top-album-name,
-.photo-top-image-wrapper .caption,
-.photo-album-image-wrapper .caption {
- position: absolute;
- color: #2d2d2d;
- background-color: #ffffff;
- width: 100%;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -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;
- bottom: -150px;
-}
-.photo-top-image-wrapper:hover .photo-top-album-name,
-.photo-album-image-wrapper:hover .photo-top-album-name,
-.photo-top-image-wrapper:hover .caption,
-.photo-album-image-wrapper:hover .caption {
- bottom: 0px;
- -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
- -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;
-}
-#photo-photo {
- display: block;
- width: 660px;
- padding: 50px;
- margin-bottom: 0px;
- text-align: center;
- background-color: #999999;
-}
-#photo-photo img {
- max-width: 560px;
-}
-#photo-album-title {
- background: url("../../../images/icons/22/image.png") no-repeat top left;
- padding-left: 23px;
- min-height: 22px;
-}
-#photo-album-title a {
- display: block;
- padding-top: 5px;
-}
-#photo-caption {
- display: block;
- width: 660px;
- min-height: 55px;
- background-color: #cccccc;
- padding: 0 50px 0 50px;
-}
-#photo-next-link > a > div {
- background: url("icons/next.png") no-repeat center center;
- float: right;
- width: 50px;
- height: 50px;
-}
-#photo-prev-link > a > div {
- background: url("icons/prev.png") no-repeat center center;
- float: left;
- width: 50px;
- height: 50px;
-}
-#photo-like-div {
- display: block;
- width: 660px;
- height: 30px;
- background-color: #cccccc;
- padding: 0 50px 0 50px;
-}
-#photo-like-div .icon {
- float: left;
-}
-#photo-like-div .like-rotator {
- float: right;
-}
-/* profile match wrapper */
-.profile-match-wrapper {
- float: left;
- width: 90px;
- height: 90px;
- margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
- width: 80px;
- height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
- width: 80px;
- height: 80px;
-}
-.profile-match-wrapper .contact-photo-menu-button {
- left: 0px;
- top: 63px;
-}
-/* messages */
-#message-new {
- background: #19aeff;
- border: 1px solid #005c94;
- width: 150px;
-}
-#message-new a {
- color: #ffffff;
- text-align: center;
- display: block;
- font-weight: bold;
- padding: 1em 0px;
-}
-.mail-list-wrapper {
- background-color: #f6f7f8;
- margin-bottom: 5px;
- width: 100%;
- height: auto;
- overflow: hidden;
-}
-.mail-list-wrapper span {
- display: block;
- float: left;
- width: 20%;
- overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
- width: 30%;
- padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
- display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
- font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
- padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
- padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
- padding: 4px 4px 0px 4px;
- text-align: right;
-}
-.mail-list-wrapper .mail-delete {
- float: right;
-}
-#mail-display-subject {
- background-color: #f6f7f8;
- color: #2d2d2d;
- margin-bottom: 10px;
- width: 100%;
- height: auto;
- overflow: hidden;
-}
-#mail-display-subject span {
- float: left;
- overflow: hidden;
- padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
- float: right;
- opacity: 0.5;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-#mail-display-subject:hover .mail-delete {
- opacity: 1;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
-}
-/* theme screenshot */
-.screenshot,
-#theme-preview {
- position: absolute;
- width: 202px;
- left: 70%;
- top: 50px;
-}
-.screenshot img,
-#theme-preview img {
- width: 200px;
- height: 150px;
-}
-/* page footer */
-footer {
- height: 100px;
- display: table-row;
-}
-.pager {
- margin-top: 25px;
- clear: both;
-}
-/**
- * ADMIN
- */
-#pending-update {
- float: right;
- color: #ffffff;
- font-weight: bold;
- background-color: #FF0000;
- padding: 0em 0.3em;
-}
-#adminpage dl {
- clear: left;
- margin-bottom: 2px;
- padding-bottom: 2px;
- border-bottom: 1px solid black;
-}
-#adminpage dt {
- width: 200px;
- float: left;
- font-weight: bold;
-}
-#adminpage dd {
- margin-left: 200px;
-}
-#adminpage h3 {
- border-bottom: 1px solid #cccccc;
-}
-#adminpage .field label {
- font-weight: bold;
-}
-#adminpage .submit {
- clear: left;
- text-align: right;
-}
-#adminpage #pluginslist {
- margin: 0px;
- padding: 0px;
-}
-#adminpage .plugin {
- list-style: none;
- display: block;
- border: 1px solid #888888;
- padding: 1em;
- margin-bottom: 5px;
- clear: left;
-}
-#adminpage .plugin desc {
- margin-left: 2.5em;
-}
-#adminpage .toggleplugin {
- float: left;
- margin-right: 1em;
-}
-#adminpage table {
- width: 100%;
- border-bottom: 1px solid #000000;
- margin: 5px 0px;
-}
-#adminpage table th {
- text-align: left;
-}
-#adminpage table td .icon {
- float: left;
-}
-#adminpage table tr:hover {
- background-color: #bbc7d7;
-}
-#adminpage table#users img {
- width: 16px;
- height: 16px;
-}
-#adminpage .selectall {
- text-align: right;
-}
-/* edit buttons for comments */
-.icon.dim {
- opacity: 0.3;
- filter: alpha(opacity=30);
-}
-.comment-edit-bb {
- list-style: none;
- display: none;
- margin: 0px;
- padding: 0px;
- width: 75%;
-}
-.comment-edit-bb > li {
- display: inline-block;
- margin: 10px 10px 0 0;
- visibility: none;
-}
-.editicon {
- display: inline-block;
- width: 16px;
- height: 16px;
- background-image: url(icons/bbedit.png);
- text-decoration: none;
-}
-.editicon :hover {
- background-color: #ccc;
-}
-.boldbb {
- background-position: 0px 0px;
-}
-.boldbb:hover {
- background-position: 0px -16px;
-}
-.italicbb {
- background-position: -16px 0px;
-}
-.italicbb:hover {
- background-position: -16px -16px;
-}
-.underlinebb {
- background-position: -32px 0px;
-}
-.underlinebb:hover {
- background-position: -32px -16px;
-}
-.quotebb {
- background-position: -48px 0px;
-}
-.quotebb:hover {
- background-position: -48px -16px;
-}
-.codebb {
- background-position: -64px 0px;
-}
-.codebb:hover {
- background-position: -64px -16px;
-}
-.imagebb {
- background-position: -80px 0px;
-}
-.imagebb:hover {
- background-position: -80px -16px;
-}
-.urlbb {
- background-position: -96px 0px;
-}
-.urlbb:hover {
- background-position: -96px -16px;
-}
-.videobb {
- background-position: -112px 0px;
-}
-.videobb:hover {
- background-position: -112px -16px;
-}
-.attachtype {
- display: block;
- width: 20px;
- height: 23px;
- float: left;
- background-image: url('../../../images/content-types.png');
-}
-.body-attach {
- margin-top: 10px;
-}
-.type-video {
- background-position: 0px 0px;
-}
-.type-image {
- background-position: -20px 0px;
-}
-.type-audio {
- background-position: -40px 0px;
-}
-.type-text {
- background-position: -60px 0px;
-}
-.type-unkn {
- background-position: -80px 0px;
-}
diff --git a/view/theme/quattro/green/style.less b/view/theme/quattro/green/style.less
deleted file mode 100644
index 7d81e788a..000000000
--- a/view/theme/quattro/green/style.less
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- **/
-// Less file http://lesscss.org/
-// compile with lessc
-// $ lessc style.less > style.css
-
-@import "colors";
-@import "../icons";
-@import "../quattro";
-
-
-
-
diff --git a/view/theme/quattro/icons.less b/view/theme/quattro/icons.less
deleted file mode 100644
index f9be4cc72..000000000
--- a/view/theme/quattro/icons.less
+++ /dev/null
@@ -1,83 +0,0 @@
-// Quattro Theme LESS file
-/* icons */
-
-.icons(@size: 22) {
- &.notify { background-image: url("../../../images/icons/@{size}/notify_off.png"); }
- &.gear { background-image: url("../../../images/icons/@{size}/gear.png"); }
-
- &.like { background-image: url("icons/like.png"); }
- &.dislike { background-image: url("icons/dislike.png"); }
-
- &.add { background-image: url("../../../images/icons/@{size}/add.png"); }
- &.delete { background-image: url("../../../images/icons/@{size}/delete.png"); }
- &.edit { background-image: url("../../../images/icons/@{size}/edit.png"); }
- &.star { background-image: url("../../../images/icons/@{size}/star.png"); }
- &.menu { background-image: url("../../../images/icons/@{size}/menu.png"); }
- &.link { background-image: url("../../../images/icons/@{size}/link.png"); }
- &.lock { background-image: url("../../../images/icons/@{size}/lock.png"); }
- &.unlock { background-image: url("../../../images/icons/@{size}/unlock.png"); }
- &.plugin { background-image: url("../../../images/icons/@{size}/plugin.png"); }
- &.type-unkn { background-image: url("../../../images/icons/@{size}/zip.png"); }
- &.type-audio{ background-image: url("../../../images/icons/@{size}/audio.png"); }
- &.type-video{ background-image: url("../../../images/icons/@{size}/video.png"); }
- &.type-image{ background-image: url("../../../images/icons/@{size}/image.png"); }
- &.type-text { background-image: url("../../../images/icons/@{size}/text.png"); }
-
- &.language { background-image: url("icons/language.png"); }
-
-
-
-}
-
-
-.icon {
- background-color: transparent ;
- background-repeat: no-repeat;
- background-position: left center;
- display: block;
- overflow: hidden;
- text-indent: -9999px;
- padding: 1px;
-
- &.text {
- text-indent: 0px;
- }
-
- min-width:22px; height: 22px;
- .icons(22);
- &.text { padding: 10px 0px 0px 25px; }
-
- &.s10 {
- min-width:10px; height: 10px;
- .icons(10);
- &.text { padding: 2px 0px 0px 15px; }
- }
- &.s16 {
- min-width:16px; height: 16px;
- .icons(16);
- &.text { padding: 4px 0px 0px 20px; }
- }
- &.s22 {
- min-width:22px; height: 22px;
- .icons(22);
- &.text { padding: 10px 0px 0px 25px; }
- }
- &.s48 {
- width:48px; height: 48px;
- .icons(48);
- }
-
- &.on {
- background-image: url("icons/addon_on.png");
- min-width:16px;
- height: 16px;
- background-position: 0px 0px;
- }
- &.off {
- background-image: url("icons/addon_off.png");
- width: 16px;
- height: 16px;
- background-position: 0px 0px;
- }
-
-}
diff --git a/view/theme/quattro/icons/addon_off.png b/view/theme/quattro/icons/addon_off.png
deleted file mode 100644
index 0fcce4d5a..000000000
--- a/view/theme/quattro/icons/addon_off.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/icons/addon_on.png b/view/theme/quattro/icons/addon_on.png
deleted file mode 100644
index 79ce07f0e..000000000
--- a/view/theme/quattro/icons/addon_on.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/icons/dislike.png b/view/theme/quattro/icons/dislike.png
deleted file mode 100644
index 23de426c5..000000000
--- a/view/theme/quattro/icons/dislike.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/icons/language.png b/view/theme/quattro/icons/language.png
deleted file mode 100644
index 8029c0155..000000000
--- a/view/theme/quattro/icons/language.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/icons/like.png b/view/theme/quattro/icons/like.png
deleted file mode 100644
index b65edccc0..000000000
--- a/view/theme/quattro/icons/like.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/icons/next.png b/view/theme/quattro/icons/next.png
deleted file mode 100644
index 7b5e25b90..000000000
--- a/view/theme/quattro/icons/next.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/icons/prev.png b/view/theme/quattro/icons/prev.png
deleted file mode 100644
index 55c1464ba..000000000
--- a/view/theme/quattro/icons/prev.png
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less
deleted file mode 100644
index ad1262d48..000000000
--- a/view/theme/quattro/quattro.less
+++ /dev/null
@@ -1,1385 +0,0 @@
-// Quattro Theme LESS file
-
-/* global */
-body {
- font-family: Liberation Sans,helvetica,arial,clean,sans-serif;
- font-size: 11px;
- background-color: @BodyBackground;
- color: @BodyColor;
- margin: 50px 0px 0px 0px;
- display:table;
-}
-h4 { font-size: 1.1em }
-
-.shadow(@x: 0px, @y: 5px){
- -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
- box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
-}
-
-.rounded(@tr: 5px, @tl: 5px, @bl: 5px, @br: 5px){
- -moz-border-radius: @arguments;
- -webkit-border-radius: @arguments;
- border-radius: @arguments;
-}
-.roundbottom (@radius: 5px){ .rounded(0, 0, @radius, @radius); }
-.roundtop (@radius: 5px){ .rounded(@radius, @radius, 0, 0); }
-
-.opaque(@v: 0.5){
- opacity: @v;
- .transition();
-}
-
-.transition(@d: 0.2s){
- -webkit-transition: all @d ease-in-out;
- -moz-transition: all @d ease-in-out;
- -o-transition: all @d ease-in-out;
- -ms-transition: all @d ease-in-out;
- transition: all @d ease-in-out;
-}
-
-
-a, a:link { color: @Link; text-decoration: none; }
-a:visited { color: @LinkVisited; text-decoration: none; }
-a:hover {color: @LinkHover; text-decoration: underline; }
-
-.left { float: left; }
-.right { float: right; }
-.hidden { display: none; }
-.clear { clear: both; }
-
-.fakelink { color: @Link; text-decoration: none; cursor:pointer; }
-.fakelink:hover { color: @LinkHover; text-decoration: underline; }
-
-code {
- font-family: Courier, monospace;
- white-space: pre;
- display: block;
- overflow: auto;
- border: 1px solid #444;
- background: #EEE;
- color: #444;
- padding: 10px;
- margin-top: 20px;
-}
-
-#panel {
- position: absolute;
- width: 10em;
- background: @MenuBg;
- color: @Menu;
- margin: 0px;
- padding: 1em;
- list-style: none;
- border: 3px solid @MenuBorder;
- z-index: 100000;
-
- .shadow();
-}
-
-
-
-/* tool */
-
-.tool {
- height: auto; overflow: auto;
- .label { float: left;}
- .action { float: right; }
- > img { float: left; }
-}
-
-
-
-
-/* popup notifications */
-#jGrowl.top-right {
- top: 30px;
- right: 15px;
-}
-div.jGrowl div.notice {
- background: @NoticeBackgroundColor url("../../../images/icons/48/notice.png") no-repeat 5px center;
- color: @NoticeColor;
- padding-left: 58px;
-}
-div.jGrowl div.info {
- background: @InfoBackgroundColor url("../../../images/icons/48/info.png") no-repeat 5px center;
- color: @InfoColor;
- padding-left: 58px;
-}
-
-
-
-/* header */
-header {
- position: fixed; left: 43%; right: 43%; top: 0px;
- margin: 0px; padding: 0px;
- /*width: 100%; height: 12px; */
- z-index: 110;
- color: @Grey1;
- #site-location {
- display: none;
- }
-
- #banner {
- overflow: hidden;
- text-align: center;
- width: 100%;
- a, a:active, a:visited, a:link, a:hover { color: @Grey1; text-decoration: none; outline: none; vertical-align: bottom; }
- #logo-img { height: 22px; margin-top:5px;}
- #logo-text { font-size: 22px }
- }
-}
-/* nav */
-nav {
- width: 100%; height: 32px;
- position: fixed; left: 0px; top: 0px;
- padding: 0px;
- background-color: @NavbarBackground;
- color: @Grey1;
- z-index: 100;
- .shadow(0px, 0px);
-
- a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none; }
-
- ul {
- margin: 0px;
- padding: 0px 20px;
- li {
- list-style: none;
- margin: 0px; padding: 0px;
- float: left;
- .menu-popup{ left: 0px; right: auto; }
- }
-
- }
-
- .nav-menu-icon {
- position: relative;
- height: 22px;
- padding: 5px;
- margin: 0px 10px;
- .roundtop();
-
- &.selected {
- background-color: @NavbarSelectedBg;
- }
-
- img { width: 22px; height: 22px; }
- .nav-notify { top: 3px; }
- }
-
- .nav-menu {
- position: relative;
- height: 16px;
- padding: 5px;
- margin: 3px 15px 0px;
- font-size: 14px;
- border-bottom: 3px solid @NavbarBackground;
- &.selected {
- border-bottom: 3px solid @NavbarSelectedBorder;
- }
-
- }
-
- .nav-notify {
- display: none;
- position: absolute;
- background-color: @NavbarNotifBg;
- .rounded();
- font-size: 10px;
- padding: 1px 3px;
- top: 0px;
- right: -10px;
- min-width: 15px;
- text-align: right;
-
- &.show{ display: block; }
- }
-
-
- #nav-help-link,
- #nav-search-link,
- #nav-directory-link,
- #nav-apps-link,
- #nav-site-linkmenu {
- float: right;
- .menu-popup{ right: 0px; left: auto; }
- }
-
- #nav-notifications-linkmenu.on .icon.s22.notify,
- #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") }
- #nav-apps-link.selected { background-color: @NavbarSelectedBg; }
-}
-
-
-ul.menu-popup {
- position: absolute;
- display: none;
- width: 10em;
- background: @MenuBg;
- color: @Menu;
- margin: 0px;
- padding: 0px;
- list-style: none;
- border: 3px solid @MenuBorder;
- z-index: 100000;
-
- .shadow();
-
- a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;}
- a:hover { background-color: @MenuItemHoverBg; }
- .menu-sep { border-top: 1px solid @MenuItemSeparator; }
- li { float: none; overflow: auto; height: auto; display: block; }
- li img { float: left; width: 16px; height: 16px; padding-right: 5px;}
- .empty {
- padding: 5px;
- text-align: center;
- color: @MenuEmpty;
- }
- .toolbar {
- background-color: @MenuEmpty;
- height: auto; overflow: auto;
- a { float: right; }
- a:hover { background-color: @MenuBg; }
- }
-
-}
-
-/* autocomplete popup */
-.acpopup {
- max-height:150px;
- background-color:@MenuBg;
- color: @Menu;
- border:1px solid #MenuBorder;
- overflow:auto;
- z-index:100000;
- .shadow();
-}
-.acpopupitem {
- color: @MenuItem; padding: 4px;
- clear:left;
- img {
- float: left;
- margin-right: 4px;
- }
- &.selected{
- background-color: @MenuItemHoverBg;
- }
-}
-
-
-#nav-notifications-menu {
- width: 400px; max-height: 550px;
- overflow: auto;
- img { float: left; margin-right: 5px; }
- .contactname { font-weight: bold; }
- .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; }
-}
-
-
-
-
-/* aside 230px*/
-aside {
- display: table-cell;
- vertical-align: top;
- width: 200px;
- padding:0px 10px 0px 20px;
- border-right: 1px solid @AsideBorder;
-
- .profile-edit-side-div { display: none; }
-
- .vcard {
- .fn { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
- .title { margin-bottom: 5px; }
- dl { height: auto; overflow: auto; }
- dt {float: left; margin-left: 0px; width: 35%; text-align: right; color: @VCardLabelColor; }
- dd {float: left; margin-left: 4px; width: 60%;}
-
- }
-
- #profile-extra-links {
- ul { padding: 0px; margin: 0px; }
- li { padding: 0px; margin: 0px; list-style: none; }
- }
-
- #dfrn-request-link {
- display: block;
- .rounded();
- color: @AsideConnect;
- background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center;
- font-weight: bold;
- text-transform:uppercase;
- padding: 4px 2px 2px 35px;
-
- &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
- }
-
- #profiles-menu { width: 20em; }
-
-
-}
-
-#contact-block {
- overflow: auto; height: auto;
- .contact-block-h4 { float: left; margin: 5px 0px; }
- .allcontact-link { float: right; margin: 5px 0px; }
- .contact-block-content {
- clear: both;
- overflow: hidden;
- height: auto;
- }
- /*.contact-block-div { width:60px; height: 60px; }*/
- .contact-block-link {
- float: left;
- margin: 0px 2px 2px 0px;
- img { width: 48px; height: 48px; }
- }
-}
-
-/* group member */
-#contact-edit-drop-link,
-.mail-list-delete-wrapper,
-.group-delete-wrapper {
- float: right;
- margin-right: 50px;
- .drophide {
- background-image: url('../../../images/icons/22/delete.png');
- display: block; width: 22px; height: 22px;
- opacity: 0.3;
- position: relative;
- top: -50px;
- }
- .drop {
- background-image: url('../../../images/icons/22/delete.png');
- display: block; width: 22px; height: 22px;
- position: relative;
- top: -50px;
- }
-}
-/*
-#group-members {
- margin-top: 20px;
- padding: 10px;
- height: 250px;
- overflow: auto;
- border: 1px solid #ddd;
-}
-#group-members-end {
- clear: both;
-}
-#group-all-contacts {
- padding: 10px;
- height: 450px;
- overflow: auto;
- border: 1px solid #ddd;
-}
-#group-all-contacts-end {
- clear: both;
- margin-bottom: 10px;
-}
-.contact-block-div {
- float: left;
- width: 60px;
- height: 60px;
-}*/
-
-/* widget */
-.widget {
- margin-bottom: 2em;
-
- h3 { padding: 0px; margin: 2px;}
- .action { .opaque(0.1); }
- input.action { .opaque(0.5); }
- &:hover .title .action { .opaque(1); }
- .tool:hover .action { .opaque(1); }
- .tool:hover .action.ticked { .opaque(1); }
-
- ul { padding: 0px;}
- ul li {padding-left: 16px; min-height: 16px; list-style: none; }
-
- .tool.selected {
- background: url('../../../images/selected.png') no-repeat left center;
- }
-
- /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
- .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-
-}
-
-/* widget: search */
-#add-search-popup {
- width: 200px;
- top: 18px;
-}
-
-
-/* section 800px */
-section {
- display: table-cell;
- vertical-align: top;
- width: 770px;
- padding:0px 20px 0px 10px;
-}
-
-/* wall item */
-.thread-wrapper {
- background-color: @ThreadBackgroundColor;
- position: relative;
- padding: 10px;
- margin-bottom: 20px;
- width: 750px;
- border-bottom: 1px solid @ThreadBottomBorderColor;
-}
-.wall-item-decor { position: absolute; left: 97%; top: -10px; width: 16px;}
-.unstarred { display: none; }
-
-.wall-item-container {
- display: table;
- width: 750px;
-
- .wall-item-item,
- .wall-item-bottom { display: table-row; }
-
- .wall-item-bottom { .opaque(0.5); }
- &:hover .wall-item-bottom { .opaque(1); }
- .wall-item-info {
- display: table-cell;
- vertical-align: top;
- text-align: left;
- width: 60px;
-
- }
- .wall-item-location {
- word-wrap: break-word;
- width: 50px;
- }
- .wall-item-content {
- display: table-cell;
- font-size: 12px;
- max-width: 720px;
- word-wrap: break-word;
- }
- .wall-item-content img { max-width: 710px; }
- .wall-item-links,
- .wall-item-actions {
- display: table-cell;
- vertical-align: middle;
-
- .icon {
- .opaque(0.5);
- }
- .icon:hover {
- .opaque(1.0);
- }
- }
-
- .wall-item-ago { padding-right: 40px; }
- .wall-item-name { font-weight: bold; }
-
- .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
- .wall-item-actions-social { float: left; margin-top: 0.5em;
- a { margin-right: 3em; }
- }
- .wall-item-actions-tools { float: right; width: 15%;
- a { float: right; }
- input { float: right; }
- }
-
-}
-
-
-.wall-item-container.comment {
- .contact-photo-wrapper { margin-left: 16px; }
- .contact-photo {
- width: 32px; height: 32px;
- }
- .contact-photo-menu-button {
- top: 15px !important;
- left: 0px !important;
- }
- .wall-item-links { padding-left: 12px; }
-}
-
-/* 'tag' item type */
-.wall-item-container.item-tag {
- .wall-item-content {
- .opaque(0.5);
- }
- .contact-photo-wrapper { margin-left: 32px; }
- .contact-photo {
- width: 16px; height: 16px;
- }
- .contact-photo-menu-button {
- top: 15px !important;
- left: 15px !important;
- }
-}
-
-
-.wall-item-comment-wrapper {
- margin: 1em 2em 1em 60px;
- .comment-edit-photo { display: none; }
- textarea {
- height: 1em; width: 100%; font-size: 12px;
- color: @CommentBoxEmptyColor;
- border: 1px solid @CommentBoxEmptyBorderColor;
- padding:0.3em;
- }
- .comment-edit-text-full {
- font-size: 14px;
- height: 4em;
- color: @CommentBoxFullColor;
- border: 1px solid @CommentBoxFullBorderColor;
- }
-
-}
-
-.threaded .wall-item-comment-wrapper { margin-left: 0px; }
-
-.comment-edit-preview {
- width: 710px;
- border: 1px solid @Grey5;
- margin-top: 10px;
- background-color: @JotPreviewBackgroundColor;
-
- .contact-photo { width: 32px; height: 32px; margin-left: 16px;
- /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
- }
- .contact-photo-menu-button {
- top: 15px !important;
- left: 15px !important;
- }
- .wall-item-links { padding-left: 12px; }
-
- .wall-item-container { width: 700px; }
- .thread-wrapper { width: 700px; padding: 0; margin: 10px 0;}
-}
-
-.shiny { border-right:10px solid @ShinyBorderColor; }
-#jot-preview-content .thread-wrapper { background-color: @JotPreviewBackgroundColor; }
-
-.hide-comments-outer {margin-bottom: 0.8em; }
-
-.wall-item-tags { padding-top: 5px; }
-.tag {
- background: url("../../../images/tag_b.png") no-repeat center left;
- color: @TagColor;
- padding-left: 3px;
- a {
- padding-right: 8px;
- background: url("../../../images/tag.png") no-repeat center right;
- color: @TagColor;
- }
-}
-.filesavetags {
- padding: 3px 0px 3px 0px;
- opacity: 0.5;
-}
-
-.wwto {
- position: absolute !important;
- width: 25px; height: 25px;
- background: #FFFFFF;
- border: 2px solid @Metalic3;
- height: 25px;
- width: 25px;
- overflow: hidden;
- padding: 1px;
- position: absolute !important;
- top: 40px;
- left: 30px;
-
- .shadow(0px, 0px)
-}
-.wwto .contact-photo { width: 25px; height: 25px; }
-
-
-#pause {
- position: fixed;
- bottom: 5px;
- right: 5px;
-}
-
-
-.contact-photo-wrapper { position: relative; }
-.contact-photo {
- width: 48px; height: 48px;
- img { width: 48px; height: 48px; }
- overflow: hidden;
- display: block;
- }
-.contact-photo-menu-button {
- display: none;
- position: absolute;
- left: -2px;
- top: 31px;
-}
-
-.contact-wrapper {
- float: left;
- width: 300px;
- height: 90px;
- padding-right: 10px;
- margin: 0 10px 10px 0px;
- .contact-photo-wrapper {
- float: left;
- margin-right: 10px;
- }
- .contact-photo {
- width: 80px; height: 80px;
- img { width: 80px; height: 80px; }
- }
- .contact-photo-menu-button {
- left: 0px;
- top: 63px;
- }
-}
-.directory-item {
- float: left;
- width: 200px;
- height: 200px;
- .contact-photo {
- width: 175px; height: 175px;
- img { width: 175px; height: 175px; }
- }
-}
-.contact-name { font-weight: bold; padding-top: 15px; }
-.contact-details {
- color: @Grey3; white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-/* editor */
-.jothidden { display: none; }
-#jot {
-
- width: 100%;
- margin: 0px 2em 20px 0px;
-
-
- .profile-jot-text {
- height: 1em; width: 99%; font-size: 12px;
- color: @CommentBoxEmptyColor;
- border: 1px solid @CommentBoxEmptyBorderColor;
- padding:0.3em;
- }
-
- #jot-tools {
- margin: 0px; padding: 0px;
- height: 40px; overflow: none;
- width: 770px;
- background-color: @JotToolsBackgroundColor;
- border-bottom: 2px solid @JotToolsBorderColor;
- li {
- list-style: none;
- float: left;
- width: 80px;
- height: 40px;
- border-bottom: 2px solid @JotToolsBorderColor;
- a {
- display: block;
- color: @JotToolsText;
- width: 100%;
- height:40px;
- text-align: center;
- line-height: 40px;
- overflow: hidden;
- }
- }
- li:hover {
- background-color: @JotToolsOverBackgroundColor;
- border-bottom: 2px solid @JotToolsOverBorderColor;
- }
- li.perms {
- float: right;
- width: 40px;
- a.unlock {
- width: 30px;
- border-left: 10px solid @JotPermissionUnlockBackgroundColor;
- background-color: @JotPermissionUnlockBackgroundColor;
- }
- a.lock {
- width: 30px;
- border-left: 10px solid @JotPermissionLockBackgroundColor;
- background-color: @JotPermissionLockBackgroundColor;
- }
-
- }
- li.submit {
- float: right;
- background-color: @JotSubmitBackgroundColor;
- border-bottom: 2px solid @JotSubmitBackgroundColor;
- border-right: 1px solid @Grey4;
- border-left: 1px solid @Grey4;
- input {
- border: 0px; margin: 0px; padding: 0px;
- background-color: @JotSubmitBackgroundColor;
- color: @JotSubmitText;
- width: 80px; height: 40px;
- line-height: 40px;
- }
- input:hover {
- background-color: @JotSubmitOverBackgroundColor;
- color: @JotSubmitOverText;
- }
- }
- li.loading {
- float: right;
- background-color: @JotLoadingBackgroundColor;
- width: 20px;
- vertical-align: center;
- text-align: center;
- img { margin-top: 10px; }
- border-top: 2px solid @JotToolsBorderColor;
- height: 38px;
- }
- }
-
- #jot-title {
- border: 0px;
- margin: 0px;
- height: 20px;
- width: 500px;
- font-weight: bold;
- border: 1px solid @BodyBackground;
-
- &:-webkit-input-placeholder {
- font-weight: normal;
- }
-
- &:-moz-placeholder {
- font-weight: normal;
- }
-
- &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
- &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
- }
-
- #character-counter {
- width: 40px;
- float: right;
- text-align: right;
- height: 20px;
- line-height: 20px;
- padding-right: 20px;
- }
-
- #jot-category {
- border: 0px;
- margin: 0px;
- height: 20px;
- width: 200px;
- border: 1px solid @BodyBackground;
- &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
- &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
- }
-}
-
-
-/** buttons **/
-/*input[type="submit"] {
- border: 0px;
- background-color: @ButtonBackgroundColor;
- color: @ButtonColor;
- padding: 0px 10px;
- .rounded(5px);
- height: 18px;
-}*/
-
-
-/** acl **/
-#photo-edit-perms-select,
-#photos-upload-permissions-wrapper,
-#profile-jot-acl-wrapper{
- display:block!important;
-}
-
-
-
-#acl-wrapper {
- width: 690px;
- float:left;
-}
-#acl-search {
- float:right;
- background: #ffffff url("../../../images/search_18.png") no-repeat right center;
- padding-right:20px;
-}
-#acl-showall {
- float: left;
- display: block;
- width: auto;
- height: 18px;
- background-color: #cccccc;
- background-image: url("../../../images/show_all_off.png");
- background-position: 7px 7px;
- background-repeat: no-repeat;
- padding: 7px 5px 0px 30px;
- color: #999999;
- .rounded(5px);
-}
-#acl-showall.selected {
- color: #000000;
- background-color: #ff9900;
- background-image: url("../../../images/show_all_on.png");
-}
-
-#acl-list {
- height: 210px;
- border: 1px solid #cccccc;
- clear: both;
- margin-top: 30px;
- overflow: auto;
-}
-#acl-list-content {
-
-}
-.acl-list-item {
- display: block;
- width: 150px;
- height: 30px;
- border: 1px solid #cccccc;
- margin: 5px;
- float: left;
-}
-.acl-list-item img{
- width:22px;
- height: 22px;
- float: left;
- margin: 4px;
-}
-.acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
-.acl-list-item a {
- font-size: 8px;
- display: block;
- width: 40px;
- height: 10px;
- float: left;
- color: #999999;
- background-color: #cccccc;
- background-position: 3px 3px;
- background-repeat: no-repeat;
- margin-right: 5px;
- -webkit-border-radius: 2px ;
- -moz-border-radius: 2px;
- border-radius: 2px;
- padding-left: 15px;
-}
-#acl-wrapper a:hover {
- text-decoration: none;
- color:#000000;
-}
-.acl-button-show { background-image: url("../../../images/show_off.png"); }
-.acl-button-hide { background-image: url("../../../images/hide_off.png"); }
-
-.acl-button-show.selected {
- color: #000000;
- background-color: #9ade00;
- background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
- color: #000000;
- background-color: #ff4141;
- background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow { border-color: #9ade00; }
-.acl-list-item.grouphide { border-color: #ff4141; }
-/** /acl **/
-
-/** tab buttons **/
-ul.tabs {
- list-style-type: none;
- padding-bottom: 10px;
-
- li {
- float: left;
- margin-left: 20px;
-
- .active {
- border-bottom: 1px solid @LinkVisited;
- }
- }
-
-}
-
-
-/** group editor **/
-#group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
-#group-update-wrapper{
- height: auto; overflow: auto;
- #group {
- width:300px;
- float:left;
- margin-right:20px;
- }
- #contacts {
- width:300px;
- float:left;
- }
- #group-separator { display: none; }
- .contact_list {
- height: 300px;
- border: 1px solid @MenuBorder;
- overflow: auto;
- .contact-block-div {
- width: 50px; height: 50px;
- float: left;
- }
- }
-}
-
-/**
- * Form fields
- */
-.field {
- margin-bottom: 10px;
- padding-bottom: 10px;
- overflow: auto;
- width: 100%;
-
-
- label {
- float: left;
- width: 200px;
- }
-
- input,
- textarea {
- width: 400px;
- }
- input[type="checkbox"], input[type="radio"]{
- width: auto;
- }
-
- textarea { height: 100px; }
- .field_help {
- display: block;
- margin-left: 200px;
- color: @FieldHelpColor;
-
- }
-
-
- .onoff {
- float: left;
- width: 80px;
- }
- .onoff a {
- display: block;
- border:1px solid #666666;
- background-image:url("../../../images/onoff.jpg");
- background-repeat: no-repeat;
- padding: 4px 2px 2px 2px;
- height: 16px;
- text-decoration: none;
- }
- .onoff .off {
- border-color:#666666;
- padding-left: 40px;
- background-position: left center;
- background-color: #cccccc;
- color: #666666;
- text-align: right;
- }
- .onoff .on {
- border-color:#204A87;
- padding-right: 40px;
- background-position: right center;
- background-color: #D7E3F1;
- color: #204A87;
- text-align: left;
- }
- .hidden { display: none!important; }
-
- &.radio .field_help { margin-left: 0px; }
-}
-
-
-#profile-edit-links li {
- list-style: none;
- margin-top: 10px;
-}
-
-#profile-edit-default-desc {
- color: #FF0000;
- border: 1px solid #FF8888;
- background-color: #FFEEEE;
- padding: 7px;
-}
-#profile-edit-profile-name-label,
-#profile-edit-name-label,
-#profile-edit-pdesc-label,
-#profile-edit-gender-label,
-#profile-edit-dob-label,
-#profile-edit-address-label,
-#profile-edit-locality-label,
-#profile-edit-region-label,
-#profile-edit-postal-code-label,
-#profile-edit-country-name-label,
-#profile-edit-marital-label,
-#profile-edit-with-label,
-#profile-edit-sexual-label,
-#profile-edit-politic-label,
-#profile-edit-religion-label,
-#profile-edit-pubkeywords-label,
-#profile-edit-prvkeywords-label,
-#profile-edit-gender-select,
-#profile-edit-homepage-label {
- float: left;
- width: 175px;
- padding-top: 7px;
-}
-#profile-edit-profile-name,
-#profile-edit-name,
-#gender-select,
-#profile-edit-pdesc,
-#profile-edit-gender,
-#profile-edit-dob,
-#profile-edit-address,
-#profile-edit-locality,
-#profile-edit-region,
-#profile-edit-postal-code,
-#profile-edit-country-name,
-#profile-edit-marital,
-#profile-edit-with,
-#profile-edit-sexual,
-#profile-edit-politic,
-#profile-edit-religion,
-#profile-edit-pubkeywords,
-#profile-edit-prvkeywords,
-#profile-edit-homepage {
- margin-top: 5px;
-}
-
-/* oauth */
-.oauthapp {
- height: auto; overflow: auto;
- border-bottom: 2px solid #cccccc;
- padding-bottom: 1em;
- margin-bottom: 1em;
-}
-.oauthapp img {
- float: left;
- width: 48px; height: 48px;
- margin: 10px;
-}
-.oauthapp img.noicon {
- background-image: url("../../../images/icons/48/plugin.png");
- background-position: center center;
- background-repeat: no-repeat;
-}
-.oauthapp a {
- float: left;
-}
-
-/* contacts */
-.contact-entry-wrapper {
- width: 50px; float: left;
-}
-
-/* photo albums */
-@photosize: 150px;
-
-#photo-edit-link-wrap { margin-bottom: 10px; }
-
-#album-edit-link {
- border-right: 1px solid @MenuBorder;
- float: left;
- padding-right: 5px;
- margin-right: 5px;
-}
-#photo-edit-link,
-#album-edit-link a {
- background: url("../../../images/icons/16/edit.png") no-repeat left center;
- padding-left: 18px;
-}
-#photo-toprofile-link {
- background: url("../../../images/icons/16/user.png") no-repeat left center;
- padding-left: 18px;
-}
-
-.photos-upload-link a,
-#photo-top-upload-link {
- background: url("../../../images/icons/16/add.png") no-repeat left center;
- padding-left: 18px;
-}
-
-
-.photo-top-image-wrapper,
-.photo-album-image-wrapper {
- float: left;
- margin: 0px 10px 10px 0px;
- width:@photosize; height: @photosize;
- position: relative;
- overflow: hidden;
-
- img { width: @photosize; }
-
- .photo-top-album-name,
- .caption{
- position: absolute;
- color: @Menu;
- background-color: @MenuBg;
-
- width: 100%;
- .shadow(0px, 5px);
- .transition(0.5s);
- bottom: -@photosize;
- }
-
- &:hover .photo-top-album-name,
- &:hover .caption {
- bottom: 0px;
- .shadow(0px, 0px);
- .transition(0.5s);
- }
-}
-
-#photo-photo {
- display: block; width: 660px;
- padding: 50px; margin-bottom: 0px;
- text-align: center;
- background-color: @Grey3;
- img { max-width: 560px; }
-}
-#photo-album-title {
- background: url("../../../images/icons/22/image.png") no-repeat top left;
- padding-left: 23px;
- min-height: 22px;
- a { display: block; padding-top: 5px; }
-}
-
-#photo-caption {
- display: block; width: 660px;
- min-height: 55px;
- background-color: @Grey2;
- padding:0 50px 0 50px;
-}
-#photo-next-link > a > div {
- background: url("icons/next.png") no-repeat center center;
- float: right;
- width: 50px; height: 50px;
-}
-#photo-prev-link > a > div {
- background: url("icons/prev.png") no-repeat center center;
- float: left;
- width: 50px; height: 50px;
-}
-#photo-like-div {
- display: block; width: 660px;
- height: 30px;
- background-color: @Grey2;
- padding:0 50px 0 50px;
- .icon {float: left;}
- .like-rotator {float: right;}
-}
-/* profile match wrapper */
-.profile-match-wrapper {
- float: left;
- width: 90px;
- height: 90px;
- margin-bottom: 20px;
- .contact-photo {
- width: 80px; height: 80px;
- img { width: 80px; height: 80px; }
- }
- .contact-photo-menu-button {
- left: 0px;
- top: 63px;
- }
-}
-
-/* messages */
-#message-new {
- background: @MessageNewBackgroundColor;
- border: 1px solid @MessageNewBorderColor;
- width: 150px;
- a {
- color: @MessageNewColor;
- text-align: center;
- display: block;
- font-weight: bold;
- padding: 1em 0px;
- }
-}
-
-.mail-list-wrapper {
- background-color: @MailListBackgroundColor;
- margin-bottom: 5px;
- width: 100%; height: auto; overflow: hidden;
-
- span { display: block; float: left; width: 20%; overflow: hidden;}
-
- .mail-subject {
- width: 30%;
- padding:4px 0px 0px 4px;
- a { display: block; }
- &.unseen a { font-weight: bold; }
- }
- .mail-date { padding: 4px 4px 0px 4px; }
- .mail-from { padding: 4px 4px 0px 4px; }
- .mail-count { padding: 4px 4px 0px 4px; text-align: right;}
-
- .mail-delete { float: right; }
-}
-
-#mail-display-subject {
- background-color: @MailDisplaySubjectBackgroundColor;
- color: @MailDisplaySubjectColor;
- margin-bottom: 10px;
- width: 100%; height: auto; overflow: hidden;
- span { float: left; overflow: hidden; padding: 4px 0px 0px 10px;}
- .mail-delete { float: right; .opaque(0.5);}
- &:hover .mail-delete { .opaque(1); }
-
-}
-
-/* theme screenshot */
-.screenshot, #theme-preview {
- position: absolute;
- width:202px;
- left: 70%;
- top: 50px;
- img { width: 200px; height: 150px; }
-}
-
-/* page footer */
-footer { height: 100px; display: table-row; }
-
-.pager {
- margin-top: 25px;
- clear: both;
-}
-
-/**
- * ADMIN
- */
-#pending-update {
- float:right;
- color: #ffffff;
- font-weight: bold;
- background-color: #FF0000;
- padding: 0em 0.3em;
-
-}
-#adminpage {
- dl {
- clear: left;
- margin-bottom: 2px;
- padding-bottom: 2px;
- border-bottom: 1px solid black;
- }
- dt {
- width: 200px;
- float: left;
- font-weight: bold;
- }
- dd {
- margin-left: 200px;
- }
- h3 {
- border-bottom: 1px solid #cccccc;
- }
- .field label {
- font-weight: bold;
- }
- .submit {
- clear:left;
- text-align: right;
- }
- #pluginslist {
- margin: 0px; padding: 0px;
- }
- .plugin {
- list-style: none;
- display: block;
- border: 1px solid #888888;
- padding: 1em;
- margin-bottom: 5px;
- clear: left;
- desc {
- margin-left: 2.5em;
- }
- }
- .toggleplugin {
- float:left;
- margin-right: 1em;
- }
- table {
- width:100%;
- border-bottom: 1px solid #000000;
- margin: 5px 0px;
- th {
- text-align: left;
- }
- td .icon {
- float: left;
- }
- tr:hover {
- background-color: #bbc7d7;
- }
- }
- table#users img {
- width: 16px; height: 16px;
- }
- .selectall { text-align: right; }
-}
-
-/* edit buttons for comments */
-
-.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
-.comment-edit-bb {
- list-style: none;
- display: none;
- margin: 0px;
- padding: 0px;
- width: 75%;
-}
-.comment-edit-bb > li {
- display: inline-block;
- margin: 10px 10px 0 0;
- visibility: none;
-}
-
-.editicon {
- display: inline-block;
- width: 16px;
- height: 16px;
- background-image: url(icons/bbedit.png);
- text-decoration: none;
- :hover {background-color: #ccc;}
-}
-.boldbb { background-position: 0px 0px; }
-.boldbb:hover { background-position: 0px -16px; }
-.italicbb { background-position: -16px 0px; }
-.italicbb:hover { background-position: -16px -16px; }
-.underlinebb { background-position: -32px 0px; }
-.underlinebb:hover { background-position: -32px -16px; }
-.quotebb { background-position: -48px 0px; }
-.quotebb:hover { background-position: -48px -16px; }
-.codebb { background-position: -64px 0px; }
-.codebb:hover { background-position: -64px -16px; }
-.imagebb { background-position: -80px 0px; }
-.imagebb:hover { background-position: -80px -16px; }
-.urlbb { background-position: -96px 0px; }
-.urlbb:hover { background-position: -96px -16px; }
-.videobb { background-position: -112px 0px; }
-.videobb:hover { background-position: -112px -16px; }
-
-.attachtype {
- display: block; width: 20px; height: 23px;
- float: left;
- background-image: url('../../../images/content-types.png');
-}
-
-.body-attach {
- margin-top: 10px;
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text { background-position: -60px 0px; }
-.type-unkn { background-position: -80px 0px; }
diff --git a/view/theme/quattro/screenshot.jpg b/view/theme/quattro/screenshot.jpg
deleted file mode 100644
index 98fbfe2ea..000000000
--- a/view/theme/quattro/screenshot.jpg
+++ /dev/null
Binary files differ
diff --git a/view/theme/quattro/style.php b/view/theme/quattro/style.php
deleted file mode 100644
index fa02a04b6..000000000
--- a/view/theme/quattro/style.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
- $color=false;
- $quattro_align=false;
- $site_color = get_config("quattro","color");
- $site_quattro_align = get_config("quattro", "align" );
-
- if (local_user()) {
- $color = get_pconfig(local_user(), "quattro","color");
- $quattro_align = get_pconfig(local_user(), 'quattro', 'align' );
- }
-
- if ($color===false) $color=$site_color;
- if ($color===false) $color="dark";
- if ($quattro_align===false) $quattro_align=$site_quattro_align;
-
-
- if (file_exists("$THEMEPATH/$color/style.css")){
- echo file_get_contents("$THEMEPATH/$color/style.css");
- }
-
-
- if($quattro_align=="center"){
- echo "
- html { width: 100%; margin:0px; padding:0px; }
- body {
- margin: 50px auto;
- width: 900px;
- }
- ";
- }
diff --git a/view/theme/quattro/theme.php b/view/theme/quattro/theme.php
deleted file mode 100644
index 1c986e4c8..000000000
--- a/view/theme/quattro/theme.php
+++ /dev/null
@@ -1,105 +0,0 @@
-<?php
-/**
- * Name: Quattro
- * Version: 0.5
- * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
- * Maintainer: Fabio <http://kirgroup.com/profile/fabrixxm>
- * Maintainer: Tobias <https://diekershoff.homeunix.net/friendika/profile/tobias>
- */
-
-$a->theme_info = array();
-
-function quattro_init(&$a) {
-$a->page['htmlhead'] .= <<< EOT
-<script>
-function insertFormatting(comment,BBcode,id) {
-
- var tmpStr = $("#comment-edit-text-" + id).val();
- if(tmpStr == comment) {
- tmpStr = "";
- $("#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) {
- textarea.focus();
- selected = document.selection.createRange();
- if (BBcode == "url"){
- selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
- } else
- selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
- } else if (textarea.selectionStart || textarea.selectionStart == "0") {
- var start = textarea.selectionStart;
- var end = textarea.selectionEnd;
- if (BBcode == "url"){
- textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
- } else
- textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
- }
- return true;
-}
-
-function showThread(id) {
- $("#collapsed-comments-" + id).show()
- $("#collapsed-comments-" + id + " .collapsed-comments").show()
-}
-function hideThread(id) {
- $("#collapsed-comments-" + id).hide()
- $("#collapsed-comments-" + id + " .collapsed-comments").hide()
-}
-
-
-function cmtBbOpen(id) {
- $("#comment-edit-bb-" + id).show();
-}
-function cmtBbClose(id) {
- $("#comment-edit-bb-" + id).hide();
-}
-$(document).ready(function() {
-
-$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
-
-$('.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');}
- );
-
-});
-
-
-</script>
-EOT;
-}
diff --git a/view/theme/quattro/tpl/birthdays_reminder.tpl b/view/theme/quattro/tpl/birthdays_reminder.tpl
deleted file mode 100644
index 8b1378917..000000000
--- a/view/theme/quattro/tpl/birthdays_reminder.tpl
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/view/theme/quattro/tpl/comment_item.tpl b/view/theme/quattro/tpl/comment_item.tpl
deleted file mode 100644
index 7d1d7550b..000000000
--- a/view/theme/quattro/tpl/comment_item.tpl
+++ /dev/null
@@ -1,62 +0,0 @@
- <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
- <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
- <input type="hidden" name="type" value="$type" />
- <input type="hidden" name="profile_uid" value="$profile_uid" />
- <input type="hidden" name="parent" value="$parent" />
- <input type="hidden" name="return" value="$return_path" />
- <input type="hidden" name="jsreload" value="$jsreload" />
- <input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
-
- <div class="comment-edit-photo" id="comment-edit-photo-$id" >
- <a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
- </div>
- <ul id="comment-edit-bb-$id"
- class="comment-edit-bb">
- <li><a class="editicon boldbb shadow"
- style="cursor: pointer;" title="$edbold"
- onclick="insertFormatting('$comment','b', $id);"></a></li>
- <li><a class="editicon italicbb shadow"
- style="cursor: pointer;" title="$editalic"
- onclick="insertFormatting('$comment','i', $id);"></a></li>
- <li><a class="editicon underlinebb shadow"
- style="cursor: pointer;" title="$eduline"
- onclick="insertFormatting('$comment','u', $id);"></a></li>
- <li><a class="editicon quotebb shadow"
- style="cursor: pointer;" title="$edquote"
- onclick="insertFormatting('$comment','quote', $id);"></a></li>
- <li><a class="editicon codebb shadow"
- style="cursor: pointer;" title="$edcode"
- onclick="insertFormatting('$comment','code', $id);"></a></li>
- <li><a class="editicon imagebb shadow"
- style="cursor: pointer;" title="$edimg"
- onclick="insertFormatting('$comment','img', $id);"></a></li>
- <li><a class="editicon urlbb shadow"
- style="cursor: pointer;" title="$edurl"
- onclick="insertFormatting('$comment','url', $id);"></a></li>
- <li><a class="editicon videobb shadow"
- style="cursor: pointer;" title="$edvideo"
- onclick="insertFormatting('$comment','video', $id);"></a></li>
- </ul>
- <textarea id="comment-edit-text-$id"
- class="comment-edit-text-empty"
- name="body"
- onFocus="commentOpen(this,$id) && cmtBbOpen($id);"
- onBlur="commentClose(this,$id) && cmtBbClose($id);" >$comment</textarea>
- {{ if $qcomment }}
- <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
- <option value=""></option>
- {{ for $qcomment as $qc }}
- <option value="$qc">$qc</option>
- {{ endfor }}
- </select>
- {{ endif }}
-
- <div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
- <input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
- <span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
- <div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
- </div>
-
- </form>
-
- </div>
diff --git a/view/theme/quattro/tpl/contact_template.tpl b/view/theme/quattro/tpl/contact_template.tpl
deleted file mode 100644
index b826acc65..000000000
--- a/view/theme/quattro/tpl/contact_template.tpl
+++ /dev/null
@@ -1,26 +0,0 @@
-
-<div class="contact-wrapper" id="contact-entry-wrapper-$id" >
- <div class="contact-photo-wrapper" >
- <div class="contact-photo mframe" id="contact-entry-photo-$contact.id"
- onmouseover="if (typeof t$contact.id != 'undefined') clearTimeout(t$contact.id); openMenu('contact-photo-menu-button-$contact.id')"
- onmouseout="t$contact.id=setTimeout('closeMenu(\'contact-photo-menu-button-$contact.id\'); closeMenu(\'contact-photo-menu-$contact.id\');',200)" >
-
- <a href="$contact.url" title="$contact.img_hover" /><img src="$contact.thumb" $contact.sparkle alt="$contact.name" /></a>
-
- {{ if $contact.photo_menu }}
- <a href="#" rel="#contact-photo-menu-$contact.id" class="contact-photo-menu-button icon s16 menu" id="contact-photo-menu-button-$contact.id">menu</a>
- <ul class="contact-photo-menu menu-popup" id="contact-photo-menu-$contact.id">
- $contact.photo_menu
- </ul>
- {{ endif }}
- </div>
-
- </div>
- <div class="contact-name" id="contact-entry-name-$contact.id" >$contact.name</div>
- {{ if $contact.alt_text }}<div class="contact-details" id="contact-entry-rel-$contact.id" >$contact.alt_text</div>{{ endif }}
- <div class="contact-details" id="contact-entry-url-$contact.id" >$contact.itemurl</div>
- <div class="contact-details" id="contact-entry-network-$contact.id" >$contact.network</div>
-
-
-</div>
-
diff --git a/view/theme/quattro/tpl/conversation.tpl b/view/theme/quattro/tpl/conversation.tpl
deleted file mode 100644
index 48ab4364a..000000000
--- a/view/theme/quattro/tpl/conversation.tpl
+++ /dev/null
@@ -1,48 +0,0 @@
-<div id="threads-begin"></div>
-{{ for $threads as $thread }}
-<div id="thread-wrapper-$thread.id" class="thread-wrapper">
- {{ for $thread.items as $item }}
- {{if $mode == display}}
- {{ else }}
- {{if $item.comment_firstcollapsed}}
- <div class="hide-comments-outer">
- <span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span>
- </div>
- <div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
- {{endif}}
- {{if $item.comment_lastcollapsed}}</div>{{endif}}
- {{ endif }}
-
- {{ if $item.type == tag }}
- {{ inc wall_item_tag.tpl }}{{ endinc }}
- {{ else }}
- {{ inc $item.template }}{{ endinc }}
- {{ endif }}
-
- {{ endfor }}
-</div>
-{{ endfor }}
-<div id="threads-end"></div>
-<div id="conversation-end"></div>
-
-{{ if $dropping }}
-<a href="#" onclick="deleteCheckedItems();return false;">
- <span class="icon s22 delete text">$dropping</span>
-</a>
-{{ endif }}
-
-<script>
-// jquery color plugin from https://raw.github.com/gist/1891361/17747b50ad87f7a59a14b4e0f38d8f3fb6a18b27/gistfile1.js
- (function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={transparent:[255,255,255]}})(jQuery);
- var colWhite = {backgroundColor:'#EFF0F1'};
- var colShiny = {backgroundColor:'#FCE94F'};
-</script>
-
-{{ if $mode == display }}
-<script>
- var id = window.location.pathname.split("/").pop();
- $(window).scrollTop($('#item-'+id).position().top);
- $('#item-'+id).animate(colWhite, 1000).animate(colShiny).animate(colWhite, 2000);
-</script>
-{{ endif }}
-
diff --git a/view/theme/quattro/tpl/events_reminder.tpl b/view/theme/quattro/tpl/events_reminder.tpl
deleted file mode 100644
index fc13fa68b..000000000
--- a/view/theme/quattro/tpl/events_reminder.tpl
+++ /dev/null
@@ -1,39 +0,0 @@
-<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
-<script language="javascript" type="text/javascript"
- src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
-<script>
- // start calendar from yesterday
- var yesterday= new Date()
- yesterday.setDate(yesterday.getDate()-1)
-
- function showEvent(eventid) {
- $.get(
- '$baseurl/events/?id='+eventid,
- function(data){
- $.fancybox(data);
- }
- );
- }
- $(document).ready(function() {
- $('#events-reminder').fullCalendar({
- firstDay: yesterday.getDay(),
- year: yesterday.getFullYear(),
- month: yesterday.getMonth(),
- date: yesterday.getDate(),
- events: '$baseurl/events/json/',
- header: {
- left: '',
- center: '',
- right: ''
- },
- timeFormat: 'H(:mm)',
- defaultView: 'basicWeek',
- height: 50,
- eventClick: function(calEvent, jsEvent, view) {
- showEvent(calEvent.id);
- }
- });
- });
-</script>
-<div id="events-reminder"></div>
-<br>
diff --git a/view/theme/quattro/tpl/fileas_widget.tpl b/view/theme/quattro/tpl/fileas_widget.tpl
deleted file mode 100644
index 1e5a76044..000000000
--- a/view/theme/quattro/tpl/fileas_widget.tpl
+++ /dev/null
@@ -1,12 +0,0 @@
-<div id="fileas-sidebar" class="widget">
- <h3>$title</h3>
- <div id="nets-desc">$desc</div>
-
- <ul class="fileas-ul">
- <li class="tool {{ if $sel_all }}selected{{ endif }}"><a href="$base" class="fileas-link fileas-all">$all</a></li>
- {{ for $terms as $term }}
- <li class="tool {{ if $term.selected }}selected{{ endif }}"><a href="$base?f=&file=$term.name" class="fileas-link">$term.name</a></li>
- {{ endfor }}
- </ul>
-
-</div>
diff --git a/view/theme/quattro/tpl/generic_links_widget.tpl b/view/theme/quattro/tpl/generic_links_widget.tpl
deleted file mode 100644
index 29580bbc7..000000000
--- a/view/theme/quattro/tpl/generic_links_widget.tpl
+++ /dev/null
@@ -1,11 +0,0 @@
-<div class="widget">
- {{if $title}}<h3>$title</h3>{{endif}}
- {{if $desc}}<div class="desc">$desc</div>{{endif}}
-
- <ul>
- {{ for $items as $item }}
- <li class="tool {{ if $item.selected }}selected{{ endif }}"><a href="$item.url" class="link">$item.label</a></li>
- {{ endfor }}
- </ul>
-
-</div>
diff --git a/view/theme/quattro/tpl/group_side.tpl b/view/theme/quattro/tpl/group_side.tpl
deleted file mode 100644
index 596a8d13f..000000000
--- a/view/theme/quattro/tpl/group_side.tpl
+++ /dev/null
@@ -1,29 +0,0 @@
-<div id="group-sidebar" class="widget">
- <div class="title tool">
- <h3 class="label">$title</h3>
- <a href="group/new" title="$createtext" class="action"><span class="icon text s16 add"> $add</span></a>
- </div>
-
- <div id="sidebar-group-list">
- <ul>
- {{ for $groups as $group }}
- <li class="tool {{ if $group.selected }}selected{{ endif }}">
- <a href="$group.href" class="label">
- $group.text
- </a>
- {{ if $group.edit }}
- <a href="$group.edit.href" class="action"><span class="icon text s10 edit">$group.edit.title</span></a>
- {{ endif }}
- {{ if $group.cid }}
- <input type="checkbox"
- class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action"
- onclick="contactgroupChangeMember('$group.id','$group.cid');return true;"
- {{ if $group.ismember }}checked="checked"{{ endif }}
- />
- {{ endif }}
- </li>
- {{ endfor }}
- </ul>
- </div>
-</div>
-
diff --git a/view/theme/quattro/tpl/jot.tpl b/view/theme/quattro/tpl/jot.tpl
deleted file mode 100644
index 95c0ff6b1..000000000
--- a/view/theme/quattro/tpl/jot.tpl
+++ /dev/null
@@ -1,52 +0,0 @@
-<form id="profile-jot-form" action="$action" method="post">
- <div id="jot">
- <div id="profile-jot-desc" class="jothidden">&nbsp;</div>
- <input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" title="$placeholdertitle" value="$title" class="jothidden" style="display:none" /><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" title="$placeholdercategory" value="$category" class="jothidden" style="display:none" />
- <div id="character-counter" class="grey jothidden"></div>
-
-
-
- <input type="hidden" name="type" value="$ptyp" />
- <input type="hidden" name="profile_uid" value="$profile_uid" />
- <input type="hidden" name="return" value="$return_path" />
- <input type="hidden" name="location" id="jot-location" value="$defloc" />
- <input type="hidden" name="coord" id="jot-coord" value="" />
- <input type="hidden" name="post_id" value="$post_id" />
- <input type="hidden" name="preview" id="jot-preview" value="0" />
-
- <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" >{{ if $content }}$content{{ else }}$share{{ endif }}</textarea>
-
- <ul id="jot-tools" class="jothidden" style="display:none">
- <li><a href="#" onclick="return false;" id="wall-image-upload" title="$upload">$shortupload</a></a></li>
- <li><a href="#" onclick="return false;" id="wall-file-upload" title="$attach">$shortattach</a></li>
- <li><a id="profile-link" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;" title="$weblink">$shortweblink</a></li>
- <li><a id="profile-video" onclick="jotVideoURL();return false;" title="$gvideo">$shortvideo</a></li>
- <li><a id="profile-audio" onclick="jotAudioURL();return false;" title="$audio">$shortaudio</a></li>
- <!-- TODO: waiting for a better placement
- <li><a id="profile-location" onclick="jotGetLocation();return false;" title="$setloc">$shortsetloc</a></li>
- <li><a id="profile-nolocation" onclick="jotClearLocation();return false;" title="$noloc">$shortnoloc</a></li>
- -->
- <li><a id="jot-preview-link" onclick="preview_post(); return false;" title="$preview">$preview</a></li>
- $jotplugins
-
- <li class="perms"><a id="jot-perms-icon" href="#profile-jot-acl-wrapper" class="icon s22 $lockstate $bang" title="$permset" ></a></li>
- <li class="submit"><input type="submit" id="profile-jot-submit" name="submit" value="$share" /></li>
- <li id="profile-rotator" class="loading" style="display: none"><img src="images/rotator.gif" alt="$wait" title="$wait" /></li>
- </ul>
- </div>
-
- <div id="jot-preview-content" style="display:none;"></div>
-
- <div style="display: none;">
- <div id="profile-jot-acl-wrapper" style="width:auto;height:auto;overflow:auto;">
- $acl
- <hr style="clear:both"/>
- <div id="profile-jot-email-label">$emailcc</div><input type="text" name="emailcc" id="profile-jot-email" title="$emtitle" />
- <div id="profile-jot-email-end"></div>
- $jotnets
- </div>
- </div>
-
-</form>
-
-{{ if $content }}<script>initEditor();</script>{{ endif }}
diff --git a/view/theme/quattro/tpl/mail_conv.tpl b/view/theme/quattro/tpl/mail_conv.tpl
deleted file mode 100644
index 31ae289ae..000000000
--- a/view/theme/quattro/tpl/mail_conv.tpl
+++ /dev/null
@@ -1,60 +0,0 @@
-<div class="wall-item-container $item.indent">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper"
- <a href="$mail.profile_url" title="$mail.from_name" class="contact-photo-link" id="wall-item-photo-link-$mail.id">
- <img src="$mail.from_photo" class="contact-photo$mail.sparkle" id="wall-item-photo-$mail.id" alt="$mail.from_name" />
- </a>
- </div>
- </div>
- <div class="wall-item-content">
- $mail.body
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- </div>
- <div class="wall-item-tags">
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="">
- </div>
- <div class="wall-item-actions">
- <div class="wall-item-actions-author">
- <a href="$mail.from_url" class="wall-item-name-link"><span class="wall-item-name$mail.sparkle">$mail.from_name</span></a> <span class="wall-item-ago">$mail.date</span>
- </div>
-
- <div class="wall-item-actions-social">
- </div>
-
- <div class="wall-item-actions-tools">
- <a href="message/drop/$mail.id" onclick="return confirmDelete();" class="icon delete s16" title="$mail.delete">$mail.delete</a>
- </div>
-
- </div>
- </div>
- <div class="wall-item-bottom">
- </div>
-</div>
-
-
-{#
-
-
-<div class="mail-conv-outside-wrapper">
- <div class="mail-conv-sender" >
- <a href="$mail.from_url" class="mail-conv-sender-url" ><img class="mframe mail-conv-sender-photo$mail.sparkle" src="$mail.from_photo" heigth="80" width="80" alt="$mail.from_name" /></a>
- </div>
- <div class="mail-conv-detail" >
- <div class="mail-conv-sender-name" >$mail.from_name</div>
- <div class="mail-conv-date">$mail.date</div>
- <div class="mail-conv-subject">$mail.subject</div>
- <div class="mail-conv-body">$mail.body</div>
- <div class="mail-conv-delete-wrapper" id="mail-conv-delete-wrapper-$mail.id" ><a href="message/drop/$mail.id" class="icon drophide delete-icon mail-list-delete-icon" onclick="return confirmDelete();" title="$mail.delete" id="mail-conv-delete-icon-$mail.id" class="mail-conv-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div><div class="mail-conv-delete-end"></div>
- <div class="mail-conv-outside-wrapper-end"></div>
-</div>
-</div>
-<hr class="mail-conv-break" />
-
-#}
diff --git a/view/theme/quattro/tpl/mail_display.tpl b/view/theme/quattro/tpl/mail_display.tpl
deleted file mode 100644
index e87eca485..000000000
--- a/view/theme/quattro/tpl/mail_display.tpl
+++ /dev/null
@@ -1,12 +0,0 @@
-<div id="mail-display-subject">
- <span class="{{if $thread_seen}}seen{{else}}unseen{{endif}}">$thread_subject</span>
- <a href="message/dropconv/$thread_id" onclick="return confirmDelete();" title="$delete" class="mail-delete icon s22 delete"></a>
-</div>
-
-{{ for $mails as $mail }}
- <div id="thread-wrapper-$mail.id" class="thread-wrapper">
- {{ inc mail_conv.tpl }}{{endinc}}
- </div>
-{{ endfor }}
-
-{{ inc prv_message.tpl }}{{ endinc }}
diff --git a/view/theme/quattro/tpl/mail_list.tpl b/view/theme/quattro/tpl/mail_list.tpl
deleted file mode 100644
index 6bc6c84f6..000000000
--- a/view/theme/quattro/tpl/mail_list.tpl
+++ /dev/null
@@ -1,8 +0,0 @@
-<div class="mail-list-wrapper">
- <span class="mail-subject {{if $seen}}seen{{else}}unseen{{endif}}"><a href="message/$id" class="mail-link">$subject</a></span>
- <span class="mail-from">$from_name</span>
- <span class="mail-date">$date</span>
- <span class="mail-count">$count</span>
-
- <a href="message/dropconv/$id" onclick="return confirmDelete();" title="$delete" class="mail-delete icon s22 delete"></a>
-</div>
diff --git a/view/theme/quattro/tpl/message_side.tpl b/view/theme/quattro/tpl/message_side.tpl
deleted file mode 100644
index 9f1587096..000000000
--- a/view/theme/quattro/tpl/message_side.tpl
+++ /dev/null
@@ -1,10 +0,0 @@
-<div id="message-sidebar" class="widget">
- <div id="message-new" class="{{ if $new.sel }}selected{{ endif }}"><a href="$new.url">$new.label</a> </div>
-
- <ul class="message-ul">
- {{ for $tabs as $t }}
- <li class="tool {{ if $t.sel }}selected{{ endif }}"><a href="$t.url" class="message-link">$t.label</a></li>
- {{ endfor }}
- </ul>
-
-</div>
diff --git a/view/theme/quattro/tpl/msg-header.tpl b/view/theme/quattro/tpl/msg-header.tpl
deleted file mode 100644
index 2d1ea7a61..000000000
--- a/view/theme/quattro/tpl/msg-header.tpl
+++ /dev/null
@@ -1,97 +0,0 @@
-
-<script language="javascript" type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
-<script language="javascript" type="text/javascript">
-
-var plaintext = '$editselect';
-
-if(plaintext != 'none') {
- tinyMCE.init({
- theme : "advanced",
- mode : "specific_textareas",
- editor_selector: /(profile-jot-text|prvmail-text)/,
- plugins : "bbcode,paste",
- theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor",
- theme_advanced_buttons2 : "",
- theme_advanced_buttons3 : "",
- theme_advanced_toolbar_location : "top",
- theme_advanced_toolbar_align : "center",
- theme_advanced_blockformats : "blockquote,code",
- gecko_spellcheck : true,
- paste_text_sticky : true,
- entity_encoding : "raw",
- add_unload_trigger : false,
- remove_linebreaks : false,
- force_p_newlines : false,
- force_br_newlines : true,
- forced_root_block : '',
- convert_urls: false,
- content_css: "$baseurl/view/custom_tinymce.css",
- //Character count
- theme_advanced_path : false,
- setup : function(ed) {
- ed.onInit.add(function(ed) {
- ed.pasteAsPlainText = true;
- var editorId = ed.editorId;
- var textarea = $('#'+editorId);
- if (typeof(textarea.attr('tabindex')) != "undefined") {
- $('#'+editorId+'_ifr').attr('tabindex', textarea.attr('tabindex'));
- textarea.attr('tabindex', null);
- }
- });
- }
- });
-}
-else
- $("#prvmail-text").contact_autocomplete(baseurl+"/acl");
-
-
-</script>
-<script type="text/javascript" src="js/ajaxupload.js" ></script>
-<script>
- $(document).ready(function() {
- var uploader = new window.AjaxUpload(
- 'prvmail-upload',
- { action: 'wall_upload/$nickname',
- name: 'userfile',
- onSubmit: function(file,ext) { $('#profile-rotator').show(); },
- onComplete: function(file,response) {
- tinyMCE.execCommand('mceInsertRawHTML',false,response);
- $('#profile-rotator').hide();
- }
- }
- );
-
- });
-
- function jotGetLink() {
- reply = prompt("$linkurl");
- if(reply && reply.length) {
- $('#profile-rotator').show();
- $.get('parse_url?url=' + reply, function(data) {
- tinyMCE.execCommand('mceInsertRawHTML',false,data);
- $('#profile-rotator').hide();
- });
- }
- }
-
- function linkdropper(event) {
- var linkFound = event.dataTransfer.types.contains("text/uri-list");
- if(linkFound)
- event.preventDefault();
- }
-
- function linkdrop(event) {
- var reply = event.dataTransfer.getData("text/uri-list");
- event.target.textContent = reply;
- event.preventDefault();
- if(reply && reply.length) {
- $('#profile-rotator').show();
- $.get('parse_url?url=' + reply, function(data) {
- tinyMCE.execCommand('mceInsertRawHTML',false,data);
- $('#profile-rotator').hide();
- });
- }
- }
-
-</script>
-
diff --git a/view/theme/quattro/tpl/nav.tpl b/view/theme/quattro/tpl/nav.tpl
deleted file mode 100644
index af1fc9414..000000000
--- a/view/theme/quattro/tpl/nav.tpl
+++ /dev/null
@@ -1,95 +0,0 @@
-<header>
- {# $langselector #}
-
- <div id="site-location">$sitelocation</div>
- <div id="banner">$banner</div>
-</header>
-<nav>
- <ul>
- {{ if $userinfo }}
- <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="$sitelocation"><img src="$userinfo.icon" alt="$userinfo.name"></a>
- <ul id="nav-user-menu" class="menu-popup">
- {{ for $nav.usermenu as $usermenu }}
- <li><a class="$usermenu.2" href="$usermenu.0" title="$usermenu.3">$usermenu.1</a></li>
- {{ endfor }}
-
- {{ if $nav.notifications }}<li><a class="$nav.notifications.2" href="$nav.notifications.0" title="$nav.notifications.3" >$nav.notifications.1</a></li>{{ endif }}
- {{ if $nav.messages }}<li><a class="$nav.messages.2" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a></li>{{ endif }}
- {{ if $nav.contacts }}<li><a class="$nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.3" >$nav.contacts.1</a></li>{{ endif }}
- </ul>
- </li>
- {{ endif }}
-
- {{ if $nav.community }}
- <li id="nav-community-link" class="nav-menu $sel.community">
- <a class="$nav.community.2" href="$nav.community.0" title="$nav.community.3" >$nav.community.1</a>
- </li>
- {{ endif }}
-
- {{ if $nav.network }}
- <li id="nav-network-link" class="nav-menu $sel.network">
- <a class="$nav.network.2" href="$nav.network.0" title="$nav.network.3" >$nav.network.1</a>
- <span id="net-update" class="nav-notify"></span>
- </li>
- {{ endif }}
- {{ if $nav.home }}
- <li id="nav-home-link" class="nav-menu $sel.home">
- <a class="$nav.home.2" href="$nav.home.0" title="$nav.home.3" >$nav.home.1</a>
- <span id="home-update" class="nav-notify"></span>
- </li>
- {{ endif }}
-
- {{ if $nav.notifications }}
- <li id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1"><span class="icon s22 notify">$nav.notifications.1</span></a>
- <span id="notify-update" class="nav-notify"></span>
- <ul id="nav-notifications-menu" class="menu-popup">
- <!-- TODO: better icons! -->
- <li id="nav-notifications-mark-all" class="toolbar"><a href="#" onclick="notifyMarkAll(); return false;" title="$nav.notifications.mark.1"><span class="icon s10 edit"></span></a></a><a href="$nav.notifications.all.0" title="$nav.notifications.all.1"><span class="icon s10 plugin"></span></a></li>
- <li class="empty">$emptynotifications</li>
- </ul>
- </li>
- {{ endif }}
-
- <li id="nav-site-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-site-menu"><span class="icon s22 gear">Site</span></a>
- <ul id="nav-site-menu" class="menu-popup">
- {{ if $nav.manage }}<li><a class="$nav.manage.2" href="$nav.manage.0" title="$nav.manage.3">$nav.manage.1</a></li>{{ endif }}
-
- {{ if $nav.settings }}<li><a class="$nav.settings.2" href="$nav.settings.0" title="$nav.settings.3">$nav.settings.1</a></li>{{ endif }}
- {{ if $nav.admin }}<li><a class="$nav.admin.2" href="$nav.admin.0" title="$nav.admin.3" >$nav.admin.1</a></li>{{ endif }}
-
- {{ if $nav.logout }}<li><a class="menu-sep $nav.logout.2" href="$nav.logout.0" title="$nav.logout.3" >$nav.logout.1</a></li>{{ endif }}
- {{ if $nav.login }}<li><a class="$nav.login.2" href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a><li>{{ endif }}
- </ul>
- </li>
-
- {{ if $nav.help }}
- <li id="nav-help-link" class="nav-menu $sel.help">
- <a class="$nav.help.2" target="friendika-help" href="$nav.help.0" title="$nav.help.3" >$nav.help.1</a>
- </li>
- {{ endif }}
-
- <li id="nav-search-link" class="nav-menu $sel.search">
- <a class="$nav.search.2" href="$nav.search.0" title="$nav.search.3" >$nav.search.1</a>
- </li>
- <li id="nav-directory-link" class="nav-menu $sel.directory">
- <a class="$nav.directory.2" href="$nav.directory.0" title="$nav.directory.3" >$nav.directory.1</a>
- </li>
-
- {{ if $nav.apps }}
- <li id="nav-apps-link" class="nav-menu $sel.apps">
- <a class=" $nav.apps.2" href="#" rel="#nav-apps-menu" title="$nav.apps.3" >$nav.apps.1</a>
- <ul id="nav-apps-menu" class="menu-popup">
- {{ for $apps as $ap }}
- <li>$ap</li>
- {{ endfor }}
- </ul>
- </li>
- {{ endif }}
- </ul>
-
-</nav>
-<ul id="nav-notifications-template" style="display:none;" rel="template">
- <li><a href="{0}"><img src="{1}">{2} <span class="notif-when">{3}</span></a></li>
-</ul>
-
-<div style="position: fixed; top: 3px; left: 5px; z-index:9999">$langselector</div>
diff --git a/view/theme/quattro/tpl/nets.tpl b/view/theme/quattro/tpl/nets.tpl
deleted file mode 100644
index cbadf1361..000000000
--- a/view/theme/quattro/tpl/nets.tpl
+++ /dev/null
@@ -1,12 +0,0 @@
-<div id="nets-sidebar" class="widget">
- <h3>$title</h3>
- <div id="nets-desc">$desc</div>
-
- <ul class="nets-ul">
- <li class="tool {{ if $sel_all }}selected{{ endif }}"><a href="$base" class="nets-link nets-all">$all</a>
- {{ for $nets as $net }}
- <li class="tool {{ if $net.selected }}selected{{ endif }}"><a href="$base?f=&nets=$net.ref" class="nets-link">$net.name</a></li>
- {{ endfor }}
- </ul>
-
-</div>
diff --git a/view/theme/quattro/tpl/photo_view.tpl b/view/theme/quattro/tpl/photo_view.tpl
deleted file mode 100644
index 3b7a66271..000000000
--- a/view/theme/quattro/tpl/photo_view.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-<div id="live-display"></div>
-<h3 id="photo-album-title"><a href="$album.0">$album.1</a></h3>
-
-<div id="photo-edit-link-wrap">
-{{ if $tools }}
-<a id="photo-edit-link" href="$tools.edit.0">$tools.edit.1</a>
-|
-<a id="photo-toprofile-link" href="$tools.profile.0">$tools.profile.1</a>
-{{ endif }}
-{{ if $lock }} | <img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,'photo/$id');" /> {{ endif }}
-</div>
-
-<div id="photo-photo"><a href="$photo.href" title="$photo.title"><img src="$photo.src" /></a></div>
-{{ if $prevlink }}<div id="photo-prev-link"><a href="$prevlink.0">$prevlink.1</a></div>{{ endif }}
-{{ if $nextlink }}<div id="photo-next-link"><a href="$nextlink.0">$nextlink.1</a></div>{{ endif }}
-<div id="photo-caption">$desc</div>
-{{ if $tags }}
-<div id="in-this-photo-text">$tags.0</div>
-<div id="in-this-photo">$tags.1</div>
-{{ endif }}
-{{ if $tags.2 }}<div id="tag-remove"><a href="$tags.2">$tags.3</a></div>{{ endif }}
-
-{{ if $edit }}$edit{{ endif }}
-
-{{ if $likebuttons }}
-<div id="photo-like-div">
- $likebuttons
- $like
- $dislike
-</div>
-{{ endif }}
-<div class="wall-item-comment-wrapper">
- $comments
-</div>
-
-$paginate
-
diff --git a/view/theme/quattro/tpl/profile_vcard.tpl b/view/theme/quattro/tpl/profile_vcard.tpl
deleted file mode 100644
index 42cd0b3b2..000000000
--- a/view/theme/quattro/tpl/profile_vcard.tpl
+++ /dev/null
@@ -1,63 +0,0 @@
-<div class="vcard">
-
- <div class="tool">
- <div class="fn label">$profile.name</div>
- {{ if $profile.edit }}
- <div class="action">
- <a class="icon s16 edit ttright" href="#" rel="#profiles-menu" title="$profile.edit.3"><span>$profile.edit.1</span></a>
- <ul id="profiles-menu" class="menu-popup">
- {{ for $profile.menu.entries as $e }}
- <li>
- <a href="profiles/$e.id"><img src='$e.photo'>$e.profile_name</a>
- </li>
- {{ endfor }}
- <li><a href="profile_photo" >$profile.menu.chg_photo</a></li>
- <li><a href="profiles/new" id="profile-listing-new-link">$profile.menu.cr_new</a></li>
-
- </ul>
- </div>
- {{ endif }}
- </div>
-
-
- {{ if $pdesc }}<div class="title">$profile.pdesc</div>{{ endif }}
- <div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="$profile.photo?rev=$profile.picdate" alt="$profile.name" /></div>
-
-
-
- {{ if $location }}
- <dl class="location"><dt class="location-label">$location</dt>
- <dd class="adr">
- {{ if $profile.address }}<div class="street-address">$profile.address</div>{{ endif }}
- <span class="city-state-zip">
- <span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }}
- <span class="region">$profile.region</span>
- <span class="postal-code">$profile.postal_code</span>
- </span>
- {{ if $profile.country_name }}<span class="country-name">$profile.country_name</span>{{ endif }}
- </dd>
- </dl>
- {{ endif }}
-
- {{ if $gender }}<dl class="mf"><dt class="gender-label">$gender</dt> <dd class="x-gender">$profile.gender</dd></dl>{{ endif }}
-
- {{ if $profile.pubkey }}<div class="key" style="display:none;">$profile.pubkey</div>{{ endif }}
-
- {{ if $marital }}<dl class="marital"><dt class="marital-label"><span class="heart">&hearts;</span>$marital</dt><dd class="marital-text">$profile.marital</dd></dl>{{ endif }}
-
- {{ if $homepage }}<dl class="homepage"><dt class="homepage-label">$homepage</dt><dd class="homepage-url"><a href="$profile.homepage" >$profile.homepage</a></dd></dl>{{ endif }}
-
- {{ inc diaspora_vcard.tpl }}{{ endinc }}
-
- <div id="profile-extra-links">
- <ul>
- {{ if $connect }}
- <li><a id="dfrn-request-link" href="dfrn_request/$profile.nickname">$connect</a></li>
- {{ endif }}
- </ul>
- </div>
-</div>
-
-$contact_block
-
-
diff --git a/view/theme/quattro/tpl/saved_searches_aside.tpl b/view/theme/quattro/tpl/saved_searches_aside.tpl
deleted file mode 100644
index 9c10a26de..000000000
--- a/view/theme/quattro/tpl/saved_searches_aside.tpl
+++ /dev/null
@@ -1,15 +0,0 @@
-<div id="saved-search-list" class="widget">
- <h3 class="title">$title</h3>
-
- <ul id="saved-search-ul">
- {{ for $saved as $search }}
- <li class="tool {{if $search.selected}}selected{{endif}}">
- <a href="network/?f=&search=$search.encodedterm" class="label" >$search.term</a>
- <a href="network/?f=&remove=1&search=$search.encodedterm" class="action icon s10 delete" title="$search.delete" onclick="return confirmDelete();"></a>
- </li>
- {{ endfor }}
- </ul>
-
- $searchbox
-
-</div>
diff --git a/view/theme/quattro/tpl/search_item.tpl b/view/theme/quattro/tpl/search_item.tpl
deleted file mode 100644
index 605b0086d..000000000
--- a/view/theme/quattro/tpl/search_item.tpl
+++ /dev/null
@@ -1,91 +0,0 @@
-
-<div class="wall-item-decor">
- <span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
- {{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
- <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
-</div>
-
-<div class="wall-item-container $item.indent">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper"
- onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
- onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
- <a href="$item.profile_url" title="$item.linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$item.id">
- <img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
- </a>
- <a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
- <ul class="wall-item-menu menu-popup" id="wall-item-photo-menu-$item.id">
- $item.item_photo_menu
- </ul>
-
- </div>
- <div class="wall-item-location">$item.location</div>
- </div>
- <div class="wall-item-content">
- {{ if $item.title }}<h2><a href="$item.plink.href">$item.title</a></h2>{{ endif }}
- $item.body
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- </div>
- <div class="wall-item-tags">
- {{ for $item.tags as $tag }}
- <span class='tag'>$tag</span>
- {{ endfor }}
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="">
- {{ if $item.plink }}<a class="icon s16 link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
- </div>
- <div class="wall-item-actions">
- <div class="wall-item-actions-author">
- <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
- </div>
-
- <div class="wall-item-actions-social">
- {{ if $item.star }}
- <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
- <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
- <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
- {{ endif }}
-
- {{ if $item.vote }}
- <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
- <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
- {{ endif }}
-
- {{ if $item.vote.share }}
- <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
- {{ endif }}
- </div>
-
- <div class="wall-item-actions-tools">
-
- {{ if $item.drop.dropping }}
- <input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
- <a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
- {{ endif }}
- {{ if $item.edpost }}
- <a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
- {{ endif }}
- </div>
-
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
- <div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
- {{ if $item.conv }}
- <div class="wall-item-conv" id="wall-item-conv-$item.id" >
- <a href='$item.conv.href' id='context-$item.id' title='$item.conv.title'>$item.conv.title</a>
- {{ endif }}
- </div>
- </div>
-
-
-</div>
-
diff --git a/view/theme/quattro/tpl/theme_settings.tpl b/view/theme/quattro/tpl/theme_settings.tpl
deleted file mode 100644
index 9771ae162..000000000
--- a/view/theme/quattro/tpl/theme_settings.tpl
+++ /dev/null
@@ -1,8 +0,0 @@
-{{inc field_select.tpl with $field=$color}}{{endinc}}
-
-{{inc field_select.tpl with $field=$align}}{{endinc}}
-
-<div class="settings-submit-wrapper">
- <input type="submit" value="$submit" class="settings-submit" name="quattro-settings-submit" />
-</div>
-
diff --git a/view/theme/quattro/tpl/threaded_conversation.tpl b/view/theme/quattro/tpl/threaded_conversation.tpl
deleted file mode 100644
index 13c38acb2..000000000
--- a/view/theme/quattro/tpl/threaded_conversation.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-{{ for $threads as $item }}
-
-<div id="tread-wrapper-$item.id" class="tread-wrapper {{ if $item.threaded }}threaded{{ endif }}">
-
-
- {{ if $item.type == tag }}
- {{ inc wall_item_tag.tpl }}{{ endinc }}
- {{ else }}
- {{ inc $item.template }}{{ endinc }}
- {{ endif }}
-
-</div>
-{{ endfor }}
-
-<div id="conversation-end"></div>
-
-{{ if $dropping }}
-<a href="#" onclick="deleteCheckedItems();return false;">
- <span class="icon s22 delete text">$dropping</span>
-</a>
-{{ endif }}
-
-<script>
-// jquery color plugin from https://raw.github.com/gist/1891361/17747b50ad87f7a59a14b4e0f38d8f3fb6a18b27/gistfile1.js
- (function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={transparent:[255,255,255]}})(jQuery);
- var colWhite = {backgroundColor:'#EFF0F1'};
- var colShiny = {backgroundColor:'#FCE94F'};
-</script>
-
-{{ if $mode == display }}
-<script>
- var id = window.location.pathname.split("/").pop();
- $(window).scrollTop($('#item-'+id).position().top);
- $('#item-'+id).animate(colWhite, 1000).animate(colShiny).animate(colWhite, 2000);
-</script>
-{{ endif }}
-
diff --git a/view/theme/quattro/tpl/wall_item.tpl b/view/theme/quattro/tpl/wall_item.tpl
deleted file mode 100644
index 52ba6ede9..000000000
--- a/view/theme/quattro/tpl/wall_item.tpl
+++ /dev/null
@@ -1,90 +0,0 @@
-
-<div class="wall-item-decor">
- <span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
- {{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
- <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
-</div>
-
-<div class="wall-item-container $item.indent" id="item-$item.id">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper"
- onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
- onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
- <a href="$item.profile_url" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
- <img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
- </a>
- <a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
- <ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
- $item.item_photo_menu
- </ul>
-
- </div>
- <div class="wall-item-location">$item.location</div>
- </div>
- <div class="wall-item-content">
- {{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
- $item.body
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- </div>
- <div class="wall-item-tags">
- {{ for $item.tags as $tag }}
- <span class='tag'>$tag</span>
- {{ endfor }}
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="">
- {{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
- </div>
- <div class="wall-item-actions">
- <div class="wall-item-actions-author">
- <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
- </div>
-
- <div class="wall-item-actions-social">
- {{ if $item.star }}
- <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
- <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
- <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
- {{ endif }}
- {{ if $item.filer }}
- <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
- {{ endif }}
-
- {{ if $item.vote }}
- <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
- <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
- {{ endif }}
-
- {{ if $item.vote.share }}
- <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
- {{ endif }}
- </div>
-
- <div class="wall-item-actions-tools">
-
- {{ if $item.drop.dropping }}
- <input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
- <a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
- {{ endif }}
- {{ if $item.edpost }}
- <a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
- {{ endif }}
- </div>
-
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
- <div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
- </div>
-</div>
-
-<div class="wall-item-comment-wrapper" >
- $item.comment
-</div>
diff --git a/view/theme/quattro/tpl/wall_item_tag.tpl b/view/theme/quattro/tpl/wall_item_tag.tpl
deleted file mode 100644
index 14ad7d79c..000000000
--- a/view/theme/quattro/tpl/wall_item_tag.tpl
+++ /dev/null
@@ -1,27 +0,0 @@
-{{ if $item.thread_level!=1 }}<div class="children">{{ endif }}
-
-<div class="wall-item-container item-tag $item.indent">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper">
- <a href="$item.profile_url" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
- <img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
- </a>
- <ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
- $item.item_photo_menu
- </ul>
-
- </div>
- <div class="wall-item-location">$item.location</div>
- </div>
- <div class="wall-item-content">
- $item.ago $item.body
- </div>
- </div>
-</div>
-
-{{ if $item.thread_level!=1 }}</div>{{ endif }}
-
-{{ if $item.flatten }}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
-{{ endif }}
diff --git a/view/theme/quattro/tpl/wall_thread.tpl b/view/theme/quattro/tpl/wall_thread.tpl
deleted file mode 100644
index 030991ccb..000000000
--- a/view/theme/quattro/tpl/wall_thread.tpl
+++ /dev/null
@@ -1,144 +0,0 @@
-{{if $mode == display}}
-{{ else }}
-{{if $item.comment_firstcollapsed}}
- <div class="hide-comments-outer">
- <span id="hide-comments-total-$item.id"
- class="hide-comments-total">$item.num_comments</span>
- <span id="hide-comments-$item.id"
- class="hide-comments fakelink"
- onclick="showHideComments($item.id);">$item.hide_text</span>
- {{ if $item.thread_level==3 }} -
- <span id="hide-thread-$item-id"
- class="fakelink"
- onclick="showThread($item.id);">expand</span> /
- <span id="hide-thread-$item-id"
- class="fakelink"
- onclick="hideThread($item.id);">collapse</span> thread{{ endif }}
- </div>
- <div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
-{{endif}}
-{{ endif }}
-
-{{ if $item.thread_level!=1 }}<div class="children">{{ endif }}
-
-<div class="wall-item-decor">
- <span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
- {{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
- <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
-</div>
-
-<div class="wall-item-container $item.indent" id="item-$item.id">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper"
- onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
- onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
- <a href="$item.profile_url" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
- <img src="$item.thumb" class="contact-photo$item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
- </a>
- <a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
- <ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
- $item.item_photo_menu
- </ul>
-
- </div>
- <div class="wall-item-location">$item.location</div>
- </div>
- <div class="wall-item-content">
- {{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
- $item.body
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- </div>
- <div class="wall-item-tags">
- {{ for $item.tags as $tag }}
- <span class='tag'>$tag</span>
- {{ endfor }}
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="">
- {{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
- </div>
- <div class="wall-item-actions">
- <div class="wall-item-actions-author">
- <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
- </div>
-
- <div class="wall-item-actions-social">
- {{ if $item.star }}
- <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
- <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
- <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
- {{ endif }}
- {{ if $item.filer }}
- <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
- {{ endif }}
-
- {{ if $item.vote }}
- <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
- <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
- {{ endif }}
-
- {{ if $item.vote.share }}
- <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
- {{ endif }}
- </div>
-
- <div class="wall-item-actions-tools">
-
- {{ if $item.drop.dropping }}
- <input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
- <a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
- {{ endif }}
- {{ if $item.edpost }}
- <a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
- {{ endif }}
- </div>
-
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
- <div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
- </div>
- {{ if $item.threaded }}{{ if $item.comment }}{{ if $item.thread_level!=1 }}
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-comment-wrapper">
- $item.comment
- </div>
- </div>
- {{ endif }}{{ endif }}{{ endif }}
-
-</div>
-
-
-
-{{ for $item.children as $child }}
- {{ if $item.type == tag }}
- {{ inc wall_item_tag.tpl with $item=$child }}{{ endinc }}
- {{ else }}
- {{ inc $item.template with $item=$child }}{{ endinc }}
- {{ endif }}
-{{ endfor }}
-
-{{ if $item.thread_level!=1 }}</div>{{ endif }}
-
-
-{{if $mode == display}}
-{{ else }}
-{{if $item.comment_lastcollapsed}}</div>{{endif}}
-{{ endif }}
-
-{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
-{{ endif }}{{ endif }}{{ endif }}
-
-
-{{ if $item.flatten }}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
-{{ endif }}
diff --git a/view/theme/quattro/tpl/wallwall_item.tpl b/view/theme/quattro/tpl/wallwall_item.tpl
deleted file mode 100644
index b5057ee9c..000000000
--- a/view/theme/quattro/tpl/wallwall_item.tpl
+++ /dev/null
@@ -1,96 +0,0 @@
-<div class="wall-item-decor">
- <span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
- {{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
- <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
-</div>
-
-<div class="wall-item-container $item.indent" id="item-$item.id">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper mframe wwfrom"
- onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
- onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
- <a href="$item.profile_url" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
- <img src="$item.thumb" class="contact-photo $item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
- </a>
- <a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
- <ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
- $item.item_photo_menu
- </ul>
-
- </div>
- <div class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
- <a href="$item.owner_url" title="$item.olinktitle" class="contact-photo-link" id="wall-item-ownerphoto-link-$item.id">
- <img src="$item.owner_photo" class="contact-photo $item.osparkle" id="wall-item-ownerphoto-$item.id" alt="$item.owner_name" />
- </a>
- </div>
- <div class="wall-item-location">$item.location</div>
- </div>
- <div class="wall-item-content">
- {{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
- $item.body
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- </div>
- <div class="wall-item-tags">
- {{ for $item.tags as $tag }}
- <span class='tag'>$tag</span>
- {{ endfor }}
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- {{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
- </div>
- <div class="wall-item-actions">
- <div class="wall-item-actions-author">
- <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
- <br/>$item.to <a href="$item.owner_url" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall
-
- </div>
-
- <div class="wall-item-actions-social">
- {{ if $item.star }}
- <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
- <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
- <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
-
- {{ endif }}
- {{ if $item.filer }}
- <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
- {{ endif }}
-
- {{ if $item.vote }}
- <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
- <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
- {{ endif }}
-
- {{ if $item.vote.share }}
- <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
- {{ endif }}
- </div>
-
- <div class="wall-item-actions-tools">
-
- {{ if $item.drop.dropping }}
- <input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
- <a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
- {{ endif }}
- {{ if $item.edpost }}
- <a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
- {{ endif }}
- </div>
-
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
- <div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
- </div>
-</div>
-<div class="wall-item-comment-wrapper" >
- $item.comment
-</div>
diff --git a/view/theme/quattro/tpl/wallwall_thread.tpl b/view/theme/quattro/tpl/wallwall_thread.tpl
deleted file mode 100644
index 777405d9a..000000000
--- a/view/theme/quattro/tpl/wallwall_thread.tpl
+++ /dev/null
@@ -1,151 +0,0 @@
-{{if $mode == display}}
-{{ else }}
-{{if $item.comment_firstcollapsed}}
- <div class="hide-comments-outer">
- <span id="hide-comments-total-$item.id"
- class="hide-comments-total">$item.num_comments</span>
- <span id="hide-comments-$item.id"
- class="hide-comments fakelink"
- onclick="showHideComments($item.id);">$item.hide_text</span>
- {{ if $item.thread_level==3 }} -
- <span id="hide-thread-$item-id"
- class="fakelink"
- onclick="showThread($item.id);">expand</span> /
- <span id="hide-thread-$item-id"
- class="fakelink"
- onclick="hideThread($item.id);">collapse</span> thread{{ endif }}
- </div>
- <div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
-{{endif}}
-{{ endif }}
-
-{{ if $item.thread_level!=1 }}<div class="children">{{ endif }}
-
-<div class="wall-item-decor">
- <span class="icon s22 star $item.isstarred" id="starred-$item.id" title="$item.star.starred">$item.star.starred</span>
- {{ if $item.lock }}<span class="icon s22 lock fakelink" onclick="lockview(event,$item.id);" title="$item.lock">$item.lock</span>{{ endif }}
- <img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
-</div>
-
-<div class="wall-item-container $item.indent" id="item-$item.id">
- <div class="wall-item-item">
- <div class="wall-item-info">
- <div class="contact-photo-wrapper mframe wwfrom"
- onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
- onmouseout="t$item.id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$item.id\'); closeMenu(\'wall-item-photo-menu-$item.id\');',200)">
- <a href="$item.profile_url" title="$item.linktitle" class="contact-photo-link" id="wall-item-photo-link-$item.id">
- <img src="$item.thumb" class="contact-photo $item.sparkle" id="wall-item-photo-$item.id" alt="$item.name" />
- </a>
- <a href="#" rel="#wall-item-photo-menu-$item.id" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-$item.id">menu</a>
- <ul class="contact-menu menu-popup" id="wall-item-photo-menu-$item.id">
- $item.item_photo_menu
- </ul>
-
- </div>
- <div class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
- <a href="$item.owner_url" title="$item.olinktitle" class="contact-photo-link" id="wall-item-ownerphoto-link-$item.id">
- <img src="$item.owner_photo" class="contact-photo $item.osparkle" id="wall-item-ownerphoto-$item.id" alt="$item.owner_name" />
- </a>
- </div>
- <div class="wall-item-location">$item.location</div>
- </div>
- <div class="wall-item-content">
- {{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
- $item.body
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- </div>
- <div class="wall-item-tags">
- {{ for $item.tags as $tag }}
- <span class='tag'>$tag</span>
- {{ endfor }}
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links">
- {{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
- </div>
- <div class="wall-item-actions">
- <div class="wall-item-actions-author">
- <a href="$item.profile_url" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
- <br/>$item.to <a href="$item.owner_url" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall
-
- </div>
-
- <div class="wall-item-actions-social">
- {{ if $item.star }}
- <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classdo" title="$item.star.do">$item.star.do</a>
- <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;" class="$item.star.classundo" title="$item.star.undo">$item.star.undo</a>
- <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
-
- {{ endif }}
- {{ if $item.filer }}
- <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
- {{ endif }}
-
- {{ if $item.vote }}
- <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
- <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
- {{ endif }}
-
- {{ if $item.vote.share }}
- <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
- {{ endif }}
- </div>
-
- <div class="wall-item-actions-tools">
-
- {{ if $item.drop.dropping }}
- <input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
- <a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
- {{ endif }}
- {{ if $item.edpost }}
- <a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
- {{ endif }}
- </div>
-
- </div>
- </div>
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
- <div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
- </div>
-
- {{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent==comment }}
- <div class="wall-item-bottom">
- <div class="wall-item-links"></div>
- <div class="wall-item-comment-wrapper">
- $item.comment
- </div>
- </div>
- {{ endif }}{{ endif }}{{ endif }}
-</div>
-
-
-{{ for $item.children as $child }}
- {{ if $item.type == tag }}
- {{ inc wall_item_tag.tpl with $item=$child }}{{ endinc }}
- {{ else }}
- {{ inc $item.template with $item=$child }}{{ endinc }}
- {{ endif }}
-{{ endfor }}
-
-{{ if $item.thread_level!=1 }}</div>{{ endif }}
-
-
-{{if $mode == display}}
-{{ else }}
-{{if $item.comment_lastcollapsed}}</div>{{endif}}
-{{ endif }}
-
-{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
-{{ endif }}{{ endif }}{{ endif }}
-
-
-{{ if $item.flatten }}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
-{{ endif }}