piotrkonefal → created an issue.
Seems like this has been fixed in the dev version. Closing.
piotrkonefal → created an issue.
@Kobe Wright, In my opinion - though this is related, this is still a different project/subproject: https://www.drupal.org/project/openid_connect_windows_aad →
I would create an issue ticket there → and link this issue as a related.
Tested on a couple of sites. Marking as RTBC.
The patch from #16 is missing one more removal, that leads to PHP error. I am attaching updated version.
Added a new version with fixed indentation.
@sijumpk Chrome 120.0.6099.62 (Official Build) (arm64), MacOS Ventura 13.6.2
I am facing exactly the same issue. I've temporarily added CSS Asset Injector to get around it, but it should be fixed in the theme itself.
.field-plugin-settings-edit {
width: auto !important;
}
The original CSS contains this code:
.field-plugin-settings-edit {
width: var(--space-m); // this is breaking the gear icon
margin: 0;
padding: 1px 0.5rem;
}
Line 55 of /core/themes/claro/css/theme/field-ui.admin.css
.
I am facing the issue on Drupal & Claro 10.1.6
I am attaching a patch with proposed solution.
piotrkonefal → created an issue.
The same issue seems to be occurring on Webforms. Conditional logic options based on state of `managed_file` field does not seem to work.
Steps to reproduce:
- Create a webform with a file field.
- In Webform configuration (Build > Elements section), choose 'Edit' option for 'Submit button(s)'.
- Switch to 'Conditions' tab.
- Set a condition as: Visible - If - File Field (is) - Filled
- Save webform settings.
- Go to the webform. Observe that submit button is hidden, based on configured condition.
- Upload a file - see that 'Submit' button is still NOT visible (but it should be)
There is a working workaround for that scenario:
1. Add custom webform handler and use it on affected webform.
2. Define alterForm()
method and build conditional visibility there.
Example:
$form['elements']['actions']['#states'] = [
'visible' => [
'.webform-submission-activity-tasks-form :input[data-drupal-selector="edit-presentation-fids"]' => ['filled' => TRUE],
],
];
In terms of Webforms there is another issue I've caught which is related to this one. I've created a separate thread: https://www.drupal.org/project/webform/issues/3399906#comment-15308665 🐛 Conditional logic options are not getting saved Active
piotrkonefal → created an issue.