form--select.pcss.css
Same filename in other branches
Select input elements.
File
-
core/
themes/ claro/ css/ components/ form--select.pcss.css
View source
- /**
- * @file
- * Select input elements.
- */
-
- .form-element--type-select {
- padding-inline-end: calc(2rem - var(--input-border-size));
- background-image: url(../../images/icons/545560/chevron-down.svg);
- background-repeat: no-repeat;
- background-position: 100% 50%;
- background-size: 2.75rem 0.5625rem; /* w: 14px + (2 * 15px), h: 9px */
-
- /**
- * Select states.
- */
- &:focus {
- background-image: url(../../images/icons/003ecc/chevron-down.svg);
- }
- &[disabled] {
- background-image: url(../../images/icons/8e929c/chevron-down.svg);
- }
-
- @nest [dir="rtl"]
-
- @nest .no-touchevents
- }
- }
-
- @media (forced-colors: active) {
- .form-element--type-select,
- .form-element--type-select:focus,
- .form-element--type-select[disabled] {
- padding-inline-end: var(--input-padding-horizontal);
- background-image: none;
- appearance: revert; /* Revert appearance value for modern browsers. */
- }
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.