Backed out changeset 2db66a67c944 (bug 1392468) for failing clipboard's browser/base/content/test/newtab/browser_newtab_undo.js. r=backout

This commit is contained in:
Sebastian Hengst 2017-08-28 13:18:33 +02:00
Родитель 80cced1397
Коммит 79c12610f3
3 изменённых файлов: 6 добавлений и 6 удалений

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

После

Ширина:  |  Высота:  |  Размер: 6.0 KiB

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

@ -27,13 +27,11 @@
padding: 0;
position: absolute;
cursor: pointer;
top: 12px;
offset-inline-start: 12px;
top: 34px;
offset-inline-start: 34px;
border: none;
/* Set to none so no grey contrast background in the high-contrast mode */
background: none;
/* make sure the icon above the activity-stream searchbar */
z-index: 10;
}
/* Keyboard focus styling */
@ -45,7 +43,7 @@
}
#onboarding-overlay-button-icon {
width: 32px;
width: 36px;
vertical-align: top;
}

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

@ -990,7 +990,7 @@ class Onboarding {
let img = this._window.document.createElement("img");
img.id = "onboarding-overlay-button-icon";
img.setAttribute("role", "presentation");
img.src = "chrome://branding/content/icon64.png";
img.src = "resource://onboarding/img/overlay-icon.svg";
button.appendChild(img);
return button;
}