Home
last modified time | relevance | path

Searched refs:size (Results 26 – 50 of 55) sorted by last modified time

123

/dokuwiki/lib/tpl/dokuwiki/css/
H A D_admin.less8 font-size: 1.125em;
H A D_diff.css23 font-size: 110%;
30 font-size: .9em;
33 font-size: .9em;
H A D_fileuploader.css21 font-size: 100%;
51 font-size: 120%;
90 .qq-upload-size,
92 font-size: 85%;
H A D_links.css36 background-size: 1.2em;
H A D_media_fullscreen.css109 font-size: 1em;
126 font-size: 1em;
224 font-size: 90%;
284 #mediamanager__page .filelist .thumbs li .size,
339 #mediamanager__page .filelist .rows li .size,
349 [dir=rtl] #mediamanager__page .filelist .rows li .size,
361 #mediamanager__page .filelist .rows li .size,
451 font-size: 90%;
495 font-size: 90%;
H A D_media_popup.css52 font-size: 1.5em;
122 font-size: .9em;
H A D_modal.css6 font-size: 100%;
H A D_recent.css48 /*____________ size differences ____________*/
51 font-size: 80%;
H A D_search.less56 font-size: smaller;
177 font-size: .9em;
H A Dcontent.less33 /* hx margin-left = (1 / font-size) * .levelx-margin */
134 font-size: 0.875em;
182 font-size: .9em;
187 font-size: 1em;
313 font-size: .875em;
338 font-size: 0.875em;
H A Ddesign.less31 font-size: 1.5em;
56 font-size: 0.875em;
96 font-size: 0.875em;
104 font-size: 1em;
127 font-size: 0.875em;
176 font-size: 0.875em;
197 font-size: 0.75em;
205 font-size: 0.875em;
212 font-size: 1.714em;
280 font-size
[all...]
H A Dmobile.less43 font-size: 1em;
150 font-size: 100%;
180 font-size: 0.875em;
250 font-size: 0.875em;
H A Dpagetools.less53 font-size: 0.875em;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
/dokuwiki/inc/
H A DJpegMeta.php1334 // get image size directly from file
1335 if ($size = getimagesize($this->_fileName)) {
1336 $this->_info['file']['Width'] = $size[0];
1337 $this->_info['file']['Height'] = $size[1];
1342 switch ($size[2]) {
2138 // This makes it easier to process variable size elements
H A Dmedia.php272 $data['size'] = (file_exists($file)) ? filesize($file) : 0;
286 $sizechange = 0 - $data['size'];
1085 $size = media_image_preview_size($image, $rev, $meta);
1087 if ($size) {
1099 $more['w'] = $size[0];
1100 $more['h'] = $size[1];
1104 echo '<img src="' . $src . '" alt="" style="max-width: ' . $size[0] . 'px;" />';
1181 * @param int $size
1184 function media_image_preview_size($image, $rev, $meta = false, $size = 500)
1195 if ($meta && ($w > $size ||
1128 media_image_preview_size($image, $rev, $meta = false, $size = 500) global() argument
1411 media_printicon($filename, $size = '') global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php169 * String type to character size mapping table.
172 * size == 0 indicates variable length encoding.
745 $size = (strlen($decoded['content']) - 1) * 8 - $offset;
754 $bits = count($mapping['mapping']) == $size ? [] : array_fill(0, count($mapping['mapping']) - $size, false);
1018 $size = 0;
1022 $size = $i;
1026 if (isset($mapping['min']) && $mapping['min'] >= 1 && $size < $mapping['min']) {
1027 $size = $mapping['min'] - 1;
1030 $offset = 8 - (($size
[all...]
H A DX509.php652 $size = count($extensions);
653 for ($i = 0; $i < $size; $i++) {
757 $size = count($attributes);
758 for ($i = 0; $i < $size; $i++) {
832 $size = count($dns);
833 for ($i = 0; $i < $size; $i++) {
1516 $size = strlen($ip) >> 1;
1517 $mask = substr($ip, $size);
1518 $ip = substr($ip, 0, $size);
1691 $size
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php631 * Return the size of a BigInteger in bits
641 * Return the size of a BigInteger in bytes
651 * Generates a random number of a certain size
653 * Bit length is equal to $size
655 * @param int $size
658 public static function random($size)
663 return new static($class::random($size));
667 * Generates a random prime number of a certain size
669 * Bit length is equal to $size
671 * @param int $size
3097 _random_number_helper($size) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php
H A DSFTP.php215 * Real-time log file size
231 * Current log size
1255 * $sftp->setListOrder('size', SORT_DESC, 'filename', SORT_ASC);
2133 $offset = $stat !== false && $stat['size'] ? $stat['size'] : 0;
2197 $size = !empty($stat) ? $stat['size'] : 0;
2201 $size -= $local_start;
2204 $size -= $offset;
2207 $size
1403 function size($filename) global() function in phpseclib\\Net\\SFTP
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php71 private $size;
252 $this->size = $this->sftp->filesize($path);
256 if ($this->size === false) {
261 $this->size = 0;
269 $this->size = 0;
273 $this->pos = $this->mode[0] != 'a' ? 0 : $this->size;
294 // commented out because some files - eg. /dev/urandom - will say their size is 0 when in fact it's kinda infinite
295 //if ($this->pos >= $this->size) {
307 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size);
346 if ($this->pos > $this->size) {
79 var $size; global() variable in phpseclib\\Net\\SFTP\\Stream
[all...]
/dokuwiki/lib/scripts/
H A Dfileuploader.js275 sizeError: "{file} is too large, maximum file size is {sizeLimit}.",
276 minSizeError: "{file} is too small, minimum file size is {minSizeLimit}.",
403 var name, size; variable
412 size = file.fileSize != null ? file.fileSize : file.size;
419 } else if (size === 0){
423 } else if (size && this._options.sizeLimit && size > this._options.sizeLimit){
427 } else if (size && size < thi
[all...]
/dokuwiki/lib/images/interwiki/
H A Ddoku.svg1 <svg width="128.171" height="128.039" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="k"><stop style="stop-color:#3a9030;stop-opacity:.83673471" offset="0"/><stop style="stop-color:#3d9c32;stop-opacity:.79591835" offset="1"/></linearGradient><linearGradient id="j"><stop style="stop-color:#25901b;stop-opacity:.83673471" offset="0"/><stop style="stop-color:#25901b;stop-opacity:.37755102" offset="1"/></linearGradient><linearGradient id="i"><stop style="stop-color:#e32525;stop-opacity:.81632656" offset="0"/><stop style="stop-color:#e32525;stop-opacity:.5714286" offset="1"/></linearGradient><linearGradient id="h"><stop offset="0" style="stop-color:#000;stop-opacity:.17346939"/><stop offset="1" style="stop-color:#c7cec2;stop-opacity:0"/></linearGradient><linearGradient id="g"><stop style="stop-color:#000;stop-opacity:.17346939" offset="0"/><stop style="stop-color:#c7cec2;stop-opacity:0" offset="1"/></linearGradient><linearGradient id="f"><stop style="stop-color:#fbfaf9;stop-opacity:1" offset="0"/><stop style="stop-color:#e9dac7;stop-opacity:1" offset="1"/></linearGradient><linearGradient id="e"><stop style="stop-color:#fbf6f0;stop-opacity:1" offset="0"/><stop style="stop-color:#e9dac7;stop-opacity:1" offset="1"/></linearGradient><linearGradient id="d"><stop style="stop-color:#ede1ae;stop-opacity:1" offset="0"/><stop style="stop-color:#fefdfa;stop-opacity:1" offset="1"/></linearGradient><linearGradient id="a"><stop style="stop-color:#00a423;stop-opacity:1" offset="0"/><stop style="stop-color:#00b427;stop-opacity:1" offset="1"/></linearGradient><linearGradient id="b"><stop offset="0" style="stop-color:#00b62b;stop-opacity:1"/><stop offset="1" style="stop-color:#a1d784;stop-opacity:1"/></linearGradient><linearGradient id="c"><stop style="stop-color:#d69c00;stop-opacity:1" offset="0"/><stop style="stop-color:#ffe658;stop-opacity:1" offset="1"/></linearGradient><linearGradient id="l"><stop offset="0" style="stop-color:#ce411e;stop-opacity:1"/><stop offset="1" style="stop-color:#ecad8d;stop-opacity:1"/></linearGradient><linearGradient id="m"><stop style="stop-color:#8f2a15;stop-opacity:1" offset="0"/><stop style="stop-color:#c8381b;stop-opacity:1" offset="1"/></linearGradient><linearGradient xlink:href="#a" id="z" x1="192.039" y1="262.258" x2="263.671" y2="262.258" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#b" id="B" x1="191.751" y1="258.916" x2="255.656" y2="258.916" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#c" id="y" x1="184.071" y1="246.359" x2="201.406" y2="246.359" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#d" id="p" x1="162.764" y1="184.993" x2="240.849" y2="289.503" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#e" id="n" x1="140.158" y1="303.79" x2="136.142" y2="195.872" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#f" id="o" x1="286.156" y1="262.287" x2="185.813" y2="172.324" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#g" id="t" x1="213.966" y1="220.072" x2="244.791" y2="265.404" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#h" id="x" x1="184.306" y1="241.528" x2="224.674" y2="307.528" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#i" id="q" x1="202.418" y1="222.051" x2="206.06" y2="210.356" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#j" id="r" x1="248.622" y1="234.522" x2="251.644" y2="213.122" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#k" id="s" x1="275.718" y1="251.564" x2="255.684" y2="217.94" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#l" id="w" gradientUnits="userSpaceOnUse" x1="219.663" y1="192.733" x2="277.876" y2="192.733"/><linearGradient xlink:href="#m" id="v" gradientUnits="userSpaceOnUse" x1="219.213" y1="189.016" x2="286.227" y2="189.016"/><radialGradient xlink:href="#c" id="A" cx="257.411" cy="274.642" fx="257.411" fy="274.642" r="7.144" gradientTransform="matrix(1 0 0 1.63138 0 -173.405)" gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#c" id="u" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 .98418 0 3.367)" cx="224.414" cy="212.8" fx="224.414" fy="212.8" r="8.681"/></defs><g style="display:inline"><path transform="matrix(.98991 -.14067 .20106 .97564 -158.091 -157.777)" style="fill:url(#n);fill-opacity:1;fill-rule:evenodd;stroke:#000;stroke-width:.7216621px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" d="m120.215 196.438 70.907-.793-2.403 109.054-71.717.373 3.213-108.634z"/><path style="fill:url(#o);fill-opacity:1;fill-rule:evenodd;stroke:#000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" d="m179.2 182.087 79.842-19.517 26.614 101.725-82.503 21.587L179.2 182.087z" transform="matrix(.99993 0 0 .99598 -158.091 -157.777)"/><path transform="matrix(.99561 -.09253 .08102 .9927 -158.091 -157.777)" style="fill:url(#p);fill-opacity:1;fill-rule:evenodd;stroke:#000;stroke-width:1.00418305px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" d="m159.014 181.744 85.585.534v110.474l-84.533-2.513-1.052-108.495z"/><path d="M167.551 214.008v-20.185h5.35v2.374h-2.482v15.437h2.482v2.374h-5.35m7.348 0v-20.185h5.35v2.374h-2.482v15.437h2.481v2.374h-5.35m7.37-20.185h5.812c1.31 0 2.31.1 2.997.3a5.267 5.267 0 0 1 2.374 1.451c.658.695 1.16 1.547 1.504 2.557.343 1.002.515 2.241.515 3.717 0 1.296-.161 2.413-.483 3.351-.394 1.146-.956 2.073-1.687 2.782-.551.537-1.296.956-2.234 1.257-.702.222-1.64.333-2.815.333h-5.983v-15.748m3.18 2.664v10.43h2.374c.888 0 1.529-.05 1.923-.15.515-.128.941-.347 1.278-.655.344-.308.623-.813.838-1.514.215-.71.322-1.673.322-2.89 0-1.218-.107-2.152-.322-2.804-.215-.651-.516-1.16-.903-1.525-.386-.365-.877-.612-1.471-.741-.444-.1-1.314-.15-2.61-.15h-1.43m14.965 13.083-3.76-15.748h3.255l2.374 10.818 2.879-10.818h3.78l2.762 11 2.417-11h3.2l-3.823 15.748h-3.374l-3.136-11.773-3.126 11.773h-3.448m22.762-15.748v20.185h-5.35v-2.374h2.482v-15.458h-2.481v-2.353h5.35m7.347 0v20.185h-5.35v-2.374h2.482v-15.458h-2.482v-2.353h5.35" style="font-size:12.0000124px;font-style:normal;font-weight:400;line-height:125%;fill:#6184a3;fill-opacity:1;stroke (…)
/dokuwiki/inc/parser/
H A Dhandler.php1112 if (preg_match('#(\d+)(x(\d+))?#i', $param, $size)) {
1113 $w = empty($size[1]) ? null : $size[1];
1114 $h = empty($size[3]) ? null : $size[3];

123