mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
16 lines
No EOL
645 B
CSS
16 lines
No EOL
645 B
CSS
/* Shows window title in menubar */
|
|
/* Enable menubar for correct behavior */
|
|
@-moz-document url(chrome://browser/content/browser.xhtml){
|
|
head{
|
|
display: block;
|
|
position: fixed;
|
|
right: 140px; /* Space for window controls */
|
|
width: calc(100vw - 440px); /* Window width - window control width - menuitem (English) width */
|
|
text-align: center
|
|
}
|
|
head > *{ display: none }
|
|
head > title{ display: -moz-box; padding-top: 1px; max-width: 60vw; overflow-x: -moz-hidden-unscrollable; text-overflow: ellipsis }
|
|
@media (-moz-os-version:windows-win10){
|
|
:root[sizemode="maximized"] > head > title { padding-top: 10px }
|
|
}
|
|
} |