Вы всегда можете добавить класс css для переопределения свойства max-width
, установленного в классе .tooltip-inner
, который отображает ваше содержимое в виде всплывающей подсказки, например, для него установлено значение по умолчанию 200px;
, рассмотримниже HTML
с ul li, в качестве содержания всплывающей подсказки
<ul>
<li>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It
has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</li>
<li>some point</li>
<li>some point</li>
<li>some point</li>
<li>some point</li>
<li>some point</li>
</ul>
добавьте следующие классы css в представление
$css = <<<CSS
.tooltip-inner ul{
list-style-type:none;
padding:0;
margin:0;
width:100%;
}
.tooltip-inner{
max-width:700px !important;
}
CSS;
$this->registerCss($css);
, это покажет вам всплывающую подсказку, как показано ниже