create fake_tab_tooltip.css

This commit is contained in:
MrOtherGuy 2022-06-05 07:31:01 +03:00
parent 5aa1d1ec01
commit f036a4ca23
3 changed files with 26 additions and 1 deletions

View file

@ -0,0 +1,23 @@
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/fake_tab_tooltip.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* This creates a fake tooltip-like box under hovered tab showing it's full title.
* In about:config you can set `browser.chrome.toolbar_tips` to false to disable
* normal tooltips - that however disables normal tooltips also from everything
* else in the toolbar area.
*/
.tabbrowser-tab:hover::after{
display: block;
content: attr(label);
background: var(--arrowpanel-background);
border: 1px solid var(--arrowpanel-border-color);
color: var(--arrowpanel-color);
padding: 0.3em;
position: fixed;
transform: translateY(calc(var(--tab-min-height) + 2 * var(--tab-block-margin)));
z-index: 2;
color-scheme: dark;
border-radius: 5px;
box-shadow: 2px 2px 4px rgba(0,0,0,0.3)
}

View file

@ -151,5 +151,6 @@
"vertical_popup_menubar.css":["menubar","menu","toolbars","popup"],
"window_control_fallback_for_custom_windows_theme.css":["window-control","buttons","colors","patch"],
"window_control_force_linux_system_style.css":["window-control","buttons","icon"],
"window_control_placeholder_support.css":["window-control","patch"]
"window_control_placeholder_support.css":["window-control","patch"],
"fake_tab_tooltip.css":["tab","hack","popup"]
}

View file

@ -151,3 +151,4 @@ vertical_popup_menubar.css,menubar,menu,toolbars,popup
window_control_fallback_for_custom_windows_theme.css,window-control,buttons,colors,patch
window_control_force_linux_system_style.css,window-control,buttons,icon
window_control_placeholder_support.css,window-control,patch
fake_tab_tooltip.css,tab,hack,popup

1 auto_devtools_theme_for_rdm.css,devtools,colors
151 window_control_fallback_for_custom_windows_theme.css,window-control,buttons,colors,patch
152 window_control_force_linux_system_style.css,window-control,buttons,icon
153 window_control_placeholder_support.css,window-control,patch
154 fake_tab_tooltip.css,tab,hack,popup