import {rem, Popover} from '@sanity/ui' import styled from 'styled-components' export const ChangeListWrapper = styled.div` display: grid; grid-template-columns: minmax(0, 1fr); ` export const GroupChangeContainer = styled.div` --field-change-error: ${({theme}) => theme.sanity.color.solid.critical.enabled.bg}; --diff-inspect-padding-xsmall: ${({theme}) => rem(theme.sanity.space[1])}; --diff-inspect-padding-small: ${({theme}) => rem(theme.sanity.space[2])}; position: relative; padding: var(--diff-inspect-padding-xsmall) var(--diff-inspect-padding-small); &::before { content: ''; display: block; position: absolute; top: 0; left: 0; bottom: 0; border-left: 1px solid var(--card-border-color); } &[data-error]:hover::before, &[data-revert-group-hover]:hover::before, &[data-revert-all-groups-hover]::before { border-left: 2px solid var(--field-change-error); } ` export const PopoverWrapper = styled(Popover)` /* hides the popover when the target of it has left the visible part of the window. without it, the popover will be on top of the headers (document title & changes) and footers (changed notifications, publish button etc)*/ &[data-popper-reference-hidden='true'] { display: none; } `