Bug 1217880 - Set max-height on console input so it can overflow and be scrolled;r=vporof

--HG--
extra : commitid : DaMljfQiQMr
This commit is contained in:
Brian Grinstead 2015-10-26 08:35:45 -07:00
Родитель ab009aee26
Коммит 162d0cd8ca
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -380,6 +380,9 @@ a {
}
.jsterm-input-node {
/* Always allow scrolling on input - it auto expands in js by setting height,
but don't want it to get bigger than the window. 24px = toolbar height. */
max-height: calc(90vh - 24px);
background-image: -moz-image-rect(url("chrome://devtools/skin/themes/images/commandline-icon.png"), 0, 32, 16, 16);
background-repeat: no-repeat;
background-size: 16px 16px;