Add files via upload
This commit is contained in:
parent
375ddcc4d2
commit
a3b663ae1f
52 changed files with 4248 additions and 0 deletions
86
chrome/findbar/findbar.css
Normal file
86
chrome/findbar/findbar.css
Normal file
|
@ -0,0 +1,86 @@
|
|||
findbar {
|
||||
background: var(--toolbar-bgcolor) !important;
|
||||
border-top-color: var(--chrome-content-separator-color) !important;
|
||||
}
|
||||
|
||||
.findbar-find-previous {
|
||||
list-style-image: url(../icons/chevron-up.svg) !important;
|
||||
}
|
||||
.findbar-find-next {
|
||||
list-style-image: url(../icons/chevron-down.svg) !important;
|
||||
}
|
||||
|
||||
.findbar-textbox
|
||||
{
|
||||
background-color: transparent !important;
|
||||
background-image: url(../icons/search.svg) !important;
|
||||
background-repeat: no-repeat !important;
|
||||
background-position: 5px center !important;
|
||||
fill-opacity: 1 !important;
|
||||
border: 0 !important;
|
||||
box-shadow: none !important;
|
||||
margin-inline-start: 2px !important;
|
||||
padding-inline-start: 28px !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"]
|
||||
{
|
||||
background-color: var(--toolbar-field-background-color) !important;
|
||||
border-radius: 4px !important;
|
||||
position: relative !important;
|
||||
display: flex !important;
|
||||
padding: 2px !important;
|
||||
height: 28px !important;
|
||||
transition: background-color .1s var(--ease-basic) !important;
|
||||
box-shadow: 0 1px 6px 0 #00000008 !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"]:hover:not(:focus-within)
|
||||
{
|
||||
background-color: var(--toolbar-field-hover-background-color) !important;
|
||||
box-shadow: 0 0 0 1px inset var(--toolbar-field-hover-border-color) !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"]:focus-within
|
||||
{
|
||||
background-color: var(--toolbar-field-focus-background-color) !important;
|
||||
border: 2px solid var(--toolbar-field-focus-border-color) !important;
|
||||
margin: -1px !important;
|
||||
padding: 1px !important;
|
||||
height: 30px !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton
|
||||
{
|
||||
border-radius: 4px !important;
|
||||
border: 0 !important;
|
||||
width: 24px !important;
|
||||
height: 24px !important;
|
||||
padding: 0 !important;
|
||||
display: flex !important;
|
||||
background: 0 !important;
|
||||
transition: background-color .2s var(--ease-basic) !important;
|
||||
margin: 0 !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton[disabled]
|
||||
{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton .toolbarbutton-text
|
||||
{
|
||||
visibility: collapse !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton:not([disabled]):hover
|
||||
{
|
||||
background-color: var(--toolbarbutton-hover-background) !important;
|
||||
}
|
||||
|
||||
hbox[anonid="findbar-textbox-wrapper"] toolbarbutton:not([disabled]):hover:active
|
||||
{
|
||||
background-color: var(--toolbarbutton-active-background) !important;
|
||||
transition-duration: 0 !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue