rorschach

This commit is contained in:
2023-06-09 17:04:04 +02:00
parent 47d640beb3
commit 9beeb37aaa
486 changed files with 38480 additions and 26956 deletions
@@ -0,0 +1,58 @@
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* CKEditor frame styles.
*/
/** cspell:ignore grouptitle */
.cke_editable {
margin: 1.125rem;
background-image: none;
}
[dir].cke_panel_container body {
background: #fff;
}
.cke_panel_listItem a > * {
margin-top: 0;
margin-bottom: 0;
}
.cke_panel_grouptitle {
margin: 0;
}
[dir="ltr"] .cke_editable blockquote {
margin-left: 3.375rem;
}
[dir="rtl"] .cke_editable blockquote {
margin-right: 3.375rem;
}
[dir="ltr"] .cke_editable .align-right {
margin-right: 0;
}
[dir="rtl"] .cke_editable .align-right {
margin-left: 0;
}
[dir="ltr"] .cke_editable .align-left {
margin-left: 0;
}
[dir="rtl"] .cke_editable .align-left {
margin-right: 0;
}
.cke_image_resizer_wrapper {
vertical-align: top;
}
figure.cke_widget_element {
margin: 0;
}
figcaption.cke_widget_editable {
background-color: #fff;
}
[dir="ltr"] .cke_panel_list {
margin-left: 0;
}
[dir="rtl"] .cke_panel_list {
margin-right: 0;
}
@@ -0,0 +1,52 @@
/**
* @file
* CKEditor frame styles.
*/
/** cspell:ignore grouptitle */
@import "../base/variables.pcss.css";
.cke_editable {
margin: var(--sp1);
background-image: none;
}
[dir].cke_panel_container body {
background: var(--color--white);
}
.cke_panel_listItem a > * {
margin-block: 0;
}
.cke_panel_grouptitle {
margin: 0;
}
.cke_editable blockquote {
margin-inline-start: var(--sp3);
}
.cke_editable .align-right {
margin-inline-end: 0;
}
.cke_editable .align-left {
margin-inline-start: 0;
}
.cke_image_resizer_wrapper {
vertical-align: top;
}
figure.cke_widget_element {
margin: 0;
}
figcaption.cke_widget_editable {
background-color: var(--color--white);
}
.cke_panel_list {
margin-inline-start: 0;
}
@@ -0,0 +1,94 @@
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Styling for the Filter module.
*/
/**
* Filter information under field.
*/
.text-full > .form-item {
margin-bottom: 0;
}
.form-element--editor-format {
vertical-align: top;
}
.filter-wrapper {
margin-top: 1.125rem;
margin-bottom: 0.5625rem;
}
.filter-wrapper .form-item {
margin: 0;
}
[dir="ltr"] .filter-help {
float: right;
}
[dir="rtl"] .filter-help {
float: left;
}
.filter-help {
padding-top: 0.5625rem;
padding-bottom: 0.5625rem;
font-size: 0.75rem;
}
/**
* Compose tips.
*
* Wraps filter tips on page '/filter/tips[/name]'.
*/
.compose-tips__item {
margin-top: 1.6875rem;
margin-bottom: 1.6875rem;
}
/**
* Filter guidelines.
*/
.filter-guidelines__item {
margin-top: 1.125rem;
font-size: 0.875rem;
line-height: 1.125rem;
}
.filter-guidelines p {
margin-top: 0.28125rem;
margin-bottom: 0;
}
/**
* Filter tips.
*
* Long is used on '/filter/tips[/name]', short is used for the filter tips
* below a text format input.
*/
.filter-tips--long {
margin-bottom: 1.6875rem;
}
.filter-tips__item,
.filter-tips--long p {
margin-top: 0.84375rem;
margin-bottom: 0.84375rem;
}
.filter-tips__item--short {
margin-top: 0.28125rem;
margin-bottom: 0;
}
@@ -0,0 +1,68 @@
/**
* @file
* Styling for the Filter module.
*/
@import "../base/variables.pcss.css";
/**
* Filter information under field.
*/
.text-full > .form-item {
margin-block-end: 0;
}
.form-element--editor-format {
vertical-align: top;
}
.filter-wrapper {
margin-block: var(--sp1) var(--sp0-5);
}
.filter-wrapper .form-item {
margin: 0;
}
.filter-help {
float: inline-end;
padding-block: var(--sp0-5);
font-size: var(--font-size-xxs);
}
/**
* Compose tips.
*
* Wraps filter tips on page '/filter/tips[/name]'.
*/
.compose-tips__item {
margin-block: var(--sp1-5);
}
/**
* Filter guidelines.
*/
.filter-guidelines__item {
margin-block-start: var(--sp1);
font-size: var(--font-size-s);
line-height: var(--line-height-s);
}
.filter-guidelines p {
margin-block: var(--sp0-25) 0;
}
/**
* Filter tips.
*
* Long is used on '/filter/tips[/name]', short is used for the filter tips
* below a text format input.
*/
.filter-tips--long {
margin-block-end: var(--sp1-5);
}
.filter-tips__item,
.filter-tips--long p {
margin-block: var(--sp0-75);
}
.filter-tips__item--short {
margin-block: var(--sp0-25) 0;
}