mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
Fix urlbar overflow behavior
This commit is contained in:
parent
23c5b7792c
commit
48bc4d97b5
1 changed files with 5 additions and 1 deletions
|
@ -13,4 +13,8 @@
|
||||||
/* 1px margin on touch density causes tabs to be too high */
|
/* 1px margin on touch density causes tabs to be too high */
|
||||||
.tab-close-button{ margin-top: 0 }
|
.tab-close-button{ margin-top: 0 }
|
||||||
/* prevent urlbar overflow on narrow windows */
|
/* prevent urlbar overflow on narrow windows */
|
||||||
#urlbar-container{ min-width:unset }
|
@media screen and (max-width: 1300px){
|
||||||
|
#urlbar-container{ min-width:unset !important }
|
||||||
|
}
|
||||||
|
/* Hide dropdown placeholder */
|
||||||
|
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}
|
Loading…
Reference in a new issue