@@ -191,13 +191,13 @@ export const listItemClass = style({
191
191
} ) ;
192
192
193
193
export const activeListItemClass = style ( {
194
- color : 'var(--jp-ui-inverse-font-color1) !important' ,
194
+ color : 'white !important' ,
195
195
196
196
backgroundColor : 'var(--jp-brand-color1)!important' ,
197
197
198
198
$nest : {
199
199
'& .jp-icon-selectable[fill]' : {
200
- fill : 'var(--jp-layout-color1) '
200
+ fill : 'white '
201
201
}
202
202
}
203
203
} ) ;
@@ -245,7 +245,7 @@ export const buttonClass = style({
245
245
width : '9em' ,
246
246
height : '2em' ,
247
247
248
- color : 'var(--jp-ui-inverse-font-color1) ' ,
248
+ color : 'white ' ,
249
249
fontSize : 'var(--jp-ui-font-size1)' ,
250
250
251
251
border : '0' ,
@@ -266,12 +266,25 @@ export const cancelButtonClass = style({
266
266
} ) ;
267
267
268
268
export const createButtonClass = style ( {
269
- backgroundColor : 'var(--jp-brand-color1)' ,
269
+ backgroundColor : 'var(--md-blue-500)' ,
270
+
270
271
$nest : {
272
+ '&:hover' : {
273
+ backgroundColor : 'var(--md-blue-600)'
274
+ } ,
275
+ '&:active' : {
276
+ backgroundColor : 'var(--md-blue-700)'
277
+ } ,
271
278
'&:disabled' : {
272
279
cursor : 'default' ,
273
280
color : 'var(--jp-ui-inverse-font-color0)' ,
274
281
backgroundColor : 'var(--jp-layout-color3)'
282
+ } ,
283
+ '&:disabled:hover' : {
284
+ backgroundColor : 'var(--jp-layout-color3)'
285
+ } ,
286
+ '&:disabled:active' : {
287
+ backgroundColor : 'var(--jp-layout-color3)'
275
288
}
276
289
}
277
290
} ) ;
0 commit comments