@@ -31,7 +31,7 @@ exports[`applyTheme > with baseThemeId > attaches one style node containing over
3131` ;
3232
3333exports [` applyTheme > with secondary theme > attaches one style node containing override 1` ] = `
34- ":root:root {
34+ "body:not(# \\ 9) {
3535 -- black - css :black ;
3636 -- grey - css :grey ;
3737 -- brown - css :brown ;
@@ -59,7 +59,7 @@ exports[`applyTheme > with secondary theme > attaches one style node containing
5959` ;
6060
6161exports [` applyTheme > with targetDocument > attaches one style node containing override on the target document 1` ] = `
62- ":root:root {
62+ "body:not(# \\ 9) {
6363 -- black - css :black ;
6464 -- grey - css :grey ;
6565 -- brown - css :brown ;
@@ -87,7 +87,7 @@ exports[`applyTheme > with targetDocument > attaches one style node containing o
8787` ;
8888
8989exports [` applyTheme > without secondary theme > attaches one style node containing override 1` ] = `
90- ":root:root {
90+ "body:not(# \\ 9) {
9191 -- black - css :black ;
9292 -- grey - css :grey ;
9393 -- brown - css :brown ;
@@ -116,14 +116,17 @@ exports[`applyTheme > without secondary theme > attaches one style node containi
116116
117117exports [` generateThemeStylesheet > with baseThemeId > creates override styles 1` ] = `
118118".secondary-theme.secondary-theme:not(#\\ 9){
119+ -- black - css :purple ;
120+ -- grey - css :grey ;
121+ -- brown - css :black ;
119122 -- shadow - css :yellow ;
120123 -- buttonShadow - css :red ;
121124 -- boxShadow - css :green ;
122125 -- lineShadow - css :pink ;
123126}
124127@media not print { .dark .dark .secondary - theme :not (#\\9 ){
125128 --shadow-css:orange ;
126- -- boxShadow - css :black ;
129+ -- boxShadow - css :var ( -- brown - css ) ;
127130}}
128131.secondary-theme.secondary-theme .navigation:not(#\\ 9){
129132 -- shadow - css :pink ;
@@ -132,79 +135,74 @@ exports[`generateThemeStylesheet > with baseThemeId > creates override styles 1`
132135 -- shadow - css :pink ;
133136}
134137@media not print { .dark .dark .secondary - theme .navigation :not (#\\9 ){
135- --shadow-css:grey ;
138+ --shadow-css:var ( -- grey - css ) ;
136139 -- buttonShadow - css :green ;
137140}}
138141@media not print { .dark .dark .navigation .secondary - theme :not (#\\9 ){
139- --shadow-css:grey ;
142+ --shadow-css:var ( -- grey - css ) ;
140143 -- buttonShadow - css :green ;
141144}} "
142145` ;
143146
144- exports [` generateThemeStylesheet > with reference tokens and useCssVars > creates override styles with CSS variables when useCssVars is enabled 1` ] = `
145- ":root:root {
147+ exports [` generateThemeStylesheet > with reference tokens > creates override styles with CSS variables 1` ] = `
148+ "body:not(# \\ 9) {
146149 -- colorPrimary600 - css :#ff6600 ;
147150 -- colorPrimary700 - css :#692dc9 ;
148151} "
149152` ;
150153
151- exports [` generateThemeStylesheet > with reference tokens and useCssVars > creates override styles without CSS variables by default 1` ] = `
152- ":root:root{
153- -- colorPrimary600 - css :#ff6600 ;
154- -- colorPrimary700 - css :#692dc9 ;
155- -- colorButtonPrimary - css :#ff6600 ;
156- -- colorButtonSecondary - css :#692dc9 ;
157- -- colorTextPrimary - css :#ff6600 ;
158- -- colorBackgroundPrimary - css :#692dc9 ;
159- } "
160- ` ;
161-
162154exports [` generateThemeStylesheet > with secondary theme > creates override styles 1` ] = `
163- ":root:root{
155+ "body:not(#\\ 9){
156+ -- black - css :black ;
157+ -- grey - css :grey ;
158+ -- brown - css :brown ;
164159 -- shadow - css :yellow ;
165160 -- buttonShadow - css :red ;
166161 -- boxShadow - css :green ;
167162 -- lineShadow - css :pink ;
168163}
169164@media not print { .dark .dark :not (#\\9 ){
170165 --shadow-css:orange ;
171- -- boxShadow - css :brown ;
166+ -- boxShadow - css :var ( -- brown - css ) ;
172167}}
173168.navigation.navigation:not(#\\ 9){
174169 -- shadow - css :pink ;
175170 -- boxShadow - css :purple ;
176171}
177172@media not print { .dark .dark .navigation :not (#\\9 ){
178- --shadow-css:brown ;
173+ --shadow-css:var ( -- brown - css ) ;
179174 -- buttonShadow - css :green ;
180175}}
181176@media not print { .dark .dark .navigation :not (#\\9 ){
182- --shadow-css:brown ;
177+ --shadow-css:var ( -- brown - css ) ;
183178 -- buttonShadow - css :green ;
184179}} "
185180` ;
186181
187182exports [` generateThemeStylesheet > without secondary theme > creates override styles 1` ] = `
188- ":root:root{
183+ "body:not(#\\ 9){
184+ -- black - css :black ;
185+ -- grey - css :grey ;
186+ -- brown - css :brown ;
189187 -- shadow - css :yellow ;
190188 -- buttonShadow - css :red ;
191189 -- boxShadow - css :green ;
192190 -- lineShadow - css :pink ;
193191}
194192@media not print { .dark .dark :not (#\\9 ){
195193 --shadow-css:orange ;
196- -- boxShadow - css :brown ;
194+ -- boxShadow - css :var ( -- brown - css ) ;
197195}}
198196.navigation.navigation:not(#\\ 9){
199197 -- shadow - css :pink ;
200198 -- boxShadow - css :purple ;
201199}
202200@media not print { .dark .dark .navigation :not (#\\9 ){
203- --shadow-css:brown ;
201+ --shadow-css:var ( -- brown - css ) ;
204202 -- buttonShadow - css :green ;
205203}}
206204@media not print { .dark .dark .navigation :not (#\\9 ){
207- --shadow-css:brown ;
205+ --shadow-css:var ( -- brown - css ) ;
208206 -- buttonShadow - css :green ;
209207}} "
210208` ;
0 commit comments