Skip to content

Commit

Permalink
Upgrade better_exposed_filters (#414)
Browse files Browse the repository at this point in the history
* [#397] Scaffolding for smartdocs CSS overrides.

* [#397] Create a library to load smartdocs css with field.

* [#397] Default smartdoc color sheet.

* [#397] Replace hex values with variables.

* [#397] Delete CodeMirror and other non-mat- styles.

* [#397] Do not override greys.

* [#397] Replace rgb values and remaining hex values with variables.

* [#397] Change Execute button color and add code text style.

* [#403] Upgrade better_exposed_filters from ^3.0@alpha to ^5.0.

* [#403] CSS fixes to exposed filter.

* [#403] Update patch for better_exposed_filters issue 3001967.

Co-authored-by: Arlina Espinoza <[email protected]>
  • Loading branch information
zakiya and arlina-espinoza authored Sep 1, 2020
1 parent 4a57d54 commit ae22c6d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"drupal/adminimal_admin_toolbar": "^1.9",
"drupal/apigee_api_catalog": "^2.2",
"drupal/apigee_edge": "^1.14",
"drupal/better_exposed_filters": "^3.0@alpha",
"drupal/better_exposed_filters": "^5.0",
"drupal/default_content": "^1.0@alpha",
"drupal/email_registration": "^1.0@RC",
"drupal/fontawesome": "^2.12",
Expand All @@ -25,8 +25,8 @@
},
"extra": {
"patches": {
"drupal/better_exposed_filters": {
"Fix issue with #summary_details introduced in Drupal 8.6.x": "https://www.drupal.org/files/issues/2018-10-05/bef-summary-attributes-3001967-4.patch"
"drupal/core": {
"Fix issue with #summary_details introduced in Drupal 8.6.x": "https://www.drupal.org/files/issues/2018-12-17/core-undefined-index-summary_attributes-2998194-9.patch"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13525,6 +13525,15 @@ form.team-member-form .form-checkboxes small {
.views-exposed-form details {
margin: 0 !important;
}
.views-exposed-form ul {
padding: 0;
}
.views-exposed-form li {
list-style: none;
}
.views-exposed-form li + li {
margin-top: 0.5rem;
}
.views-exposed-form fieldset {
border: 0 !important;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
margin: 0 !important;
}

ul {
padding: 0;
}

li {
list-style: none;
}

li + li {
margin-top: 0.5rem;
}

fieldset {
border: 0 !important;

Expand Down

0 comments on commit ae22c6d

Please sign in to comment.