fenix-fox/content/two_column_addons.css

39 lines
1.4 KiB
CSS
Raw Normal View History

2020-05-22 07:13:58 +02:00
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/content/two_column_addons.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
2019-03-01 17:04:55 +01:00
/* Show addons in two columns */
2020-09-05 09:48:08 +02:00
/* DEPRECATED - use multi_column_addons.css instead */
2019-03-01 17:04:55 +01:00
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@-moz-document url("about:addons"){
#list-view{ overflow: auto }
/* Test for Firefox > 66 */
2019-04-07 11:50:24 +02:00
@supports (inset-block:auto){
#addon-list{
display: grid;
grid-template-areas: "a a";
grid-template-columns: 1fr 1fr;
grid-auto-rows: min-content;
overflow: hidden !important;
padding-bottom: 80px; /* increase this value if addons list content get cut */
}
}
/* Test for Firefox < 66 */
2019-04-07 11:50:24 +02:00
@supports not (inset-block:auto){
#addon-list > scrollbox > .scrollbox-innerbox{
display: grid;
grid-template-areas: "a a";
grid-template-columns: 1fr 1fr;
grid-auto-rows: min-content;
}
2019-03-01 17:04:55 +01:00
}
.control-container{ display: flex; }
.addon-control{ margin: 3px }
.addon.card{ padding-bottom: 0px !important; padding-top: 0px !important }
.addon.card > .content-container { display: flex; }
2019-03-01 17:04:55 +01:00
.content-inner-container{ flex-grow: 1; }
.content-inner-container > hbox{ display: block }
.card-heading-image{ margin: 0 !important; }
2019-03-01 17:04:55 +01:00
.icon{ min-width: 24px }
}