Skip to content

Commit 01cfb5d

Browse files
committed
UI cosmetic changes
1 parent 94b6254 commit 01cfb5d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Diff for: tinyfilemanager.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
$CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false,"hide_Cols":false,"theme":"light"}';
44

55
/**
6-
* H3K | Tiny File Manager V2.5.3
6+
* H3K | Tiny File Manager V2.5.5
77
* @author CCP Programmers
88
* @github https://github.com/prasathmani/tinyfilemanager
99
* @link https://tinyfilemanager.github.io
1010
*/
1111

1212
//TFM version
13-
define('VERSION', '2.5.3');
13+
define('VERSION', '2.5.5');
1414

1515
//Application Title
1616
define('APP_TITLE', 'Tiny File Manager');
@@ -1836,9 +1836,9 @@ function getSelected($l) {
18361836
<button type="submit" class="btn btn-link text-decoration-none fw-bold p-0"><i class="fa fa-cloud-download"></i> <?php echo lng('Download') ?></button> &nbsp;
18371837
</form>
18381838
<?php if (!FM_READONLY): ?>
1839-
<b class="ms-2"><a title="<?php echo lng('Delete') ?>" href="?p=<?php echo urlencode(FM_PATH) ?>&amp;del=<?php echo urlencode($file) ?>" onclick="confirmDailog(event, 1209, '<?php echo lng('Delete').' '.lng('File'); ?>','<?php echo urlencode($file); ?>', this.href);"> <i class="fa fa-trash-o"></i> Delete</a></b>
1839+
<a class="fw-bold" title="<?php echo lng('Delete') ?>" href="?p=<?php echo urlencode(FM_PATH) ?>&amp;del=<?php echo urlencode($file) ?>" onclick="confirmDailog(event, 1209, '<?php echo lng('Delete').' '.lng('File'); ?>','<?php echo urlencode($file); ?>', this.href);"> <i class="fa fa-trash"></i> Delete</a>
18401840
<?php endif; ?>
1841-
<b class="ms-2"><a href="<?php echo fm_enc($file_url) ?>" target="_blank"><i class="fa fa-external-link-square"></i> <?php echo lng('Open') ?></a></b>
1841+
<a class="fw-bold ms-2" href="<?php echo fm_enc($file_url) ?>" target="_blank"><i class="fa fa-external-link-square"></i> <?php echo lng('Open') ?></a></b>
18421842
<?php
18431843
// ZIP actions
18441844
if (!FM_READONLY && ($is_zip || $is_gzip) && $filenames !== false) {
@@ -1859,13 +1859,13 @@ function getSelected($l) {
18591859
}
18601860
if ($is_text && !FM_READONLY) {
18611861
?>
1862-
<b class="ms-2"><a href="?p=<?php echo urlencode(trim(FM_PATH)) ?>&amp;edit=<?php echo urlencode($file) ?>" class="edit-file"><i class="fa fa-pencil-square"></i> <?php echo lng('Edit') ?>
1863-
</a></b> &nbsp;
1864-
<b class="ms-2"><a href="?p=<?php echo urlencode(trim(FM_PATH)) ?>&amp;edit=<?php echo urlencode($file) ?>&env=ace"
1865-
class="edit-file"><i class="fa fa-pencil-square-o"></i> <?php echo lng('AdvancedEditor') ?>
1866-
</a></b> &nbsp;
1862+
<a class="fw-bold ms-2" href="?p=<?php echo urlencode(trim(FM_PATH)) ?>&amp;edit=<?php echo urlencode($file) ?>" class="edit-file"><i class="fa fa-pencil-square"></i> <?php echo lng('Edit') ?>
1863+
</a>
1864+
<a class="fw-bold ms-2" href="?p=<?php echo urlencode(trim(FM_PATH)) ?>&amp;edit=<?php echo urlencode($file) ?>&env=ace"
1865+
class="edit-file"><i class="fa fa-pencil-square"></i> <?php echo lng('AdvancedEditor') ?>
1866+
</a>
18671867
<?php } ?>
1868-
<b class="ms-2"><a href="?p=<?php echo urlencode(FM_PATH) ?>"><i class="fa fa-chevron-circle-left go-back"></i> <?php echo lng('Back') ?></a></b>
1868+
<a class="fw-bold ms-2" href="?p=<?php echo urlencode(FM_PATH) ?>"><i class="fa fa-chevron-circle-left go-back"></i> <?php echo lng('Back') ?></a>
18691869
</div>
18701870
<?php
18711871
if($is_onlineViewer) {

0 commit comments

Comments
 (0)