From 8511ee549829d185cf38863ada900a5e738e276a Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 12 Dec 2019 16:28:17 +0100 Subject: [PATCH] Use checkerboard pattern for testing container background This changes the default background of the `#ember-testing-container` from purely white to a slight checkerboard pattern to make it more obvious what rendered components have a transparent vs. a white background. --- vendor/ember-qunit/test-container-styles.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vendor/ember-qunit/test-container-styles.css b/vendor/ember-qunit/test-container-styles.css index 41b6e4de..467422c7 100644 --- a/vendor/ember-qunit/test-container-styles.css +++ b/vendor/ember-qunit/test-container-styles.css @@ -1,6 +1,13 @@ #ember-testing-container { position: relative; - background: white; + + background-color: #fff; + background-image: + linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee), + linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee); + background-position: 0 0, 10px 10px; + background-size: 20px 20px; + bottom: 0; right: 0; width: 640px;