fix: remove tinted border from change note type button
This commit is contained in:
@@ -5,7 +5,6 @@ import { FunctionComponent, useCallback, useRef, useState } from 'react'
|
|||||||
import Icon from '@/Components/Icon/Icon'
|
import Icon from '@/Components/Icon/Icon'
|
||||||
import ChangeEditorMenu from './ChangeEditorMenu'
|
import ChangeEditorMenu from './ChangeEditorMenu'
|
||||||
import Popover from '../Popover/Popover'
|
import Popover from '../Popover/Popover'
|
||||||
import { classNames } from '@/Utils/ConcatenateClassNames'
|
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
application: WebApplication
|
application: WebApplication
|
||||||
@@ -40,10 +39,7 @@ const ChangeEditorButton: FunctionComponent<Props> = ({
|
|||||||
return (
|
return (
|
||||||
<div ref={containerRef}>
|
<div ref={containerRef}>
|
||||||
<button
|
<button
|
||||||
className={classNames(
|
className="bg-text-padding flex h-8 min-w-8 cursor-pointer items-center justify-center rounded-full border border-border text-neutral hover:bg-contrast focus:bg-contrast"
|
||||||
'bg-text-padding flex h-8 min-w-8 cursor-pointer items-center justify-center rounded-full border border-solid text-neutral hover:bg-contrast focus:bg-contrast',
|
|
||||||
`border-accessory-tint-${selectedEditorIconTint}`,
|
|
||||||
)}
|
|
||||||
title="Change note type"
|
title="Change note type"
|
||||||
aria-label="Change note type"
|
aria-label="Change note type"
|
||||||
onClick={toggleMenu}
|
onClick={toggleMenu}
|
||||||
|
|||||||
Reference in New Issue
Block a user