mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Bug 797279 - Reports RTL do not support RTL - fix reports
This commit is contained in:
parent
99c69023cc
commit
bf7d121e27
@ -26,11 +26,9 @@
|
||||
width: 1em;
|
||||
}
|
||||
td.accname {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
td.accnametotal {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
@ -125,7 +125,7 @@
|
||||
?>
|
||||
|
||||
<!-- The HTML starts here... -->
|
||||
<html>
|
||||
<html dir='auto'>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text-html; charset=utf-8">
|
||||
<title><?scm:d coyname ?> <?scm:d opt-report-title ?> <?scm:d (qof-print-date opt-date) ?></title>
|
||||
|
@ -103,7 +103,7 @@
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
<!-- The HTML for the invoice starts here -->
|
||||
<html>
|
||||
<html dir='auto'>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
|
||||
<title><?scm:d (_ "Invoice") ?> <?scm:d invoiceid ?></title>
|
||||
|
@ -125,7 +125,7 @@
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
<!-- The HTML for the invoice starts here -->
|
||||
<html>
|
||||
<html dir='auto'>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
|
||||
<title><?scm:d (_ "Invoice") ?> <?scm:d invoiceid ?></title>
|
||||
|
@ -150,7 +150,7 @@
|
||||
;;./share/gnucash/scm/gnucash/report/taxinvoice.eguile.scm:<html>
|
||||
;;./share/gnucash/scm/gnucash/report/balsheet-eg.eguile.scm:<html>
|
||||
|
||||
(push "<html>\n")
|
||||
(push "<html dir='auto'>\n")
|
||||
(push "<head>\n")
|
||||
(push "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n")
|
||||
(if style-text
|
||||
|
@ -140,7 +140,7 @@
|
||||
(string-append
|
||||
"h3 { " title-font-info " }\n"
|
||||
"a { " account-link-font-info " }\n"
|
||||
"body, p, table, tr, td { text-align: left; vertical-align: top; " text-cell-font-info " }\n"
|
||||
"body, p, table, tr, td { vertical-align: top; " text-cell-font-info " }\n"
|
||||
"tr.alternate-row { background: " alternate-row-color " }\n"
|
||||
"tr { page-break-inside: avoid !important;}\n"
|
||||
"th.column-heading-left { text-align: left; " number-header-font-info " }\n"
|
||||
|
@ -45,7 +45,7 @@
|
||||
)
|
||||
|
||||
(define html-doc-header-no-title
|
||||
"<html>\n\
|
||||
"<html dir='auto'>\n\
|
||||
<head>\n\
|
||||
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n\
|
||||
</head><body>")
|
||||
@ -87,7 +87,7 @@
|
||||
|
||||
(gnc:html-document-set-title! test-doc "HTML Document Title")
|
||||
(test-equal "HTML Document - Render with title"
|
||||
"<html>\n\
|
||||
"<html dir='auto'>\n\
|
||||
<head>\n\
|
||||
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n\
|
||||
<title>\n\
|
||||
|
Loading…
Reference in New Issue
Block a user