Fix header content CSS
Dieser Commit ist enthalten in:
Ursprung
0d7a220f1d
Commit
38307c565a
2 geänderte Dateien mit 18 neuen und 6 gelöschten Zeilen
|
@ -1,7 +1,9 @@
|
|||
body.custom-wizard .d-header,
|
||||
.global-notice,
|
||||
.create-topics-notice,
|
||||
.top-notices-outlet,
|
||||
.consent_banner {
|
||||
display: none;
|
||||
body.custom-wizard {
|
||||
.d-header,
|
||||
.global-notice,
|
||||
.create-topics-notice,
|
||||
.top-notices-outlet,
|
||||
.consent_banner {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -66,6 +66,11 @@ acceptance("Wizard | Wizard", function (needs) {
|
|||
assert.ok(query(".wizard-column"), true);
|
||||
});
|
||||
|
||||
test("Applies the wizard body class", async function (assert) {
|
||||
await visit("/w/wizard");
|
||||
assert.ok($("body.custom-wizard").length);
|
||||
});
|
||||
|
||||
test("Applies the body background color", async function (assert) {
|
||||
await visit("/w/wizard");
|
||||
assert.ok($("body")[0].style.background);
|
||||
|
@ -95,4 +100,9 @@ acceptance("Wizard | Wizard", function (needs) {
|
|||
assert.ok(exists(".wizard-step-footer .wizard-progress"), true);
|
||||
assert.ok(exists(".wizard-step-footer .wizard-buttons"), true);
|
||||
});
|
||||
|
||||
test("Removes the wizard body class when navigating away", async function (assert) {
|
||||
await visit("/");
|
||||
assert.strictEqual($("body.custom-wizard").length, 0);
|
||||
});
|
||||
});
|
||||
|
|
Laden …
In neuem Issue referenzieren