Title and cursor attributes in popup UI

This commit is contained in:
baku 2017-01-06 15:31:22 +01:00
parent 6b0d4b125c
commit 5b16988cdc
3 changed files with 7 additions and 2 deletions

View file

@ -26,6 +26,7 @@ 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 {

View file

@ -59,10 +59,14 @@ browser.runtime.sendMessage({method: 'query'}).then(identities=> {
</td> </td>
<td>${identity.name}</td> <td>${identity.name}</td>
<td class="newtab"> <td class="newtab">
<img src="/img/container-add.svg" class="icon newtab-icon" /> <img
title="Open a new ${identity.name} container tab"
src="/img/container-add.svg"
class="icon newtab-icon" />
</td> </td>
<td class="hideorshow" > <td class="hideorshow" >
<img <img
title="Hide or show ${identity.name} container tabs"
data-identity-cookie-store-id="${identity.cookieStoreId}" data-identity-cookie-store-id="${identity.cookieStoreId}"
id="${identity.cookieStoreId}-hideorshow-icon" id="${identity.cookieStoreId}-hideorshow-icon"
class="icon hideorshow-icon" class="icon hideorshow-icon"

View file

@ -14,7 +14,7 @@
<h4>Containers</h4> <h4>Containers</h4>
</div> </div>
<div class="small-2 columns header-column"> <div class="small-2 columns header-column">
<a id="sort-containers-link"><img alt="Sort Containers" class="icon" src="/img/container-sort.svg"></a> <a id="sort-containers-link" title="Sort Containers"><img alt="Sort Containers" class="icon" src="/img/container-sort.svg"></a>
</div> </div>
</div> </div>
<table class="unstriped hover"> <table class="unstriped hover">