views-exposed-form.pcss.css
Same filename in other branches
Visual styles for views exposed form.
File
-
core/
themes/ claro/ css/ components/ views-exposed-form.pcss.css
View source
- /**
- * @file
- * Visual styles for views exposed form.
- */
-
- @import "../base/variables.pcss.css";
-
- /**
- * Use flexbox and some margin resets to make the fields + actions go inline.
- *
- * For (at least) Media Library, this file is typically inserted by AJAX add_css
- * command when the dialog is opened. The AJAX add_css command always adds the
- * missing-but-required CSS assets to the beginning of the HTML . Because
- * of this, we cannot rely on the expected loading order of the CSS assets.
- * This is why we have to double these selectors: we have to get the expected
- * output even for the Media Library modal.
- *
- * @todo Remove double selectors after https://www.drupal.org/node/1461322
- * has been resolved.
- */
-
- .views-exposed-form.views-exposed-form {
- display: flex;
- flex-wrap: wrap;
- align-items: flex-end;
- margin-top: var(--space-l);
- margin-bottom: var(--space-l);
- padding: var(--space-xs) var(--space-l) var(--space-l) var(--space-l);
- border: var(--details-border-size) solid var(--details-border-color);
- border-radius: var(--details-border-size-radius);
- background-color: var(--color-white);
- box-shadow: var(--details-box-shadow);
- }
-
- .views-exposed-form__item.views-exposed-form__item {
- margin: var(--space-s) var(--space-xs) 0 0; /* LTR */
- }
- [dir="rtl"] .views-exposed-form__item.views-exposed-form__item {
- margin-right: 0;
- margin-left: var(--space-xs);
- }
-
- .views-exposed-form__item--preceding-actions.views-exposed-form__item--preceding-actions {
- margin-right: var(--space-m); /* LTR */
- }
- [dir="rtl"] .views-exposed-form__item--preceding-actions.views-exposed-form__item--preceding-actions {
- margin-right: 0;
- margin-left: var(--space-m);
- }
-
- .views-exposed-form__item--actions.views-exposed-form__item--actions .button {
- margin-bottom: 0;
- }
-
- .views-exposed-form__item--actions.views-exposed-form__item--actions .button:last-child {
- margin-right: 0;
- }
- [dir="rtl"] .views-exposed-form__item--actions.views-exposed-form__item--actions:last-child {
- margin-left: 0;
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.