Cleaning up layout issues for current tab panel.
This commit is contained in:
parent
0f9dd77687
commit
5cd2ac0187
3 changed files with 11 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
3
webextension/img/blank-tab.svg
Normal file
3
webextension/img/blank-tab.svg
Normal 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 |
|
@ -113,8 +113,8 @@ const Logic = {
|
|||
return identity || {
|
||||
name: "Default",
|
||||
cookieStoreId,
|
||||
icon: "circle",
|
||||
color: "black"
|
||||
icon: "default-tab",
|
||||
color: "default-tab"
|
||||
};
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue