[cm6] dark mode for toolbar dropdowns (#13870)

GitOrigin-RevId: e220edddc678dd05c4c5d1927a5fcac379cd6ed5
This commit is contained in:
Domagoj Kriskovic 2023-07-18 12:24:39 +02:00 committed by Copybot
parent c21b8e31fd
commit 79f07e5626

View file

@ -71,6 +71,7 @@ export const toolbarPanel = () => [
},
'& .list-group': {
marginBottom: 0,
backgroundColor: 'var(--editor-toolbar-bg)',
},
'& .list-group-item': {
width: '100%',
@ -78,6 +79,12 @@ export const toolbarPanel = () => [
display: 'flex',
alignItems: 'center',
gap: '5px',
color: 'var(--toolbar-btn-color)',
borderColor: 'var(--editor-toolbar-bg)',
background: 'none',
'&:hover, &:focus': {
backgroundColor: 'rgba(125, 125, 125, 0.2)',
},
},
},
'.ol-cm-toolbar-button-group': {