Are there any current plans to update the version of Chromium in MM5 anytime soon?
Here's why I ask:
I'm currently attempting to create a new skin, and using CSS, I'm unsuccessfully trying to select an "unidentified" parent element (safely and uniquely, without potential of selecting anything else in the app), e.g.
Code: Select all
<div>
<label data-id="h_ZP">SomeLabelHere</label>
</div>
Above, I'm wanting to select the <div> preceding <label>, so that I can change it's
display from it currently-styled-from-elsewhere
block to
inline block, so it no-longer forces the next text block onto the next line.
Seemingly, the solution to this is to use the
:has() pseudo-class: e.g.
div:has([data-id="h_ZP"]) {display:inline-block};
However, this is only available (apparently) from v105 of chromium. The current publically-available version is v110. Our current version, v98, was released back in Feb 2022.
Thanks for the reply!


Pete, from Wellington, New Zealand.
Currently evaluating a migration from MM4 (4.1.31.1919 on Win7 SP1/16Gig RAM/intel) to MM2024 (latest Debug version on Win11 24H2/16GB RAM/intel)
**If you're wondering why I'm still on MM4: It still has more useful-to-me plugins; and I prefer the GUI's responsiveness, panes spreadable over multi-monitors flexibility, and predictability (all coz it's more Windows-native). I also hate "flat design" for its visual inefficiency. For me, MM4's benefits are still > MM5, and MM5's downsides < MM4. There still appears to be way less MM5 plugins -- even after all this time. MM5 docs for plugin developers seem very undeveloped to me -- which makes me uninclined to invest into learning how to improve MM5 for my own wants.