21 lines
512 B
CSS
21 lines
512 B
CSS
/* Apply this customization only on smaller screens */
|
|
@media (max-width: 700px) {
|
|
|
|
/* Hide unpinned inactive tabs */
|
|
.tabbrowser-tab:not([pinned]):not([selected]) {
|
|
visibility: hidden !important;
|
|
min-width: 0 !important;
|
|
}
|
|
|
|
/* Expand unpinned active tab */
|
|
.tabbrowser-tab:not([pinned])[selected] {
|
|
min-width: 100vw !important;
|
|
}
|
|
|
|
/* Hide Newtab and New-tab buttons */
|
|
#new-tab-button,
|
|
#tabs-newtab-button {
|
|
display: none !important;
|
|
}
|
|
|
|
}
|