- Issue created by @acbramley
- π¦πΊAustralia acbramley
Looks like the grey button text is coming from claro's disabled button styling.
- π¦πΊAustralia acbramley
π Disabled primary button in views area has grey text on blue background (bad contrast) Fixed for the disabled button styles.
- π΅π±Poland Graber
Hopefully some frontend dev can help here π
I can do any backend changes if requested. - π¦πΊAustralia acbramley
There doesn't seem to be a way to turn the selection section off completely without custom code, using a form_alter hook we can remove them for now:
function my_module_form_alter(array &$form, FormStateInterface $form_state, string $form_id): void { if (!str_starts_with($form_id, 'views_form') || !isset($form['header']['views_bulk_operations_bulk_form'])) { return; } // Hide the Select all checkbox, and the "Selected items" accordion. $form['header']['views_bulk_operations_bulk_form']['select_all']['#access'] = FALSE; $form['header']['views_bulk_operations_bulk_form']['multipage']['#access'] = FALSE; }
- πΊπΈUnited States edmund.dunn Olympia, WA
We are going to address this. Working with our designer to get comp to work from. More to follow.
- Status changed to Needs review
over 1 year ago 8:57pm 2 August 2023 - last update
over 1 year ago 14 pass - Status changed to RTBC
over 1 year ago 11:21pm 2 August 2023 - π¦πΊAustralia acbramley
Great work, huge improvement! The list still looks a bit clunky when the Selected items are expanded but not sure if there's much we can do about that.
-
Graber β
committed 539779ba on 4.2.x authored by
edmund.dunn β
Issue #3378090 by edmund.dunn, acbramley: Styling broken in VBO form on...
-
Graber β
committed 539779ba on 4.2.x authored by
edmund.dunn β
- Status changed to Fixed
over 1 year ago 12:23pm 3 August 2023 - π΅π±Poland Graber
Nice one, thank you, will release this soon along with some other updates.
- π΅π±Poland Graber
Ahh, almost forgot.. we could make that expandable details area an overlay if needed but that can be a follow-up.
Automatically closed - issue fixed for 2 weeks with no activity.