Bug 1252100 - Imported profiles may have too long filename as the display label so sidebar is very huge, r=jsantell

This commit is contained in:
Victor Porof 2016-03-21 10:05:12 +01:00
Родитель 4b5c7e3e6b
Коммит bb63559bbd
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -52,6 +52,7 @@ var RecordingsView = Heritage.extend(WidgetMethods, {
addEmptyRecording: function (recording) {
let titleNode = document.createElement("label");
titleNode.className = "plain recording-item-title";
titleNode.setAttribute("crop", "end");
titleNode.setAttribute("value", recording.getLabel() ||
L10N.getFormatStr("recordingsList.itemLabel", this.itemCount + 1));

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

@ -106,6 +106,7 @@
/* Sidebar & recording items */
#recordings-list {
max-width: 300px;
border-inline-end: 1px solid var(--theme-splitter-color);
}