diff --git a/ifm.php b/ifm.php index 6ebd60d..1b8f2ce 100644 --- a/ifm.php +++ b/ifm.php @@ -29,7 +29,7 @@ class IFMConfig { const zipnload = 1; // allow to zip and download directorys // view controls - const multiselect = 1; // implement multiselect of files and directories + const multiselect = 0; // implement multiselect of files and directories const showlastmodified = 0; // show the last modified date? const showfilesize = 1; // show filesize? const showowner = 1; // show file owner? @@ -130,7 +130,7 @@ class IFMZip { */ class IFM { - const VERSION = '2.1'; + const VERSION = '2.2-dev'; public function __construct() { session_start(); @@ -283,11 +283,49 @@ class IFM { a { cursor: pointer !important; } div#content { width: 100%; height: 350px; } + +input[name=newperms] { width: 7em; } + +#filetable tr th.buttons { min-width: 95px; } + +#navbar { max-width: 100%; } + +div.footer { color: #adadad; font-size: 10pt; } +div.footer div.panel-body { padding: 5px !important; } + +@media (max-width: 768px) { + .icon { font-size: 12pt; } + #filetable tr th.buttons { min-width: 85px !important; } +} + +#waitqueue { + position: fixed; + display: block; + bottom: 1em; + width: 100%; + text-align: center; +} + +#waitqueue > div { + width: 75%; + margin: auto; +} + +#waitqueue .progress { + position:relative; + margin-bottom: 0; +} +#waitqueue .progbarlabel { + position:absolute; + top: 0; + left: 10px; + font-weight: bold; +}