Bug 1259389 - "Restore closed windows" items without url have additional indent at the left, r=Gijs.

MozReview-Commit-ID: 17Ubpm9VDVA

--HG--
extra : rebase_source : 4fbce51414565d63c1bad44da6abf06e9861c418
This commit is contained in:
Rakhi Sharma 2016-04-13 13:54:15 +05:30
Родитель 826840fc31
Коммит 8687755e77
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -253,7 +253,7 @@ const CustomizableWidgets = [
let elementCount = tabsFragment.childElementCount;
separator.hidden = !elementCount;
while (--elementCount >= 0) {
tabsFragment.children[elementCount].classList.add("subviewbutton");
tabsFragment.children[elementCount].classList.add("subviewbutton", "cui-withicon");
}
recentlyClosedTabs.appendChild(tabsFragment);
@ -263,7 +263,7 @@ const CustomizableWidgets = [
elementCount = windowsFragment.childElementCount;
separator.hidden = !elementCount;
while (--elementCount >= 0) {
windowsFragment.children[elementCount].classList.add("subviewbutton");
windowsFragment.children[elementCount].classList.add("subviewbutton", "cui-withicon");
}
recentlyClosedWindows.appendChild(windowsFragment);
},