Fix urlbar overflow behavior

This commit is contained in:
MrOtherGuy 2018-11-03 22:47:52 +02:00
parent 23c5b7792c
commit 48bc4d97b5

View file

@ -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;}