7 lines
204 B
CSS
7 lines
204 B
CSS
|
/* Always show tab close button on hover and never otherwise */
|
||
|
.tabbrowser-tab .tab-close-button{
|
||
|
display:none;
|
||
|
}
|
||
|
.tabbrowser-tab:not([pinned]):hover .tab-close-button{
|
||
|
display:-moz-box !important;
|
||
|
}
|