Merge https://github.com/friendica/friendica into pull
This commit is contained in:
commit
724e1d15d0
|
@ -567,8 +567,17 @@
|
||||||
$_REQUEST['profile_uid'] = local_user();
|
$_REQUEST['profile_uid'] = local_user();
|
||||||
if(requestdata('parent'))
|
if(requestdata('parent'))
|
||||||
$_REQUEST['type'] = 'net-comment';
|
$_REQUEST['type'] = 'net-comment';
|
||||||
else
|
else {
|
||||||
$_REQUEST['type'] = 'wall';
|
$_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
|
// 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){
|
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>';
|
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
|
||||||
return sprintf ( $notsxml,
|
return sprintf ( $notsxml,
|
||||||
xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)
|
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) {
|
function wall_upload_post(&$a) {
|
||||||
|
|
||||||
if($a->argc > 1) {
|
if($a->argc > 1) {
|
||||||
$nick = $a->argv[1];
|
if(! x($_FILES,'media')) {
|
||||||
$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",
|
$nick = $a->argv[1];
|
||||||
dbesc($nick)
|
$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(! 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
|
else
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$can_post = false;
|
$can_post = false;
|
||||||
$visitor = 0;
|
$visitor = 0;
|
||||||
|
|
||||||
|
@ -47,12 +54,19 @@ function wall_upload_post(&$a) {
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(! x($_FILES,'userfile'))
|
if(! x($_FILES,'userfile') && ! x($_FILES,'media'))
|
||||||
killme();
|
killme();
|
||||||
|
|
||||||
$src = $_FILES['userfile']['tmp_name'];
|
if(x($_FILES,'userfile')) {
|
||||||
$filename = basename($_FILES['userfile']['name']);
|
$src = $_FILES['userfile']['tmp_name'];
|
||||||
$filesize = intval($_FILES['userfile']['size']);
|
$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');
|
$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
|
Großartige Neuigkeiten... '$[fn]' auf '$[dfrn_url]' hat
|
||||||
'$sitename' bestätigt.
|
deine Kontaktanfrage auf '$[sitename]' bestätigt.
|
||||||
|
|
||||||
Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Fotos und
|
Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails
|
||||||
EMail ohne Einschränkungen austauschen.
|
ohne einschränkungen austauschen.
|
||||||
|
|
||||||
Bitte rufe deine 'Kontakte' Seite auf $sitename auf um du Änderungen an
|
Rufe deine 'Kontakte' Seite auf $[sitename] auf wenn du
|
||||||
dieser Freundschaft vorzunehmen.
|
Änderungen an diesem Kontakt vornehmen willst.
|
||||||
|
|
||||||
$siteurl
|
$[siteurl]
|
||||||
|
|
||||||
[Du könntest zum Beispiel ein neue Profil anlegen mit Informationen die nicht
|
[Du könntest z.B. ein spezielles Profil anlegen, das Informationen enthällt
|
||||||
für die Allgemeinheit bestimmt sind, die du aber gerne mit '$fn' teilen
|
die nicht für die breite Öffentlichkeit sichtbar sein sollen und es für '$[fn]' zum Betrachten freigeben].
|
||||||
möchtest].
|
|
||||||
|
|
||||||
Mit freundlichen Grüßen
|
Beste Grüße,
|
||||||
$sitename Administrator
|
|
||||||
|
|
||||||
|
$[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
|
'$[fn]' hat entschieden Dich als "Fan" zu akzeptieren, was ein
|
||||||
Kommunikationsmöglichkeiten zu akzeptieren. Dies umfasst private Nachrichten
|
paar Formen der Kommunikation einschränkt - wie das schreiben von privaten Nachrichten und einige Profil
|
||||||
und einige Profilaktivitäten. Sollte dies eine Prominenten oder
|
Interaktionen. Wenn das ein Promi-Konto oder eine Forum-Seite ist, werden die Einstellungen
|
||||||
Gemeinschaftsseite sein, wurden diese Einstellungen automatisch vorgenommen.
|
automatisch angewendet.
|
||||||
|
|
||||||
'$fn' kann sich in Zukunft dazu entschließen eure Beziehung in eine beidseitige
|
'$[fn]' kann wählen, ob die Freundschaft in eine beidseitige oder alles erlaubende
|
||||||
Freundschaft oder freizügigere Beziehung zu erweitern.
|
Beziehung in der Zukunft erweitert wird.
|
||||||
|
|
||||||
Ab sofort wirst du Statusmitteilungen von '$fn' erhalten, die auf deiner
|
Du empfängst jetzt die öffentlichen Beiträge von '$[fn]',
|
||||||
'Netzwerkseite' erscheinen werden.
|
welche auf der "Netzwerk" Seite erscheinen werden
|
||||||
|
|
||||||
Mit freundlichen Grüßen,
|
$[siteurl]
|
||||||
$sitename Administrator
|
|
||||||
|
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,
|
Hallo $[username],
|
||||||
dein Passwort wurde wie gewünscht geändert. Bitte hebe diese Informationen
|
Dein Passwort wurde wie gewünscht geändert. Bitte bewahre diese
|
||||||
für deine Unterlagen auf (oder ändere das Passwort augenblicklich in etwas
|
Informationen in deinen Unterlagen auf (oder ändere dein Passwort sofort
|
||||||
das du dir merken kannst).
|
in etwas, was du dir merken kannst).
|
||||||
|
|
||||||
|
|
||||||
Deine Anmeldedaten sind die Folgenden:
|
Deine Login Daten wurden wie folgt geändert:
|
||||||
|
|
||||||
Adresse der Seite: $siteurl
|
Adresse der Seite: $[siteurl]
|
||||||
Anmelde Name: $email
|
Login Name: $[email]
|
||||||
Passwort: $new_password
|
Passwort: $[new_password]
|
||||||
|
|
||||||
Du kannst diesen Passwort auf der "Einstellungen" Seite deines Accounts
|
Du kannst dein Passwort unter deinen Account-Einstellungen ändern, wenn du angemeldet bist.
|
||||||
ändern nachdem du angemeldet bits.
|
|
||||||
|
|
||||||
|
|
||||||
Viele Grüße,
|
Beste Grüße,
|
||||||
$sitename Administrator
|
$[sitename] Administrator
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,34 @@
|
||||||
|
|
||||||
Liebe/r $username,
|
Hallo $[username],
|
||||||
danke für die Registrierung bei $sitename. Dein neuer Account wurde angelegt.
|
Danke für deine Anmeldung auf $[sitename]. Dein Account wurde angelegt.
|
||||||
Die Anmeldedetails sind die Folgenden.
|
Die Login Details sind die folgenden:
|
||||||
|
|
||||||
Adresse der Seite: $siteurl
|
|
||||||
Anmelde Name: $email
|
Adresse der Seite: $[siteurl]
|
||||||
Passwort: $password
|
Login Name: $[email]
|
||||||
|
Passwort: $[password]
|
||||||
Du kannst dein Passwort auf der "Einstellungen" Seite deines Accounts ändern
|
|
||||||
nachdem du dich angemeldet hast.
|
Du kannst das Passwort in den "Einstellungen" zu deinem Account ändern
|
||||||
|
nachdem du dich eingeloggt hast.
|
||||||
Nimm dir bitte ein paar Augenblicke Zeit um die anderen Einstellungen deines
|
|
||||||
Accounts zu bearbeiten.
|
Bitte nimm dir einige Augenblicke Zeit um die anderen Einstellungen auf der Seite zu überprüfen.
|
||||||
|
|
||||||
Vielen Dank und Willkommen auf $sitename.
|
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.
|
||||||
Mit freundlichem Gruß,
|
|
||||||
$sitename Administrator
|
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
|
Eine Neuanmeldung auf $[sitename] benötigt
|
||||||
benötigt noch deine Zustimmung.
|
deine Aufmerksamkeit.
|
||||||
|
|
||||||
Die Anmeldedetails sind Folgende:
|
|
||||||
|
|
||||||
Kompletter Name: $username
|
|
||||||
Adresse der Seite: $siteurl
|
|
||||||
Anmelde Name: $email
|
|
||||||
|
|
||||||
|
|
||||||
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
|
Du kannst sein/ihr Profil unter $[url] finden.
|
||||||
und bestätige oder ignoriere die Anfrage.
|
|
||||||
|
|
||||||
$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,
|
$[siteurl]
|
||||||
$sitename Administrator
|
|
||||||
|
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["Connect Services"] = "Verbinde Dienste";
|
||||||
$a->strings["PostIt to Friendica"] = "Bei Friendica posten";
|
$a->strings["PostIt to Friendica"] = "Bei Friendica posten";
|
||||||
$a->strings["Post to Friendica"] = "Wenn du diesen Link";
|
$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 posts and conversations"] = "Deine Beiträge und Unterhaltungen";
|
||||||
$a->strings["Your profile page"] = "Deine Profilseite";
|
$a->strings["Your profile page"] = "Deine Profilseite";
|
||||||
$a->strings["Your contacts"] = "Deine Kontakte";
|
$a->strings["Your contacts"] = "Deine Kontakte";
|
||||||
|
|
|
@ -14,8 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<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>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='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>
|
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="comment-edit-photo-end"></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;">
|
<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-image" style="cursor: pointer;" onclick="insertFormatting('$comment','img',$id);">img</a>
|
||||||
<a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('url',$id);">url</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('video',$id);">video</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('u',$id);">u</a>
|
<a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('$comment','u',$id);">u</a>
|
||||||
<a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('i',$id);">i</a>
|
<a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('$comment','i',$id);">i</a>
|
||||||
<a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('b',$id);">b</a>
|
<a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('$comment','b',$id);">b</a>
|
||||||
<a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('quote',$id);">quote</a>
|
<a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('$comment','quote',$id);">quote</a>
|
||||||
</div>
|
</div>
|
||||||
{{ if $qcomment }}
|
{{ if $qcomment }}
|
||||||
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
|
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<form action="$baseurl/admin/users" method="post">
|
||||||
|
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||||
<h3>$h_pending</h3>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='pending'>
|
<table id='pending'>
|
||||||
|
@ -72,8 +72,8 @@
|
||||||
<td class='login_date'>$u.page-flags</td>
|
<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="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||||
<td class="tools" style="width:60px;">
|
<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/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" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
</nav>
|
</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: 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>
|
<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;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1395,7 +1395,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1388,7 +1388,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1370,7 +1370,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1362,7 +1362,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1624,7 +1624,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1616,7 +1616,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<form action="$baseurl/admin/users" method="post">
|
||||||
|
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||||
<h3>$h_pending</h3>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='pending'>
|
<table id='pending'>
|
||||||
|
@ -72,8 +72,8 @@
|
||||||
<td class='login_date'>$u.page-flags</td>
|
<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="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||||
<td class="tools" style="width:60px;">
|
<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/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" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
</nav>
|
</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: 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>
|
<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;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1357,7 +1357,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1350,7 +1350,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1337,7 +1337,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1329,7 +1329,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1581,7 +1581,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1574,7 +1574,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<form action="$baseurl/admin/users" method="post">
|
||||||
|
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||||
<h3>$h_pending</h3>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='pending'>
|
<table id='pending'>
|
||||||
|
@ -72,8 +72,8 @@
|
||||||
<td class='login_date'>$u.page-flags</td>
|
<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="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||||
<td class="tools" style="width:60px;">
|
<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/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" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
</nav>
|
</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: 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>
|
<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;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-dark/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-dark/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1372,7 +1372,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-dark/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-dark/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1351,7 +1351,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1337,7 +1337,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-dark/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-dark/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1329,7 +1329,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1581,7 +1581,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-dark/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-dark/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1574,7 +1574,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<form action="$baseurl/admin/users" method="post">
|
||||||
|
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||||
<h3>$h_pending</h3>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='pending'>
|
<table id='pending'>
|
||||||
|
@ -72,8 +72,8 @@
|
||||||
<td class='login_date'>$u.page-flags</td>
|
<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="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||||
<td class="tools" style="width:60px;">
|
<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/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" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
</nav>
|
</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: 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>
|
<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;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-green/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1371,7 +1371,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-green/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1365,7 +1365,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-green/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1346,7 +1346,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-green/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-green/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1338,7 +1338,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1601,7 +1601,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1600,7 +1600,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<form action="$baseurl/admin/users" method="post">
|
||||||
|
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||||
<h3>$h_pending</h3>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='pending'>
|
<table id='pending'>
|
||||||
|
@ -72,8 +72,8 @@
|
||||||
<td class='login_date'>$u.page-flags</td>
|
<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="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||||
<td class="tools" style="width:60px;">
|
<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/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" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
</nav>
|
</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: 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>
|
<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;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1371,7 +1371,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1365,7 +1365,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1346,7 +1346,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-pink/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-pink/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1338,7 +1338,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1601,7 +1601,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1600,7 +1600,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<h1>$title - $page</h1>
|
<h1>$title - $page</h1>
|
||||||
|
|
||||||
<form action="$baseurl/admin/users" method="post">
|
<form action="$baseurl/admin/users" method="post">
|
||||||
|
<input type='hidden' name='form_security_token' value='$form_security_token'>
|
||||||
<h3>$h_pending</h3>
|
<h3>$h_pending</h3>
|
||||||
{{ if $pending }}
|
{{ if $pending }}
|
||||||
<table id='pending'>
|
<table id='pending'>
|
||||||
|
@ -72,8 +72,8 @@
|
||||||
<td class='login_date'>$u.page-flags</td>
|
<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="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
|
||||||
<td class="tools" style="width:60px;">
|
<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/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" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
|
|
@ -138,7 +138,7 @@
|
||||||
</nav>
|
</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: 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>
|
<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;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-red/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1391,7 +1391,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-red/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1384,7 +1384,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-red/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1350,7 +1350,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../diabook-red/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../diabook-red/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1342,7 +1342,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1609,7 +1609,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1602,7 +1602,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.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>
|
</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: 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>
|
<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' >
|
<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>
|
<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>
|
</a>
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1334,7 +1334,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
@ -1480,14 +1480,14 @@ transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1326,7 +1326,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
@ -1471,14 +1471,14 @@ transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1309,7 +1309,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
@ -1455,14 +1455,14 @@ transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1302,7 +1302,7 @@ transition: all 0.2s ease-in-out;
|
||||||
max-width: 420px;
|
max-width: 420px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-container .wall-item-content img {
|
.wall-item-container .wall-item-content img {
|
||||||
|
@ -1447,14 +1447,14 @@ transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1457,7 +1457,7 @@ body .pageheader{
|
||||||
max-width: 690px;
|
max-width: 690px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
/*marker*/
|
/*marker*/
|
||||||
.wall-item-photo-container .wall-item-content {
|
.wall-item-photo-container .wall-item-content {
|
||||||
|
@ -1690,14 +1690,14 @@ body .pageheader{
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
.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");
|
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||||
|
@ -1457,7 +1457,7 @@ body .pageheader{
|
||||||
max-width: 720px;
|
max-width: 720px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
margin-bottom: 14px;
|
|
||||||
}
|
}
|
||||||
.wall-item-photo-container .wall-item-content {
|
.wall-item-photo-container .wall-item-content {
|
||||||
|
|
||||||
|
@ -1688,14 +1688,14 @@ body .pageheader{
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||||
color: #3465A4;
|
color: #999;
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
/*
|
/*
|
||||||
* Name: Diabook
|
* Name: Diabook
|
||||||
* Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
|
* 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:
|
* Author:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
//print diabook-version for debugging
|
//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);
|
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
|
||||||
|
|
||||||
//change css on network and profilepages
|
//change css on network and profilepages
|
||||||
|
@ -291,7 +291,9 @@ if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
|
||||||
// custom css
|
// custom css
|
||||||
if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
|
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
|
//load jquery.cookie.js
|
||||||
$cookieJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/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);
|
else $(this).attr("src",ifr_source+"?"+wmode);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("a[href=#top]").click(function() {
|
||||||
|
$("html, body").animate({scrollTop:0}, "slow");
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function yt_iframe() {
|
function yt_iframe() {
|
||||||
|
|
||||||
|
|
||||||
$("iframe").load(function() {
|
$("iframe").load(function() {
|
||||||
var ifr_src = $(this).contents().find("body iframe").attr("src");
|
var ifr_src = $(this).contents().find("body iframe").attr("src");
|
||||||
$("iframe").contents().find("body iframe").attr("src", ifr_src+"&wmode=transparent");
|
$("iframe").contents().find("body iframe").attr("src", ifr_src+"&wmode=transparent");
|
||||||
|
@ -480,7 +488,7 @@ function close_lastlikes(){
|
||||||
$a->page['htmlhead'] .= '
|
$a->page['htmlhead'] .= '
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function insertFormatting(BBcode,id) {
|
function insertFormatting(comment,BBcode,id) {
|
||||||
|
|
||||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||||
if(tmpStr == comment) {
|
if(tmpStr == comment) {
|
||||||
|
|
|
@ -910,22 +910,20 @@ width: 100%;
|
||||||
padding: 2px 20px 5px 0;
|
padding: 2px 20px 5px 0;
|
||||||
}
|
}
|
||||||
#profile-jot-text_parent {
|
#profile-jot-text_parent {
|
||||||
/*border-radius: 10px;*/
|
|
||||||
box-shadow: 5px 0 10px 0 #111;
|
box-shadow: 5px 0 10px 0 #111;
|
||||||
}
|
}
|
||||||
#profile-jot-text_tbl {
|
#profile-jot-text_tbl {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
/*border-radius: 10px;*/
|
background: #777;
|
||||||
background: #888;
|
|
||||||
}
|
}
|
||||||
#profile-jot-text_ifr {
|
#profile-jot-text_ifr {
|
||||||
width:99.900002% !important;
|
width:99.900002% !important;
|
||||||
}
|
}
|
||||||
#profile-jot-text_toolbargroup {
|
#profile-jot-text_toolbargroup {
|
||||||
background: #888;
|
background: #777;
|
||||||
}
|
}
|
||||||
.mceCenter table tr {
|
.mceCenter table tr {
|
||||||
background: #888;
|
background: #777;
|
||||||
}
|
}
|
||||||
[id$="jot-text_ifr"] {
|
[id$="jot-text_ifr"] {
|
||||||
width: 99.900002% !important;
|
width: 99.900002% !important;
|
||||||
|
@ -936,14 +934,20 @@ width: 100%;
|
||||||
color: #2e2f2e;
|
color: #2e2f2e;
|
||||||
background: #eec;
|
background: #eec;
|
||||||
}
|
}
|
||||||
.mceFirst tr {
|
.defaultSkin tr.mceFirst {
|
||||||
background: #888;
|
background: #777;
|
||||||
}
|
}
|
||||||
.mceFirst td {
|
.defaultSkin td.mceFirst {
|
||||||
/*border-radius: 10px 10px 0px 0px;*/
|
background-color: #eec;
|
||||||
}
|
}
|
||||||
.mceLast td {
|
.defaultSkin td.mceLast {
|
||||||
/*border-radius: 0 0 10px 10px;*/
|
background-color: #eec;
|
||||||
|
}
|
||||||
|
.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {
|
||||||
|
background-color: #eec;
|
||||||
|
}
|
||||||
|
.defaultSkin .mceButtonDisabled .mceIcon {
|
||||||
|
background-color: #eec;
|
||||||
}
|
}
|
||||||
#profile-attach-wrapper,
|
#profile-attach-wrapper,
|
||||||
#profile-audio-wrapper,
|
#profile-audio-wrapper,
|
||||||
|
|
|
@ -911,22 +911,20 @@ width: 100%;
|
||||||
padding: 2px 20px 5px 0;
|
padding: 2px 20px 5px 0;
|
||||||
}
|
}
|
||||||
#profile-jot-text_parent {
|
#profile-jot-text_parent {
|
||||||
/*border-radius: 10px;*/
|
|
||||||
box-shadow: 5px 0 10px 0 #111;
|
box-shadow: 5px 0 10px 0 #111;
|
||||||
}
|
}
|
||||||
#profile-jot-text_tbl {
|
#profile-jot-text_tbl {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
/*border-radius: 10px;*/
|
background: #777;
|
||||||
background: #888;
|
|
||||||
}
|
}
|
||||||
#profile-jot-text_ifr {
|
#profile-jot-text_ifr {
|
||||||
width:99.900002% !important;
|
width:99.900002% !important;
|
||||||
}
|
}
|
||||||
#profile-jot-text_toolbargroup {
|
#profile-jot-text_toolbargroup {
|
||||||
background: #888;
|
background: #777;
|
||||||
}
|
}
|
||||||
.mceCenter table tr {
|
.mceCenter table tr {
|
||||||
background: #888;
|
background: #777;
|
||||||
}
|
}
|
||||||
[id$="jot-text_ifr"] {
|
[id$="jot-text_ifr"] {
|
||||||
width: 99.900002% !important;
|
width: 99.900002% !important;
|
||||||
|
@ -937,14 +935,20 @@ width: 100%;
|
||||||
color: #2e2f2e;
|
color: #2e2f2e;
|
||||||
background: #eec;
|
background: #eec;
|
||||||
}
|
}
|
||||||
.mceFirst tr {
|
.defaultSkin tr.mceFirst {
|
||||||
background: #888;
|
background: #777;
|
||||||
}
|
}
|
||||||
.mceFirst td {
|
.defaultSkin td.mceFirst {
|
||||||
/*border-radius: 10px 10px 0px 0px;*/
|
background-color: #eec;
|
||||||
}
|
}
|
||||||
.mceLast td {
|
.defaultSkin td.mceLast {
|
||||||
/*border-radius: 0 0 10px 10px;*/
|
background-color: #eec;
|
||||||
|
}
|
||||||
|
.defaultSkin span.mceIcon, .defaultSkin img.mceIcon {
|
||||||
|
background-color: #eec;
|
||||||
|
}
|
||||||
|
.defaultSkin .mceButtonDisabled .mceIcon {
|
||||||
|
background-color: #eec;
|
||||||
}
|
}
|
||||||
#profile-attach-wrapper,
|
#profile-attach-wrapper,
|
||||||
#profile-audio-wrapper,
|
#profile-audio-wrapper,
|
||||||
|
|
Loading…
Reference in a new issue