resolves lint errors
This commit is contained in:
parent
bfdbd8199f
commit
1ea04587d9
2 changed files with 3 additions and 3 deletions
|
@ -671,18 +671,18 @@ span ~ .panel-header-text {
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-close-tab {
|
.container-close-tab {
|
||||||
width:50%;
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-info-tab-row:hover .container-close-tab {
|
.container-info-tab-row:hover .container-close-tab {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-info-tab-row .container-close-tab:hover {
|
.container-info-tab-row .container-close-tab:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-info-tab-row:not(.clickable) .container-close-tab{
|
.container-info-tab-row:not(.clickable) .container-close-tab {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -779,7 +779,7 @@ Logic.registerPanel(P_CONTAINER_INFO, {
|
||||||
tr.innerHTML = escaped`
|
tr.innerHTML = escaped`
|
||||||
<td></td>
|
<td></td>
|
||||||
<td class="container-info-tab-title truncate-text" title="${tab.url}" >${tab.title}</td>
|
<td class="container-info-tab-title truncate-text" title="${tab.url}" >${tab.title}</td>
|
||||||
<td><img src="/img/container-close-tab.svg" id="close-tab" class="container-close-tab clickable" /></td>`;
|
<td><img src="/img/container-close-tab.svg" style="width:50%;" id="close-tab" class="container-close-tab clickable" /></td>`;
|
||||||
tr.querySelector("td").appendChild(Utils.createFavIconElement(tab.favIconUrl));
|
tr.querySelector("td").appendChild(Utils.createFavIconElement(tab.favIconUrl));
|
||||||
|
|
||||||
document.getElementById("container-info-table").appendChild(fragment);
|
document.getElementById("container-info-table").appendChild(fragment);
|
||||||
|
|
Loading…
Add table
Reference in a new issue