Joe Shelby

Results 37 comments of Joe Shelby

well, if you can prove it works (I don't have the time for that right now) i can submit an MR of it and see what the bosses here think,...

ok for comparison to real-world examples out there, Google Keep just updated their fab-menu on the Android app recently. - the button is 'square' style in both modes. - it...

my first thought is 'overflow' - maybe set overflow: visible on the `.field:has(> input[required]) > label` (not including the ::after). granted, runs a risk that it will bleed into the...

AH. Found it ``` .field.label.border:not(.fill)>label:after { content: ""; display: block; margin: .5rem 0 0; border-block-start: .0625rem solid var(--outline); block-size: 1rem; transition: none; flex: auto; } ``` when i un-checked this...

And hey, an experiment worked. ``` required ``` and then ``` .field:has(> input[required]) > label > span::after { content: "*"; color: var(--error); } ``` so it sets the red after...

what is interesting in the demo at MDE is that the frame color changes on focus - so it renders primary text normal ("--on-surface") until focused, at which point is...

As I review this, my suggestion to the maintainers is that they should recommend using the span inside the label approach and not change the existing beercss implementation. In particular,...