Bug 1582866 - Make the inspector extension sidebar overflow. r=rpl.

Differential Revision: https://phabricator.services.mozilla.com/D47273

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nicolas Chevobbe 2019-09-27 10:25:31 +00:00
Родитель d65db3d1af
Коммит 0dc6765801
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -89,9 +89,6 @@ class ExtensionSidebar extends PureComponent {
{
id,
className,
style: {
height: "100%",
},
},
sidebarContentEl
);

Просмотреть файл

@ -191,3 +191,9 @@ iframe {
height: 100%;
width: 100%;
}
/* Extension Sidebar */
.inspector-tabpanel.extension-sidebar {
height: 100%;
overflow-y: auto;
}