clone of olivero for island lives
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
1.6 KiB

10 months ago
/*
* 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 {
10 months ago
margin-block-end: 0;
10 months ago
}
.form-element--editor-format {
vertical-align: top;
}
.filter-wrapper {
10 months ago
margin-block: var(--sp1) var(--sp0-5);
10 months ago
}
.filter-wrapper .form-item {
margin: 0;
}
.filter-help {
float: right; /* LTR */
10 months ago
padding-block: var(--sp0-5);
font-size: var(--font-size-xxs);
10 months ago
/**
* Chromium and Webkit do not yet support flow relative logical properties,
* such as float: inline-end. However, PostCSS Logical does not compile this
* value, so we accommodate by not using these.
*
* @see https://caniuse.com/mdn-css_properties_clear_flow_relative_values
* @see https://github.com/csstools/postcss-plugins/issues/632
*/
}
[dir="rtl"] .filter-help {
10 months ago
float: left;
}
10 months ago
/**
* Compose tips.
*
* Wraps filter tips on page '/filter/tips[/name]'.
*/
.compose-tips__item {
10 months ago
margin-block: var(--sp1-5);
10 months ago
}
/**
* Filter guidelines.
*/
.filter-guidelines__item {
10 months ago
margin-block-start: var(--sp1);
10 months ago
font-size: var(--font-size-s);
line-height: var(--line-height-s);
}
.filter-guidelines p {
10 months ago
margin-block: var(--sp0-25) 0;
10 months ago
}
/**
* Filter tips.
*
* Long is used on '/filter/tips[/name]', short is used for the filter tips
* below a text format input.
*/
.filter-tips--long {
10 months ago
margin-block-end: var(--sp1-5);
10 months ago
}
.filter-tips__item,
.filter-tips--long p {
10 months ago
margin-block: var(--sp0-75);
10 months ago
}
.filter-tips__item--short {
10 months ago
margin-block: var(--sp0-25) 0;
10 months ago
}