DEV: QUnit CSS tweaks (#24180)

1. Prevent a white background flash
2. Dark-mode support for two more inputs
This commit is contained in:
Jarek Radosz 2023-10-31 14:53:42 +01:00 committed by GitHub
parent 231e02446b
commit 1c8eaa9390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,7 @@
body {
background: unset !important;
}
#ember-testing-container {
position: fixed;
background: #fff;
@ -53,7 +57,8 @@
}
#qunit-filter-input,
#qunit-urlconfig-qunit_single_plugin {
#qunit-urlconfig-qunit_single_plugin,
#qunit-urlconfig-target {
background-color: var(--primary);
border: 1px solid var(--secondary-medium);
color: var(--secondary);
@ -136,4 +141,15 @@
#ember-testing {
background: #000;
}
#qunit-modulefilter-dropdown {
background-color: var(--primary);
border: 1px solid var(--secondary-medium);
color: var(--secondary);
.clickable:hover {
background-color: #222;
color: #f8f8f8;
}
}
}