Some CSS fix
This commit is contained in:
parent
0dc21cd96e
commit
be29b1be81
3 changed files with 4 additions and 6 deletions
|
@ -79,7 +79,6 @@ table {
|
|||
table.unstriped tbody tr {
|
||||
border-bottom: 1px solid #f1f1f1;
|
||||
background-color: #fefefe;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.userContext-icon {
|
||||
|
|
|
@ -330,7 +330,6 @@ Logic.registerPanel(P_CONTAINERS_EDIT, {
|
|||
Logic.identities().forEach(identity => {
|
||||
let tr = document.createElement("tr");
|
||||
fragment.appendChild(tr);
|
||||
tr.classList.add("clickable");
|
||||
tr.innerHTML = `
|
||||
<td>
|
||||
<div class="userContext-icon"
|
||||
|
@ -343,12 +342,12 @@ Logic.registerPanel(P_CONTAINERS_EDIT, {
|
|||
<img
|
||||
title="Edit ${identity.name} container"
|
||||
src="/img/container-edit.svg"
|
||||
class="icon edit-container-icon" />
|
||||
class="icon edit-container-icon clickable" />
|
||||
</td>
|
||||
<td class="remove-container" >
|
||||
<img
|
||||
title="Remove ${identity.name} container"
|
||||
class="icon delete-container-icon"
|
||||
class="icon delete-container-icon clickable"
|
||||
src="/img/container-delete.svg"
|
||||
/>
|
||||
</td>`;
|
||||
|
|
|
@ -57,10 +57,10 @@
|
|||
<span class="userContext-icon" id="container-info-icon" data-identity-icon="" data-identity-color=""></span>
|
||||
<h3 id="container-info-name" class="panel-header-text"></h3>
|
||||
</div>
|
||||
<div class="row container-info-panel-hide clickable" id="container-info-hideorshow" data-user-context-id="">
|
||||
<div class="row container-info-panel-hide container-info-has-tabs clickable" id="container-info-hideorshow" data-user-context-id="">
|
||||
<img id="container-info-hideorshow-icon" alt="Hide Container icon" src="/img/container-hide.svg" class="icon container-info-panel-hideorshow-icon"/><span id="container-info-hideorshow-label">Hide this container</span><br/>
|
||||
</div>
|
||||
<div class="row container-info-panel-movetabs clickable" id="container-info-movetabs">
|
||||
<div class="row container-info-panel-movetabs container-info-has-tabs clickable" id="container-info-movetabs">
|
||||
Move tabs to a new window
|
||||
</div>
|
||||
<table class="unstriped" id="container-info-table">
|
||||
|
|
Loading…
Add table
Reference in a new issue