Bug 1537721 - Style Storage table inputs to take the same space as table cells; r=miker

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Florens Verschelde 2019-03-22 13:46:17 +00:00
Родитель d84598c487
Коммит 952b28e95a
1 изменённых файлов: 13 добавлений и 4 удалений

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

@ -50,6 +50,19 @@
min-width: 40px;
}
/* Text input in storage table */
#storage-table textbox {
-moz-appearance: none;
/* make sure the outline is not cut off */
position: relative;
max-width: calc(100% - 1px);
padding: 3px 3px;
font: inherit;
line-height: 14px;
color: var(--theme-content-color1);
background-color: var(--theme-body-background);
}
/* Variables View Sidebar */
#storage-sidebar {
@ -86,8 +99,4 @@
#storage-table #path {
display: none;
}
#storage-table .table-widget-cell {
min-width: 100px;
}
}