mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
new file
This commit is contained in:
parent
0ebb844165
commit
a3fe5fa906
1 changed files with 31 additions and 0 deletions
31
content/two_column_html_addons.css
Normal file
31
content/two_column_html_addons.css
Normal file
|
@ -0,0 +1,31 @@
|
|||
/* Two column addons for html addons manager available in Firefox 68 */
|
||||
|
||||
|
||||
@-moz-document url-prefix("chrome://mozapps/content/extensions/aboutaddons.html"){
|
||||
|
||||
:root{ overflow-x: hidden } /* Remove this if it causes horizontal scrolling problems */
|
||||
|
||||
@media (min-width:720px){
|
||||
#main{ max-width: unset !important; padding-right: 28px; }
|
||||
addon-list > section,
|
||||
recommended-addon-list{
|
||||
padding: 1em;
|
||||
display: grid;
|
||||
grid-template-areas: "hd hd" "cd cd";
|
||||
grid-template-columns: 1fr 1fr;
|
||||
column-gap: 1em;
|
||||
|
||||
}
|
||||
|
||||
addon-card .card-contents{ width: unset !important; white-space: initial !important; }
|
||||
|
||||
.card-heading-image{ max-width: calc(100% + 32px) }
|
||||
section > h2{ grid-area: hd }
|
||||
addon-card{
|
||||
padding-bottom: 0px !important;
|
||||
padding-top: 0px !important;
|
||||
grid-area: auto;
|
||||
}
|
||||
addon-card .addon-description{ max-height: 3em; scrollbar-width: thin; }
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue