@wordpress/components
Version:
UI components for WordPress.
41 lines (37 loc) • 731 B
JavaScript
/**
* External dependencies
*/
import { css } from 'emotion';
/**
* Internal dependencies
*/
import { COLORS } from '../utils/colors-values';
export const VisuallyHidden = css`
border: 0;
clip: rect( 1px, 1px, 1px, 1px );
-webkit-clip-path: inset( 50% );
clip-path: inset( 50% );
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal ;
&:focus {
background-color: ${ COLORS.lightGray[ '300' ] };
clip: auto ;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}
`;