add mr changes and remove setup font token

This commit is contained in:
marcos 2021-06-07 13:36:44 +02:00
parent ce2abf1fb5
commit 9761018544
6 changed files with 7 additions and 7 deletions

View File

@ -103,7 +103,7 @@ function load_matrix_console()
context.fillRect(0, 0, width, height);
context.fillStyle = "#0F0"; // Green text
context.font = font_size + "px arial";
context.font = font_size + "px lato";
// Looping over drops
for (var i = 0; i < drops.length; i++) {
if (drops[i] == -1) {

View File

@ -2666,7 +2666,7 @@ function visual_map_process_wizard_add_modules(
$id_server=0,
$kind_relationship=VISUAL_MAP_WIZARD_PARENTS_NONE,
$item_in_the_map=0,
$fontf='arial',
$fontf='lato',
$fonts='12pt'
) {
if (empty($id_modules)) {
@ -2943,7 +2943,7 @@ function visual_map_process_wizard_add_agents(
$id_server=0,
$kind_relationship=VISUAL_MAP_WIZARD_PARENTS_NONE,
$item_in_the_map=0,
$fontf='arial',
$fontf='lato',
$fonts='12pt'
) {
global $config;

View File

@ -178,7 +178,7 @@ function vbar_graph(
if (isset($options['x']['title']['fontFamily']) === false) {
$options['x']['title']['fontFamily'] = preg_replace(
'/.ttf/',
'Font, Arial',
'Font, lato',
$config['fontpath']
);
}

View File

@ -22,7 +22,7 @@
h1,
h2,
h3 {
font: bold 1em Arial, Sans-serif;
font: bold 1em;
text-transform: uppercase;
color: #675;
padding-bottom: 5px;

View File

@ -17,7 +17,7 @@
*/
h1 {
font: bold 1em Arial, Sans-serif;
font: bold 1em;
font-size: 18px;
color: #ffffff;
text-align: center;

View File

@ -14705,7 +14705,7 @@ class Mpdf implements \Psr\Log\LoggerAwareInterface
if ($this->printers_info) {
$hd = date('Y-m-d H:i') . ' Page ' . $this->page . ' of {nb}';
$this->SetTColor($this->colorConverter->convert(0, $this->PDFAXwarnings));
$this->SetFont('arial', '', 7.5, true, true);
$this->SetFont('lato', '', 7.5, true, true);
$this->x = $this->page_box['outer_width_LR'] + 1.5;
$this->y = 1;
$this->Cell($headerpgwidth, $this->FontSize, $hd, 0, 0, 'L', 0, '', 0, 0, 0, 'M');