FIX lost css change
This commit is contained in:
parent
a10d97cce0
commit
d735f5dc70
@ -10,6 +10,16 @@ Replace "& new" by "new"
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
CKEDITOR:
|
||||||
|
---------
|
||||||
|
* In ckeditor/ckeditor/contents.css
|
||||||
|
Replace:
|
||||||
|
margin: 20px;
|
||||||
|
With
|
||||||
|
margin: 5px;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
NUSOAP:
|
NUSOAP:
|
||||||
-------
|
-------
|
||||||
* In file nusoap.php, to avoid a warning,
|
* In file nusoap.php, to avoid a warning,
|
||||||
@ -38,6 +48,7 @@ with:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
TCPDF:
|
TCPDF:
|
||||||
------
|
------
|
||||||
* To avoid to have QRcode changed because generated with a random mask, replace
|
* To avoid to have QRcode changed because generated with a random mask, replace
|
||||||
@ -45,13 +56,8 @@ define('QR_FIND_FROM_RANDOM', 2);
|
|||||||
with
|
with
|
||||||
define('QR_FIND_FROM_RANDOM', false);
|
define('QR_FIND_FROM_RANDOM', false);
|
||||||
|
|
||||||
* Removed all fonts except
|
|
||||||
dejavusans* (used by greek, arab, persan, romanian, turkish),
|
|
||||||
freemono* (russian),
|
|
||||||
cid*+msungstdlight+stsongstdlight+uni2cid* (chinese),
|
|
||||||
helvetica* (all other languages),
|
|
||||||
zapfdingbats.php (for special chars like form checkboxes)
|
|
||||||
* Removed useless directories (examples, tools)
|
* Removed useless directories (examples, tools)
|
||||||
|
|
||||||
* Fix
|
* Fix
|
||||||
// initialize subsetchars
|
// initialize subsetchars
|
||||||
$subsetchars = array();
|
$subsetchars = array();
|
||||||
@ -59,13 +65,18 @@ into
|
|||||||
// initialize subsetchars
|
// initialize subsetchars
|
||||||
$subsetchars = array_fill(0, 256, true);
|
$subsetchars = array_fill(0, 256, true);
|
||||||
|
|
||||||
* Made freemono the default monotype font because we removed courier
|
* Optionnaly, removed all fonts except
|
||||||
|
dejavusans* (used by greek, arab, persan, romanian, turkish),
|
||||||
|
freemono* (russian),
|
||||||
|
cid*+msungstdlight+stsongstdlight+uni2cid* (chinese),
|
||||||
|
helvetica* (all other languages),
|
||||||
|
zapfdingbats.php (for special chars like form checkboxes)
|
||||||
|
|
||||||
|
* Optionnaly, made freemono the default monotype font because we removed courier
|
||||||
In htdocs/includes/tcpdf/tcpdf.php
|
In htdocs/includes/tcpdf/tcpdf.php
|
||||||
- protected $default_monospaced_font = 'courier';
|
- protected $default_monospaced_font = 'courier';
|
||||||
+ protected $default_monospaced_font = 'freemono';
|
+ protected $default_monospaced_font = 'freemono';
|
||||||
|
|
||||||
* Renamed getmypid into dol_getmypid().
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
TCPDI:
|
TCPDI:
|
||||||
@ -80,7 +91,6 @@ require_once(dirname(__FILE__).'/../tecnickcom/tcpdf/include/tcpdf_filters.php')
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
JSGANTT:
|
JSGANTT:
|
||||||
--------
|
--------
|
||||||
* Replace in function JSGantt.taskLink
|
* Replace in function JSGantt.taskLink
|
||||||
|
|||||||
@ -15,7 +15,7 @@ body
|
|||||||
/* Remove the background color to make it transparent */
|
/* Remove the background color to make it transparent */
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
||||||
margin: 20px;
|
margin: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_editable
|
.cke_editable
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user