mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
create fake_tab_tooltip.css
This commit is contained in:
parent
5aa1d1ec01
commit
f036a4ca23
3 changed files with 26 additions and 1 deletions
23
chrome/fake_tab_tooltip.css
Normal file
23
chrome/fake_tab_tooltip.css
Normal 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)
|
||||||
|
}
|
|
@ -151,5 +151,6 @@
|
||||||
"vertical_popup_menubar.css":["menubar","menu","toolbars","popup"],
|
"vertical_popup_menubar.css":["menubar","menu","toolbars","popup"],
|
||||||
"window_control_fallback_for_custom_windows_theme.css":["window-control","buttons","colors","patch"],
|
"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_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"]
|
||||||
}
|
}
|
||||||
|
|
1
tags.csv
1
tags.csv
|
@ -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_fallback_for_custom_windows_theme.css,window-control,buttons,colors,patch
|
||||||
window_control_force_linux_system_style.css,window-control,buttons,icon
|
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
|
||||||
|
|
|
Loading…
Reference in a new issue