| /dokuwiki/vendor/splitbrain/slika/src/ |
| H A D | GdAdapter.php | 14 protected $width = 0; variable in splitbrain\\slika\\GdAdapter 97 list($this->width, $this->height) = [$this->height, $this->width]; 100 list($this->width, $this->height) = [$this->height, $this->width]; 125 public function resize($width, $height) argument 127 list($width, $height) = $this->boundingBox($width, $height); 128 $this->resizeOperation($width, $height); 136 public function crop($width, $height) argument 138 … list($this->width, $this->height, $offsetX, $offsetY) = $this->cropPosition($width, $height); 139 $this->resizeOperation($width, $height, $offsetX, $offsetY); 183 $this->width = $info[0]; [all …]
|
| H A D | ImageMagickAdapter.php | 63 public function resize($width, $height) argument 65 if ($width == 0 && $height == 0) { 68 if ($width == 0) $width = ''; 71 $size = $width . 'x' . $height; 82 public function crop($width, $height) argument 84 if ($width == 0 && $height == 0) { 88 if ($width == 0) $width = $height; 89 if ($height == 0) $height = $width; 91 $size = $width . 'x' . $height;
|
| H A D | Adapter.php | 62 * @param int|string $width in pixels or % 66 abstract public function resize($width, $height); argument 74 * @param int|string $width in pixels or % 78 abstract public function crop($width, $height); argument
|
| /dokuwiki/vendor/splitbrain/php-cli/src/ |
| H A D | TableFormatter.php | 32 $width = $this->getTerminalWidth(); 33 if ($width) { 34 $this->max = $width - 1; 102 $width = (int)stream_get_contents($pipes[1]); 105 return $width; 196 foreach ($columns as $col => $width) { 197 $wrapped[$col] = explode("\n", $this->wordwrap($texts[$col], $width, "\n", true)); 208 foreach ($columns as $col => $width) { 214 $chunk = $this->pad($val, $width); 287 * @param int $width [all …]
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | usertools.less | 4 right: 40px; // pagetool width 6 width: 100%; 11 max-width: @ini_site_width; 21 width: 1.4em; 39 left: 40px; // pagetool width
|
| H A D | pagetools.less | 24 @ico-width: 28px; 26 @item-width: (@ico-width + @ico-margin + @ico-margin); 27 @item-height: (@ico-width + @ico-margin); 30 right: (-1 * @item-width); 33 width: @item-width; 37 width: @item-width; 71 width: @ico-width; 72 height: @ico-width; 100 left: (-1 * @item-width);
|
| H A D | mobile.less | 3 * and smaller screens (up to 480px and 768px width). 16 @media only screen and (max-width: @ini_tablet_width) { 24 width: 100%; 57 width: 100%; 82 width: auto; 83 border-left-width: 0; 89 border-right-width: 0; 122 border-width: 0 .5em; 143 @media only screen and (max-width: @ini_phone_width) { 156 max-width: 100%; [all …]
|
| H A D | structure.less | 12 max-width: @ini_site_width; 20 width: 100%; 49 width: @ini_sidebar_width; 69 width: 100%;
|
| H A D | _media_fullscreen.css | 6 * their site width) are the 4 min-width's (search for @change). 17 /* min-width must be summary of all 3 panels' min-widths */ 18 min-width: 50em; /* @change */ 19 width: 100%; 33 width: 20%; 34 min-width: 10em; /* @change */ 38 width: 50%; 39 min-width: 25em; /* @change */ 43 width: 30%; 44 min-width: 15em; /* @change */ [all …]
|
| H A D | _admin.less | 6 width: 40%; 29 width: 1.5em; 35 width: 1.5em; 68 max-width: 20em;
|
| H A D | _diff.css | 7 width: 100%; 8 border-width: 0; 14 border-width: 0; 40 width: 50%; 45 width: .7em; 61 width: ~"calc(50% - .7em)"; 66 width: ~"calc(50% - .7em)"; 71 width: ~"calc(50% - .7em)"; 133 width: 60%; 134 min-width: 9em;
|
| H A D | _search.less | 25 width: 100%; 29 width: 50%; 49 max-width: 10em; 70 min-width: 10em; 71 max-width: 15em; 116 width: 12em; 174 left: -13.5em; /* -( width of #qsearch__in + padding of .ajax_qsearch + a bit more ) */ 175 width: 12em;
|
| H A D | _edit.css | 38 width: 300px; 45 width: auto; 52 border-width: 0; 58 width: 100%; 117 border-width: .2em 0; 141 border-width: 0 .5em;
|
| /dokuwiki/lib/plugins/extension/images/ |
| H A D | bug.svg | 1 …width="800" height="800" class="icon flat-line" data-name="Flat Line" viewBox="0 0 24 24"><path d=…
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Enclosure.php | 219 public $width; variable in SimplePie\\Enclosure 229 …null, $restrictions = null, $samplingrate = null, $thumbnails = null, $title = null, $width = null) argument 255 $this->width = $width; 799 if ($this->width !== null) { 800 return $this->width; 872 $width = 'auto'; 913 $width = $opt[1]; 940 if ($width === 'auto') { 943 $width = 480; 945 $width = round((intval($height) / 9) * 16); [all …]
|
| /dokuwiki/_test/tests/lib/exe/ |
| H A D | fetch_imagetoken.test.php | 6 private $width = 200; variable in fetch_imagetoken_test 32 $w = $this->width ? 'w='.$this->width.'&' : ''; 50 $valid_token = 'tok='.media_get_token($this->media, $this->width, $this->height).'&'; 83 … $this->width = $this->height = 0; // no width & height, means image request at native dimensions
|
| /dokuwiki/inc/File/ |
| H A D | MediaFile.php | 17 protected $width; variable in dokuwiki\\File\\MediaFile 127 $this->width = 0; 132 [$this->width, $this->height] = $info; 142 if ($this->width === null) $this->initSizes(); 143 return $this->width;
|
| /dokuwiki/lib/plugins/config/ |
| H A D | style.css | 12 width: auto; 28 width: 100%; 38 /* fixed data column width */ 39 width: 31em; 96 width: 30em; 99 width: 30.8em; 103 width: 27.5em; 140 width: 14.8em; 145 width: 14.8em; 152 width: 14em;
|
| /dokuwiki/lib/tpl/dokuwiki/images/ |
| H A D | page-background.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> 7 <rect x="0" y="0" width="100%" height="100%" fill="url(#g)" />
|
| /dokuwiki/inc/ |
| H A D | fetch.functions.php | 146 * @param int $width 150 function checkFileStatus(&$media, &$file, $rev = '', $width = 0, $height = 0) argument 157 if (media_get_token($media, $width, $height) !== $INPUT->str('tok')) { 172 … if (($width || $height) && media_get_token($media, $width, $height) !== $INPUT->str('tok')) {
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/ |
| H A D | FeedImage.php | 19 public $width, $height, $description;
|
| /dokuwiki/lib/scripts/ |
| H A D | media.js | 110 dw_mediamanager.layout_width = $page.width(); 159 autoOpen: false, width: 280, modal: true, property 499 var widthFull = $page.width(); 502 widthResizables += jQuery(this).width(); 507 var widthOtherResizable = widthResizables - jQuery(this).width(); 516 $filePanel.width(relWidthNonResizable + '%'); 592 $slider.width($image.width() - 20); 617 $diff.width('100%'); 618 $image2.parent().width('97%'); 619 $image1.width('100%'); [all …]
|
| /dokuwiki/lib/images/interwiki/ |
| H A D | phpfn.svg | 1 …el="PHP" viewBox="0 0 512 512"><rect width="512" height="512" rx="15%" fill="#777bb3"/><g stroke="…
|
| /dokuwiki/lib/plugins/popularity/ |
| H A D | admin.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M2 21l2…
|
| /dokuwiki/lib/images/menu/ |
| H A D | 12-back_arrow-left.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20 11v…
|