Serhii Kulykov
Serhii Kulykov
As mentioned internally, when commenting the “-webkit-mask-image” CSS property the issue seems to disappear. Here is the suspicious line, could you please try if removing it helps or not? https://github.com/vaadin/web-components/blob/e8b431e1e0f6a4428876de1d348f1b5a544936ed/packages/input-container/theme/lumo/vaadin-input-container-styles.js#L42...
Thanks. It should be possible to override this using [custom theme](https://vaadin.com/docs/latest/components/ds-resources/customization/custom-theme/#vaadin-component-styles) by adding the following CSS: ```css ::slotted(:not([slot$='fix'])) { --_lumo-text-field-overflow-mask-image: none !important; } ``` This code needs to be placed...
Sorry about not answering your question. Yes, `@CssImport` is the right way to apply styles without using custom theme.
Related request for Flow counterpart: https://github.com/vaadin/vaadin-checkbox-flow/issues/112
We could consider using `vaadin-custom-field` to show required indicator. However, as mentioned at https://github.com/vaadin/vaadin-custom-field/issues/78#issuecomment-633576433, then there is another problem: custom field currently only works with elements that have `validate()` method....
See also https://github.com/vaadin/vaadin-checkbox/issues/188#issuecomment-701408779
Tested with VoiceOver on Chrome and Safari and the main problem is the fact that there is no `keydown` event fired when navigating grid cells using arrow keys. This is...
After some investigation, it turns out that VoiceOver does fire `focus` events for buttons inside table`` cells when using Ctrl + Option + arrow keys. In ARIA example it's done...
> I will continue investigating whether it would be possible to update logic for vaadin-grid-pro as follows Tested this in #4114 and the resulting change appears to be quite intrusive:...
Under certain circumstances, the issue can be also reproduced with `vaadin-grid-selection-column`: 1. Focus a first cell with checkbox by pressing Tab twice 2. Then navigate away to Ctrl + Option...