mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2025-10-13 20:45:56 +00:00
Create rounded_menupopups.css
This commit is contained in:
parent
3d35562c1b
commit
b5b62fb77f
3 changed files with 27 additions and 0 deletions
25
chrome/rounded_menupopups.css
Normal file
25
chrome/rounded_menupopups.css
Normal file
|
@ -0,0 +1,25 @@
|
|||
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/rounded_menupopups.css made available under Mozilla Public License v. 2.0
|
||||
See the above repository for updates as well as full license text. */
|
||||
|
||||
/* Makes panels, menupopups, urlbar and searchbar rounded */
|
||||
|
||||
/* Modify the rounding size here */
|
||||
:root{ --uc-menupopup-border-radius: 20px }
|
||||
|
||||
panel[type="autocomplete-richlistbox"],
|
||||
menupopup,
|
||||
.panel-arrowcontent{
|
||||
-moz-appearance: none !important;
|
||||
border-radius: var(--uc-menupopup-border-radius) !important;
|
||||
overflow: -moz-hidden-unscrollable !important;
|
||||
}
|
||||
|
||||
/* The rounding is also applied to searchbar and urlbar to look consistent */
|
||||
searchbar#searchbar,
|
||||
#urlbar-background{
|
||||
border-radius: var(--uc-menupopup-border-radius) !important
|
||||
}
|
||||
|
||||
/* Reposition the panel-arrow */
|
||||
panel[type="arrow"]{ margin-inline-end: calc(-10px - var(--uc-menupopup-border-radius)) !important; }
|
||||
.panel-arrow{ margin-inline: var(--uc-menupopup-border-radius) !important; }
|
Loading…
Add table
Add a link
Reference in a new issue