N°4127 - Security: Fix XSS vulnerability in object attribute's tooltip

This commit is contained in:
Molkobain
2021-07-07 09:27:34 +02:00
parent c76d4f12fd
commit ebbf6e56be
6 changed files with 54 additions and 23 deletions

View File

@@ -19,6 +19,7 @@
@import "bulma-variables-overload";
@import "../../../node_modules/bulma-scss/bulma";
@import "ckeditor";
@import "tippy";
@import "jqueryui";
@import "jquery-multiselect";
@import "datatables";

9
css/backoffice/vendors/_tippy.scss vendored Normal file
View File

@@ -0,0 +1,9 @@
/*!
* @copyright Copyright (C) 2010-2021 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
// Allow plain text (opposite of HTML) multi-lines tooltips to be displayed correctly, otherwise it will all be on a single line.
.tippy-content {
white-space: pre-line;
}