DeepChat Block invisible
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3554969. -->
Reported by: [jmary](https://www.drupal.org/user/100894)
>>>
<h3 id="summary-problem-motivation">Problem/Motivation</h3>
<p>The deepchat block is invisible.</p>
<h4 id="summary-steps-reproduce">Steps to reproduce (required for bugs, but not feature requests)</h4>
<p>Please provide information like AI modules enabled, which AI provider, browser, etc.<br>
Place the deepchat block anywhere, limited to a specific page. Go to the page. The block is not visible.</p>
<p>After research the reasons comes from the css:</p>
<pre>.block-ai-deepchat-block {<br> position: fixed;<br> left: 0;<br> top: 0;<br> bottom: 0;<br> width: 0;<br> opacity: 0;<br> transition: width var(--admin-toolbar-transition), var(--admin-toolbar-transition);<br> z-index: calc(var(--admin-toolbar-z-index-top-bar, 505) + 1);<br> pointer-events: none;<br>}</pre><h3 id="summary-proposed-resolution">Proposed resolution</h3>
<p>Fix the css: Remove top:0 and width:0 and opacity:0; then things get much better. But one cannot click... -> Remove pointer-events: none;, then it does something when clicked.</p>
<h3 id="summary-remaining-tasks">Remaining tasks</h3>
<h3>Optional: Other details as applicable (e.g., User interface changes, API changes, Data model changes)</h3>
issue