Merge https://github.com/friendica/friendica into pull
This commit is contained in:
commit
724e1d15d0
|
@ -567,8 +567,17 @@
|
|||
$_REQUEST['profile_uid'] = local_user();
|
||||
if(requestdata('parent'))
|
||||
$_REQUEST['type'] = 'net-comment';
|
||||
else
|
||||
else {
|
||||
$_REQUEST['type'] = 'wall';
|
||||
if(x($_FILES,'media')) {
|
||||
// upload the image if we have one
|
||||
$_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
|
||||
require_once('mod/wall_upload.php');
|
||||
$media = wall_upload_post($a);
|
||||
if(strlen($media)>0)
|
||||
$_REQUEST['body'] .= "\n\n".$media;
|
||||
}
|
||||
}
|
||||
|
||||
// set this so that the item_post() function is quiet and doesn't redirect or emit json
|
||||
|
||||
|
|
|
@ -134,6 +134,8 @@ function ping_init(&$a) {
|
|||
|
||||
|
||||
function xmlize($href, $name, $url, $photo, $date, $seen, $message){
|
||||
$data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
|
||||
call_hooks('ping_xmlize', $data);
|
||||
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
|
||||
return sprintf ( $notsxml,
|
||||
xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)
|
||||
|
|
|
@ -5,19 +5,26 @@ require_once('Photo.php');
|
|||
function wall_upload_post(&$a) {
|
||||
|
||||
if($a->argc > 1) {
|
||||
$nick = $a->argv[1];
|
||||
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
|
||||
dbesc($nick)
|
||||
);
|
||||
if(! count($r))
|
||||
return;
|
||||
if(! x($_FILES,'media')) {
|
||||
$nick = $a->argv[1];
|
||||
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
|
||||
dbesc($nick)
|
||||
);
|
||||
|
||||
if(! count($r))
|
||||
return;
|
||||
}
|
||||
else {
|
||||
$user_info = api_get_user($a);
|
||||
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
|
||||
dbesc($user_info['screen_name'])
|
||||
);
|
||||
}
|
||||
}
|
||||
else
|
||||
return;
|
||||
|
||||
|
||||
|
||||
$can_post = false;
|
||||
$visitor = 0;
|
||||
|
||||
|
@ -47,12 +54,19 @@ function wall_upload_post(&$a) {
|
|||
killme();
|
||||
}
|
||||
|
||||
if(! x($_FILES,'userfile'))
|
||||
if(! x($_FILES,'userfile') && ! x($_FILES,'media'))
|
||||
killme();
|
||||
|
||||
$src = $_FILES['userfile']['tmp_name'];
|
||||
$filename = basename($_FILES['userfile']['name']);
|
||||
$filesize = intval($_FILES['userfile']['size']);
|
||||
if(x($_FILES,'userfile')) {
|
||||
$src = $_FILES['userfile']['tmp_name'];
|
||||
$filename = basename($_FILES['userfile']['name']);
|
||||
$filesize = intval($_FILES['userfile']['size']);
|
||||
}
|
||||
elseif(x($_FILES,'media')) {
|
||||
$src = $_FILES['media']['tmp_name'];
|
||||
$filename = basename($_FILES['media']['name']);
|
||||
$filesize = intval($_FILES['media']['size']);
|
||||
}
|
||||
|
||||
$maximagesize = get_config('system','maximagesize');
|
||||
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
|
||||
Liebe/r $username,
|
||||
Hallo $[username],
|
||||
|
||||
großartige Neuigkeiten... '$fn' von '$dfrn_url' hat deine Kontaktaufnahme auf
|
||||
'$sitename' bestätigt.
|
||||
Großartige Neuigkeiten... '$[fn]' auf '$[dfrn_url]' hat
|
||||
deine Kontaktanfrage auf '$[sitename]' bestätigt.
|
||||
|
||||
Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Fotos und
|
||||
EMail ohne Einschränkungen austauschen.
|
||||
Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails
|
||||
ohne einschränkungen austauschen.
|
||||
|
||||
Bitte rufe deine 'Kontakte' Seite auf $sitename auf um du Änderungen an
|
||||
dieser Freundschaft vorzunehmen.
|
||||
Rufe deine 'Kontakte' Seite auf $[sitename] auf wenn du
|
||||
Änderungen an diesem Kontakt vornehmen willst.
|
||||
|
||||
$siteurl
|
||||
$[siteurl]
|
||||
|
||||
[Du könntest zum Beispiel ein neue Profil anlegen mit Informationen die nicht
|
||||
für die Allgemeinheit bestimmt sind, die du aber gerne mit '$fn' teilen
|
||||
möchtest].
|
||||
[Du könntest z.B. ein spezielles Profil anlegen, das Informationen enthällt
|
||||
die nicht für die breite Öffentlichkeit sichtbar sein sollen und es für '$[fn]' zum Betrachten freigeben].
|
||||
|
||||
Mit freundlichen Grüßen
|
||||
$sitename Administrator
|
||||
Beste Grüße,
|
||||
|
||||
|
||||
$[sitename] Administrator
|
||||
|
||||
|
|
@ -1,18 +1,22 @@
|
|||
|
||||
Liebe/r $username,
|
||||
Hallo $[username],
|
||||
|
||||
'$fn' von '$dfrn_url' hat deine Kontaktanfrage auf '$sitename' bestätigt.
|
||||
'$[fn]' auf '$[dfrn_url]' wurde akzeptiert
|
||||
Deine Verbindungsanfrage auf '$[sitename]'.
|
||||
|
||||
'$fn' hat sich dazu entschlossen dich als "Fan" mit eingeschränkten
|
||||
Kommunikationsmöglichkeiten zu akzeptieren. Dies umfasst private Nachrichten
|
||||
und einige Profilaktivitäten. Sollte dies eine Prominenten oder
|
||||
Gemeinschaftsseite sein, wurden diese Einstellungen automatisch vorgenommen.
|
||||
'$[fn]' hat entschieden Dich als "Fan" zu akzeptieren, was ein
|
||||
paar Formen der Kommunikation einschränkt - wie das schreiben von privaten Nachrichten und einige Profil
|
||||
Interaktionen. Wenn das ein Promi-Konto oder eine Forum-Seite ist, werden die Einstellungen
|
||||
automatisch angewendet.
|
||||
|
||||
'$fn' kann sich in Zukunft dazu entschließen eure Beziehung in eine beidseitige
|
||||
Freundschaft oder freizügigere Beziehung zu erweitern.
|
||||
'$[fn]' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
|
||||
Beziehung in der Zukunft erweitert wird.
|
||||
|
||||
Ab sofort wirst du Statusmitteilungen von '$fn' erhalten, die auf deiner
|
||||
'Netzwerkseite' erscheinen werden.
|
||||
Du empfängst jetzt die öffentlichen Beiträge von '$[fn]',
|
||||
welche auf der "Netzwerk" Seite erscheinen werden
|
||||
|
||||
Mit freundlichen Grüßen,
|
||||
$sitename Administrator
|
||||
$[siteurl]
|
||||
|
||||
Beste Grüße,
|
||||
|
||||
$[sitename] Administrator
|
1147
view/de/messages.po
1147
view/de/messages.po
File diff suppressed because it is too large
Load diff
|
@ -1,20 +1,20 @@
|
|||
|
||||
Liebe/r $username,
|
||||
dein Passwort wurde wie gewünscht geändert. Bitte hebe diese Informationen
|
||||
für deine Unterlagen auf (oder ändere das Passwort augenblicklich in etwas
|
||||
das du dir merken kannst).
|
||||
Hallo $[username],
|
||||
Dein Passwort wurde wie gewünscht geändert. Bitte bewahre diese
|
||||
Informationen in deinen Unterlagen auf (oder ändere dein Passwort sofort
|
||||
in etwas, was du dir merken kannst).
|
||||
|
||||
|
||||
Deine Anmeldedaten sind die Folgenden:
|
||||
Deine Login Daten wurden wie folgt geändert:
|
||||
|
||||
Adresse der Seite: $siteurl
|
||||
Anmelde Name: $email
|
||||
Passwort: $new_password
|
||||
Adresse der Seite: $[siteurl]
|
||||
Login Name: $[email]
|
||||
Passwort: $[new_password]
|
||||
|
||||
Du kannst diesen Passwort auf der "Einstellungen" Seite deines Accounts
|
||||
ändern nachdem du angemeldet bits.
|
||||
Du kannst dein Passwort unter deinen Account-Einstellungen ändern, wenn du angemeldet bist.
|
||||
|
||||
|
||||
Viele Grüße,
|
||||
$sitename Administrator
|
||||
Beste Grüße,
|
||||
$[sitename] Administrator
|
||||
|
||||
|
|
@ -1,19 +1,34 @@
|
|||
|
||||
Liebe/r $username,
|
||||
danke für die Registrierung bei $sitename. Dein neuer Account wurde angelegt.
|
||||
Die Anmeldedetails sind die Folgenden.
|
||||
|
||||
Adresse der Seite: $siteurl
|
||||
Anmelde Name: $email
|
||||
Passwort: $password
|
||||
|
||||
Du kannst dein Passwort auf der "Einstellungen" Seite deines Accounts ändern
|
||||
nachdem du dich angemeldet hast.
|
||||
|
||||
Nimm dir bitte ein paar Augenblicke Zeit um die anderen Einstellungen deines
|
||||
Accounts zu bearbeiten.
|
||||
|
||||
Vielen Dank und Willkommen auf $sitename.
|
||||
|
||||
Mit freundlichem Gruß,
|
||||
$sitename Administrator
|
||||
|
||||
Hallo $[username],
|
||||
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
||||
Die Login Details sind die folgenden:
|
||||
|
||||
|
||||
Adresse der Seite: $[siteurl]
|
||||
Login Name: $[email]
|
||||
Passwort: $[password]
|
||||
|
||||
Du kannst das Passwort in den "Einstellungen" zu deinem Account ändern
|
||||
nachdem du dich eingeloggt hast.
|
||||
|
||||
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite zu überprüfen.
|
||||
|
||||
Eventuell möchtest du außerdem einige grundlegenden Informationen in dein Standart-Profil eintragen
|
||||
(auf der "Profile" Seite) damit andere Leute dich einfacher finden können.
|
||||
|
||||
Wir empfehlen den kompletten Namen anzugeben, ein eigenes Profil-Foto,
|
||||
ein paar "Profil-Schlüsselwörter" anzugeben (damit man leichter Gleichinteressierte finden kann) - und
|
||||
natürlich in welchen Land Du lebst; wenn Du es nicht genauer angeben möchtest
|
||||
dann das.
|
||||
|
||||
Wir respektieren Ihr Recht auf Privatsphäre, und keines dieser Elemente sind notwendig.
|
||||
Wenn Du hier neu bist und keinen kennst, wird man Dir helfen
|
||||
ein paar neue und interessante Freunde zu finden.
|
||||
|
||||
|
||||
Danke dir und willkommen auf $[sitename].
|
||||
|
||||
Beste Grüße,
|
||||
$[sitename] Administrator
|
||||
|
||||
|
|
@ -1,21 +1,25 @@
|
|||
|
||||
Ein neuer Nutzer hat sich auf $sitename registriert. Diese Registration
|
||||
benötigt noch deine Zustimmung.
|
||||
|
||||
Die Anmeldedetails sind Folgende:
|
||||
|
||||
Kompletter Name: $username
|
||||
Adresse der Seite: $siteurl
|
||||
Anmelde Name: $email
|
||||
Eine Neuanmeldung auf $[sitename] benötigt
|
||||
deine Aufmerksamkeit.
|
||||
|
||||
|
||||
Um dieser Anmeldung zuzustimmen folge bitte diesem Link:
|
||||
Die Login-Einzelheiten sind die folgenden:
|
||||
|
||||
$siteurl/regmod/allow/$hash
|
||||
Kompletter Name: $[username]
|
||||
Adresse der Seite: $[siteurl]
|
||||
Login Name: $[email]
|
||||
|
||||
|
||||
Um die Anfrage abzulehen und den Account zu entfernen folge diesem Link:
|
||||
Um die Anfrage zu bestätigen besuche bitte:
|
||||
|
||||
$siteurl/regmod/deny/$hash
|
||||
|
||||
Besten Dank!
|
||||
$[siteurl]/regmod/allow/$[hash]
|
||||
|
||||
|
||||
Um die Anfrage abzulehnen und den Account zu löschen besuche bitte:
|
||||
|
||||
|
||||
$[siteurl]/regmod/deny/$[hash]
|
||||
|
||||
|
||||
Danke!
|
||||
|
|
|
@ -1,14 +1,17 @@
|
|||
|
||||
Liebe/r $myname,
|
||||
Hallo $[myname],
|
||||
|
||||
du hast gerade eine Kontaktanfrage von '$requestor' auf $sitename erhalten.
|
||||
du hast eine Kontaktanfrage von '$[requestor]' auf $[sitename]
|
||||
|
||||
Du kannst dir das Profil unter $url ansehen.
|
||||
erhalten.
|
||||
|
||||
Bitte melde dich auf deiner Seite an um die komplette Vorstellung anzusehen
|
||||
und bestätige oder ignoriere die Anfrage.
|
||||
Du kannst sein/ihr Profil unter $[url] finden.
|
||||
|
||||
$siteurl
|
||||
Bitte melde dich an um die komplette Vorstellung einzusehen
|
||||
und die Anfrage zu bestätigen oder zu ignorieren oder abzulehnen.
|
||||
|
||||
Schöne Grüße,
|
||||
$sitename Administrator
|
||||
$[siteurl]
|
||||
|
||||
Beste Grüße,
|
||||
|
||||
$[sitename] Administrator
|
|
@ -1214,7 +1214,7 @@ $a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
|
|||
$a->strings["Connect Services"] = "Verbinde Dienste";
|
||||
$a->strings["PostIt to Friendica"] = "Bei Friendica posten";
|
||||
$a->strings["Post to Friendica"] = "Wenn du diesen Link";
|
||||
$a->strings[" from anywhere by bookmarking this Link."] = " zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen.";
|
||||
$a->strings[" from anywhere by bookmarking this Link."] = "zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen.";
|
||||
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
|
||||
$a->strings["Your profile page"] = "Deine Profilseite";
|
||||
$a->strings["Your contacts"] = "Deine Kontakte";
|
||||
|
|
|
@ -14,8 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
|
|
@ -11,15 +11,15 @@
|
|||
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
|
||||
</div>
|
||||
<div class="comment-edit-photo-end"></div>
|
||||
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);tautogrow($id);cmtBbOpen($id);" onBlur="commentClose(this,$id);cmtBbClose($id);" >$comment</textarea>
|
||||
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);tautogrow($id);cmtBbOpen($id);" >$comment</textarea>
|
||||
<div class="comment-edit-bb-$id" style="display:none;">
|
||||
<a class="icon bb-image" style="cursor: pointer;" onclick="insertFormatting('img',$id);">img</a>
|
||||
<a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('url',$id);">url</a>
|
||||
<a class="icon bb-video" style="cursor: pointer;" onclick="insertFormatting('video',$id);">video</a>
|
||||
<a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('u',$id);">u</a>
|
||||
<a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('i',$id);">i</a>
|
||||
<a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('b',$id);">b</a>
|
||||
<a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('quote',$id);">quote</a>
|
||||
<a class="icon bb-image" style="cursor: pointer;" onclick="insertFormatting('$comment','img',$id);">img</a>
|
||||
<a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('$comment','url',$id);">url</a>
|
||||
<a class="icon bb-video" style="cursor: pointer;" onclick="insertFormatting('$comment','video',$id);">video</a>
|
||||
<a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('$comment','u',$id);">u</a>
|
||||
<a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('$comment','i',$id);">i</a>
|
||||
<a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('$comment','b',$id);">b</a>
|
||||
<a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('$comment','quote',$id);">quote</a>
|
||||
</div>
|
||||
{{ if $qcomment }}
|
||||
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
@ -72,8 +72,8 @@
|
|||
<td class='login_date'>$u.page-flags</td>
|
||||
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
<td class="tools" style="width:60px;">
|
||||
<a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:scroll(0,0); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1395,7 +1395,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1388,7 +1388,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1370,7 +1370,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1362,7 +1362,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1624,7 +1624,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1616,7 +1616,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
@ -72,8 +72,8 @@
|
|||
<td class='login_date'>$u.page-flags</td>
|
||||
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
<td class="tools" style="width:60px;">
|
||||
<a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:scroll(0,0); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1357,7 +1357,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1350,7 +1350,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1337,7 +1337,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1329,7 +1329,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1581,7 +1581,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1574,7 +1574,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
@ -72,8 +72,8 @@
|
|||
<td class='login_date'>$u.page-flags</td>
|
||||
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
<td class="tools" style="width:60px;">
|
||||
<a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:scroll(0,0); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-dark/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-dark/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1372,7 +1372,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-dark/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-dark/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1351,7 +1351,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1337,7 +1337,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-dark/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-dark/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1329,7 +1329,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1581,7 +1581,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-dark/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-dark/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1574,7 +1574,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
@ -72,8 +72,8 @@
|
|||
<td class='login_date'>$u.page-flags</td>
|
||||
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
<td class="tools" style="width:60px;">
|
||||
<a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:scroll(0,0); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-green/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1371,7 +1371,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-green/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1365,7 +1365,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-green/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1346,7 +1346,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-green/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1338,7 +1338,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1601,7 +1601,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1600,7 +1600,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
@ -72,8 +72,8 @@
|
|||
<td class='login_date'>$u.page-flags</td>
|
||||
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
<td class="tools" style="width:60px;">
|
||||
<a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:scroll(0,0); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1371,7 +1371,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1365,7 +1365,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1346,7 +1346,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1338,7 +1338,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1601,7 +1601,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1600,7 +1600,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<h1>$title - $page</h1>
|
||||
|
||||
<form action="$baseurl/admin/users" method="post">
|
||||
|
||||
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||
<h3>$h_pending</h3>
|
||||
{{ if $pending }}
|
||||
<table id='pending'>
|
||||
|
@ -72,8 +72,8 @@
|
|||
<td class='login_date'>$u.page-flags</td>
|
||||
<td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||
<td class="tools" style="width:60px;">
|
||||
<a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
<a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
|
||||
<a href="$baseurl/admin/users/delete/$u.uid?t=$form_security_token" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
{{ endfor }}
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:scroll(0,0); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-red/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1391,7 +1391,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-red/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1384,7 +1384,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-red/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1350,7 +1350,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-red/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1342,7 +1342,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1609,7 +1609,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1602,7 +1602,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
|
4
view/theme/diabook/footer.tpl
Normal file
4
view/theme/diabook/footer.tpl
Normal file
|
@ -0,0 +1,4 @@
|
|||
<div style="display: table-cell"></div>
|
||||
<div style="border-top: 1px solid #D2D2D2; width: 100%;margin-top: 30px;">
|
||||
<a style="float:right; color:#333;margin-right:10px;display: table;margin-top: 5px;" href="friendica" title="Site Info / Impressum" >Info / Impressum</a>
|
||||
</div>
|
|
@ -136,7 +136,7 @@
|
|||
</nav>
|
||||
|
||||
|
||||
<div style="position: fixed; bottom: 5px; right: 10px;"><a href="javascript:$('html, body').animate({scrollTop:0}, 'slow'); "><img src="view/theme/diabook/icons/scroll_top.png" title="scroll to top"></a></div>
|
||||
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div>
|
||||
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
|
||||
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<a class="embed_yt" href='$embedurl' onclick='this.innerHTML=Base64.decode("$escapedhtml"); yt_iframe(); return false;' style='float:left; margin: 1em; position: relative;'>
|
||||
<a class="embed_yt" href='$embedurl' onclick='this.innerHTML=Base64.decode("$escapedhtml"); yt_iframe();javascript:$(this).parent().css("height", "370px"); return false;' style='float:left; margin: 1em; position: relative;'>
|
||||
<img width='$tw' height='$th' src='$turl' >
|
||||
<div style='position: absolute; top: 0px; left: 0px; width: $twpx; height: $thpx; background: url(images/icons/48/play.png) no-repeat center center;'></div>
|
||||
</a>
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1334,7 +1334,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
@ -1480,14 +1480,14 @@ transition: all 0.2s ease-in-out;
|
|||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1326,7 +1326,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
@ -1471,14 +1471,14 @@ transition: all 0.2s ease-in-out;
|
|||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1309,7 +1309,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
@ -1455,14 +1455,14 @@ transition: all 0.2s ease-in-out;
|
|||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1302,7 +1302,7 @@ transition: all 0.2s ease-in-out;
|
|||
max-width: 420px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
|
@ -1447,14 +1447,14 @@ transition: all 0.2s ease-in-out;
|
|||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1457,7 +1457,7 @@ body .pageheader{
|
|||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-photo-container .wall-item-content {
|
||||
|
@ -1690,14 +1690,14 @@ body .pageheader{
|
|||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 28px; background-repeat: no-repeat;
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
|
@ -1457,7 +1457,7 @@ body .pageheader{
|
|||
max-width: 720px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
|
||||
}
|
||||
.wall-item-photo-container .wall-item-content {
|
||||
|
||||
|
@ -1688,14 +1688,14 @@ body .pageheader{
|
|||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #3465A4;
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
/*
|
||||
* Name: Diabook
|
||||
* Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
||||
* Version: (Version: 1.021)
|
||||
* Version: (Version: 1.022)
|
||||
* Author:
|
||||
*/
|
||||
|
||||
|
||||
//print diabook-version for debugging
|
||||
$diabook_version = "Diabook (Version: 1.021)";
|
||||
$diabook_version = "Diabook (Version: 1.022)";
|
||||
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
||||
|
||||
//change css on network and profilepages
|
||||
|
@ -291,7 +291,9 @@ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
|
|||
// custom css
|
||||
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
||||
|
||||
|
||||
//footer
|
||||
$tpl = get_markup_template('footer.tpl');
|
||||
$a->page['footer'] .= replace_macros($tpl, array());
|
||||
|
||||
//load jquery.cookie.js
|
||||
$cookieJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.cookie.js";
|
||||
|
@ -355,12 +357,18 @@ $(document).ready(function() {
|
|||
}
|
||||
else $(this).attr("src",ifr_source+"?"+wmode);
|
||||
});
|
||||
|
||||
$("a[href=#top]").click(function() {
|
||||
$("html, body").animate({scrollTop:0}, "slow");
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
function yt_iframe() {
|
||||
|
||||
|
||||
|
||||
$("iframe").load(function() {
|
||||
var ifr_src = $(this).contents().find("body iframe").attr("src");
|
||||
$("iframe").contents().find("body iframe").attr("src", ifr_src+"&wmode=transparent");
|
||||
|
@ -480,7 +488,7 @@ function close_lastlikes(){
|
|||
$a->page['htmlhead'] .= '
|
||||
|
||||
<script>
|
||||
function insertFormatting(BBcode,id) {
|
||||
function insertFormatting(comment,BBcode,id) {
|
||||
|
||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||
if(tmpStr == comment) {
|
||||
|
|
|
@ -910,22 +910,20 @@ width: 100%;
|
|||
padding: 2px 20px 5px 0;
|
||||
}
|
||||
#profile-jot-text_parent {
|
||||
/*border-radius: 10px;*/
|
||||
box-shadow: 5px 0 10px 0 #111;
|
||||
}
|
||||
#profile-jot-text_tbl {
|
||||
margin-bottom: 10px;
|
||||
/*border-radius: 10px;*/
|
||||
background: #888;
|
||||
background: #777;
|
||||
}
|
||||
#profile-jot-text_ifr {
|
||||
width:99.900002% !important;
|
||||
}
|
||||
#profile-jot-text_toolbargroup {
|
||||
background: #888;
|
||||
background: #777;
|
||||
}
|
||||
.mceCenter table tr {
|
||||
background: #888;
|
||||
background: #777;
|
||||
}
|
||||
[id$="jot-text_ifr"] {
|
||||
width: 99.900002% !important;
|
||||
|
@ -936,14 +934,20 @@ width: 100%;
|
|||
color: #2e2f2e;
|
||||
background: #eec;
|
||||
}
|
||||
.mceFirst tr {
|
||||
background: #888;
|
||||
.defaultSkin tr.mceFirst {
|
||||
background: #777;
|
||||
}
|
||||
.mceFirst td {
|
||||
/*border-radius: 10px 10px 0px 0px;*/
|
||||
.defaultSkin td.mceFirst {
|
||||
background-color: #eec;
|
||||
}
|
||||
.mceLast td {
|
||||
/*border-radius: 0 0 10px 10px;*/
|
||||
.defaultSkin td.mceLast {
|
||||
background-color: #eec;
|
||||
}
|
||||
.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {
|
||||
background-color: #eec;
|
||||
}
|
||||
.defaultSkin .mceButtonDisabled .mceIcon {
|
||||
background-color: #eec;
|
||||
}
|
||||
#profile-attach-wrapper,
|
||||
#profile-audio-wrapper,
|
||||
|
|
|
@ -911,22 +911,20 @@ width: 100%;
|
|||
padding: 2px 20px 5px 0;
|
||||
}
|
||||
#profile-jot-text_parent {
|
||||
/*border-radius: 10px;*/
|
||||
box-shadow: 5px 0 10px 0 #111;
|
||||
}
|
||||
#profile-jot-text_tbl {
|
||||
margin-bottom: 10px;
|
||||
/*border-radius: 10px;*/
|
||||
background: #888;
|
||||
background: #777;
|
||||
}
|
||||
#profile-jot-text_ifr {
|
||||
width:99.900002% !important;
|
||||
}
|
||||
#profile-jot-text_toolbargroup {
|
||||
background: #888;
|
||||
background: #777;
|
||||
}
|
||||
.mceCenter table tr {
|
||||
background: #888;
|
||||
background: #777;
|
||||
}
|
||||
[id$="jot-text_ifr"] {
|
||||
width: 99.900002% !important;
|
||||
|
@ -937,14 +935,20 @@ width: 100%;
|
|||
color: #2e2f2e;
|
||||
background: #eec;
|
||||
}
|
||||
.mceFirst tr {
|
||||
background: #888;
|
||||
.defaultSkin tr.mceFirst {
|
||||
background: #777;
|
||||
}
|
||||
.mceFirst td {
|
||||
/*border-radius: 10px 10px 0px 0px;*/
|
||||
.defaultSkin td.mceFirst {
|
||||
background-color: #eec;
|
||||
}
|
||||
.mceLast td {
|
||||
/*border-radius: 0 0 10px 10px;*/
|
||||
.defaultSkin td.mceLast {
|
||||
background-color: #eec;
|
||||
}
|
||||
.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {
|
||||
background-color: #eec;
|
||||
}
|
||||
.defaultSkin .mceButtonDisabled .mceIcon {
|
||||
background-color: #eec;
|
||||
}
|
||||
#profile-attach-wrapper,
|
||||
#profile-audio-wrapper,
|
||||
|
|
Loading…
Reference in a new issue