Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 123) sorted by relevance

12345

/webtrees/resources/css/
H A D_charts.css34 .wt-chart-vertical-line {
38 border-left: var(--chart-line);
41 .wt-chart-vertical-last-child-line {
46 border-left: var(--chart-line);
47 border-bottom: var(--chart-line);
48 border-radius: 0 0 0 var(--chart-line-radius);
51 .wt-chart-vertical-child-line {
56 border-bottom: var(--chart-line);
64 .wt-chart-horizontal-line {
67 border-bottom: var(--chart-line);
[all …]
H A D_chart-pedigree.css45 border: var(--chart-line);
47 border-radius: var(--chart-line-radius) 0 0 var(--chart-line-radius);
63 border: var(--chart-line);
65 border-radius: 0 var(--chart-line-radius) var(--chart-line-radius) 0;
85 border: var(--chart-line);
87 border-radius: var(--chart-line-radius) var(--chart-line-radius) 0 0;
107 border: var(--chart-line);
109 border-radius: 0 0 var(--chart-line-radius) var(--chart-line-radius);
H A D_chart-interactive.css110 /* TD container for a vertical line */
134 /* vertical line drawing */
150 /* horizontal line drawing */
H A Dwebtrees.css20 --chart-line-radius: 1rem;
21 --chart-line: solid gray thin;
197 line-height: 1.0;
202 line-height: 2.4;
531 line-height: 1.1;
/webtrees/app/Http/RequestHandlers/
H A DCheckTree.php190 foreach ($lines as $line_number => $line) {
191 if (preg_match('/^(\d+) (\w+) ?(.*)/', $line, $match) !== 1) {
192 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, I18N::translate('I…
198 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, I18N::translate('I…
216 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_ta…
219 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_ta…
229 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $tag . '…
232 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_ta…
235 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_ta…
238 …[] = $this->lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $full_ta…
[all …]
/webtrees/public/css/
H A Dminimal.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:1rem 0 0 1rem;border-rad…
H A Dfab.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:1rem 0 0 1rem;border-rad…
H A Dadministration.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:var(--chart-line-radius)…
H A Dclouds.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:1rem 0 0 1rem;border-rad…
H A Dwebtrees.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:1rem 0 0 1rem;border-rad…
H A Dxenea.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:1rem 0 0 1rem;border-rad…
H A Dcolors.min.css1line)}[dir=ltr] .wt-chart-pedigree-right .wt-pedigree-lines{border-radius:1rem 0 0 1rem;border-rad…
/webtrees/app/Report/
H A DReportHtmlText.php69 foreach ($lines as $line) {
71 $line = $renderer->textWrap($line, $width);
72 $startY += $renderer->getTextCellHeight($line);
74 $renderer->write($line, $this->color);
141 foreach ($lines as $line) {
143 $lw = $renderer->getStringWidth($line);
146 $words = explode(' ', $line);
168 $newtext .= $line;
H A DReportPdfText.php140 foreach ($lines as $line) {
142 $lw = $renderer->tcpdf->GetStringWidth($line);
145 $words = explode(' ', $line);
167 $newtext .= $line;
H A DReportPdfFootnote.php128 foreach ($lines as $line) {
130 $lw = ceil($renderer->tcpdf->GetStringWidth($line));
133 $words = explode(' ', $line);
155 $newtext .= $line;
H A DReportHtmlFootnote.php138 foreach ($lines as $line) {
140 $lw = $renderer->getStringWidth($line);
143 $words = explode(' ', $line);
165 $newtext .= $line;
H A DReportPdfImage.php71 $this->line,
85 $this->line,
97 if ($this->line === 'N') {
H A DReportBaseImage.php46 public string $line; variable in Fisharebest\\Webtrees\\Report\\ReportBaseImage
67 $this->line = $ln;
/webtrees/app/Services/
H A DGedcomExportService.php330 foreach (explode("\n", $gedcom) as $line) {
334 if (mb_strlen($line) > $max_line_length) {
335 [$level, $tag] = explode(' ', $line, 3);
343 while (mb_substr($line, $pos - 1, 1) === ' ') {
346 if ($pos === strpos($line, ' ', 3)) {
350 $lines[] = mb_substr($line, 0, $pos);
351 $line = $level . ' CONC ' . mb_substr($line, $pos);
352 } while (mb_strlen($line) > $max_line_length);
354 $lines[] = $line;
/webtrees/app/Module/InteractiveTree/
H A DTreeView.php233 * @param string $line b, c, h, t. Required for drawing lines between boxes
238 …n(Individual $person, int $gen, int $state, Family|null $pfamily, string $line, bool $isRoot): str… argument
263 $html .= $this->drawVerticalLine($line) . $this->drawHorizontalLine();
330 $html .= $this->drawVerticalLine($line);
396 … * @param string $line A parameter that set how to draw this line with auto-resizing capabilities
404 private function drawVerticalLine(string $line): string argument
406 …return '<td class="tv_vline tv_vline_' . $line . '"><div class="tv_vline tv_vline_' . $line . '"><…
/webtrees/app/CommonMark/
H A DCensusTableContinueParser.php71 $line = $cursor->getLine(); variable in Fisharebest\\Webtrees\\CommonMark\\CensusTableContinueParser
73 if ($line === CensusTableExtension::CA_SUFFIX) {
78 if ($line === '') {
82 $cells = explode('|', $line);
/webtrees/app/Http/Middleware/
H A DEmitResponse.php95 if (headers_sent($file, $line)) {
96 $message = sprintf('Headers already sent at %s:%d', $file, $line);
/webtrees/public/ckeditor-4.15.1-custom/
H A Dcontents.css25 line-height: 1.6;
71 line-height: 1.2;
/webtrees/public/ckeditor-4.15.1-custom/skins/moono/
H A Ddialog.css5line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;backgr…
/webtrees/app/Module/
H A DFanChartModule.php394 … fn (string $line): string => $this->fitTextToPixelWidth($line, $max_text_length),

12345