Fix display of hub connector

This commit is contained in:
acognet
2022-07-01 09:05:49 +02:00
parent f5389a2d2d
commit 139be3a9b7
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,6 @@
box-sizing: revert;
width: 16px;
height: 16px;
vertical-align: middle;
padding: 12px;
background-color: rgba(0, 0, 0, 0.1);
}

View File

@@ -322,11 +322,12 @@ try {
$oPage->add($sText);
$sButtonLabelClose = Dict::S('iTopHub:CloseBtn');
$sButtonLabelGo = Dict::S('iTopHub:GoBtn');
$sButtonLabelTooltip = Dict::S('iTopHub:GoBtn:Tooltip');
$oPage->add(<<<HTML
<p>
<button type="button" class="ibo-button" id="CancelBtn" title="Go back to iTop"><img src="$sCloseUrl"><span class="ibo-button--label">$sButtonLabelClose</span></button>
<span class="horiz-spacer"></span>
<button type="button" class="ibo-button positive" id="GoToHubBtn" title="Dict::S('iTopHub:GoBtn:Tooltip')"><span class="ibo-button--label">$sButtonLabelGo</span><img src="$sArrowUrl"></button>
<button type="button" class="ibo-button positive" id="GoToHubBtn" title="$sButtonLabelTooltip"><span class="ibo-button--label">$sButtonLabelGo</span><img src="$sArrowUrl"></button>
</p>
HTML
);