Cleaning up layout issues for current tab panel.

This commit is contained in:
Jonathan Kingston 2017-05-26 11:41:14 +01:00
parent 0f9dd77687
commit 5cd2ac0187
3 changed files with 11 additions and 3 deletions

View file

@ -133,6 +133,11 @@ table {
--identity-icon: url("/img/usercontext.svg#chill");
}
#current-tab [data-identity-icon="default-tab"] {
background: center center no-repeat url("/img/blank-tab.svg");
fill: currentColor;
}
/* Buttons */
.button.primary {
background-color: #0996f8;
@ -359,7 +364,7 @@ manage things like container crud */
text-transform: uppercase;
}
#container-panel .sort-containers-link {
#container-panel #sort-containers-link {
margin-inline-end: 16px;
}

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
<path d="M17,12v2a1,1,0,0,1-1,1H2a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H1.142c2.3,0,2.536-1.773,2.874-4,0.351-2.316.083-4,3.13-4h3.707C13.917,3,13.647,4.684,14,7c0.34,2.228.582,4,2.89,4H16A1,1,0,0,1,17,12Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 307 B

View file

@ -113,8 +113,8 @@ const Logic = {
return identity || {
name: "Default",
cookieStoreId,
icon: "circle",
color: "black"
icon: "default-tab",
color: "default-tab"
};
},