Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Close #3741 Add contextual links to embedded media. #3844

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@
"[10.2 regression] CKEditor 5 breaks when 'Source'/Source editing button is added and 'Manually editable HTML tags' are specified (3410100)": "https://www.drupal.org/files/issues/2024-01-23/drupal-revert-source-editing-validation-tightening-3410100-38.patch",
"[Apache only] Wrong file header returned, when converting an image for example to webp (3310963)": "https://www.drupal.org/files/issues/2024-05-15/3310963-32.patch",
"Hardcode a higher WebP conversion quality setting (3320689)": "https://gist.githubusercontent.com/joeparsons/d99b6c6eef240e8eaf768ba79e1c9f1b/raw/9b99325bd20907db0506969fc4f5823b46065c6b/3320689-10-3-x-hardcoded.patch",
"Provide option to display contextual links on embedded entities (3174252)": "https://www.drupal.org/files/issues/2024-12-11/3174252-provide-option-to-show-contextual-links-for-embedded-media.patch",
"Add Views EntityReference filter to support better UX for exposed filters (3347343)": "https://gist.githubusercontent.com/trackleft/812286289ec98b72897ba9f59962d62a/raw/185b3481844d28c2d64a5f344e865da9382d0a08/add-Views-EntityReference-filter.patch"
},
"drupal/draggableviews": {
Expand Down
1 change: 1 addition & 0 deletions config/install/filter.format.full_html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ filters:
default_view_mode: default
allowed_view_modes: { }
allowed_media_types: { }
show_contextual_links: true
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,4 @@ filters:
az_square: az_square
az_very_small: az_very_small
allowed_media_types: { }
show_contextual_links: true
8 changes: 8 additions & 0 deletions themes/custom/az_barrio/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -763,3 +763,11 @@ form.webform-submission-form {
.hide-contextual-links .contextual button {
display: none;
}

.contextual-region .contextual .contextual-links a {
color: #333;
}

.field--name-field-az-text-area .contextual-region {
display: inline-block;
}
Loading