mirror of
https://github.com/owncloud/bookmarks.git
synced 2024-12-02 06:24:11 +01:00
changed look of bookmarklet
This commit is contained in:
parent
1119f80300
commit
51a4119bea
@ -1,6 +1,6 @@
|
|||||||
#content { overflow: auto; height: 100%; }
|
#content { overflow: auto; height: 100%; }
|
||||||
#firstrun { width: 80%; margin: 5em auto auto auto; text-align: center; font-weight:bold; font-size:1.5em; color:#777;}
|
#firstrun { width: 80%; margin: 5em auto auto auto; text-align: center; font-weight:bold; font-size:1.5em; color:#777;}
|
||||||
#firstrun small { display: block; font-weight: normal; font-size: 0.5em; }
|
#firstrun small { display: block; font-weight: normal; font-size: 0.5em; margin-bottom: 1.5em; }
|
||||||
#firstrun #selections { font-size:0.8em; font-weight: normal; width: 100%; margin: 2em auto auto auto; clear: both; }
|
#firstrun #selections { font-size:0.8em; font-weight: normal; width: 100%; margin: 2em auto auto auto; clear: both; }
|
||||||
|
|
||||||
.bookmarks_headline {
|
.bookmarks_headline {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
function createBookmarklet() {
|
function createBookmarklet() {
|
||||||
$l = new OC_L10N('bookmarks');
|
$l = new OC_L10N('bookmarks');
|
||||||
echo "<em>" .$l->t('Drag this to your browser bookmarks and click it, when you want to bookmark a webpage:') . "</em> ";
|
echo '<small>' . $l->t('Drag this to your browser bookmarks and click it, when you want to bookmark a webpage:') . '</small>'
|
||||||
echo "<a style='background-color:#eee;border:1px groove #999; padding:5px;padding-top:0px;padding-bottom:2px; text-decoration:none; margin-top:5px' href=\"javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open('" . OC_Helper::linkToAbsolute('bookmarks', 'addBm.php') . "?output=popup&url='+c(b.location)+'&title='+c(b.title),'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=510px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300)})();\">";
|
. '<a class="button" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open(\'' . OC_Helper::linkToAbsolute('bookmarks', 'addBm.php') . '?output=popup&url=\'+c(b.location),\'bkmk_popup\',\'left=\'+((a.screenX||a.screenLeft)+10)+\',top=\'+((a.screenY||a.screenTop)+10)+\',height=510px,width=550px,resizable=1,alwaysRaised=1\');a.setTimeout(function(){d.focus()},300);})();">'
|
||||||
echo $l->t('Add page to ownCloud') . "</a>";
|
. $l->t('Add page to ownCloud') . '</a>';
|
||||||
}
|
}
|
||||||
|
@ -23,11 +23,9 @@
|
|||||||
<div class="bookmarks_list">
|
<div class="bookmarks_list">
|
||||||
</div>
|
</div>
|
||||||
<div id="firstrun">
|
<div id="firstrun">
|
||||||
<?php echo $l->t('You have no bookmarks'); ?>
|
|
||||||
<div id="selections">
|
|
||||||
<?php
|
<?php
|
||||||
require_once('bookmarklet.php');
|
echo $l->t('You have no bookmarks');
|
||||||
createBookmarklet();
|
require_once('bookmarklet.php');
|
||||||
|
createBookmarklet();
|
||||||
?>
|
?>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user