import styled from 'styled-components' import { color, font, inputBorderSize, responsiveBreakpoints } from '../_utils/branding' import { normalizeHorizontally } from '../layout/layoutNormalizer' export const StyledTimePickerWrapper = styled.div` width: 100%; ${normalizeHorizontally}; // On large media, let's fix the size and center the component @media (${responsiveBreakpoints.isMediaLarge}) { position: relative; width: 320px; left: 50%; transform: translateX(-50%); } ` export const StyledTimePicker = styled.div` position: relative; width: 100%; display: inline-flex; justify-content: center; align-items: center; font-size: 4em; font-weight: 500; line-height: 1; background-color: ${color.white}; color: ${color.midnightGreen}; border: 1px solid ${color.gray}; border-radius: 2em; box-sizing: border-box; cursor: pointer; padding: ${inputBorderSize.focus}; &:hover { background-color: ${color.lightGray}; } &.focus { border: ${inputBorderSize.focus} solid ${color.blue}; padding: 1px; } &::after { content: ''; position: absolute; right: 32px; top: calc(50% - 8px); display: inline-block; padding: 5px; border: solid ${color.blue}; border-width: 0 2px 2px 0; vertical-align: middle; transform: rotate(45deg); } &.focus::after { right: 30px; } &[aria-disabled='true'] { color: ${color.lightGray}; border-color: transparent; } &[aria-disabled='true']:hover { background-color: ${color.white}; } &[aria-disabled='true']::after { border-color: ${color.lightGray}; } & > select, & > select:focus { z-index: 1; /* Needs to be above ::after so the arrow symbol appears clickable */ position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; font-size: ${font.base.size}; /* Required to have