UNPKG

@vaadin/password-field

Version:
38 lines (33 loc) 867 B
/** * @license * Copyright (c) 2021 - 2025 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import { button } from '@vaadin/button/theme/material/vaadin-button-styles.js'; import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js'; const passwordFieldButton = css` :host { position: absolute; right: 0; top: 0; margin: 0; padding: 0; width: 100%; height: 100%; min-width: auto; background: transparent; outline: none; border-radius: 50%; overflow: visible; } :host::before { transform: scale(1.5); } /* Disable ripple */ :host::after { display: none; } `; registerStyles('vaadin-password-field-button', [button, passwordFieldButton], { moduleId: 'material-password-field-button', });