mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
Fix typo and offset findbar to make room for scrollbar
This commit is contained in:
parent
c104911064
commit
888c26bf3d
1 changed files with 10 additions and 1 deletions
|
@ -14,7 +14,7 @@ findbar > .findbar-container,
|
||||||
findbar > .close-icon{
|
findbar > .close-icon{
|
||||||
border: 1px solid var(--chrome-content-separator-color);
|
border: 1px solid var(--chrome-content-separator-color);
|
||||||
border-width: 0 0 1px 0px;
|
border-width: 0 0 1px 0px;
|
||||||
background: background: var(--uc-light-bkgnd-color,var(--toolbar-bgcolor)) !important;
|
background: var(--uc-light-bkgnd-color,var(--toolbar-bgcolor)) !important;
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
findbar > .findbar-container{
|
findbar > .findbar-container{
|
||||||
|
@ -29,3 +29,12 @@ findbar::before{
|
||||||
display: -moz-box;
|
display: -moz-box;
|
||||||
-moz-box-flex: 100;
|
-moz-box-flex: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Move findbar so it isn't over the scrollbar
|
||||||
|
Delete if you want findbar to begin from right window edge
|
||||||
|
*/
|
||||||
|
findbar{
|
||||||
|
margin-right: 16px;
|
||||||
|
border-right: 1px solid var(--chrome-content-separator-color);
|
||||||
|
}
|
Loading…
Reference in a new issue