diff --git a/client/components/Message/Body/Quote.tsx b/client/components/Message/Body/Quote.tsx index 45118bd1d6c..df314cdf1bb 100644 --- a/client/components/Message/Body/Quote.tsx +++ b/client/components/Message/Body/Quote.tsx @@ -1,11 +1,32 @@ +import { css } from '@rocket.chat/css-in-js'; import { Box } from '@rocket.chat/fuselage'; +import colors from '@rocket.chat/fuselage-tokens/colors'; import { Quote as ASTQuote } from '@rocket.chat/message-parser'; import React, { FC } from 'react'; import Paragraph from './Paragraph'; +const hover = css` + &:hover, + &:focus { + background: ${colors.n200} !important; + border-color: ${colors.n300} !important; + border-inline-start-color: ${colors.n600} !important; + } +`; + const Quote: FC<{ value: ASTQuote['value'] }> = ({ value }) => ( - + {value.map((item, index) => ( ))}