mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
25 lines
No EOL
866 B
CSS
25 lines
No EOL
866 B
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/show_window_title_in_menubar.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Shows window title in menubar */
|
|
/* Enable menubar for correct behavior */
|
|
@-moz-document url(chrome://browser/content/browser.xhtml){
|
|
:root:not([sizemode="fullscreen"]) > head{
|
|
display: block;
|
|
position: fixed;
|
|
top: 2px;
|
|
right: 140px; /* Space for window controls */
|
|
width: calc(100vw - 440px); /* Window width - window control width - menuitem (English) width */
|
|
text-align: center;
|
|
z-index: 1;
|
|
pointer-events: none;
|
|
text-overflow: ellipsis;
|
|
overflow-x: hidden;
|
|
}
|
|
head > *{ display: none }
|
|
head > title{
|
|
display: contents;
|
|
max-width: 50vw;
|
|
white-space: nowrap;
|
|
}
|
|
} |