28 lines
799 B
CSS
28 lines
799 B
CSS
/*
|
|
* DO NOT EDIT THIS FILE.
|
|
* See the following change record for more information,
|
|
* https://www.drupal.org/node/3084859
|
|
* @preserve
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* Reset HTML elements styles for the off-canvas dialog.
|
|
*
|
|
* @internal
|
|
*/
|
|
|
|
#drupal-off-canvas-wrapper *:where(:not(svg, svg *, .ck-reset *, [data-drupal-ck-style-fence] *, .ui-resizable-handle)) {
|
|
all: revert;
|
|
box-sizing: border-box;
|
|
-webkit-font-smoothing: antialiased;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
#drupal-off-canvas-wrapper *:where(:not(svg, svg *, .ck-reset *, [data-drupal-ck-style-fence] *, .ui-resizable-handle))::after,
|
|
#drupal-off-canvas-wrapper *:where(:not(svg, svg *, .ck-reset *, [data-drupal-ck-style-fence] *, .ui-resizable-handle))::before {
|
|
all: revert;
|
|
box-sizing: border-box;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|