add fake_urlbar_dropmarker.css
This commit is contained in:
parent
ef51f20d38
commit
1869d813b4
3 changed files with 26 additions and 1 deletions
23
chrome/fake_urlbar_dropmarker.css
Normal file
23
chrome/fake_urlbar_dropmarker.css
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/fake_urlbar_dropmarker.css made available under Mozilla Public License v. 2.0
|
||||||
|
See the above repository for updates as well as full license text. */
|
||||||
|
|
||||||
|
/* Icon won't have a background when hovered and the cursor will be text selection cursor, unfortunately */
|
||||||
|
|
||||||
|
#page-action-buttons::before{
|
||||||
|
display: -moz-inline-box;
|
||||||
|
content: "";
|
||||||
|
height: 28px;
|
||||||
|
width: 28px;
|
||||||
|
padding: var(--urlbar-icon-padding);
|
||||||
|
fill: var(--lwt-toolbar-field-color, black);
|
||||||
|
fill-opacity: 0.6;
|
||||||
|
-moz-context-properties: fill, fill-opacity;
|
||||||
|
background: no-repeat center url(chrome://global/skin/icons/arrow-dropdown-16.svg);
|
||||||
|
cursor: normal;
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 150ms linear
|
||||||
|
}
|
||||||
|
#urlbar-input-container:hover > #page-action-buttons::before{ opacity: 1 }
|
||||||
|
.urlbar-input-box:not(:focus-within){ margin-inline-end: -24px; }
|
||||||
|
#urlbar-input:not(:focus-within){ padding-inline-end: 24px !important; }
|
||||||
|
.urlbar-input-box:focus-within ~ #page-action-buttons::before{ -moz-user-focus: normal }
|
|
@ -92,5 +92,6 @@
|
||||||
"vertical_context_navigation_v2.css":["navigation","menu","popup"],
|
"vertical_context_navigation_v2.css":["navigation","menu","popup"],
|
||||||
"vertical_menubar.css":["menubar","hack"],
|
"vertical_menubar.css":["menubar","hack"],
|
||||||
"window_control_placeholder_support.css":["window-control","patch"],
|
"window_control_placeholder_support.css":["window-control","patch"],
|
||||||
"fake_statusbar_w_bookmarksbar.css":["hack","status","toolbar","bookmarks"]
|
"fake_statusbar_w_bookmarksbar.css":["hack","status","toolbar","bookmarks"],
|
||||||
|
"fake_urlbar_dropmarker.css":["urlbar","hack"]
|
||||||
}
|
}
|
||||||
|
|
1
tags.csv
1
tags.csv
|
@ -92,3 +92,4 @@ vertical_context_navigation_v2.css,navigation,menu,popup
|
||||||
vertical_menubar.css,menubar,hack
|
vertical_menubar.css,menubar,hack
|
||||||
window_control_placeholder_support.css,window-control,patch
|
window_control_placeholder_support.css,window-control,patch
|
||||||
fake_statusbar_w_bookmarksbar.css,hack,status,toolbar,bookmarks
|
fake_statusbar_w_bookmarksbar.css,hack,status,toolbar,bookmarks
|
||||||
|
fake_urlbar_dropmarker.css,urlbar,hack
|
||||||
|
|
|
Loading…
Reference in a new issue