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 {
|
table.unstriped tbody tr {
|
||||||
border-bottom: 1px solid #f1f1f1;
|
border-bottom: 1px solid #f1f1f1;
|
||||||
background-color: #fefefe;
|
background-color: #fefefe;
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.userContext-icon {
|
.userContext-icon {
|
||||||
|
|
|
@ -330,7 +330,6 @@ Logic.registerPanel(P_CONTAINERS_EDIT, {
|
||||||
Logic.identities().forEach(identity => {
|
Logic.identities().forEach(identity => {
|
||||||
let tr = document.createElement("tr");
|
let tr = document.createElement("tr");
|
||||||
fragment.appendChild(tr);
|
fragment.appendChild(tr);
|
||||||
tr.classList.add("clickable");
|
|
||||||
tr.innerHTML = `
|
tr.innerHTML = `
|
||||||
<td>
|
<td>
|
||||||
<div class="userContext-icon"
|
<div class="userContext-icon"
|
||||||
|
@ -343,12 +342,12 @@ Logic.registerPanel(P_CONTAINERS_EDIT, {
|
||||||
<img
|
<img
|
||||||
title="Edit ${identity.name} container"
|
title="Edit ${identity.name} container"
|
||||||
src="/img/container-edit.svg"
|
src="/img/container-edit.svg"
|
||||||
class="icon edit-container-icon" />
|
class="icon edit-container-icon clickable" />
|
||||||
</td>
|
</td>
|
||||||
<td class="remove-container" >
|
<td class="remove-container" >
|
||||||
<img
|
<img
|
||||||
title="Remove ${identity.name} container"
|
title="Remove ${identity.name} container"
|
||||||
class="icon delete-container-icon"
|
class="icon delete-container-icon clickable"
|
||||||
src="/img/container-delete.svg"
|
src="/img/container-delete.svg"
|
||||||
/>
|
/>
|
||||||
</td>`;
|
</td>`;
|
||||||
|
|
|
@ -57,10 +57,10 @@
|
||||||
<span class="userContext-icon" id="container-info-icon" data-identity-icon="" data-identity-color=""></span>
|
<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>
|
<h3 id="container-info-name" class="panel-header-text"></h3>
|
||||||
</div>
|
</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/>
|
<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>
|
||||||
<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
|
Move tabs to a new window
|
||||||
</div>
|
</div>
|
||||||
<table class="unstriped" id="container-info-table">
|
<table class="unstriped" id="container-info-table">
|
||||||
|
|
Loading…
Add table
Reference in a new issue